mirror of
https://github.com/bellingcat/tiktok-hashtag-analysis.git
synced 2026-06-10 20:38:30 +03:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7b63b9f349 | ||
|
|
e1ac3b5057 |
@@ -16,7 +16,7 @@ You should now be ready to start using it.
|
||||
## About the tool
|
||||
### Command-line arguments
|
||||
```
|
||||
python3 tiktok-hashtag-analysis --help
|
||||
tiktok-hashtag-analysis --help
|
||||
usage: tiktok-hashtag-analysis [-h] [-t [T ...]] [-f F] [-p] [-v] [-ht HASHTAG] [-n NUMBER] [-plt] [-d] {download,frequencies}
|
||||
|
||||
Analyze hashtags within posts scraped from TikTok.
|
||||
|
||||
@@ -13,8 +13,6 @@ from typing import List, Tuple, Dict, Any
|
||||
import matplotlib.pyplot as plt
|
||||
import matplotlib.ticker as mtick
|
||||
import seaborn as sns
|
||||
from tiktok_hashtag_analysis.file_methods import check_file, check_existence
|
||||
from tiktok_hashtag_analysis.global_data import IMAGES, FILES
|
||||
|
||||
warnings.filterwarnings("ignore", message="Glyph (.*) missing from current font")
|
||||
sns.set_theme(style="darkgrid")
|
||||
|
||||
@@ -11,9 +11,9 @@ import os
|
||||
import time
|
||||
from typing import List, Tuple, Dict, Any, Optional
|
||||
from tempfile import TemporaryDirectory
|
||||
import tiktok_hashtag_analysis.global_data
|
||||
from tiktok_hashtag_analysis import global_data
|
||||
import tiktok_hashtag_analysis.file_methods as file_methods
|
||||
import tiktok_hashtag_analysis.data_methods
|
||||
from tiktok_hashtag_analysis import data_methods
|
||||
|
||||
|
||||
def get_hashtag_list(file_name: str) -> List[str]:
|
||||
|
||||
@@ -3,7 +3,7 @@ _MAJOR = "1"
|
||||
_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 = ""
|
||||
|
||||
Reference in New Issue
Block a user