├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── .gitignore ├── .whitesource ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── app.py ├── banner ├── friday.jpg ├── monday.jpg ├── saturday.jpg ├── sunday.jpg ├── thursday.jpg ├── tuesday.jpg └── wednesday.jpg ├── function └── __init__.py ├── screenshot ├── execute_program.png ├── github_actions.png ├── nodemaven_proxy.png ├── pixelscan.png ├── twitter_developer_portal.png └── twitter_profile.png └── session └── __init__.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .env 3 | README.bak.md -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/.whitesource -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/app.py -------------------------------------------------------------------------------- /banner/friday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/banner/friday.jpg -------------------------------------------------------------------------------- /banner/monday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/banner/monday.jpg -------------------------------------------------------------------------------- /banner/saturday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/banner/saturday.jpg -------------------------------------------------------------------------------- /banner/sunday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/banner/sunday.jpg -------------------------------------------------------------------------------- /banner/thursday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/banner/thursday.jpg -------------------------------------------------------------------------------- /banner/tuesday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/banner/tuesday.jpg -------------------------------------------------------------------------------- /banner/wednesday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/banner/wednesday.jpg -------------------------------------------------------------------------------- /function/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/function/__init__.py -------------------------------------------------------------------------------- /screenshot/execute_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/screenshot/execute_program.png -------------------------------------------------------------------------------- /screenshot/github_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/screenshot/github_actions.png -------------------------------------------------------------------------------- /screenshot/nodemaven_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/screenshot/nodemaven_proxy.png -------------------------------------------------------------------------------- /screenshot/pixelscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/screenshot/pixelscan.png -------------------------------------------------------------------------------- /screenshot/twitter_developer_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/screenshot/twitter_developer_portal.png -------------------------------------------------------------------------------- /screenshot/twitter_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/screenshot/twitter_profile.png -------------------------------------------------------------------------------- /session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhohirpradana/Twitter-Automation/HEAD/session/__init__.py --------------------------------------------------------------------------------