Metadata-Version: 2.1
Name: testforPPshare
Version: 0.0.2
Summary: PPtest is a utility for crawling historical and Real-time Quotes data of marco data
Home-page: https://github.com/zemengchuan/PPtest
Author: zemengchuan
Author-email: zemengchuan@gmail.com
License: MIT
Keywords: macro,webcrawler,data
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# testforPPshare使用指南（by@zemengchuan）
GitHub链接：https://github.com/zemengchuan/PPtest

## 用途：

testforPPshare是PPshare项目的测试版本，目前的功能是集成了许多爬取宏观数据的爬虫

## 安装方式

```python
pip install testforPPshare
```

## 使用方式

```python
import testforPPshare as tp
```

- 获取上海银行间同业拆放利率
  shibor(mode='data', start_date=None, end_date=datetime.date.today())
  三个参数都有默认值，直接调用即可。默认是一个月前到今天的数据。mode可以选择
    - Shibor：data
    - shibor报价数据：quote
    - shibor均值数据：avg
```python
tp.shibor()
```
