5 Commits
v2.0.2 ... main

Author SHA1 Message Date
Tristan Lee
2a4af674ef Merge pull request #30 from bellingcat/change-default-limit
Reduce video limit to avoid error
2024-03-11 18:54:51 -05:00
Galen Reich
3f4fd2606b Bump version 2024-03-08 14:50:07 +00:00
Galen Reich
d2fb0cc484 change video limit to avoid error 2024-03-08 14:44:55 +00:00
Tristan Lee
18e2c4de3e Merge pull request #26 from bellingcat/error-module
used updated Playwright error module in import
2023-12-08 05:19:17 -06:00
Tristan Lee
6369e9579a used updated Playwright error module in import 2023-12-08 05:13:03 -06:00
3 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ from tenacity import (
TryAgain,
wait_exponential,
)
from playwright._impl._api_types import Error
from playwright._impl._errors import Error
from TikTokApi import TikTokApi

View File

@@ -69,7 +69,7 @@ def create_parser():
"--limit",
type=int,
help="Maximum number of videos to download for each hashtag",
default=1000,
default=35,
)
parser.add_argument(
"-v",

View File

@@ -2,7 +2,7 @@ _MAJOR = "2"
_MINOR = "0"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "2"
_PATCH = "4"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""