Metadata-Version: 2.4
Name: equal-data
Version: 0.0.11
Summary: A股金融数据API调用 Skill，支持 100+ 个金融数据接口。equaldata 官方提供的SKILL工具包。
Project-URL: Homepage, https://github.com/mocoap-wang/equal-data-skill
Project-URL: Documentation, https://equal-data.com/equal/dist/datainterface
Project-URL: Repository, https://github.com/mocoap-wang/equal-data-skill.git
Project-URL: Issues, https://github.com/mocoap-wang/equal-data-skill/issues
Author-email: wangyanlei <wangyanlei310@163.com>
License: MIT
License-File: LICENSE
Keywords: package,pypi,tutorial
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.6
Provides-Extra: dev
Requires-Dist: black; extra == 'dev'
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# My Package

equal-data
===============


* easy to use as most of the data returned are pandas DataFrame objects
* can be easily saved as csv, excel or json files
* can be inserted into MySQL or Mongodb

Target Users
--------------

* financial market analyst of China
* learners of financial data analysis with pandas/NumPy
* people who are interested in China financial data

Installation
--------------

    pip install equal-data

Upgrade
---------------

    pip install equal-data --upgrade

Quick Start
--------------

::

    from equal_data import EqualDataApi
    api = EqualDataApi("your equal data api key")
    data = api.query_equal_data(
        interfaceId="B6",
        period=4,        # 近1年
        changeType=1,    # 增持
        pageIndex=0,
        pageSize=50
)
    




