fuzzly

Fuzz.ly client library for Python3


License
MPL-2.0
Install
pip install fuzzly==0.0.4

Documentation

fuzzly Logo
python-package workflow pypi package version

A python client library for fuzz.ly

Installation

$ pip install fuzzly

Usage

from fuzzly import FuzzlyClient
from fuzzly.models.post import Post

# if you have a bot token, make sure you initialize the client with your token
token: str = 'aGV5IG1hbi4gaXQncyB3ZWlyZCB0aGF0IHlvdSBsb29rZWQgYXQgdGhpcywgYnV0IHRoaXMgaXNuJ3QgYSByZWFsIHRva2Vu'
client: FuzzlyClient = FuzzlyClient(token)

post: Post = await client.post('abcd1234')

Documentation

Official documentation is hosted using a Github Wiki. Additionally, each subfolder in this repository has its own readme with a brief overview of that directory's contents, purpose, and usage like the one above.

Development

Fork the parent repository at https://github.com/kheina-com/fuzzly and edit like any other python project.
Tests are run with pytest in the command line and input sorting is run via isort .

License

This work is licensed under the Mozilla Public License 2.0, allowing for public, private, and commercial use so long as access to this library's source code is provided. If this library's source code is modified, then the modified source code must be licensed under the same license or an applicable GNU license and made publicly available.