├── .gitignore ├── LICENSE ├── __init__.py ├── curl.md ├── example.py ├── generic_request.py ├── grindr_user.py ├── paths.py ├── readme.md ├── requirements.txt ├── utils.py └── xmpp.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/* 2 | .vscode/settings.json 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/curl.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/example.py -------------------------------------------------------------------------------- /generic_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/generic_request.py -------------------------------------------------------------------------------- /grindr_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/grindr_user.py -------------------------------------------------------------------------------- /paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/paths.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycurl==7.45.2 2 | pygeohash==1.2.0 3 | websocket-client 4 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/utils.py -------------------------------------------------------------------------------- /xmpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slenderman00/grindr-access/HEAD/xmpp.py --------------------------------------------------------------------------------