solun-pm / cli

Solun-CLI is a command line interface tool for uploading and downloading files from Solun.

Home Page:https://solun.pm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Solun-CLI

Solun-CLI is a command line interface tool for uploading and downloading files from Solun.

Installation

Clone the repository and navigate to the project directory:

cd cli
pip install .

Usage

The solun command can be used to upload files with optional settings for brute force protection, password, end-to-end encryption, and auto deletion. The solun download command can be also used to download files from Solun.

Basic Upload

Upload a file:

solun file -p /path/to/your/file

Advanced Upload

Upload a file with brute force protection, a password, end-to-end encryption, and set an auto deletion parameter:

solun file -p /path/to/your/file -b -pw "YourPassword" -e2e -ad 1d

Download

Download a file:

solun download -l https://solun.pm/file/xyz

Arguments

  • -p, --path: Path to the file to be uploaded.
  • -b, --bruteforceSafe: Enable brute force protection (default: disabled).
  • -pw, --password: Set a password for the file (default: None).
  • -e2e, --endToEndEncryption: Enable end-to-end encryption (default: disabled).
  • -ad, --autoDeletion: Set auto deletion parameter. Options: download, 1d, 1w, 1m, 3m, 6m, 1y, never (default: download).
  • -l, --link: Link to the file to be downloaded.

Build and Publish

To build the package, first install the build tool with:

pip install build

Then run the following command in the root directory of the project:

python3 -m build

This will generate distribution files in the dist directory that you can publish to PyPI. Before publishing the package, ensure any previous build artifacts are cleared to avoid errors:

rm -rf solun.egg-info

To publish the package to PyPI, use the following twine command (make sure twine is installed using pip install twine):

twine upload dist/*

About

Solun-CLI is a command line interface tool for uploading and downloading files from Solun.

https://solun.pm


Languages

Language:Python 100.0%