This is a beta release. The API may change before the first production release, which will be numbered 2.0.0.
You may find information on the GeoIP2 beta release process on our website.
To provide feedback or get support during the beta, please see the MaxMind Customer Community.
Currently, this distribution provides an API for the GeoIP2 web services.
In the future, this distribution will also provide the same API for the GeoIP2 downloadable databases. These databases have not yet been released as a downloadable product.
See geoip2.webservices.Client for details on the web service client API.
GeoNames offers web services and downloadable databases with data on geographical features around the world, including populated places. They offer both free and paid premium data. Each feature is uniquely identified by a geoname_id, which is an integer.
Many of the records returned by the GeoIP web services and databases include a geoname_id field. This is the ID of a geographical feature (city, region, country, etc.) in the GeoNames database.
Some of the data that MaxMind provides is also sourced from GeoNames. We source things like place names, ISO codes, and other similar data from the GeoNames premium data set.
If the problem you find is that an IP address is incorrectly mapped, please submit your correction to MaxMind.
If you find some other sort of mistake, like an incorrect spelling, please check the GeoNames site first. Once you’ve searched for a place and found it on the GeoNames map view, there are a number of links you can use to correct data (“move”, “edit”, “alternate names”, etc.). Once the correction is part of the GeoNames data set, it will be automatically incorporated into future MaxMind releases.
If you are a paying MaxMind customer and you’re not sure where to submit a correction, please contact MaxMind support for help.
This code requires Python 2.6+ or 3.1+. Older versions are not supported.
The GeoIP2 Python API uses Semantic Versioning.
Please report all issues with this code using the GitHub issue tracker
If you are having an issue with a MaxMind service that is not specific to the client API, please contact MaxMind support for assistance.
This class provides a client API for all the GeoIP2 web service’s end points. The end points are Country, City, City/ISP/Org, and Omni. Each end point returns a different set of data about an IP address, with Country returning the least data and Omni the most.
Each web service end point is represented by a different model class, and these model classes in turn contain multiple record classes. The record classes have attributes which contain data about the IP address.
If the web service does not return a particular piece of data for an IP address, the associated attribute is not populated.
The web service may not return any information for an entire record, in which case all of the attributes for that record class will be empty.
Requests to the GeoIP2 web service are always made with SSL.
The basic API for this class is the same for all of the web service end points. First you create a web service object with your MaxMind user_id and license_key, then you call the method corresponding to a specific end point, passing it the IP address you want to look up.
If the request succeeds, the method call will return a model class for the end point you called. This model in turn contains multiple record classes, each of which represents part of the data returned by the web service.
If the request fails, the client class throws an exception.
This library works on Python 2.6+ and Python 3. It requires that the requests HTTP library is installed. See <http://python-requests.org> for details.
>>> import geoip2.webservices
>>> client = geoip2.webservices.Client(42, 'abcdef123456')
>>> omni = client.omni('24.24.24.24')
>>> country = omni.country
>>> print(country.iso_code)
For details on the possible errors returned by the web service itself, see http://dev.maxmind.com/geoip/geoip2/web-services for the GeoIP2 web service docs.
If the web service returns an explicit error document, this is thrown as a WebServiceError exception. If some other sort of error occurs, this is thrown as an HTTPError. The difference is that the WebServiceError includes an error message and error code delivered by the web service. The latter is thrown when some sort of unanticipated error occurs, such as the web service returning a 500 or an invalid error document.
If the web service returns any status code besides 200, 4xx, or 5xx, this also becomes an HTTPError.
Finally, if the web service returns a 200 but the body is invalid, the client throws a GeoIP2Error object.
While many of the end points return the same basic records, the attributes which can be populated vary between end points. In addition, while an end point may offer a particular piece of data, MaxMind does not always have every piece of data for any given IP address.
Because of these factors, it is possible for any end point to return a record where some or all of the attributes are unpopulated.
See http://dev.maxmind.com/geoip/geoip2/web-services for details on what data each end point may return.
The only piece of data which is always returned is the ip_address attribute in the geoip2.records.Traits record.
Every record class attribute has a corresponding predicate method so you can check to see if the attribute is set.
This method creates a new client object.
It accepts the following required arguments:
Parameters: |
|
---|
Go to https://www.maxmind.com/en/my_license_key to see your MaxMind User ID and license key.
The following keyword arguments are also accepted:
Parameters: |
|
---|
This method calls the GeoIP2 Precision City endpoint.
Parameters: | ip_address – IPv4 or IPv6 address as a string. If no address is provided, the address that the web service is called from will be used. |
---|---|
Returns: | geoip2.models.City object |
This method calls the GeoIP2 Precision City/ISP/Org endpoint.
Parameters: | ip_address – IPv4 or IPv6 address as a string. If no address is provided, the address that the web service is called from will be used. |
---|---|
Returns: | geoip2.models.CityISPOrg object |
This method calls the GeoIP2 Country endpoint.
Parameters: | ip_address – IPv4 or IPv6 address as a string. If no address is provided, the address that the web service is called from will be used. |
---|---|
Returns: | geoip2.models.Country object |
This method calls the GeoIP2 Precision Omni endpoint.
Parameters: | ip_address – IPv4 or IPv6 address as a string. If no address is provided, the address that the web service is called from will be used. |
---|---|
Returns: | geoip2.models.Omni object |
These classes provide models for the data returned by the GeoIP2 end points.
The only difference between the City, City/ISP/Org, and Omni model classes is which fields in each record may be populated. See http://dev.maxmind.com/geoip/geoip2/web-services for more details.
Model class for the GeoIP2 Precision City end point
City object for the requested IP address.
Type : | geoip2.records.City |
---|
Continent object for the requested IP address.
Type : | geoip2.records.Continent |
---|
Country object for the requested IP address. This record represents the country where MaxMind believes the IP is located.
Type : | geoip2.records.Country |
---|
Location object for the requested IP address.
Information related to your MaxMind account.
Type : | geoip2.records.MaxMind |
---|
The registered country object for the requested IP address. This record represents the country where the ISP has registered a given IP block in and may differ from the user’s country.
Type : | geoip2.records.Country |
---|
Object for the country represented by the users of the IP address when that country is different than the country in country. For instance, the country represented by an overseas military base or embassy.
Type : | geoip2.records.RepresentedCountry |
---|
Object (tuple) representing the subdivisions of the country to which the location of the requested IP address belongs.
Type : | geoip2.records.Subdivisions |
---|
Object with the traits of the requested IP address.
Type : | geoip2.records.Traits |
---|
Model class for the GeoIP2 Precision City/ISP/Org end point
City object for the requested IP address.
Type : | geoip2.records.City |
---|
Continent object for the requested IP address.
Type : | geoip2.records.Continent |
---|
Country object for the requested IP address. This record represents the country where MaxMind believes the IP is located.
Type : | geoip2.records.Country |
---|
Location object for the requested IP address.
Information related to your MaxMind account.
Type : | geoip2.records.MaxMind |
---|
The registered country object for the requested IP address. This record represents the country where the ISP has registered a given IP block in and may differ from the user’s country.
Type : | geoip2.records.Country |
---|
Object for the country represented by the users of the IP address when that country is different than the country in country. For instance, the country represented by an overseas military base or embassy.
Type : | geoip2.records.RepresentedCountry |
---|
Object (tuple) representing the subdivisions of the country to which the location of the requested IP address belongs.
Type : | geoip2.records.Subdivisions |
---|
Object with the traits of the requested IP address.
Type : | geoip2.records.Traits |
---|
Model class for the GeoIP2 Country end point
This class provides the following methods, each of which returns a record object.
Continent object for the requested IP address.
Type : | geoip2.records.Continent |
---|
Country object for the requested IP address. This record represents the country where MaxMind believes the IP is located.
Type : | geoip2.records.Country |
---|
Information related to your MaxMind account.
Type : | geoip2.records.MaxMind |
---|
The registered country object for the requested IP address. This record represents the country where the ISP has registered a given IP block in and may differ from the user’s country.
Type : | geoip2.records.Country |
---|
Object for the country represented by the users of the IP address when that country is different than the country in country. For instance, the country represented by an overseas military base or embassy.
Type : | geoip2.records.RepresentedCountry |
---|
Object with the traits of the requested IP address.
Type : | geoip2.records.Traits |
---|
Model class for the GeoIP2 Precision Omni end point
City object for the requested IP address.
Type : | geoip2.records.City |
---|
Continent object for the requested IP address.
Type : | geoip2.records.Continent |
---|
Country object for the requested IP address. This record represents the country where MaxMind believes the IP is located.
Type : | geoip2.records.Country |
---|
Location object for the requested IP address.
Information related to your MaxMind account.
Type : | geoip2.records.MaxMind |
---|
The registered country object for the requested IP address. This record represents the country where the ISP has registered a given IP block in and may differ from the user’s country.
Type : | geoip2.records.Country |
---|
Object for the country represented by the users of the IP address when that country is different than the country in country. For instance, the country represented by an overseas military base or embassy.
Type : | geoip2.records.RepresentedCountry |
---|
Object (tuple) representing the subdivisions of the country to which the location of the requested IP address belongs.
Type : | geoip2.records.Subdivisions |
---|
Object with the traits of the requested IP address.
Type : | geoip2.records.Traits |
---|
Contains data for the city record associated with an IP address
This class contains the city-level data associated with an IP address.
This record is returned by all the end points except the Country end point.
Attributes:
A value from 0-100 indicating MaxMind’s confidence that the city is correct. This attribute is only available from the Omni end point.
Type : | int |
---|
The GeoName ID for the city. This attribute is returned by all end points.
Type : | int |
---|
The name of the city based on the languages list passed to the constructor. This attribute is returned by all end points.
Type : | unicode |
---|
A dictionary where the keys are language codes and the values are names. This attribute is returned by all end points.
Type : | dict |
---|
Contains data for the continent record associated with an IP address
This class contains the continent-level data associated with an IP address.
This record is returned by all the end points.
Attributes:
A two character continent code like “NA” (North America) or “OC” (Oceania). This attribute is returned by all end points.
Type : | unicode |
---|
The GeoName ID for the continent. This attribute is returned by all end points.
Type : | int |
---|
Returns the name of the continent based on the languages list passed to the constructor. This attribute is returned by all end points.
Type : | unicode |
---|
A dictionary where the keys are language codes and the values are names. This attribute is returned by all end points.
Type : | dict |
---|
Contains data for the country record associated with an IP address
This class contains the country-level data associated with an IP address.
This record is returned by all the end points.
Attributes:
A value from 0-100 indicating MaxMind’s confidence that the country is correct. This attribute is only available from the Omni end point.
Type : | int |
---|
The GeoName ID for the country. This attribute is returned by all end points.
Type : | int |
---|
The two-character ISO 3166-1 alpha code for the country. This attribute is returned by all end points.
Type : | unicode |
---|
The name of the country based on the languages list passed to the constructor. This attribute is returned by all end points.
Type : | unicode |
---|
A dictionary where the keys are language codes and the values are names. This attribute is returned by all end points.
Type : | dict |
---|
Contains data for the location record associated with an IP address
This class contains the location data associated with an IP address.
This record is returned by all the end points except the Country end point.
Attributes:
The radius in kilometers around the specified location where the IP address is likely to be. This attribute is only available from the Omni end point.
Type : | int |
---|
The latitude of the location as a floating point number. This attribute is returned by all end points except the Country end point.
Type : | float |
---|
The longitude of the location as a floating point number. This attribute is returned by all end points except the Country end point.
Type : | float |
---|
The metro code of the location if the location is in the US. MaxMind returns the same metro codes as the Google AdWords API. This attribute is returned by all end points except the Country end point.
Type : | int |
---|
The time zone associated with location, as specified by the IANA Time Zone Database, e.g., “America/New_York”. This attribute is returned by all end points except the Country end point.
Type : | unicode |
---|
Contains data related to your MaxMind account
This record is returned by all the end points.
Attributes:
The number of remaining queries you have for the end point you are calling.
Type : | int |
---|
All records with names subclass PlaceRecord
Dict with language codes as keys and localized name as value
Contains data for the postal record associated with an IP address
This class contains the postal data associated with an IP address.
This record is returned by all the end points except the Country end point.
Attributes:
The postal code of the location. Postal codes are not available for all countries. In some countries, this will only contain part of the postal code. This attribute is returned by all end points except the Country end point.
Type : | unicode |
---|
A value from 0-100 indicating MaxMind’s confidence that the postal code is correct. This attribute is only available from the Omni end point.
Type : | int |
---|
All records are subclasses of the abstract class Record
Contains data for the represented country associated with an IP address
This class contains the country-level data associated with an IP address for the IP’s represented country. The represented country is the country represented by something like a military base or embassy.
This record is returned by all the end points.
Attributes:
A value from 0-100 indicating MaxMind’s confidence that the country is correct. This attribute is only available from the Omni end point.
Type : | int |
---|
The GeoName ID for the country. This attribute is returned by all end points.
Type : | int |
---|
The two-character ISO 3166-1 alpha code for the country. This attribute is returned by all end points.
Type : | unicode |
---|
The name of the country based on the languages list passed to the constructor. This attribute is returned by all end points.
Type : | unicode |
---|
A dictionary where the keys are language codes and the values are names. This attribute is returned by all end points.
Type : | dict |
---|
A string indicating the type of entity that is representing the country. Currently we only return military but this could expand to include other types such as embassy in the future. Returned by all endpoints.
Type : | unicode |
---|
Contains data for the subdivisions associated with an IP address
This class contains the subdivision data associated with an IP address.
This record is returned by all the end points except the Country end point.
Attributes:
This is a value from 0-100 indicating MaxMind’s confidence that the subdivision is correct. This attribute is only available from the Omni end point.
Type : | int |
---|
This is a GeoName ID for the subdivision. This attribute is returned by all end points except Country.
Type : | int |
---|
This is a string up to three characters long contain the subdivision portion of the ISO 3166-2 code. This attribute is returned by all end points except Country.
Type : | unicode |
---|
The name of the subdivision based on the languages list passed to the constructor. This attribute is returned by all end points.
Type : | unicode |
---|
A dictionary where the keys are language codes and the values are names. This attribute is returned by all end points except Country.
Type : | dict |
---|
A tuple-like collection of subdivisions associated with an IP address
This class contains the subdivisions of the country associated with the IP address from largest to smallest.
For instance, the response for Oxford in the United Kingdom would have England as the first element and Oxfordshire as the second element.
This collection is returned by all the end points except the Country end point.
The most specific (smallest) subdivision available.
If there are no Subdivision objects for the response, this returns an empty Subdivision.
Type : | Subdivision |
---|
Contains data for the traits record associated with an IP address
This class contains the traits data associated with an IP address.
This record is returned by all the end points.
This class has the following attributes:
The autonomous system number associated with the IP address. This attribute is only available from the City/ISP/Org and Omni end points.
Type : | int |
---|
The organization associated with the registered autonomous system number for the IP address. This attribute is only available from the City/ISP/Org and Omni end points.
Type : | unicode |
---|
The second level domain associated with the IP address. This will be something like “example.com” or “example.co.uk”, not “foo.example.com”. This attribute is only available from the City/ISP/Org and Omni end points.
Type : | unicode |
---|
The IP address that the data in the model is for. If you performed a “me” lookup against the web service, this will be the externally routable IP address for the system the code is running on. If the system is behind a NAT, this may differ from the IP address locally assigned to it. This attribute is returned by all end points.
Type : | unicode |
---|
This is true if the IP is an anonymous proxy. See http://dev.maxmind.com/faq/geoip#anonproxy for further details. This attribute is returned by all end points.
Type : | bool |
---|
This is true if the IP address is from a satellite provider that provides service to multiple countries. This attribute is returned by all end points.
Type : | bool |
---|
The name of the ISP associated with the IP address. This attribute is only available from the City/ISP/Org and Omni end points.
Type : | unicode |
---|
The name of the organization associated with the IP address. This attribute is only available from the City/ISP/Org and Omni end points.
Type : | unicode |
---|
The user type associated with the IP address. This can be one of the following values:
This attribute is only available from the Omni end point.
Type : | unicode |
---|
There was a generic error in GeoIP2.
This class represents a generic error. It extends RuntimeError and does not add any additional attributes.
There was an error when making your HTTP request.
This class represents an HTTP transport error. It extends GeoIP2Error and adds attributes of its own.
Variables: |
|
---|
The GeoIP2 web service returned an error.
This class represents an error returned by MaxMind’s GeoIP2 web service. It extends HTTPError.
Variables: |
|
---|
copyright: |
|
---|---|
license: | GNU Lesser General Public License v2 or later (LGPLv2+) |