Merge pull request #30 from bellingcat/change-default-limit

Reduce video limit to avoid error
This commit is contained in:
Tristan Lee
2024-03-11 18:54:51 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

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 = "3"
_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 = ""