Metadata-Version: 2.1
Name: fugle-realtime
Version: 0.1.3
Summary: Fugle Realtime
Home-page: https://developer.fugle.tw/realtime
License: MIT
Keywords: fortuna,fugle,intelligence,realtime,taiwan
Author: Fortuna Intelligence Co., Ltd.
Author-email: development@fugle.tw
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: pandas (>=0.24.2,<0.25.0)
Requires-Dist: requests (>=2.21,<3.0)
Project-URL: Documentation, https://developer.fugle.tw/realtime/document
Project-URL: Repository, https://github.com/fortuna-intelligence/fugle-realtime-py
Description-Content-Type: text/markdown

# fugle-realtime-py

## Contributing

Install [`poetry`](https://poetry.eustace.io/) if not yet installed:

```sh
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
```

Then install dependencies and setup [`pre-commit`](https://pre-commit.com/):

```sh
poetry install

poetry run pre-commit install
```

Code formatting using [`black`](https://black.readthedocs.io/en/stable/):

```sh
poetry run black .
```

Testing using [`pytest`](https://pytest.org):

```sh
poetry run pytest
```

