A Python library to check TikTok account binding status and supporter level.
Project description
TikTok Account Checker Library
هذه مكتبة بايثون تمكنك من فحص حسابات TikTok للحصول على معلومات حول حالة الربط (البريد الإلكتروني، الهاتف، OAuth، مفتاح المرور) ومستوى الدعم.
الاستخدام
يمكنك استيراد الدالة check_tiktok_account مباشرة من المكتبة بعد تثبيتها.
مثال
from tiktok_account_checker import check_tiktok_account
# فحص حساب TikTok
username_to_check = "tiktok"
result = check_tiktok_account(username_to_check)
if result["status"] == "success":
print(f"--- معلومات حساب @{result["username"]} ---")
passkey_status = "يوجد ربط مخفي ⚠️" if result["has_passkey"] else "لا يوجد ربط مخفي 🟢"
oauth_status = "يوجد ربط خارجي ⚠️" if result["has_oauth"] else "لا يوجد ربط خارجي 🟢"
phone_icon = "✔️" if result["has_mobile"] else "❌"
email_icon = "✔️" if result["has_email"] else "❌"
level_text = result["supporter_level"] if result["supporter_level"] is not None else "غير متاح"
print(f" {passkey_status}")
print(f" {oauth_status}")
print(f" الرقم: {phone_icon} | الايميل: {email_icon} | مستوى الدعم: {level_text}")
print("-" * 25)
else:
print(f" حدث خطأ أثناء فحص @{username_to_check}: {result["message"]}")
print("-" * 25)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tiktok_account_checker-0.1.0.tar.gz.
File metadata
- Download URL: tiktok_account_checker-0.1.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
528b9789db15be933b962cffbb9e9211a5345fddf11a0ac8bb27f02b267da634
|
|
| MD5 |
a15689f944519e517a738f9cdfd9cd87
|
|
| BLAKE2b-256 |
31c5fc71fd5e30b9f918c536213179d12efd282e439a254194ef05642e0e5031
|
File details
Details for the file tiktok_account_checker-0.1.0-py3-none-any.whl.
File metadata
- Download URL: tiktok_account_checker-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e928dfef80d9f32d33af1988bd662eae7e16596134668a1cbabd1f5add83bcf
|
|
| MD5 |
88e9e2e7379d0b393b7e03a85ac51520
|
|
| BLAKE2b-256 |
2a83e2acc25b4e5503786a85b1c832a22c87f816f591ef6db98d86cfa7bfd64c
|