Skip to main content

lain-upload

A simple CLI file uploader for multiple file-hosting services, with optional clipboard copy.

Installation

Via PyPI (Recommended)

You have the option to choose between the standard version (lain-upload) or the desktop version (lain-upload[clipboard]), which adds clipboard support for auto-copying links.

[!NOTE] For brevity, the examples below use the desktop version.

With pip (Basic)

pip install "lain-upload[clipboard]"

With pipx (Isolated)

pipx install "lain-upload[clipboard]"

With uv (Best)

The most efficient way to install or run lain-upload.

# Permanent isolated installation
uv tool install "lain-upload[clipboard]"

# Run once without installing
uvx --with "lain-upload[clipboard]" lain-upload <file1> <file2> <file3>

# Run in scripts or ad-hoc environments
uv run --with "lain-upload[clipboard]" lain-upload <file1> <file2> <file3>

From Source (Development)

# Clone the repository and navigate to it
git clone git@github.com:NecRaul/lain-upload.git
cd lain-upload

# Install environment and all development dependencies (mandatory and optional)
uv sync --dev

# Install pre-commit hook
uv run pre-commit install

# Optional: Run all linters and type checkers manually
uv run pre-commit run --all-files

# Run the local version
uv run lain-upload <file1> <file2> <file3>

# Run tests
uv run pytest tests

Usage

Simply provide the path to the file or files you wish to upload.

# Upload a single file (default host: catbox)
lain-upload kuroneko.png

# Upload multiple files from different directories
lain-upload /path/to/kuroneko.png /path/to/another/directory/shironeko.png yamineko.png ../kamineko.png

# Select a specific host
lain-upload --host uguu kuroneko.png

# Use host authentication when supported
lain-upload --host mixdrop --auth necraul@kuroneko.dev:generated_api_key kuroneko.png

# Set temporary file expiration when supported (e.g. 1h, 12h, 24h, 72h, etc.)
lain-upload --host litterbox --expire-after 24h kuroneko.png

# Enable longer generated filenames when supported
lain-upload --host 0x0 --long-filenames -- kuroneko.png shironeko.png

# Upload to every available non-deprecated host
lain-upload --host all kamineko.png

# Display help and version
lain-upload -h
lain-upload -v

Options

    --host            HOST                  File hosting service to upload to (default: catbox)
    --auth            AUTH                  Authentication credentials for the host (format varies per host)
    --expire-after    DURATION              How long before the file expires when supported (e.g. 1h, 24h, 72h)
    --long-filenames  -                     Enable longer generated filenames when supported by the host
    --config          PATH                  Path to a custom configuration file
    --init-config     [PATH]                Create a default configuration file at the default or given path
    --show-config     -                     Print the effective configuration after merging defaults and config file
    --no-config       -                     Ignore the configuration file and use only CLI flags
-h, --help            -                     Show help and exit
-v, --version         -                     Show version and exit

Configuration

lain-upload supports a JSON configuration file to set a default host and per-host options. You can create a default config, inspect the effective configuration, and override or ignore the config file at runtime.

  • Default path
    • Linux/BSD: $XDG_CONFIG_HOME/necraul/lain-upload.json or ~/.config/necraul/lain-upload.json
    • MacOS: ~/Library/Application Support/necraul/lain-upload.json
    • Windows: %APPDATA%/necraul/lain-upload.json
  • Basic structure
    • default_host: host used when --host flag is omitted (default: "catbox").
    • hosts: per-host configuration (auth, expire_after, long_filenames, etc.), keyed by host name.
{
  "default_host": "catbox",
  "hosts": {
    "catbox": {
      "auth": null
    },
    "litterbox": {
      "expire_after": "72h",
      "long_filenames": false
    },
    "gofile": {
      "auth": null
    }
  }
}
# Create a default configuration file at the default path
lain-upload --init-config

# Create a default configuration file at a custom path
lain-upload --init-config config.json

# Show the effective configuration (defaults merged with the default config file)
lain-upload --show-config

# Create a default configuration file at the default path and print it
lain-upload --init-config --show-config

# Create a default configuration file at a custom path and print it
lain-upload --init-config /path/to/config.json --show-config

# Show the effective configuration (defaults merged with the custom config file)
lain-upload --config config.json --show-config

# Upload using the config file's default_host (no --host needed)
lain-upload kuroneko.png

# Override the config file's default_host
lain-upload --host uguu shironeko.png

# Use a custom configuration file
lain-upload --config /path/to/config.json kamineko.png

