tikapi 3.1.60__tar.gz → 3.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tikapi-3.2.1/PKG-INFO +66 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/setup.py +1 -1
- {tikapi-3.1.60 → tikapi-3.2.1}/tikapi/api.py +18 -10
- tikapi-3.2.1/tikapi.egg-info/PKG-INFO +66 -0
- tikapi-3.1.60/PKG-INFO +0 -65
- tikapi-3.1.60/tikapi.egg-info/PKG-INFO +0 -65
- {tikapi-3.1.60 → tikapi-3.2.1}/MANIFEST.in +0 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/README.md +0 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/setup.cfg +0 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/tikapi/__init__.py +0 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/tikapi.egg-info/SOURCES.txt +0 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/tikapi.egg-info/dependency_links.txt +0 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/tikapi.egg-info/not-zip-safe +0 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/tikapi.egg-info/requires.txt +0 -0
- {tikapi-3.1.60 → tikapi-3.2.1}/tikapi.egg-info/top_level.txt +0 -0
tikapi-3.2.1/PKG-INFO
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tikapi
|
|
3
|
+
Version: 3.2.1
|
|
4
|
+
Summary: TikAPI | TikTok Unofficial API
|
|
5
|
+
Home-page: https://www.tikapi.io
|
|
6
|
+
Author: TikAPI
|
|
7
|
+
Author-email: contact@tikapi.io
|
|
8
|
+
License: TikAPI
|
|
9
|
+
Keywords: tikapi,tiktok api,tiktok scraper,tiktok,TikTokApi
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests
|
|
12
|
+
|
|
13
|
+
# Unofficial TikTok API <img src='https://img.shields.io/npm/v/tikapi'> <img src='https://img.shields.io/pypi/v/tikapi'>
|
|
14
|
+
|
|
15
|
+
A fully managed hassle-free TikTok API solution with OAuth capabilities.
|
|
16
|
+
|
|
17
|
+
Get started by getting an API Key at https://www.tikapi.io
|
|
18
|
+
|
|
19
|
+
*Note: Spam/Abuse and other use cases that are against community guidelines are forbidden.*
|
|
20
|
+
|
|
21
|
+
SDK & Documentation made with [Rests](https://github.com/el1s7/rests)
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
Node.js
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm i tikapi@latest
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Python 3
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip3 install tikapi
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Usage
|
|
38
|
+
|
|
39
|
+
### Javascript
|
|
40
|
+
ES6 Import Syntax is recommended
|
|
41
|
+
```javascript
|
|
42
|
+
import TikAPI from 'tikapi';
|
|
43
|
+
|
|
44
|
+
const api = TikAPI("myAPIKey");
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
#### Common JS
|
|
48
|
+
Import it like this in Node with CommonJS to get the Intellisense Support & Types
|
|
49
|
+
```javascript
|
|
50
|
+
const TikAPI = require('tikapi').default;
|
|
51
|
+
|
|
52
|
+
const api = TikAPI("myAPIKey");
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Python
|
|
56
|
+
```python
|
|
57
|
+
from tikapi import TikAPI
|
|
58
|
+
|
|
59
|
+
api = TikAPI("myAPIKey")
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Documentation
|
|
63
|
+
|
|
64
|
+
Check out the documentation for full code samples on all endpoints
|
|
65
|
+
|
|
66
|
+
https://www.tikapi.io/documentation/
|
|
@@ -464,6 +464,14 @@ def Rests(options: dict):
|
|
|
464
464
|
|
|
465
465
|
return wrap({"path":"/public/check","help":"Get a user's profile information","comment":"Get profile information and statistics from a username.","params":{"username":{"help":"The TikTok user username","validate":"^([a-zA-Z0-9_.]+|https?://vm.tiktok.com/[a-zA-Z0-9]+/?)$","type":"string","example":"lilyachty"},"user_id":{"help":"Optionally you can get the profile information using the user_id parameter.","type":"string","validate":"^[0-9]+$"}},"$other":{"openapi":{"hideParams":["user_id","session_id"],"showExamplesInCode":["username"]}},"method":"GET"}, cls.__get_options__(), "Public.check")(username=username, user_id=user_id, country=country, session_id=session_id, **otherParams)
|
|
466
466
|
|
|
467
|
+
@classmethod
|
|
468
|
+
def checkV3(cls, username: str = None, user_id: str = None, secUid: str = None, country: str = None, session_id: int = None, **otherParams) -> APIResponse:
|
|
469
|
+
'''
|
|
470
|
+
Get a user's profile information (alternative endpoint)
|
|
471
|
+
'''
|
|
472
|
+
|
|
473
|
+
return wrap({"path":"/public/check/v3","help":"Get a user's profile information (alternative endpoint)","comment":"Get profile information and statistics from a username. This endpoint consumes significantly more bandwidth than the other.","params":{"username":{"help":"The TikTok user username","validate":"^([a-zA-Z0-9_.]+|https?://vm.tiktok.com/[a-zA-Z0-9]+/?)$","type":"string","example":"lilyachty"},"user_id":{"help":"Optionally you can get the profile information using the user_id parameter.","type":"string","validate":"^[0-9]+$"},"secUid":{"validate":"^(.*?){30,}$","help":"Optionally you can get the profile information using the secUid parameter.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud"}},"$other":{"openapi":{"hide":True,"hideParams":["session_id"]}},"method":"GET"}, cls.__get_options__(), "Public.checkV3")(username=username, user_id=user_id, secUid=secUid, country=country, session_id=session_id, **otherParams)
|
|
474
|
+
|
|
467
475
|
@classmethod
|
|
468
476
|
def posts(cls, secUid: str = None, count: int = Default(30), cursor: str = None, user_id: str = None, country: str = None, session_id: int = None, **otherParams) -> APIResponse:
|
|
469
477
|
'''
|
|
@@ -481,20 +489,20 @@ def Rests(options: dict):
|
|
|
481
489
|
return wrap({"help":"Get a user's liked posts","path":"/public/likes","comment":"<a target=\"_blank\" href='https://helpdesk.tikapi.io/portal/en/kb/articles/how-to-download-tiktok-videos'>\nLearn more about downloading videos</a>\n\n","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud","required":True},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"cursor":{"help":"The starting point of the items list. Returned in every response, should be included in the next request for iteration.<br><br> *(A simple iteration method is already implemented in the Javascript & Python libraries as seen in the request samples)*","type":"string","validate":"^[0-9]+$"}},"$other":{"openapi":{"hideParams":["session_id"]}},"method":"GET"}, cls.__get_options__(), "Public.likes")(secUid=secUid, count=count, cursor=cursor, country=country, session_id=session_id, **otherParams)
|
|
482
490
|
|
|
483
491
|
@classmethod
|
|
484
|
-
def followersList(cls, secUid: str = None, count: int = Default(30), nextCursor:
|
|
492
|
+
def followersList(cls, secUid: str = None, count: int = Default(30), nextCursor: int = None, country: str = None, session_id: int = None, **otherParams) -> APIResponse:
|
|
485
493
|
'''
|
|
486
494
|
Get a user's followers list
|
|
487
495
|
'''
|
|
488
496
|
count = None if count is cls.followersList.__defaults__[1] else count
|
|
489
|
-
return wrap({"help":"Get a user's followers list","comment":"Get followers list of any public profile.","path":"/public/followers","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud","required":True},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"nextCursor":{"type":"
|
|
497
|
+
return wrap({"help":"Get a user's followers list","comment":"Get followers list of any public profile.","path":"/public/followers","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud","required":True},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"nextCursor":{"type":"number","help":"A iteration parameter returned in each response, should be included in the next requests to get the next items."}},"$other":{"openapi":{"hideParams":["session_id"]}},"method":"GET"}, cls.__get_options__(), "Public.followersList")(secUid=secUid, count=count, nextCursor=nextCursor, country=country, session_id=session_id, **otherParams)
|
|
490
498
|
|
|
491
499
|
@classmethod
|
|
492
|
-
def followingList(cls, secUid: str = None, count: int = Default(30), nextCursor:
|
|
500
|
+
def followingList(cls, secUid: str = None, count: int = Default(30), nextCursor: int = None, country: str = None, session_id: int = None, **otherParams) -> APIResponse:
|
|
493
501
|
'''
|
|
494
502
|
Get a user's following list
|
|
495
503
|
'''
|
|
496
504
|
count = None if count is cls.followingList.__defaults__[1] else count
|
|
497
|
-
return wrap({"help":"Get a user's following list","comment":"Get following list of any public profile.","path":"/public/following","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud","required":True},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"nextCursor":{"type":"
|
|
505
|
+
return wrap({"help":"Get a user's following list","comment":"Get following list of any public profile.","path":"/public/following","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud","required":True},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"nextCursor":{"type":"number","help":"A iteration parameter returned in each response, should be included in the next requests to get the next items."}},"$other":{"openapi":{"hideParams":["session_id"]}},"method":"GET"}, cls.__get_options__(), "Public.followingList")(secUid=secUid, count=count, nextCursor=nextCursor, country=country, session_id=session_id, **otherParams)
|
|
498
506
|
|
|
499
507
|
@classmethod
|
|
500
508
|
def explore(cls, count: int = Default(30), country: str = None, session_id: int = None, **otherParams) -> APIResponse:
|
|
@@ -606,7 +614,7 @@ def Rests(options: dict):
|
|
|
606
614
|
Discover users, music, hashtags
|
|
607
615
|
'''
|
|
608
616
|
count = None if count is cls.discover.__defaults__[1] else count
|
|
609
|
-
return wrap({"help":"Discover users, music, hashtags","comment":"Get popular users, music or hashtag. You can also include *Account Key* to show personalized results for the user.","path":"/public/discover/{category}","params":{"category":{"help":"The discover category","example":"users","in":["users","music","hashtag"],"location":"path","type":"string","required":True},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"offset":{"help":"The starting offset of items list. Returned in every response, should be included in the next request for iteration.<br><br> *(A simple iteration method is already implemented in the Javascript & Python libraries as seen in the request samples)*","type":"number","validate":"^[0-9]+$"}},"$other":{"openapi":{"hideParams":["session_id"]}},"method":"GET"}, cls.__get_options__(), "Public.discover")(category=category, count=count, offset=offset, country=country, session_id=session_id, **otherParams)
|
|
617
|
+
return wrap({"help":"Discover users, music, hashtags","comment":"Get popular users, music or hashtag. You can also include *Account Key* to show personalized results for the user.","path":"/public/discover/{category}","params":{"category":{"help":"The discover category","example":"users","in":["users","music","hashtag"],"location":"path","type":"string","required":True},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"offset":{"help":"The starting offset of items list. Returned in every response, should be included in the next request for iteration.<br><br> *(A simple iteration method is already implemented in the Javascript & Python libraries as seen in the request samples)*","type":"number","validate":"^[0-9]+$"}},"$other":{"openapi":{"fields":{"deprecated":True},"hideParams":["session_id"]}},"method":"GET"}, cls.__get_options__(), "Public.discover")(category=category, count=count, offset=offset, country=country, session_id=session_id, **otherParams)
|
|
610
618
|
|
|
611
619
|
@classmethod
|
|
612
620
|
def discoverKeyword(cls, keyword: str = None, country: str = None, session_id: int = None, **otherParams) -> APIResponse:
|
|
@@ -614,7 +622,7 @@ def Rests(options: dict):
|
|
|
614
622
|
Discover by keyword
|
|
615
623
|
'''
|
|
616
624
|
|
|
617
|
-
return wrap({"help":"Discover by keyword","comment":"Get popular posts, users, music or hashtags from a keyword. <br><br>Limited to only a few items. If you want more, try using the <a href='#tag/Public/operation/public.search'>Search</a> endpoint instead.","path":"/public/discover/keyword","params":{"keyword":{"required":True,"example":"lilyachty","type":"string"}},"$other":{"openapi":{"hideParams":["session_id"]}},"method":"GET"}, cls.__get_options__(), "Public.discoverKeyword")(keyword=keyword, country=country, session_id=session_id, **otherParams)
|
|
625
|
+
return wrap({"help":"Discover by keyword","comment":"Get popular posts, users, music or hashtags from a keyword. <br><br>Limited to only a few items. If you want more, try using the <a href='#tag/Public/operation/public.search'>Search</a> endpoint instead.","path":"/public/discover/keyword","params":{"keyword":{"required":True,"example":"lilyachty","type":"string"}},"$other":{"openapi":{"fields":{"deprecated":True},"hideParams":["session_id"]}},"method":"GET"}, cls.__get_options__(), "Public.discoverKeyword")(keyword=keyword, country=country, session_id=session_id, **otherParams)
|
|
618
626
|
|
|
619
627
|
@classmethod
|
|
620
628
|
def search(cls, category: str = None, query: str = None, session_id: int = None, nextCursor: str = None, country: str = None, **otherParams) -> APIResponse:
|
|
@@ -1081,20 +1089,20 @@ def Rests(options: dict):
|
|
|
1081
1089
|
return wrap({"help":"Get following list","comment":"Get current user's following list","path":"/user/following/v1","params":{"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"cursor":{"help":"The starting point of the items list. Returned in every response, should be included in the next request for iteration.<br><br> *(A simple iteration method is already implemented in the Javascript & Python libraries as seen in the request samples)*","type":"number","validate":"^[0-9]+$"}},"$other":{"openapi":{"hide":True,"fields":{"tags":["Followers"],"security":[{"apiKey":[],"accountKey":["view_followers"]}]}}},"method":"GET"}, cls.__get_options__(), "User.followingV1")(count=count, cursor=cursor, **otherParams)
|
|
1082
1090
|
|
|
1083
1091
|
@classmethod
|
|
1084
|
-
def following(cls, secUid: str = None, count: int = Default(30), nextCursor:
|
|
1092
|
+
def following(cls, secUid: str = None, count: int = Default(30), nextCursor: int = None, **otherParams) -> APIResponse:
|
|
1085
1093
|
'''
|
|
1086
1094
|
Get following list
|
|
1087
1095
|
'''
|
|
1088
1096
|
count = None if count is cls.following.__defaults__[1] else count
|
|
1089
|
-
return wrap({"help":"Get following list","comment":"Get current user following list (or a friends by specifying the secUid).","path":"/user/following","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud"},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"nextCursor":{"type":"
|
|
1097
|
+
return wrap({"help":"Get following list","comment":"Get current user following list (or a friends by specifying the secUid).","path":"/user/following","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud"},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"nextCursor":{"type":"number","help":"A iteration parameter returned in each response, should be included in the next requests to get the next items."}},"$other":{"openapi":{"fields":{"tags":["Followers"],"security":[{"apiKey":[],"accountKey":["view_followers"]}]}}},"method":"GET"}, cls.__get_options__(), "User.following")(secUid=secUid, count=count, nextCursor=nextCursor, **otherParams)
|
|
1090
1098
|
|
|
1091
1099
|
@classmethod
|
|
1092
|
-
def followers(cls, secUid: str = None, count: int = Default(30), nextCursor:
|
|
1100
|
+
def followers(cls, secUid: str = None, count: int = Default(30), nextCursor: int = None, **otherParams) -> APIResponse:
|
|
1093
1101
|
'''
|
|
1094
1102
|
Get followers list
|
|
1095
1103
|
'''
|
|
1096
1104
|
count = None if count is cls.followers.__defaults__[1] else count
|
|
1097
|
-
return wrap({"help":"Get followers list","comment":"Get current user followers list (or a friends by specifying the secUid).","path":"/user/followers","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud"},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"nextCursor":{"type":"
|
|
1105
|
+
return wrap({"help":"Get followers list","comment":"Get current user followers list (or a friends by specifying the secUid).","path":"/user/followers","params":{"secUid":{"validate":"^(.*?){30,}$","help":"The TikTok user secUid. You can get this from the <a href='#tag/Public/operation/public.check'>Get profile information</a> endpoint using the username.","type":"string","example":"MS4wLjABAAAAsHntXC3s0AvxcecggxsoVa4eAiT8OVafVZ4OQXxy-9htpnUi0sOYSr0kGGD1Loud"},"count":{"example":30,"default":30,"max":30,"type":"number","help":"Maximum amount of items for one request","validate":"^[0-9]{1,2}$"},"nextCursor":{"type":"number","help":"A iteration parameter returned in each response, should be included in the next requests to get the next items."}},"$other":{"openapi":{"fields":{"tags":["Followers"],"security":[{"apiKey":[],"accountKey":["view_followers"]}]}}},"method":"GET"}, cls.__get_options__(), "User.followers")(secUid=secUid, count=count, nextCursor=nextCursor, **otherParams)
|
|
1098
1106
|
|
|
1099
1107
|
@classmethod
|
|
1100
1108
|
def follow(cls, username: str = None, secUid: str = None, user_id: str = None, **otherParams) -> APIResponse:
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tikapi
|
|
3
|
+
Version: 3.2.1
|
|
4
|
+
Summary: TikAPI | TikTok Unofficial API
|
|
5
|
+
Home-page: https://www.tikapi.io
|
|
6
|
+
Author: TikAPI
|
|
7
|
+
Author-email: contact@tikapi.io
|
|
8
|
+
License: TikAPI
|
|
9
|
+
Keywords: tikapi,tiktok api,tiktok scraper,tiktok,TikTokApi
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests
|
|
12
|
+
|
|
13
|
+
# Unofficial TikTok API <img src='https://img.shields.io/npm/v/tikapi'> <img src='https://img.shields.io/pypi/v/tikapi'>
|
|
14
|
+
|
|
15
|
+
A fully managed hassle-free TikTok API solution with OAuth capabilities.
|
|
16
|
+
|
|
17
|
+
Get started by getting an API Key at https://www.tikapi.io
|
|
18
|
+
|
|
19
|
+
*Note: Spam/Abuse and other use cases that are against community guidelines are forbidden.*
|
|
20
|
+
|
|
21
|
+
SDK & Documentation made with [Rests](https://github.com/el1s7/rests)
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
Node.js
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm i tikapi@latest
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Python 3
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip3 install tikapi
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Usage
|
|
38
|
+
|
|
39
|
+
### Javascript
|
|
40
|
+
ES6 Import Syntax is recommended
|
|
41
|
+
```javascript
|
|
42
|
+
import TikAPI from 'tikapi';
|
|
43
|
+
|
|
44
|
+
const api = TikAPI("myAPIKey");
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
#### Common JS
|
|
48
|
+
Import it like this in Node with CommonJS to get the Intellisense Support & Types
|
|
49
|
+
```javascript
|
|
50
|
+
const TikAPI = require('tikapi').default;
|
|
51
|
+
|
|
52
|
+
const api = TikAPI("myAPIKey");
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Python
|
|
56
|
+
```python
|
|
57
|
+
from tikapi import TikAPI
|
|
58
|
+
|
|
59
|
+
api = TikAPI("myAPIKey")
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Documentation
|
|
63
|
+
|
|
64
|
+
Check out the documentation for full code samples on all endpoints
|
|
65
|
+
|
|
66
|
+
https://www.tikapi.io/documentation/
|
tikapi-3.1.60/PKG-INFO
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: tikapi
|
|
3
|
-
Version: 3.1.60
|
|
4
|
-
Summary: TikAPI | TikTok Unofficial API
|
|
5
|
-
Home-page: https://www.tikapi.io
|
|
6
|
-
Author: TikAPI
|
|
7
|
-
Author-email: contact@tikapi.io
|
|
8
|
-
License: TikAPI
|
|
9
|
-
Description: # Unofficial TikTok API <img src='https://img.shields.io/npm/v/tikapi'> <img src='https://img.shields.io/pypi/v/tikapi'>
|
|
10
|
-
|
|
11
|
-
A fully managed hassle-free TikTok API solution with OAuth capabilities.
|
|
12
|
-
|
|
13
|
-
Get started by getting an API Key at https://www.tikapi.io
|
|
14
|
-
|
|
15
|
-
*Note: Spam/Abuse and other use cases that are against community guidelines are forbidden.*
|
|
16
|
-
|
|
17
|
-
SDK & Documentation made with [Rests](https://github.com/el1s7/rests)
|
|
18
|
-
|
|
19
|
-
## Installation
|
|
20
|
-
|
|
21
|
-
Node.js
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
npm i tikapi@latest
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Python 3
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
pip3 install tikapi
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Usage
|
|
34
|
-
|
|
35
|
-
### Javascript
|
|
36
|
-
ES6 Import Syntax is recommended
|
|
37
|
-
```javascript
|
|
38
|
-
import TikAPI from 'tikapi';
|
|
39
|
-
|
|
40
|
-
const api = TikAPI("myAPIKey");
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
#### Common JS
|
|
44
|
-
Import it like this in Node with CommonJS to get the Intellisense Support & Types
|
|
45
|
-
```javascript
|
|
46
|
-
const TikAPI = require('tikapi').default;
|
|
47
|
-
|
|
48
|
-
const api = TikAPI("myAPIKey");
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
### Python
|
|
52
|
-
```python
|
|
53
|
-
from tikapi import TikAPI
|
|
54
|
-
|
|
55
|
-
api = TikAPI("myAPIKey")
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
## Documentation
|
|
59
|
-
|
|
60
|
-
Check out the documentation for full code samples on all endpoints
|
|
61
|
-
|
|
62
|
-
https://www.tikapi.io/documentation/
|
|
63
|
-
Keywords: tikapi,tiktok api,tiktok scraper,tiktok,TikTokApi
|
|
64
|
-
Platform: UNKNOWN
|
|
65
|
-
Description-Content-Type: text/markdown
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: tikapi
|
|
3
|
-
Version: 3.1.60
|
|
4
|
-
Summary: TikAPI | TikTok Unofficial API
|
|
5
|
-
Home-page: https://www.tikapi.io
|
|
6
|
-
Author: TikAPI
|
|
7
|
-
Author-email: contact@tikapi.io
|
|
8
|
-
License: TikAPI
|
|
9
|
-
Description: # Unofficial TikTok API <img src='https://img.shields.io/npm/v/tikapi'> <img src='https://img.shields.io/pypi/v/tikapi'>
|
|
10
|
-
|
|
11
|
-
A fully managed hassle-free TikTok API solution with OAuth capabilities.
|
|
12
|
-
|
|
13
|
-
Get started by getting an API Key at https://www.tikapi.io
|
|
14
|
-
|
|
15
|
-
*Note: Spam/Abuse and other use cases that are against community guidelines are forbidden.*
|
|
16
|
-
|
|
17
|
-
SDK & Documentation made with [Rests](https://github.com/el1s7/rests)
|
|
18
|
-
|
|
19
|
-
## Installation
|
|
20
|
-
|
|
21
|
-
Node.js
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
npm i tikapi@latest
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Python 3
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
pip3 install tikapi
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Usage
|
|
34
|
-
|
|
35
|
-
### Javascript
|
|
36
|
-
ES6 Import Syntax is recommended
|
|
37
|
-
```javascript
|
|
38
|
-
import TikAPI from 'tikapi';
|
|
39
|
-
|
|
40
|
-
const api = TikAPI("myAPIKey");
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
#### Common JS
|
|
44
|
-
Import it like this in Node with CommonJS to get the Intellisense Support & Types
|
|
45
|
-
```javascript
|
|
46
|
-
const TikAPI = require('tikapi').default;
|
|
47
|
-
|
|
48
|
-
const api = TikAPI("myAPIKey");
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
### Python
|
|
52
|
-
```python
|
|
53
|
-
from tikapi import TikAPI
|
|
54
|
-
|
|
55
|
-
api = TikAPI("myAPIKey")
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
## Documentation
|
|
59
|
-
|
|
60
|
-
Check out the documentation for full code samples on all endpoints
|
|
61
|
-
|
|
62
|
-
https://www.tikapi.io/documentation/
|
|
63
|
-
Keywords: tikapi,tiktok api,tiktok scraper,tiktok,TikTokApi
|
|
64
|
-
Platform: UNKNOWN
|
|
65
|
-
Description-Content-Type: text/markdown
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|