You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[IPGeolocation API](https://ipgeolocation.io) is the solution to identify country code (ISO2 and ISO3 standard), country name, continent code, continent name, country capital, state/province, district, city, zip code, latitude and longitude of city, is country belongs to Europian Union, calling code, top level domain (TLD), languages, country flag, internet service provider (ISP), connection type, organization, geoname ID, currency code, currency name, time zone ID, time zone offset, current time in the time zone, is time zone in daylight saving time, and total daylight savings. This document provides important information to help you get up to speed with IPGeolocation API using IP Geolocation API Typescript SDK.
6
+
7
+
Developers can use this Typescript SDK for software and web projects related to, but not limited to:
8
+
9
+
1. Display native language and currency
10
+
2. Redirect based on the country
11
+
3. Digital rights management
12
+
4. Web log stats and analysis
13
+
5. Auto-selection of country, state/province and city on forms
14
+
6. Filter access from countries you do not do business with
15
+
7. Geo-targeting for increased sales and click-through
16
+
17
+
## Quick Start Guide
18
+
19
+
You need a valid 'IPGeolocation API key' to use this SDK. [Sign up](https://ipgeolocation.io/signup) here and get your free API key if you don't have one.
20
+
21
+
## System Requirements
22
+
23
+
Internet connection is required to run this component. This SDK uses ```requests``` module that you need to install before it. Here is the command to install ```requests``` module:
24
+
25
+
```bash
26
+
pip install requests --upgrade --user
27
+
```
28
+
29
+
## Basic Usage
30
+
31
+
### Setup API
32
+
33
+
```python
34
+
from IPGeolocation import IPGeolocationAPI
35
+
36
+
# Create IPGeolocationAPI object. Constructor takes one parameter.
0 commit comments