Metadata-Version: 2.1
Name: amc-data-gate
Version: 1.0.1
Summary: AMC Data Access SDK with AES encrypted SQL and Arrow responses
Home-page: https://github.com/amc/amc-data-gate
Author: AMC Tech Team
Author-email: zgsjfw@citicsf.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database :: Front-Ends
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: pandas>=1.2.0
Requires-Dist: pyarrow>=6.0.0
Requires-Dist: pycryptodome>=3.10.0

# AMCDataGate

资产管理中心数据访问 Python SDK。**用户名密码鉴权访问**，查询只需 SQL。

## 安装

```bash
pip install shenamc-data-gate

## pythond调用示例

from amc_data_gate import AMCDataGateClient

client = AMCDataGateClient(
    base_url=BASE_URL,
    username=USERNAME,
    password=PASSWORD
)
df_wind = client.execute_sql("sql_command", datasource="API_WIND")
