Metadata-Version: 2.4
Name: fintag-py
Version: 0.1.2
Summary: The Official Python SDK for FinTag API
Author-email: FinTag <team@fintag.io>
License: Apache-2.0
Project-URL: Homepage, https://github.com/fintag-io/fintag-py
Project-URL: Documentation, https://github.com/fintag-io/fintag-py#readme
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.32.3
Dynamic: license-file

# Fintag SDK for Python

This is a Python SDK for interacting with the Fintag API.

## Installation

You can install the SDK using pip:

```bash
pip install fintag-py
```

## Usage

Here's a quick example of how to use the SDK:

```python
from fintag import FintagClient

client = FintagClient(api_url="<API_URL>", api_key="<API_KEY>")


# Verify FinTag
fintag_exists = client.verify("#fintag_id")
print(fintag_exists)

# Get wallet information
wallet_info = client.get_wallet_info("#fintag_id")
print(wallet_info)
```

## Contributing

We welcome contributions! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information.

## License

This project is licensed under the Apache License, Version 2.0 - see the [LICENSE](LICENSE) file for details.
