Metadata-Version: 2.4
Name: pylightningfx
Version: 0.1.0
Summary: Python client for bitFlyer Lightning API
Keywords: bitflyer,bitcoin,crypto,trading,api
Author: ykus4
Author-email: ykus4 <a2gwhitex@icloud.com>
License-Expression: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Dist: httpx>=0.28.1
Requires-Dist: pydantic>=2.13.4
Requires-Python: >=3.13
Project-URL: Homepage, https://github.com/ykus4/pylightningfx
Project-URL: Documentation, https://ykus4.github.io/pylightningfx
Project-URL: Repository, https://github.com/ykus4/pylightningfx
Project-URL: Bug Tracker, https://github.com/ykus4/pylightningfx/issues
Description-Content-Type: text/markdown

# pylightningfx

Python client for [bitFlyer Lightning API](https://lightning.bitflyer.com/docs).

[![PyPI](https://img.shields.io/pypi/v/pylightningfx)](https://pypi.org/project/pylightningfx/)
[![Python](https://img.shields.io/pypi/pyversions/pylightningfx)](https://pypi.org/project/pylightningfx/)
[![CI](https://github.com/ykus4/pylightningfx/actions/workflows/ci.yml/badge.svg)](https://github.com/ykus4/pylightningfx/actions/workflows/ci.yml)
[![License](https://img.shields.io/github/license/ykus4/pylightningfx)](LICENSE)

**[Documentation](https://ykus4.github.io/bitflyerpy)** · [日本語](https://ykus4.github.io/bitflyerpy/ja)

## Installation

```bash
pip install pylightningfx
```

## Usage

```python
from pylightningfx import Client

client = Client(api_key="YOUR_API_KEY", api_secret="YOUR_API_SECRET")
print(client.get_ticker("BTC_JPY"))
```

See the [documentation](https://ykus4.github.io/bitflyerpy) for the full API reference.
