🚀 An python tool to upload file to anonymus sever. Supports multiple files.
- 📊 Progress bar for upload/download tracking
- 💾 Upload URLs are automatically saved to a file
- 🏷️ Rename files before uploading to server
- 📦 Support for multiple file uploads
- ⬇️ Direct download functionality
pip3 install anonupload
anon up {path-to-file_1} {path-to-file_2} ... # 📤 upload files to anonfile server
anon d {url1} {url2} ... # 📥 download and upload directly to anonfiles
The anonupload client provides a comprehensive API for programmatic file upload and download operations.
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])