├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── LICENSE.txt ├── README.md ├── automation_script.py ├── get_credentials.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | credentials.pickle 2 | geckodriver.log 3 | __pycache__ -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthnagarkar875/LinkedIn-Followers-Bot/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthnagarkar875/LinkedIn-Followers-Bot/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthnagarkar875/LinkedIn-Followers-Bot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthnagarkar875/LinkedIn-Followers-Bot/HEAD/README.md -------------------------------------------------------------------------------- /automation_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthnagarkar875/LinkedIn-Followers-Bot/HEAD/automation_script.py -------------------------------------------------------------------------------- /get_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthnagarkar875/LinkedIn-Followers-Bot/HEAD/get_credentials.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | --------------------------------------------------------------------------------