A package designed to help with scraping post data from imageboards built using Tinyboard.
Project description
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.
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 venvsource 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:
- Visit the URL passed as an argument.
- 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.
- 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
--filenameor-fnif 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.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tinyscraper-0.1.1.tar.gz.
File metadata
- Download URL: tinyscraper-0.1.1.tar.gz
- Upload date:
- Size: 19.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a00fbbb660ee35fa0090635756bef6c01054aed7f8c7ac08544f7a8e4b530630
|
|
| MD5 |
f313d683a5ff96abb12f9efc447eafde
|
|
| BLAKE2b-256 |
ce0d127ff7e8e4133228491898c996312ccb2b59f442c7b9dcdec152a58d9315
|
File details
Details for the file tinyscraper-0.1.1-py3-none-any.whl.
File metadata
- Download URL: tinyscraper-0.1.1-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8b62076effe6e5ae8c404c8702d86a393000042e7720f6339274e673e4d3062
|
|
| MD5 |
46eb90e8ff9b9f2c0d686269d96542bb
|
|
| BLAKE2b-256 |
54c708b2576068277aa2b1489f5d46f125743fc145f5753f7d735fddb21ced1a
|