An upload script for anonfiles.com made in python. Supports multiple files.
- Progress bar
- upload urls will save in a file.
- You can change file name before upload on anonfile server
pip3 install anonupload
anon up {path-to-file_1} {path-to-file _2} ... # upload file to anonfile server
anon d {url1} {url2} ... # and upload directly to anonfiles
The anonfile-upload client is also usable through an API (for test integration, automation, etc)
from anonupload import upload
upload(filename)
from anonupload import changefile_and_upload
changefile_and_upload([file1, file2])
from anonupload import download
download(url)
from anonupload import downloads
downloads([url1, url2])