Metadata-Version: 2.1
Name: anonfiles
Version: 1.0.3
Summary: upload and download to anonfiless server
Home-page: https://github.com/redevil1/anonfiles
Author: Jak Bin
Author-email: jakbin4747@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/redevil1/anonfiless/issues
Keywords: anonfiles,anonfiles-api,anonfiles-cli,anonymous,upload
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

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

 [![PyPI version](https://badge.fury.io/py/anonfiles.svg)](https://pypi.org/project/anonfiles/)
 [![Downloads](https://pepy.tech/badge/anonfiles/month)](https://pepy.tech/project/anonfiles)
 [![Downloads](https://static.pepy.tech/personalized-badge/anonfiles?period=total&units=international_system&left_color=green&right_color=blue&left_text=Total%20Downloads)](https://pepy.tech/project/anonfiles)
 ![Python 3.6](https://img.shields.io/badge/python-3.6-yellow.svg)


## Installation

```sh
pip3 install anonfiles
```

## Usage 
```sh
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])

```py
from anonfiles import upload

upload([file1, file2])
```

### anonfiles.download([file1, file2])

```py
from anonfiles import download

download([file1, file2])
```

