tiktok-hashtag-analysis


Nametiktok-hashtag-analysis JSON
Version 2.0.3 PyPI version JSON
download
home_pagehttps://github.com/bellingcat/tiktok-hashtag-analysis
SummaryAnalyze hashtags within posts scraped from TikTok
upload_time2023-12-08 11:29:23
maintainer
docs_urlNone
authorBellingcat
requires_python
licenseMIT License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # TikTok hashtag analysis toolset 

The tool helps to download posts and videos from TikTok for a given set of hashtags over a period of time. Users can create a growing database of posts for specific hashtags which can then be used for further hashtag analysis. It uses the [TikTokApi](https://github.com/davidteather/TikTok-Api) Python package  to download the posts and uses [yt-dlp](https://github.com/yt-dlp/yt-dlp) to download the videos.

[![PyPI version](https://badge.fury.io/py/tiktok-hashtag-analysis.svg)](https://badge.fury.io/py/tiktok-hashtag-analysis)

## Pre-requisites
1. Make sure you have Python 3.9 or a later version installed
2. Install the tool with pip: `pip install tiktok-hashtag-analysis`
   - Alternatively you can install directly from the latest version on GitHub: `pip install git+https://github.com/bellingcat/tiktok-hashtag-analysis`
3. Make sure [Playwright](https://playwright.dev/python/docs/intro) is properly installed by running the command `python -m playwright install`

You should now be ready to start using it.

## About the tool
### Command-line arguments
```
usage: tiktok-hashtag-analysis [-h] [--file FILE] [-d] [--number NUMBER] [-p] [-t] [--output-dir OUTPUT_DIR] [--config CONFIG] [--log LOG] [--limit LIMIT] [-v] [--headed] [hashtags ...]

Analyze hashtags within posts scraped from TikTok.

positional arguments:
  hashtags              List of hashtags to scrape

optional arguments:
  -h, --help            show this help message and exit
  --file FILE           File name containing list of hashtags to scrape
  -d, --download        Download video files corresponding to scraped posts
  --number NUMBER       The number of co-occurring hashtags to analyze
  -p, --plot            Plot the most common co-occurring hashtags
  -t, --table           Print a table of the most common co-occurring hashtags
  --output-dir OUTPUT_DIR
                        Directory to save scraped data and visualizations to
  --config CONFIG       File name of configuration file to store TikTok credentials to
  --log LOG             File to write logs to
  --limit LIMIT         Maximum number of videos to download for each hashtag
  -v, --verbose         Increase output verbosity
  --headed              Don't use headless version of TikTok scraper
```

### Structure of output data
```
$ tree ../data
../data
├── london
│   ├── plots
│   ├── posts.json
│   └── media
├── newyork
│   ├── plots
│   ├── posts.json
│   └── media
└── paris
│   ├── plots
│   ├── posts.json
│   └── media
```


The `data` folder contains all the downloaded data as shown in the tree diagram above. 
- Each hashtag has a folder with two subfolders `plots` and `media` that store plots of the most common co-occurring hashtags, and media downloaded from the posts. The posts are stored in the `posts.json` file, and downloaded media is stored as `.mp4` files (for videos) or audio and image files (for image galleries) in the `media` folder.


## How to use
### Post downloading
Running the `tiktok-hashtag-analysis` command with the following options will scrape posts that contain the hashtags `#london`, `#paris`, or `#newyork`:

    tiktok-hashtag-analysis london paris newyork

and will produce an output similar to the following log:

    $ tiktok-hashtag-analysis download london paris newyork
    Hashtags to scrape: ['london', 'paris', 'newyork']
    Scraped 963 posts containing the hashtag 'london'
    Scraped 961 posts containing the hashtag 'paris'
    Scraped 940 posts containing the hashtag 'newyork'
    Successfully scraped 2864 total entries

- The list of hashtags to scrape is specified as a positional argument

### Video downloading
Running the `tiktok-hashtag-analysis` script with the following options will scrape trending posts containing the hashtag `#london`:
`tiktok-hashtag-analysis london --download`

- The `--download` flag specifies that video files for scraped posts should be downloaded

Note that video downloading is a time and data rate consuming task, as a result we recommend using one hashtag at a time when using the `--download` flag to avoid complications.

## Analyzing results 
### Most common co-occurring hashtags
In addition to scraping data and downloading media, the `tiktok-hashtag-analysis` script can also analyze the frequencies of the most common co-occurring hashtags in a given set of posts.

Assume we want to analyze the 20 most frequently co-occurring hashtags in the downloaded posts of the `#london` hashtag.

- The results can be plotted and saved as a PNG file by executing the following command: 

    `tiktok-hashtag-analysis london --number 20 --plot`
    
    which will produce a figure similar to that shown below:
    <p align="center">
        <img src="https://user-images.githubusercontent.com/18430739/166878928-d146b352-b68c-4ab4-bd2c-feb2f0140df9.png" height="500" alt="Top 20 most frequent common hashtags in posts containing the #london hashtag">
    </p>
    
    In the above plot, the highest occurrence is the `#fyp` hashtag, which is tagged in more than half of all posts containing the `#london` hashtag.

- The results can be displayed in tabular form by executing the following command:

    `tiktok-hashtag-analysis london --number 20 --table`

    which will produce a terminal output similar to the following:
    ```
    Co-occurring hashtags for #london posts
    Rank     Hashtag                        Occurrences     Frequency      
    0        london                         881             1.0000
    1        fyp                            399             0.4529
    2        uk                             174             0.1975
    3        foryou                         168             0.1907
    4        viral                          152             0.1725
    5        foryoupage                     137             0.1555
    6        fypシ                           73              0.0829
    7        funny                          54              0.0613
    8        tiktok                         43              0.0488
    9        trending                       43              0.0488
    10       british                        41              0.0465
    11       england                        38              0.0431
    12       xyzbca                         34              0.0386
    13       fy                             33              0.0375
    14       usa                            33              0.0375
    15       love                           29              0.0329
    16       comedy                         25              0.0284
    17       royalfamily                    23              0.0261
    18       queen                          23              0.0261
    19       queenelizabeth                 22              0.0250
    Total posts: 881
    ```

    The `Frequency` column shows the ratio of the occurrence to the total number of downloaded posts.

### Contributing
To run the build-in tests in the `tests/` directory, first install the test dependency packages:

```
pip install .[dev]
```

and then run the tests using the following command:

```
pytest
```

This repo uses [black](https://github.com/psf/black) to format source code and [mypy](https://mypy.readthedocs.io/en/stable/) for static type checking. Before submitting a pull request, please run both tools on the source code.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bellingcat/tiktok-hashtag-analysis",
    "name": "tiktok-hashtag-analysis",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Bellingcat",
    "author_email": "tech@bellingcat.com",
    "download_url": "https://files.pythonhosted.org/packages/83/72/6d56fdf5107fb82f0766d3e7b18762511ca3c7a9ee8b010484a8aec46dcb/tiktok-hashtag-analysis-2.0.3.tar.gz",
    "platform": null,
    "description": "# TikTok hashtag analysis toolset \n\nThe tool helps to download posts and videos from TikTok for a given set of hashtags over a period of time. Users can create a growing database of posts for specific hashtags which can then be used for further hashtag analysis. It uses the [TikTokApi](https://github.com/davidteather/TikTok-Api) Python package  to download the posts and uses [yt-dlp](https://github.com/yt-dlp/yt-dlp) to download the videos.\n\n[![PyPI version](https://badge.fury.io/py/tiktok-hashtag-analysis.svg)](https://badge.fury.io/py/tiktok-hashtag-analysis)\n\n## Pre-requisites\n1. Make sure you have Python 3.9 or a later version installed\n2. Install the tool with pip: `pip install tiktok-hashtag-analysis`\n   - Alternatively you can install directly from the latest version on GitHub: `pip install git+https://github.com/bellingcat/tiktok-hashtag-analysis`\n3. Make sure [Playwright](https://playwright.dev/python/docs/intro) is properly installed by running the command `python -m playwright install`\n\nYou should now be ready to start using it.\n\n## About the tool\n### Command-line arguments\n```\nusage: tiktok-hashtag-analysis [-h] [--file FILE] [-d] [--number NUMBER] [-p] [-t] [--output-dir OUTPUT_DIR] [--config CONFIG] [--log LOG] [--limit LIMIT] [-v] [--headed] [hashtags ...]\n\nAnalyze hashtags within posts scraped from TikTok.\n\npositional arguments:\n  hashtags              List of hashtags to scrape\n\noptional arguments:\n  -h, --help            show this help message and exit\n  --file FILE           File name containing list of hashtags to scrape\n  -d, --download        Download video files corresponding to scraped posts\n  --number NUMBER       The number of co-occurring hashtags to analyze\n  -p, --plot            Plot the most common co-occurring hashtags\n  -t, --table           Print a table of the most common co-occurring hashtags\n  --output-dir OUTPUT_DIR\n                        Directory to save scraped data and visualizations to\n  --config CONFIG       File name of configuration file to store TikTok credentials to\n  --log LOG             File to write logs to\n  --limit LIMIT         Maximum number of videos to download for each hashtag\n  -v, --verbose         Increase output verbosity\n  --headed              Don't use headless version of TikTok scraper\n```\n\n### Structure of output data\n```\n$ tree ../data\n../data\n\u251c\u2500\u2500 london\n\u2502   \u251c\u2500\u2500 plots\n\u2502   \u251c\u2500\u2500 posts.json\n\u2502   \u2514\u2500\u2500 media\n\u251c\u2500\u2500 newyork\n\u2502   \u251c\u2500\u2500 plots\n\u2502   \u251c\u2500\u2500 posts.json\n\u2502   \u2514\u2500\u2500 media\n\u2514\u2500\u2500 paris\n\u2502   \u251c\u2500\u2500 plots\n\u2502   \u251c\u2500\u2500 posts.json\n\u2502   \u2514\u2500\u2500 media\n```\n\n\nThe `data` folder contains all the downloaded data as shown in the tree diagram above. \n- Each hashtag has a folder with two subfolders `plots` and `media` that store plots of the most common co-occurring hashtags, and media downloaded from the posts. The posts are stored in the `posts.json` file, and downloaded media is stored as `.mp4` files (for videos) or audio and image files (for image galleries) in the `media` folder.\n\n\n## How to use\n### Post downloading\nRunning the `tiktok-hashtag-analysis` command with the following options will scrape posts that contain the hashtags `#london`, `#paris`, or `#newyork`:\n\n    tiktok-hashtag-analysis london paris newyork\n\nand will produce an output similar to the following log:\n\n    $ tiktok-hashtag-analysis download london paris newyork\n    Hashtags to scrape: ['london', 'paris', 'newyork']\n    Scraped 963 posts containing the hashtag 'london'\n    Scraped 961 posts containing the hashtag 'paris'\n    Scraped 940 posts containing the hashtag 'newyork'\n    Successfully scraped 2864 total entries\n\n- The list of hashtags to scrape is specified as a positional argument\n\n### Video downloading\nRunning the `tiktok-hashtag-analysis` script with the following options will scrape trending posts containing the hashtag `#london`:\n`tiktok-hashtag-analysis london --download`\n\n- The `--download` flag specifies that video files for scraped posts should be downloaded\n\nNote that video downloading is a time and data rate consuming task, as a result we recommend using one hashtag at a time when using the `--download` flag to avoid complications.\n\n## Analyzing results \n### Most common co-occurring hashtags\nIn addition to scraping data and downloading media, the `tiktok-hashtag-analysis` script can also analyze the frequencies of the most common co-occurring hashtags in a given set of posts.\n\nAssume we want to analyze the 20 most frequently co-occurring hashtags in the downloaded posts of the `#london` hashtag.\n\n- The results can be plotted and saved as a PNG file by executing the following command: \n\n    `tiktok-hashtag-analysis london --number 20 --plot`\n    \n    which will produce a figure similar to that shown below:\n    <p align=\"center\">\n        <img src=\"https://user-images.githubusercontent.com/18430739/166878928-d146b352-b68c-4ab4-bd2c-feb2f0140df9.png\" height=\"500\" alt=\"Top 20 most frequent common hashtags in posts containing the #london hashtag\">\n    </p>\n    \n    In the above plot, the highest occurrence is the `#fyp` hashtag, which is tagged in more than half of all posts containing the `#london` hashtag.\n\n- The results can be displayed in tabular form by executing the following command:\n\n    `tiktok-hashtag-analysis london --number 20 --table`\n\n    which will produce a terminal output similar to the following:\n    ```\n    Co-occurring hashtags for #london posts\n    Rank     Hashtag                        Occurrences     Frequency      \n    0        london                         881             1.0000\n    1        fyp                            399             0.4529\n    2        uk                             174             0.1975\n    3        foryou                         168             0.1907\n    4        viral                          152             0.1725\n    5        foryoupage                     137             0.1555\n    6        fyp\u30b7                           73              0.0829\n    7        funny                          54              0.0613\n    8        tiktok                         43              0.0488\n    9        trending                       43              0.0488\n    10       british                        41              0.0465\n    11       england                        38              0.0431\n    12       xyzbca                         34              0.0386\n    13       fy                             33              0.0375\n    14       usa                            33              0.0375\n    15       love                           29              0.0329\n    16       comedy                         25              0.0284\n    17       royalfamily                    23              0.0261\n    18       queen                          23              0.0261\n    19       queenelizabeth                 22              0.0250\n    Total posts: 881\n    ```\n\n    The `Frequency` column shows the ratio of the occurrence to the total number of downloaded posts.\n\n### Contributing\nTo run the build-in tests in the `tests/` directory, first install the test dependency packages:\n\n```\npip install .[dev]\n```\n\nand then run the tests using the following command:\n\n```\npytest\n```\n\nThis repo uses [black](https://github.com/psf/black) to format source code and [mypy](https://mypy.readthedocs.io/en/stable/) for static type checking. Before submitting a pull request, please run both tools on the source code.\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Analyze hashtags within posts scraped from TikTok",
    "version": "2.0.3",
    "project_urls": {
        "Homepage": "https://github.com/bellingcat/tiktok-hashtag-analysis"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b8d1249b3c68e1b174976e4f19cccd171dc35f2eb28d0e7c44a41bd363ad8da",
                "md5": "24ba07082b03ecd27453cba59bba2bb1",
                "sha256": "726e98cdeeea86b3cdd20a73ed604774ca34aa6fdec6b81c64ade99f07a7026a"
            },
            "downloads": -1,
            "filename": "tiktok_hashtag_analysis-2.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "24ba07082b03ecd27453cba59bba2bb1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 12028,
            "upload_time": "2023-12-08T11:29:22",
            "upload_time_iso_8601": "2023-12-08T11:29:22.431405Z",
            "url": "https://files.pythonhosted.org/packages/2b/8d/1249b3c68e1b174976e4f19cccd171dc35f2eb28d0e7c44a41bd363ad8da/tiktok_hashtag_analysis-2.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83726d56fdf5107fb82f0766d3e7b18762511ca3c7a9ee8b010484a8aec46dcb",
                "md5": "499f774e1d2f84e7d4f8ac23490761cb",
                "sha256": "34833c4f4afd98d941c8240b94bcd1fd87fa79aac642c3ca3741d39093f02872"
            },
            "downloads": -1,
            "filename": "tiktok-hashtag-analysis-2.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "499f774e1d2f84e7d4f8ac23490761cb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 13220,
            "upload_time": "2023-12-08T11:29:23",
            "upload_time_iso_8601": "2023-12-08T11:29:23.530138Z",
            "url": "https://files.pythonhosted.org/packages/83/72/6d56fdf5107fb82f0766d3e7b18762511ca3c7a9ee8b010484a8aec46dcb/tiktok-hashtag-analysis-2.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-08 11:29:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bellingcat",
    "github_project": "tiktok-hashtag-analysis",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tiktok-hashtag-analysis"
}
        
Elapsed time: 0.19209s