Metadata-Version: 2.4
Name: tcalendars
Version: 1.0.0
Summary: 交易日历
Project-URL: Homepage, https://github.com/KrixTam/tcalendars
Project-URL: Issues, https://github.com/KrixTam/tcalendars/issues
Author-email: Krix Tam <krix.tam@qq.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Transaction Calendars(tcalendars)

交易日历，用于交易时间的判断。当前支持的市场有：
- 中国股票市场（2005年1月1日起）

## 安装

```bash
pip install tcalendars
```

## 使用方法
```python
from tcalendars import TransactionCalendars

calendar = TransactionCalendars()
calendar.is_trading_day('2023-01-01')
```