Metadata-Version: 2.1
Name: snusbase.py
Version: 1.0.5
Summary: an unofficial async wrapper for the Snusbase API
Author-email: igna <igna@incel.email>
License: MIT License
        
        Copyright (c) 2024 Jordan Ignacio
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://snusbase.com
Project-URL: Bug Reports, https://github.com/8841fb/snusbase.py/issues
Project-URL: Source, https://github.com/8841fb/snusbase.py
Keywords: snusbase,osint
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx >=0.26.0
Provides-Extra: dev
Requires-Dist: check-manifest ; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'

# snusbase.py - Unofficial Asynchronous Snusbase API Wrapper

[![PyPI - Downloads](https://img.shields.io/pypi/dm/snusbase.py?style=flat-square&label=PyPI%20downloads)](https://pypi.python.org/pypi/snusbase.py)
[![PyPI - Python](https://img.shields.io/pypi/pyversions/snusbase.py?style=flat-square&label=Python%20version)](https://python.org)
[![PyPI - License](https://img.shields.io/pypi/l/snusbase.py?style=flat-square&label=License)](LICENSE)
[![PyPI - Version](https://img.shields.io/pypi/v/snusbase.py?style=flat-square&label=PyPI%20package%20version)](https://semver.org)
[![PyPI - Status](https://img.shields.io/pypi/status/snusbase.py?style=flat-square&&label=PyPI%20Status)](https://pypi.python.org/pypi/snusbase.py)

> `snusbase.py` is an unofficial asynchronous Python wrapper for the [Snusbase](https://snusbase.com/) API.

## Features

-   **Fast and Efficient:** Utilizes asynchronous programming for optimized performance.
-   **Fully Asynchronous:** Leverages asyncio to support concurrent operations.
-   **Easy to Use:** Provides a clean and intuitive interface for Snusbase API operations.
-   **Type Hinted:** Comes with type hints for improved code readability and IDE support.

## Installation

You can easily install `snusbase.py` using pip:

```bash
pip install snusbase.py
```

## Usage

```py
import asyncio
from snusbase import SnusbaseClient

snusbase = SnusbaseClient("YOUR_API_KEY")

async def main():
    results = await snusbase.ip_lookup("1.1.1.1")
    print(results)

asyncio.run(main())
```

## TODO:

-   [ ] Make documentation.

## License

This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.

## Credits

-   [Snusbase](https://snusbase.com/) for their amazing service.
