https://github.com/jakbin/anonupload
upload files on anonymfile.com with terminal
https://github.com/jakbin/anonupload
anonfile anonfiles anonymous pypi python python-script python-upload-file python3 upload
Last synced: 11 months ago
JSON representation
upload files on anonymfile.com with terminal
- Host: GitHub
- URL: https://github.com/jakbin/anonupload
- Owner: jakbin
- License: mit
- Created: 2022-05-16T10:01:03.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-15T15:13:47.000Z (over 1 year ago)
- Last Synced: 2025-03-28T10:47:39.796Z (11 months ago)
- Topics: anonfile, anonfiles, anonymous, pypi, python, python-script, python-upload-file, python3, upload
- Language: Python
- Homepage:
- Size: 37.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# anonfiles-script
An upload script for anonfiles.com made in python. Supports multiple files.
[](https://github.com/jakbin/anonupload/actions/workflows/publish.yml)
[](https://pypi.org/project/anonupload/)
[](https://pepy.tech/project/anonupload)
[](https://pepy.tech/project/anonupload)




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