A Python library for STRONGARM API
Project description
stronglib is an Apache2 licensed Python library for the STRONGARM API.
features
token authentication
get, create, and delete blackholed domains
installation
The latest release can be installed from PyPI:
$ pip install --upgrade stronglib
The latest development version can be installed directly from GitHub:
$ pip install --upgrade https://github.com/percipient/stronglib/tarball/master
usage
import strongarm
# token authentication
strongarm.api_key = 'your_api_token'
# get (ie, search) a single Domain
domain = strongarm.Domain.get('example.com')
print(domain.name)
# list all blackholed domains
for domain in strongarm.Domain.all():
print(domain.name)
# create a new blackholed domain
domain = strongarm.Domain.create(name='example.com')
# delete a blackholed domain
domain.delete()
contribute
Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.
If you feel uncomfortable or uncertain about an issue or your changes, feel free to email support@percipientnetworks.com and we will happily help you.
Fork the repository on GitHub to start making your changes to the master branch (or branch off of it).
Write a test which shows that the bug was fixed or that the feature works as expected.
Send a pull request and bug the maintainer until it gets merged and published. :) Make sure to add yourself to AUTHORS.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for stronglib-0.1.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1f4a938de6c4fd6964e226fef5b7df5dab3ac48329d79d3a2b10c47000f999a |
|
MD5 | 7bf1137fa0258c99a070e0bcc3e0ea84 |
|
BLAKE2b-256 | 86b39068d860ea8a39c5c08ed7ac9eb08bd24cc1b30e08344d7f4517b763bbbf |