-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #587 from davidteather/nightly
V3.9.6
- Loading branch information
Showing
17 changed files
with
362 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Generate Docs | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
- nightly | ||
- 'releases/*' | ||
|
||
jobs: | ||
doc-create: | ||
timeout-minutes: 30 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup dependencies | ||
run: | | ||
pip install -r requirements.txt | ||
pip install pdoc3 | ||
- name: Generate Docs | ||
run: | | ||
pdoc --html --force -o ./docs TikTokApi | ||
mv docs/TikTokApi/* docs/ | ||
rm -r docs/TikTokApi | ||
- name: Push | ||
run: | | ||
git config --global user.name 'David Teather' | ||
git config --global user.email 'davidteather@users.noreply.github.com' | ||
git commit -am "Automated Doc Generation" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from TikTokApi.tiktok import TikTokApi | ||
from TikTokApi.tiktokuser import TikTokUser | ||
from TikTokApi.tiktokuser import TikTokUser |
Oops, something went wrong.