├── ipinfo_db ├── version.py ├── __init__.py ├── reader.py └── client.py ├── tests ├── tests_db.mmdb └── test_all.py ├── .gitignore ├── requirements.txt ├── .github └── workflows │ └── cd_pypi.yaml ├── setup.py ├── README.md └── LICENSE /ipinfo_db/version.py: -------------------------------------------------------------------------------- 1 | SDK_VERSION = "0.0.4" 2 | -------------------------------------------------------------------------------- /ipinfo_db/__init__.py: -------------------------------------------------------------------------------- 1 | from .client import Client 2 | -------------------------------------------------------------------------------- /tests/tests_db.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipinfo/python-db/HEAD/tests/tests_db.mmdb -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | files/ 2 | __pycache__/ 3 | .pytest_cache 4 | env/ 5 | build/ 6 | ipinfo_db.egg-info/ 7 | dist/ 8 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | appdirs==1.4.4 2 | exceptiongroup==1.1.1 3 | iniconfig==2.0.0 4 | maxminddb==2.3.0 5 | packaging==23.1 6 | pluggy==1.0.0 7 | pytest==7.3.1 8 | tomli==2.0.1 9 | wheel==0.37.1 10 | -------------------------------------------------------------------------------- /.github/workflows/cd_pypi.yaml: -------------------------------------------------------------------------------- 1 | name: Release Python Package to pypi 2 | 3 | on: 4 | push: 5 | tags: 6 | - 'v*' 7 | 8 | jobs: 9 | publish: 10 | 11 | runs-on: ubuntu-latest 12 | 13 | environment: 14 | name: pypi 15 | url: https://pypi.org/project/ipinfo-db 16 | 17 | permissions: 18 | id-token: write 19 | 20 | steps: 21 | - name: Checkout 22 | uses: actions/checkout@v3 23 | 24 | - name: Set up Python 25 | uses: actions/setup-python@v4 26 | with: 27 | python-version: '3.10' 28 | 29 | - name: Install dependencies 30 | run: pip install -r requirements.txt 31 | 32 | - name: Build package 33 | run: python setup.py sdist bdist_wheel 34 | 35 | - name: Publish package 36 | uses: pypa/gh-action-pypi-publish@release/v1 37 | -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | import ipinfo_db 3 | 4 | 5 | client = ipinfo_db.Client(path='./tests/tests_db.mmdb') 6 | 7 | 8 | def test_get_country(): 9 | assert client.getCountry("8.8.8.8") == "US" 10 | 11 | def test_get_country_name(): 12 | assert client.getCountryName('8.8.8.8') == "United States" 13 | 14 | def test_get_continent(): 15 | assert client.getContinent('8.8.8.8') == "NA" 16 | 17 | def test_get_continent_name(): 18 | assert client.getContinentName('8.8.8.8') == "North America" 19 | 20 | def test_get_asn(): 21 | assert client.getASN('8.8.8.8') == "AS15169" 22 | 23 | def test_get_asn_name(): 24 | assert client.getASNName('8.8.8.8') == "Google LLC" 25 | 26 | def test_get_asn_domain(): 27 | assert client.getASNDomain('8.8.8.8') == "google.com" 28 | 29 | def test_no_ip_details(): 30 | assert client.getDetails('127.0.0.1') is None 31 | assert client.getCountry('127.0.0.1') is None 32 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup 2 | 3 | from ipinfo_db.version import SDK_VERSION 4 | 5 | long_description = """ 6 | The official Python free database library for IPinfo. 7 | 8 | IPinfo prides itself on being the most reliable, accurate, and in-depth source of IP address data available anywhere. 9 | We process terabytes of data to produce our custom IP geolocation, company, carrier and IP type data sets. 10 | You can visit our developer docs at https://ipinfo.io/developers. 11 | """ 12 | 13 | setup( 14 | name="ipinfo_db", 15 | version=SDK_VERSION, 16 | description="Official Python free database library for IPinfo", 17 | long_description=long_description, 18 | url="https://github.com/ipinfo/python-db", 19 | author="IPinfo", 20 | author_email="support@ipinfo.io", 21 | license="Apache License 2.0", 22 | packages=["ipinfo_db"], 23 | install_requires=["maxminddb", "appdirs"], 24 | include_package_data=True, 25 | zip_safe=False, 26 | ) 27 | -------------------------------------------------------------------------------- /ipinfo_db/reader.py: -------------------------------------------------------------------------------- 1 | import maxminddb 2 | 3 | class Reader: 4 | 5 | def __init__(self, path): 6 | '''Initializes the Reader object with the given path. 7 | 8 | :param: path: Path to the mmdb file. 9 | ''' 10 | self.db = maxminddb.open_database(path) 11 | 12 | def open(self, path): 13 | '''Opens an mmdb file located at the given path. Closes previously opened database. 14 | 15 | :param: path: Path to the mmdb file. 16 | ''' 17 | self.close() 18 | self.db = maxminddb.open_database(path) 19 | 20 | def close(self): 21 | '''Closes the database. 22 | ''' 23 | self.db.close() 24 | 25 | def metadata(self): 26 | '''Returns the metadata associated with the mmdb file. 27 | 28 | :return: metadata of the mmdb file. 29 | :rtype: Metadata 30 | ''' 31 | return self.db.metadata() 32 | 33 | def get(self, ip): 34 | '''Returns the database record for the given IP address. 35 | 36 | :param: ip: An IP address in string format. Can be either IPv4 or IPv6. 37 | :return: Database record for the given IP. 38 | :rtype: Record 39 | ''' 40 | return self.db.get(ip) 41 | 42 | def getWithPrefixLen(self, ip): 43 | '''Returns a tuple containing the database record and the associated (network) prefix length. 44 | 45 | :param: ip: An IP address in string format. Can be either IPv4 or IPv6. 46 | :return: A tuple containing the database record and the prefix length. 47 | :rtype: Tuple 48 | ''' 49 | return self.db.get_with_prefix_len(ip) 50 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [IPinfo](https://ipinfo.io/) IPinfo Python Free Database Library 2 | 3 | This is the official Python library for IPinfo.io's free [IP to Country ASN Database](https://ipinfo.io/products/free-ip-database), allowing you to lookup country and ASN details for IP addresses. 4 | 5 | ## Getting Started 6 | 7 | You'll need an IPinfo API access token (which you can get by signing up for a free account at [https://ipinfo.io/signup](https://ipinfo.io/signup)) if you want to download the free database. 8 | 9 | You can also provide the path to the database file explicitly. 10 | 11 | ### Installation 12 | 13 | This package works with Python 3.5 or greater. However, we only officially 14 | support non-EOL Python versions. 15 | 16 | ```bash 17 | pip install ipinfo-db 18 | ``` 19 | 20 | ### Quick Start 21 | 22 | ```python 23 | >>> import ipinfo_db 24 | >>> access_token = '123456789abc' 25 | >>> client = ipinfo_db.Client(access_token) 26 | >>> ip_address = '216.239.36.21' 27 | >>> country = client.getCountry(ip_address) 28 | >>> country 29 | 'US' 30 | ``` 31 | The `Client` will download the free `country_asn` database if it doesn't exist or if the path to the database file is not provided. 32 | 33 | If the database exists in the default path, the download will be skipped, but can still be forced to replace the old file by providing `replace=True` while initializing the `Client` object. 34 | ```python 35 | >>> client = ipinfo_db.Client(access_token, replace=True) 36 | ``` 37 | 38 | ### Available Methods 39 | 40 | - getDetails(ip) 41 | - getCountryDetails(ip) 42 | - getCountry(ip) 43 | - getCountryName(ip) 44 | - getContinent(ip) 45 | - getContinentName(ip) 46 | - getASNDetails(ip) 47 | - getASN(ip) 48 | - getASNName(ip) 49 | - getASNDomain(ip) 50 | - close() 51 | 52 | ### Using the MMDB reader separately 53 | 54 | Advanced users can use the MMDB reader that is included in the installation. 55 | 56 | #### Sample Usage 57 | ```python 58 | >>> from ipinfo_db.reader import Reader 59 | >>> db = Reader('PATH_TO_MMDB_FILE') 60 | >>> result = db.get('IP') 61 | >>> result 62 | ``` 63 | #### Available Methods 64 | 65 | - open(path) 66 | - close() 67 | - metadata() 68 | - get(ip) 69 | - getWithPrefixLen(ip) 70 | 71 | ## Other Libraries 72 | 73 | There are official [IPinfo client libraries](https://ipinfo.io/developers/libraries) available for many languages including PHP, Go, Java, Ruby, and many popular frameworks such as Django, Rails and Laravel. There are also many third party libraries and integrations available for our API. 74 | 75 | ## About IPinfo 76 | 77 | Founded in 2013, IPinfo prides itself on being the most reliable, accurate, and in-depth source of IP address data available anywhere. We process terabytes of data to produce our custom IP geolocation, company, carrier, VPN detection, hosted domains, and IP type data sets. Our API handles over 40 billion requests a month for 100,000 businesses and developers. 78 | 79 | [![image](https://avatars3.githubusercontent.com/u/15721521?s=128&u=7bb7dde5c4991335fb234e68a30971944abc6bf3&v=4)](https://ipinfo.io/) 80 | -------------------------------------------------------------------------------- /ipinfo_db/client.py: -------------------------------------------------------------------------------- 1 | import urllib.request 2 | import os 3 | import appdirs 4 | from ipinfo_db.reader import Reader 5 | 6 | DB_DOWNLOAD_URL = "https://ipinfo.io/data/free/country_asn.mmdb?token=" 7 | DEFAULT_APP_PATH = appdirs.user_data_dir(appname='ipinfo_db', appauthor='ipinfo') 8 | DEFAULT_DB_PATH = os.path.join(DEFAULT_APP_PATH, 'files/country_asn.mmdb') 9 | 10 | class Client: 11 | 12 | def __init__(self, access_token=None, path=None, replace=False): 13 | f'''ipinfo_db handler method. 14 | 15 | :param access_token: Optional. Type: str. IPinfo access token to download the IP to Country ASN database required in case of data download. 16 | :param path: Optional. Type: str. Download path for the database. Default is set to: {DEFAULT_DB_PATH} 17 | :param replace: Optional. Type: bool. Set it to True if you want to replace your older downloaded database. 18 | :return: Client handler object. 19 | ''' 20 | self.access_token = access_token 21 | self.path = path 22 | self.replace = replace 23 | 24 | if self.access_token is None and self.path is None: 25 | raise SyntaxError("Token or Path is required") 26 | 27 | if self.path is None: 28 | self.path = DEFAULT_DB_PATH 29 | 30 | # Check if file already exists to skip the download. 31 | if os.path.isfile(self.path) and not self.replace: 32 | pass 33 | else: 34 | if self.access_token is None: 35 | raise SyntaxError("Token is required to download the file") 36 | 37 | # Create directory if doesn't exist. 38 | directory = os.path.dirname(self.path) 39 | if directory and not os.path.exists(directory): 40 | os.makedirs(directory) 41 | 42 | # Download file. 43 | urllib.request.urlretrieve(DB_DOWNLOAD_URL+self.access_token, self.path) 44 | 45 | # Read the mmdb file. 46 | self.db = Reader(self.path) 47 | 48 | def close(self): 49 | '''Closes the mmdb file. 50 | ''' 51 | self.db.close() 52 | 53 | def getDetails(self, ip): 54 | '''Returns all the country and ASN level IP information available for the input IP address in a dictionary format. 55 | 56 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 57 | :return: All available country and ASN level information of the IP address. 58 | :rtype: dict 59 | ''' 60 | return self.db.get(ip) 61 | 62 | def getCountry(self, ip): 63 | '''Returns the ISO 3166 country code of the input. 64 | 65 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 66 | :return: Country code of the IP address. 67 | :rtype: str 68 | ''' 69 | return self._get_data_field(ip, 'country') 70 | 71 | def getCountryName(self, ip): 72 | '''Returns the country name of the input IP address. 73 | 74 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 75 | :return: Country name of the IP address. 76 | :rtype: str 77 | ''' 78 | return self._get_data_field(ip, 'country_name') 79 | 80 | def getContinent(self, ip): 81 | '''Returns the continent shortcode of the input IP address. 82 | 83 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 84 | :return: Continent code of the IP address. 85 | :rtype: str 86 | ''' 87 | return self._get_data_field(ip, 'continent') 88 | 89 | def getContinentName(self, ip): 90 | '''Returns the name of the continent of the input IP address. 91 | 92 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 93 | :return: Continent name of the IP address. 94 | :rtype: str 95 | ''' 96 | return self._get_data_field(ip, 'continent_name') 97 | 98 | def getASN(self, ip): 99 | '''Returns the ASN (Autonomous System Number) of the input IP address. 100 | 101 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 102 | :return: ASN (i.e. AS2381) of the IP address. 103 | :rtype: str 104 | ''' 105 | return self._get_data_field(ip, 'asn') 106 | 107 | def getASNName(self, ip): 108 | '''Returns the AS (Autonomous System) organization of the input ip address. 109 | 110 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 111 | :return: AS name of the IP address. 112 | :rtype: str 113 | ''' 114 | return self._get_data_field(ip, 'as_name') 115 | 116 | def getASNDomain(self, ip): 117 | '''Returns the domain or the official website of the input IP address. 118 | 119 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 120 | :return: Domain or website of the AS organization owning the IP address. 121 | :rtype: str 122 | ''' 123 | return self._get_data_field(ip, 'as_domain') 124 | 125 | def getCountryDetails(self, ip): 126 | '''Returns the country level geolocation information of the input ip address. 127 | country, country_name, continent, and continent_name 128 | 129 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 130 | :return: Country and continent information of the IP address. 131 | :rtype: dict 132 | ''' 133 | fields = ["country", "country_name", "continent", "continent_name"] 134 | return self._get_data_dictionary(ip, fields) 135 | 136 | def getASNDetails(self, ip): 137 | '''Returns all the available ASN-level information of the input IP address. 138 | asn, as name, and as_domain 139 | 140 | :param ip: Input IP address. Supports both IPv4 and IPv6 address. 141 | :return: ASN-level information of the IP address. 142 | :rtype: dict 143 | ''' 144 | fields = ["asn", "as_domain", "as_name"] 145 | return self._get_data_dictionary(ip, fields) 146 | 147 | def _get_data_field(self, ip, field): 148 | data = self.db.get(ip) 149 | return data[field] if data else None 150 | 151 | def _get_data_dictionary(self, ip, fields): 152 | data = self.db.get(ip) 153 | return {key:data[key] for key in fields if key in data} 154 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | --------------------------------------------------------------------------------