# Ignore the configuration file and use only CLI flags
lain-upload --no-config kuroneko.png

# Override config's host and expiration (CLI flag overrides config)
lain-upload --host litterbox --expire-after 24h kuroneko.png

Supported Hosts

  • catbox - Support for user authentication with userhashes.
  • litterbox - Support for custom expiration time and longer upload filenames.
  • pomf - No extra options (deprecated).
  • uguu - No extra options.
  • fileditch - No extra options.
  • tempditch - No extra options (deprecated).
  • 0x0 - Support for custom expiration time and longer upload filenames.
  • x0 - Support for longer upload filenames.
  • waifuvault - Support for custom expiration time and hidden upload filenames.
  • gofile - Support for user authentication with bearer API tokens.
  • pixeldrain - Support for user authentication with API keys (Required).
  • buzzheavier - No extra options.
  • mixdrop - Support for user authentication with mail and API keys (Required).
  • sharey - Support for custom expiration time.
  • filester - Support for user authentication with bearer API tokens.

Dependencies

  • requests: send the API request for uploading.
  • requests-toolbelt: enable memory-efficient streaming and progress tracking for large uploads.

Optional

  • pyperclip: copy the uploaded files' URLs to the clipboard.

How it works

Supported services provide upload endpoints that accept multipart HTTP requests.

This tool automates uploads and adds safety checks and quality-of-life features.

The Manual Way

curl -F "file=@kuroneko.png" https://example-upload-service.tld/upload-endpoint

The lain-upload way

  • Batch Processing: Upload multiple files in a single command, iterating through each one and reporting results as they complete rather than waiting for the entire batch to finish.
  • Validation: Enforces service-specific constraints before sending anything. File size limits, allowed extensions, and authentication requirements are all checked upfront to avoid partial uploads or silent failures.
  • API Request: Sends multipart POST requests via requests and requests-toolbelt. The toolbelt layer wraps the file in a streaming encoder so large files are read and sent in chunks rather than loaded fully into memory.
  • Normalization: Parses each service's unique response format and extracts a clean, shareable URL regardless of how the host structures its JSON or plain-text reply.
  • Clipboard (Optional): If pyperclip is installed, each resulting URL is copied to the clipboard immediately after upload so it is ready to paste without any extra steps.

Special thanks

  • To 7666 of https://lain.la/ for running the pomf service that inspired this project.
  • To r/a/dio anons for feedback and suggestions.

Download files

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

Source Distribution

lain_upload-1.26.tar.gz (22.9 kB view details)

Uploaded Source

Built Distribution

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

lain_upload-1.26-py3-none-any.whl (28.9 kB view details)

Uploaded Python 3

File details

Details for the file lain_upload-1.26.tar.gz.

File metadata

  • Download URL: lain_upload-1.26.tar.gz
  • Upload date:
  • Size: 22.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for lain_upload-1.26.tar.gz
Algorithm Hash digest
SHA256 bdb6f5ee77a79a5bfacbb737872356ed5493b0430af97dd67d4fa95510daccfc
MD5 be540b8165543e5e5930857b991a3762
BLAKE2b-256 bf14703c8e6cb456df807fd80c263ad0a805ca05171445cbe1b1b660d3635a20

See more details on using hashes here.

File details

Details for the file lain_upload-1.26-py3-none-any.whl.

File metadata

  • Download URL: lain_upload-1.26-py3-none-any.whl
  • Upload date:
  • Size: 28.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for lain_upload-1.26-py3-none-any.whl
Algorithm Hash digest
SHA256 a5345038ed74f1cb98304629675968c4c3128a701511b601d7d4f21c0cdf2567
MD5 bc7648d3a5bbf061abb2c4934b57e95a
BLAKE2b-256 fafc9261cc97f916d0c0e3f0ed35c83fb35d4110361cad6683d84dc9a37f34a5

See more details on using hashes here.

Release history Release notifications | RSS feed

1.27

2 files

This release

1.26 This release

2 files

1.25

2 files

1.24

2 files

1.23

2 files

1.22

2 files

1.21

2 files

1.20

2 files

1.19

2 files

1.18

2 files

1.17

2 files

1.16

2 files

1.15

2 files

1.14

2 files

1.13

2 files

1.12

2 files

1.11

2 files

1.10

2 files

1.9

2 files

1.8

2 files

1.7

2 files

1.6

2 files

1.5

2 files

1.4

2 files

1.3

2 files

1.2

2 files

1.1

2 files

1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page