Skip to content

Commit 438e6ce

Browse files
committed
V1.0.4 beta
1 parent c63a842 commit 438e6ce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+3410
-925
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md
2+
include LICENSE

README.en.md

Lines changed: 0 additions & 78 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div align="center">
44
<h1><a href="https://pypi.org/project/tikhub">TikHub_API</a></h1>
5-
<a href="https://github.com/TikHubIO/TikHub_API_PyPi/blob/main/README.en.md">English</a> | <a href="https://github.com/TikHubIO/TikHub_API_PyPi/blob/main/README.md">简体中文</a>
5+
<a href="https://github.com/TikHubIO/TikHub-API-Python-SDK/blob/main/README.en.md">English</a> | <a href="https://github.com/TikHubIO/TikHub-API-Python-SDK/blob/main/README.md">简体中文</a>
66
</div>
77
<h4>简介</h4>
88
<p><a href="https://tikhub.io">TikHub</a>是抖音与TikTok非官方的RESTful API平台。</p>
@@ -15,16 +15,15 @@
1515

1616
<hr>
1717
<h4>购买</h4>
18-
<p>Website(🚧ing): <a href="dash.tikhub.io">dash.tikhub.io</a></p>
19-
<p>API Website: <a href="api.tikhub.io">api.tikhub.io</a></p>
20-
<p>Discord(💳support): <a href="https://discord.gg/kk23BGeYrJ">https://discord.gg/kk23BGeYrJ</a></p>
18+
<p>Website(🚧ing): <a href="https://tikhub.io">tikhub.io</a></p>
19+
<p>API Document: <a href="https://api.tikhub.io">api.tikhub.io</a></p>
20+
<p>Discord(Support): <a href="https://discord.gg/kk23BGeYrJ">https://discord.gg/kk23BGeYrJ</a></p>
2121
<p>Github: <a href="https://github.com/TikHubIO">https://github.com/TikHubIO</a></p>
2222
<p>Email: <a href="mailto:tikhub.io@proton.me">tikhub.io@proton.me</a></p>
23-
<p>WeChat/微信: Lqiu1003912_</p>
2423
<hr>
2524
<h4>公告</h4>
2625
<p>TikHub的API将使用<strong>免费加付费</strong>的形式运行。</p>
27-
<p>登录后,通过签到可以随机获得50-100次API请求,每24小时可签到一次。</p
26+
<p>登录后,通过签到可以随机获得50-100次API请求,每24小时可签到一次。</p>
2827
<hr>
2928

3029
## 使用示例

dist/tikhub-1.0.4-py3-none-any.whl

35.3 KB
Binary file not shown.

dist/tikhub-1.0.4.tar.gz

25.4 KB
Binary file not shown.

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
httpx~=0.27.0
2+
rich~=13.7.1
3+
setuptools~=68.2.0

setup.py

Lines changed: 15 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,36 +6,29 @@
66
# 2.Upload to PyPi
77
# twine upload dist/*
88

9-
import setuptools
9+
from setuptools import setup, find_packages
1010

1111
with open("README.md", "r", encoding='utf8') as fh:
1212
long_description = fh.read()
1313

14-
setuptools.setup(
15-
name='tikhub',
16-
author='TikHub.io',
17-
version='1.0.3',
18-
license='Apache V2.0 License',
19-
description='TikHub Unofficial 抖音/TikTok/小红书 RESTful API',
14+
setup(
15+
name="tikhub",
16+
version="1.0.4",
17+
author="TikHub.io",
18+
author_email="tikhub.io@proton.me",
19+
description="A Python SDK for TikHub RESTful API",
2020
long_description=long_description,
2121
long_description_content_type="text/markdown",
22-
author_email='tikhub.io@proton.me',
23-
url='https://github.com/orgs/TikHubIO',
24-
packages=setuptools.find_packages(),
25-
keywords='TikTok, Douyin, 抖音, 小红书, Scraper, Crawler, API, Download, Video, No Watermark, Async',
26-
# 依赖包
27-
install_requires=[
28-
'aiohttp',
29-
"tenacity",
30-
],
22+
url="https://github.com/TikHubIO/TikHub-API-SDK-Python",
23+
packages=find_packages(),
3124
classifiers=[
3225
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3.6",
34-
"Programming Language :: Python :: 3.7",
35-
"Programming Language :: Python :: 3.8",
36-
"Programming Language :: Python :: 3.9",
37-
"Programming Language :: Python :: 3.10",
38-
"Programming Language :: Python :: 3 :: Only",
26+
"License :: OSI Approved :: Apache Software License",
27+
"Operating System :: OS Independent",
3928
],
4029
python_requires='>=3.6',
30+
install_requires=[
31+
"httpx>=0.27.1",
32+
"rich~=13.7.1",
33+
],
4134
)

test/test.py

Lines changed: 0 additions & 49 deletions
This file was deleted.

tikhub/AiohttpClient.py

Lines changed: 0 additions & 99 deletions
This file was deleted.

0 commit comments

Comments
 (0)