An unofficial api wrapper for tinder. For more examples, check the example folder
Project description
TinderApi
An unofficial api wrapper for tinder. For more examples, check the tests folder.
from TinderApi import Tinder
tinder = Tinder(debug=True, x_auth_token="your_auth_token")
users_to_swipe = tinder.swipe.get_users()
for user in users_to_swipe:
liked = tinder.swipe.like_user(user["user_id"]) # LIKE USER
print(liked) # -> {'status': 200, 'match': False, 'user_id': 'some_user_id', 'likes_left': 100}
Login to tinder
from TinderApi import Tinder
tinder = Tinder(debug=True)
tinder.login(
"your_phone_number",
"your_email",
store_auth_token=True
)
Register a new account
from TinderApi import Tinder
tinder = Tinder(debug=True)
fields = [
{
"data": "1995-10-10",
"name": "birth_date"
},
{
"data": 0,
"name": "gender"
},
{
"data": False,
"name": "show_gender_on_profile"
},
{
"data": [1],
"name": "interested_in_gender"
},
{
"data": {"checked": False, "should_show_option": False},
"name": "show_same_orientation_first"
},
{
"data": "David",
"name": "name"
},
{
"data": False,
"name": "show_orientation_on_profile"
}
]
tinder.register(
phone_number="", # ONLY USA NUMS
email="",
fields=fields,
photo_path="photo1.jpg",
store_account_data=True
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
MTinderApi-0.0.1.tar.gz
(16.8 kB
view details)
Built Distribution
File details
Details for the file MTinderApi-0.0.1.tar.gz
.
File metadata
- Download URL: MTinderApi-0.0.1.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | adf0aea0828794a6ebea6bdb55ef1ce13efc0dbe508b81ac610c9f24b63ab380 |
|
MD5 | 7c56bb0601fc24e461b5eba1d9bc9818 |
|
BLAKE2b-256 | bf3d064d438bdf71d03dd49d2d9dc78692f5fe2af579083dd9757f2ba4f8fab8 |
File details
Details for the file MTinderApi-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: MTinderApi-0.0.1-py3-none-any.whl
- Upload date:
- Size: 23.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb7d2aed78548d61436c203077697cbe90dca6d4c45bc7b35559df3f2ab07de6 |
|
MD5 | fb9b2e5b798780b90caf0ab055c211cf |
|
BLAKE2b-256 | 35353374b79b240f4d3ce38eaa222714158cf97e9691d2bc219ab571a036c8db |