├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DOCUMENTATION.md ├── LICENSE.txt ├── README.md ├── auto_swipe.py ├── quickstart.py ├── requirements.txt ├── scraper.py ├── setup.cfg ├── setup.py └── tinderbotz ├── __init__.py ├── addproxy.py ├── helpers ├── __init__.py ├── constants_helper.py ├── email_helper.py ├── geomatch.py ├── geomatch_helper.py ├── loadingbar.py ├── login_helper.py ├── match.py ├── match_helper.py ├── preferences_helper.py ├── profile_helper.py ├── storage_helper.py └── xpaths.py └── session.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/README.md -------------------------------------------------------------------------------- /auto_swipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/auto_swipe.py -------------------------------------------------------------------------------- /quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/quickstart.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/scraper.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | # Inside of setup.cfg 2 | [metadata] 3 | description-file = README.md 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/setup.py -------------------------------------------------------------------------------- /tinderbotz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/__init__.py -------------------------------------------------------------------------------- /tinderbotz/addproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/addproxy.py -------------------------------------------------------------------------------- /tinderbotz/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinderbotz/helpers/constants_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/constants_helper.py -------------------------------------------------------------------------------- /tinderbotz/helpers/email_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/email_helper.py -------------------------------------------------------------------------------- /tinderbotz/helpers/geomatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/geomatch.py -------------------------------------------------------------------------------- /tinderbotz/helpers/geomatch_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/geomatch_helper.py -------------------------------------------------------------------------------- /tinderbotz/helpers/loadingbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/loadingbar.py -------------------------------------------------------------------------------- /tinderbotz/helpers/login_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/login_helper.py -------------------------------------------------------------------------------- /tinderbotz/helpers/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/match.py -------------------------------------------------------------------------------- /tinderbotz/helpers/match_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/match_helper.py -------------------------------------------------------------------------------- /tinderbotz/helpers/preferences_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/preferences_helper.py -------------------------------------------------------------------------------- /tinderbotz/helpers/profile_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/profile_helper.py -------------------------------------------------------------------------------- /tinderbotz/helpers/storage_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/storage_helper.py -------------------------------------------------------------------------------- /tinderbotz/helpers/xpaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/helpers/xpaths.py -------------------------------------------------------------------------------- /tinderbotz/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frederikme/TinderBotz/HEAD/tinderbotz/session.py --------------------------------------------------------------------------------