Metadata-Version: 2.1
Name: akshare-proxy
Version: 1.17.87.dev0
Summary: AKShare is an elegant and simple financial data interface library for Python, built for human beings!
Home-page: https://github.com/akfamily/akshare
Author: AKFamily
Author-email: albertandking@gmail.com
License: MIT
Keywords: stock,option,futures,fund,bond,index,air,finance,spider,quant,quantitative,investment,trading,algotrading,data
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: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.11.13
Requires-Dist: beautifulsoup4>=4.9.1
Requires-Dist: lxml>=4.2.1
Requires-Dist: pandas>=0.25
Requires-Dist: requests>=2.22.0
Requires-Dist: html5lib>=1.0.1
Requires-Dist: xlrd>=1.2.0
Requires-Dist: urllib3>=1.25.8
Requires-Dist: tqdm>=4.43.0
Requires-Dist: openpyxl>=3.0.3
Requires-Dist: jsonpath>=0.82
Requires-Dist: tabulate>=0.8.6
Requires-Dist: decorator>=4.4.2
Requires-Dist: nest-asyncio>=1.6.0
Requires-Dist: mini-racer>=0.12.4; platform_system != "Linux"
Requires-Dist: py-mini-racer>=0.6.0; platform_system == "Linux"
Requires-Dist: akracer>=0.0.13; platform_system == "Linux"
Provides-Extra: full
Requires-Dist: akqmt; extra == "full"
Provides-Extra: qmt
Requires-Dist: akqmt; extra == "qmt"

# Akshare 引入 Proxy 代理解决  IP 被限问题
## 安装部署 
```
# 安装python安装工具
pip install setuptools
pip install 
python setup.py check
python setup.py sdist bdist_wheel
twine upload dist/*

```
## 验证安装
```python
import akshare as ak
print(ak.__version__)
```
## 代理配置
```python
from akshare.utils.context import AkshareConfig
import akshare as ak

""" 创建代理字典 """
proxies = {
    "http": "http://xxx.con:xxx",
    "https": "https://xxx.con:xxx"
}
""" 创建代理字典 """
AkshareConfig.set_proxies(proxies)

stock_sse_summary_df = ak.stock_sse_summary()
print(stock_sse_summary_df)

```

## IP 代理搭建
### 免费代理
[https://github.com/AlexLiue/proxy_pool](https://github.com/AlexLiue/proxy_pool)

## 收费代理
[https://cheapproxy.net/](https://cheapproxy.net/)


## 代码更新管理脚本备注
```
# 克隆项目
git clone https://github.com/AlexLiue/akshare.git
# 查看分支
git remote -v

# 添加上游仓库地址
git remote add upstream https://github.com/akfamily/akshare.git

# 合并上游更新到本地项目 （先本地创建合并分支，然后合并）
git checkout develop
git fetch upstream
git merge upstream/main

# 提交
git add .
git commit -m '20250401'

# 合并更新到主分支
git checkout main
git pull origin master
git merge develop

# 提交主分支
git add .
git commit -m '20250401'
git tag v0.0.1
git push  origin master
```
