miketimofeev / anonfile-api

An unofficial Python Anonfile.com API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Anonfiles.com Unofficial Python API

This unofficial Python API was created to make uploading and downloading files from Anonfile.com simple, and effective for programming in Python. The goal of the project is to create an intuitive library for anonymous file sharing.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

Python 3 is required to run this application, other than that there are no prerequisites for the project, as the dependencies are included in the repo along with a virtual environment.

Installing

To install the library, is as simple as cloning the repo and then importing the module.

Simply clone the repository.

git clone https://github.com/nstrydom2/anonfile-api.git

Or, install the library via Pip.

pip install anonfile

And have fun!

from anonfile.anonfile import AnonFile

anon = AnonFile('api_key')
status, file_url = anon.upload_file('/home/guest/jims_paperwork.doc')

Usage

Just import the module, and then instantiate the AnonFile() object. Finally, start uploading.

from anonfile.anonfile import AnonFile

anon = AnonFile('api_key')
status, file_url = anon.upload_file('/home/guest/jims_paperwork.doc')

anon.download_file(file_url)

And voilĂ , pain free anonymous file sharing. I am also working towards proxy support. If you want some info on the returning JSON object(its going to be the "file" object). Visit Anonfiles.com. However, the current version just returns the url instead of the full "file" JSON object.

Built With

Versioning

For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Joseph Marie Jacquard
  • Charles Babbage
  • Ada Lovelace
  • My Dad
  • Hat tip to anyone whose code was used
  • Inspiration
  • etc

About

An unofficial Python Anonfile.com API

License:MIT License


Languages

Language:Python 72.6%Language:C 21.3%Language:XSLT 5.4%Language:C++ 0.5%Language:Shell 0.1%