Skip to content

Commit b58a91a

Browse files
committed
Updating ReadMe and increasing version
1 parent d30a82e commit b58a91a

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ This implementation is inspired by [TikTokApi](https://github.com/davidteather/T
2121
- [Get Music](#get-music)
2222
- [Get Videos By Music](#get-videos-by-music)
2323
- [Get Video By Id](#get-video-by-id)
24+
- [Download Video](#download-video)
25+
- [Download Video no Watermark](#download-video-no-watermark)
2426
- [Built With](#built-with)
2527
- [Authors](#authors)
2628
- [License](#license)
@@ -152,12 +154,30 @@ getVideosByMusic(self, music_id, count=30)
152154

153155
#### Get Video By Id
154156
Inputs
155-
* video_id - VIdeo Id, eg - <em>6843481669886954757</em>
157+
* video_id - Video Id, eg - <em>6843481669886954757</em>
156158

157159
```buildoutcfg
158160
getVideoById(self, video_id)
159161
```
160162

163+
#### Download Video
164+
Inputs
165+
* video_id - Video Id, eg - <em>6843481669886954757</em>
166+
* save_path - Path where the downloaded video should be saved
167+
168+
```buildoutcfg
169+
downloadVideoById(self, video_id, save_path)
170+
```
171+
172+
#### Download Video No Watermark
173+
Inputs
174+
* video_id - Video Id, eg - <em>6843481669886954757</em>
175+
* save_path - Path where the downloaded video should be saved
176+
177+
```buildoutcfg
178+
downloadVideoByIdNoWatermark(self, video_id, save_path)
179+
```
180+
161181
## Built With
162182

163183
* [Python 3.7](https://www.python.org/)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
setuptools.setup(
77
name="PyTikTokAPI",
88
packages=setuptools.find_packages(),
9-
version="0.0.2",
9+
version="0.0.3",
1010
license='MIT',
1111
author="Avilash Kumar",
1212
author_email="avilashkumar4@gmail.com",

0 commit comments

Comments
 (0)