Skip to main content

A package designed to help with scraping post data from imageboards built using Tinyboard.

Project description

Tinyboard logo

GitHub License PyPI GitHub Issues or Pull Requests

What is Tinyscraper?

Tinyscraper is a Python package that is designed to help with scraping post data from imageboards built using Tinyboard (and Tinyboard forks, such as vichan, etc.) for corpus analysis. Tinyscraper aims to be a helpful tool for both people familiar with building web scraping tools, and people who are not familiar/comfortable with working in Python.

This tool enables anyone with an interest in online sociolinguistics to conveniently gather large datasets (corpora) from imageboards. Such data can be used for various forms of linguistic analysis—such as studying the evolution of slang, tracking the spread of neologisms, or analyzing communication patterns in anonymous online spaces.

Table of Contents

Installation

In order to use the Tinyscraper package, please install it from PyPi.

[!TIP]
It is a good idea to install Tinyscraper in a virtual environment!

python3 -m venv venv
source venv/bin/activate

To install the Tinyscraper package from PyPi:

pip install tinyscraper

You can also install the Tinyscraper package from the GitHub repository:

pip install git+https://github.com/wkuratana/tinyscraper.git

Usage

[!IMPORTANT]
Tinyscraper is designed to be polite and respectful. It does not currently—and will not in the future—facilitate any behavioral modifications that may overload a website or ignore explicit anti-scraping requests.

Tinyscraper's default behavior is as follows:

  1. Visit the URL passed as an argument.
  2. If the URL links to a specific thread, then scrape the thread. If the URL links to a homepage or a catalog page, then travel to each thread link on the page and scrape each thread.
  3. Write out each scraped thread to its own JSON file in a local data/ directory.

You can use optional arguments to change the output file type (JSON, JSONL, CSV, XML) and the output directory. You can also adjust the naming scheme of the output file. You do not need to tell Tinyscraper if the URL links to a thread, homepage, or catalog page. Tinyscraper can determine that itself.

Once installed, you can check to see the available arguments at any time using:

tinyscraper --help

Simple Scraping

The simplest command you can run is:

tinyscraper <url>

(Replace <url> with an actual URL).

You can use any absolute URL that links to a homepage, to a catalog page, or to a specific thread (of a Tinyboard-based imageboard).

Optional Arguments

Tinyscraper's default file naming convention is thread_<thread_id>_tinyboard.json.

To change the filename entirely, use --filename or -fn:

tinyscraper --filename <name> <url>

[!NOTE]
Do not add the filename extension to any filename you use. See how to change the file type below.

[!WARNING]
You can only use --filename or -fn if you pass a URL to a specific thread, not a homepage or catalog page. See how else you can modify filenames below.

To change the suffix used in the default file naming convention (which is tinyboard by default), use --filename_suffix or -fns:

tinyscraper --filename_suffix <suffix> <url>

To change the output file type, use --filename_extension or -fne:

tinyscraper --filename_extension <json|jsonl|csv|xml> <url>

To change the output directory, use --directory or -d:

tinyscraper --directory <path> <url>

Example

tinyscraper -fns testchan -fne jsonl -d test_data <url>

The command above visits the URL, then scrapes the thread data into a test_data/ folder. The output file is named thread_<thread_id>_testchan.jsonl

API

Tinyscraper is designed to be used through both its CLI and its API. You can also install and use Tinyscraper as a dependency for other projects. Please reference the docstrings in api.py if you would like to use Tinyscraper without its CLI.

Tinyscraper is built leveraging Scrapy. It can be easily modified if you find that it would better suit your use case with different functionality.

Example Output (JSON)

Below is an anonymized example output; the example output is what a JSON file for a thread would look like.

[
{
    "thread_id": [
        "000001"
    ],
    "board": [
        "example"
    ],
    "title": [
        "Example Output"
    ],
    "posts": [
        {
            "is_op": [
                true
            ],
            "post_id": [
                "000001"
            ],
            "author": [
                "Anonymous"
            ],
            "timestamp": [
                "2025-10-01T00:00:00Z"
            ],
            "content": [
                "<div class=\"body\">Example text</div>"
            ],
            "image_url": [
                "<Example>"
            ]
        },
        {
            "is_op": [
                false
            ],
            "post_id": [
                "000002"
            ],
            "author": [
                "Anonymous"
            ],
            "timestamp": [
                "2025-10-01T00:00:01Z"
            ],
            "content": [
                "<div class=\"body\">Example reply</div>"
            ]
        }
    ]
}
]

[!NOTE]
Post content is scraped to include its HTML formatting. This is so site-specific metalinguistic features (such as bolding, etc.) can be preserved and used in any analyses.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

This project is licensed under the GPL-3.0 license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tinyscraper-0.1.3.tar.gz (20.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tinyscraper-0.1.3-py3-none-any.whl (21.7 kB view details)

Uploaded Python 3

File details

Details for the file tinyscraper-0.1.3.tar.gz.

File metadata

  • Download URL: tinyscraper-0.1.3.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.22

File hashes

Hashes for tinyscraper-0.1.3.tar.gz
Algorithm Hash digest
SHA256 8eaf91cabdd117e9086f40673ebe66785bfa4b26b545936a0af5a5a190bff8fd
MD5 dca64008ea236e565d805cfe04ea04b6
BLAKE2b-256 18af1997eacf48f247909ce57dea36ce9ea8e2dc63ce7a77b7ad056abeeb5cd7

See more details on using hashes here.

File details

Details for the file tinyscraper-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for tinyscraper-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d73164e1be3be9f53d02e3e1b62a77b684006fb74b5c8c8a0b05c4e26837d4d8
MD5 f86293670cb0677ab0caa50001c1f46a
BLAKE2b-256 2c6dee7242d9b2713141e45b78c40970469d4b0910be4ede8b709ebb0d068f96

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page