A tool for expanding Danbooru tags with their implications and aliases
Project description
Danbooru Tag Expander
A Python tool for expanding Danbooru tags with their implications and aliases. This tool helps you get a complete set of related tags when working with Danbooru's tagging system.
Features
- Expand tags with their implications and aliases
- Support for both command-line and programmatic usage
- Configurable output formats (text, JSON, CSV)
- Progress tracking and detailed logging
- Caching support for better performance
Installation
You can install the package using pip:
pip install danbooru-tag-expander
Usage
Command Line
# Basic usage with tags
danbooru-tag-expander --tags "1girl" "solo"
# Using a file containing tags
danbooru-tag-expander --file tags.txt
# Output in different formats
danbooru-tag-expander --tags "1girl" --format json
danbooru-tag-expander --tags "1girl" --format csv
# Control logging verbosity
danbooru-tag-expander --tags "1girl" --quiet
danbooru-tag-expander --tags "1girl" --log-level DEBUG
Python API
from danbooru_tag_expander.tag_expander import TagExpander
# Create an expander instance
expander = TagExpander(
username="your-username", # Optional, can be set via environment
api_key="your-api-key", # Optional, can be set via environment
use_cache=True # Enable caching for better performance
)
# Expand tags
expanded_tags, frequencies = expander.expand_tags(["1girl", "solo"])
# Print results
print(f"Original tags: 1girl, solo")
print(f"Expanded tags: {', '.join(expanded_tags)}")
Configuration
The tool can be configured using environment variables or command-line arguments:
DANBOORU_USERNAME: Your Danbooru usernameDANBOORU_API_KEY: Your Danbooru API keyDANBOORU_SITE_URL: Custom Danbooru instance URL (optional)DANBOORU_CACHE_DIR: Custom cache directory location (optional)
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
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 danbooru_tag_expander-0.1.3.tar.gz.
File metadata
- Download URL: danbooru_tag_expander-0.1.3.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71bb6271b5207525e900e788003d3d22f4eed84e91f032c999783a979162f33a
|
|
| MD5 |
6fbbda102195d9a1398b3f85b7f5c9dc
|
|
| BLAKE2b-256 |
333936e9d3cdc6d40d040faf727ccfa938a5627a70d77c3ebfe764873ebfef15
|
File details
Details for the file danbooru_tag_expander-0.1.3-py3-none-any.whl.
File metadata
- Download URL: danbooru_tag_expander-0.1.3-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa57b92ccb2ca1e3d51f43439b5086fda49f50eebc0f8288c2c594e16311f028
|
|
| MD5 |
96ae5645fd7fe00e6fb8c0ac5b1e99fc
|
|
| BLAKE2b-256 |
979ef0e2f12e32e45b027d3df9dfaa77340be40428038bb745730bd13c814d09
|