Metadata-Version: 2.4
Name: bixi-sdk
Version: 0.3.1
Summary: Bixi - Bixi API client
Author-email: Renaud Bourassa <rbourassadenis@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/renaudb/bixi
Project-URL: Repository, https://github.com/renaudb/bixi
Project-URL: Issues, https://github.com/renaudb/bixi/issues
Project-URL: Documentation, https://bixi.readthedocs.io/
Keywords: bixi,bike-share,api-client
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gql[requests]
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: pyright; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Dynamic: license-file

Bixi API Client
===============

[![PyPI](https://img.shields.io/pypi/v/bixi-sdk.svg)](https://pypi.org/project/bixi-sdk/)
[![License](https://img.shields.io/github/license/renaudb/bixi.svg)](LICENSE)
[![pre-commit](https://github.com/renaudb/bixi/actions/workflows/ci.yml/badge.svg)](https://github.com/renaudb/bixi/actions/workflows/ci.yml)

## Description

Python SDK for the BIXI Montréal bike-sharing system.

## Documentation

Full documentation is available at [bixi.readthedocs.io](https://bixi.readthedocs.io/en/latest/).

## Installation

```bash
pip install bixi-sdk
```

## Example

```python
from bixi import Bixi

bixi = Bixi.login("username", "password")
rides = bixi.rides()

for ride in rides:
    print(ride)
```
