├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── accounts.json ├── bb └── wb.csv ├── create_algerian_facebook_account.py ├── geckodriver.log ├── lastNames.csv ├── run_multiple_process.py ├── test.py ├── test2.py └── ww └── ww.csv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/README.md -------------------------------------------------------------------------------- /accounts.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bb/wb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/bb/wb.csv -------------------------------------------------------------------------------- /create_algerian_facebook_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/create_algerian_facebook_account.py -------------------------------------------------------------------------------- /geckodriver.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lastNames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/lastNames.csv -------------------------------------------------------------------------------- /run_multiple_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/run_multiple_process.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/test.py -------------------------------------------------------------------------------- /test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/test2.py -------------------------------------------------------------------------------- /ww/ww.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsaad39/auto_facebook_creator/HEAD/ww/ww.csv --------------------------------------------------------------------------------