This repositoy is deprecated and has been archived. Please contact customer support if you need help. Thanks
Blueliv provides a simple Python-based API to access Blueliv's API and integrate it with other tools. This is the official API that is maintained by Blueliv (community@blueliv.com).
The latest version can always be found here.
- API key (get yours here)
- Python v2.7
To use Bluelivs's Python API module, you need to place the package api-python-sdk
in one of the directories specified by the environment variable PYTHONPATH
. For more information on PYTHONPATH and using modules in Python, please read this tutorial.
If you wish to install the current master
, use the following command (Note that master
contains the latest revisions and is largely considered "stable" but it is not an official packaged release. If you want the latest packaged release, use the latest tag number):
pip install git+git://github.com/Blueliv/api-python-sdk
To install a specific version of the package with pip
(recommended), run the following command
(This example installs the v2.0.0 tag. Replace the version tag with the one you want):
pip install git+git://github.com/Blueliv/api-python-sdk@v2.0.0
If you're using pip with requirements.txt
, add the following line:
git+git://github.com/Blueliv/api-python-sdk
Detailed documentation about Blueliv's API is available on the Blueliv API Wiki.
v2.2.0 - 2016 April 8
- Add get_csv_file to retrieve a csv format for each resource
v2.1.1 - 2015 July 21
- Add
API_CLIENT
andUSER_AGENT
to REST requests
v2.1.0 - 2015 July 17
- Add malware feed
- Add hacktivism feed
v2.0.1 - 2015 June 16
- Add crimeservers_stats example
v2.0.0 - 2015 June 5
- Refactor of the SDK (breaking changes!)
v1.3.0 - 2015 May 29
- Add debug mode
- Add
full
BotIPs feed resource
v1.2.1 - 2015 May 06
- Change Travis CI script
v1.2.0 - 2015 May 06
- Add HTTPS host verification
- Improve logging
v1.1.0 - 2015 Mar 26
- Add Bot IPs feed API
v1.0.0 - 2015 Mar 05
- First version