A file transfer utility
Project description
UPLDR
upldr is a tool I created to quickly transfer larger files between boxes in my lab without using scp. It's not a groundbreaking tool by any means, and scp is definitely more secure. There's also a separate tool written in node that can be used with upldr (and upldr was written with in mind) that exposes an api and manages uploads and upload destinations on a remote server. I plan/ned on using this to manage media (photos, videos) quickly from my desktop to a storage server in my lab. If you want to use the api server and default java upload slave, you'll need to have nodejs and npm installed as well as java.
Quick Start
The easiest way to get upldr is by running pip install upldr
as long as your python path is in your path. Compatibility on windows hasn't been fully tested yet. If you find any issues please feel free to open issues on github. I am more than happy to look into them and try and fix them.
Docs
upldr is pretty simple and only really has 4 main functions:
- put
- s3
- api
- remote
put
Put is used to upload a file.
$ upldr put --help
usage: upldr put [-h] [--remote REMOTE] [-c CATEGORY] [-t TAG] [--timeout TIMEOUT] [--resume] [--debug] NAME
Handles uploads to non-cloud based remotes.
positional arguments:
NAME Source file to upload
optional arguments:
-h, --help show this help message and exit
--remote REMOTE Name of remote to use
-c CATEGORY, --category CATEGORY
Category for upload.
-t TAG, --tag TAG Tag for upload.
--timeout TIMEOUT Amount of time in seconds to wait before connecting to upload slave. Often there is a delay.
--resume Resume upload
--debug Debug output
The put command takes a positional argument of the filename you'd like to upload. Without any arguments, upldr will attempt to upload your file to the default remote specified in ~/.config/upldr/config.json with the category and tag of default. The -t/--tag argument works the same way and can be used to for a different tag than default.
Example with remotes (default remote):
$ upldr put file.txt
Example with remotes, category, and tag (default remote):
$ upldr put file.txt -c text_files -t readmes
This will upload file.txt to <data_dir>/text_files/readmes/file.txt
Example with remotes (specified remote):
$ upldr put file.txt --remote remote2
s3
This subcommand requires boto3
The S3 subcommand does the same thing as put, but uses s3 instead of an upldr remote. You should configure an aws account in the same way you would configure the awscli before using this command.
$ upldr s3 --help
usage: upldr s3 [-h] [--debug] [-b BUCKET] {put} ...
Tools for managing upldr external libraries
optional arguments:
-h, --help show this help message and exit
--debug Print additional debugging information.
-b BUCKET, --bucket BUCKET
Which S3 bucket to use. This is required if you don't have a default bucket set.
subcommands:
Tools for managing upldr external libraries
{put}
put Upload file to S3
api
The api subcommand handles running the apiserver to accept uploads and indexing. Currently indexing doesn't serve much purpose within upldr.
$ upldr api --help
usage: upldr api [-h] [-d] {serve,index} ...
Handles apiserver commands. This subcommand requires upldr_apiserver
optional arguments:
-h, --help show this help message and exit
-d, --debug Print extended debugging information.
subcommands:
Handles apiserver commands. This subcommand requires upldr_apiserver
{serve,index}
serve Serve API Server
index Index data directory for apiserver
remote
The remote subcommand handles adding, removing, listing, and setting the default remote upload server.
$ upldr remote --help
usage: upldr remote [-h] [--debug] {add,remove,set-default,list} ...
Manages remote apiserver configurations.
optional arguments:
-h, --help show this help message and exit
--debug Local upload destination
subcommands:
Manages remote apiserver configurations.
{add,remove,set-default,list}
add Add remote to config
remove Remove remote from config
set-default Set default remote to use
list List remotes
Additional Notes
- Any released versions in the repository correspond to versions available on PyPi.
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 Distributions
Built Distribution
File details
Details for the file upldr-2.1.9-py3-none-any.whl
.
File metadata
- Download URL: upldr-2.1.9-py3-none-any.whl
- Upload date:
- Size: 25.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad09545c1f6f5e9d13edcdce910f10baec5cddb7451e6c65be1993b2285a79c3 |
|
MD5 | 9fb5eee525e49c1181d4ec2ba983ae36 |
|
BLAKE2b-256 | ba22793ff037abdc8402bd5ee2946c5ab8a0a934ad61e27e12cf9b21dbaedad2 |