Metadata-Version: 2.4
Name: ccy
Version: 2.0.0
Summary: Python currencies
Author-email: Luca Sbardella <luca@quantmind.com>
License: BSD
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: pycountry>=24.6.1
Requires-Dist: pydantic>=2.0
Requires-Dist: python-dateutil>=2.9.0
Requires-Dist: typing-extensions>=4.12
Provides-Extra: cli
Requires-Dist: click>=8.1.7; extra == 'cli'
Requires-Dist: pandas>=3.0.1; extra == 'cli'
Requires-Dist: rich>=13.7.1; extra == 'cli'
Provides-Extra: holidays
Requires-Dist: holidays>=0.93; extra == 'holidays'
Description-Content-Type: text/markdown

# Python CCY

[![PyPI version](https://badge.fury.io/py/ccy.svg)](https://badge.fury.io/py/ccy)
[![Python versions](https://img.shields.io/pypi/pyversions/ccy.svg)](https://pypi.org/project/ccy)
[![Python downloads](https://img.shields.io/pypi/dd/ccy.svg)](https://pypi.org/project/ccy)
[![build](https://github.com/quantmind/ccy/actions/workflows/build.yml/badge.svg)](https://github.com/quantmind/ccy/actions/workflows/build.yml)
[![codecov](https://codecov.io/gh/quantmind/ccy/branch/main/graph/badge.svg?token=2L5SY0WkXv)](https://codecov.io/gh/quantmind/ccy)

A python module for currencies. The module compiles a dictionary of
currency objects containing information useful in financial analysis.
Not all currencies in the world are supported yet. You are welcome to
join and add more.

* Install the command line tool with `pip install ccy[cli]`.
* Show all currencies in the command line via `ccys show`
* Trading centres are available when installing the `holidays` extra via
  ```
  pip install ccy[holidays]
  ```
