Skip to content

Latest commit

 

History

History
executable file
·
45 lines (30 loc) · 1.12 KB

README.md

File metadata and controls

executable file
·
45 lines (30 loc) · 1.12 KB

anonfiles-script

An upload script for anonfile.com made in python. Supports multiple files.

PyPI version Downloads Downloads Python 3.6

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])