anonfiles-script
An upload script for anonfile.com made in python. Supports multiple files.
Features
- Progress bar
- upload urls will save in a file.
Installation
pip3 install anonfiles
Usage
anon up {path-to-file_1} {path-to-file _2} ... # upload file to anonfile server
anon d {url1} {url2} ... # download file
API
The anonfile-upload client is also usable through an API (for test integration, automation, etc)
anonfiles.upload([file1, file2])
from anonfiles import upload
upload([file1, file2])
anonfiles.download([file1, file2])
from anonfiles import download
download([file1, file2])