criminalip.ctidb reader
Project description
Description
This is a Python module for reading CTI DB files.
CTI DB is a binary file format that stores data indexed by IP address subnets (IPv4 only).
Installation
To install ctidb, simply:
$ pip install ctidb
Usage
To use this module, you must first download or create a CTI DB file.
After you have obtained a database and imported the module, call CCtiReader with a path, to the database as the first argument. Optionally, you may pass a mode as the second argument. The modes are exported from ctidb. Valid modes are:
MODE_MEMORY - load database into memory. Pure Python.
MODE_AUTO - Default.
NOTE: To look up an IP address, use the get method on this object. The method will return the corresponding values for the IP address from the database (e.g., a dictionary for GeoIP2/GeoLite2 databases). If the database does not contain a record for that IP address, the method will return None.
Example
>>> import ctidb
>>>
>>> with ctidb.CCtiReader('criminalip.ctidb') as reader:
>>>
>>> reader.get('223.26.31.75')
{'country': ... }
Exceptions
The module will return an InvalidDatabaseError if the database is corrupt or otherwise invalid. A ValueError will be thrown if you look up an invalid IP address or an IPv6 address in an IPv4 database.
Requirements
This code requires Python 3.7+. Older versions are not supported.
Versioning
Support
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 Distribution
Built Distribution
File details
Details for the file ctidb-1.1.11.tar.gz
.
File metadata
- Download URL: ctidb-1.1.11.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46c3c23fcbf241134f489405c59dc1439c00b85a317d430f8aa92249b7a8f86f |
|
MD5 | 21004f365e69f680598bc82de0c67dbb |
|
BLAKE2b-256 | 86af270e572cb6212a58e8da2081353dc26ab3b8b53c9ff4ba45f3df447df598 |
File details
Details for the file ctidb-1.1.11-py3-none-any.whl
.
File metadata
- Download URL: ctidb-1.1.11-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44415591b39d4d78289f5386a9a8c2dca95f432a84ad78440c2302c75a4c1754 |
|
MD5 | bb53229a27d5eb083f22303dad17b885 |
|
BLAKE2b-256 | a54d4187315892add0328477144f61b3841879ded6aaf3a6d0d741fa87e01c4e |