Sign up for a RBLTracker account and visit our developer site for even more details.
The official Python binding for your RBLTracker service.
Before using this library, you must have:
- A RBLTracker Account, sign up for a new account or login to RBLTracker
- A valid RBLTracker account SID and auth token, available from the RBLTracker Portal
- Works with [ 2.6 / 2.7 / 3.2 / 3.3 ]
pip install rbltracker
import rbltracker
try:
client = rbltracker.Client('Your Account SID', 'Your Auth Token')
data = client.hosts.get();
print(data)
except rbltracker.RBLTrackerException as err:
print(err)
Full API documentation is available from the RBLTracker developer site.
- updated to the use the new API endpoint URL
- added support for Monitoring Profiles, moving away from RBL Profiles
- added support for the ACLs endpoint to pull the list of DNS servers used for checks
- initial release