Skip to main content

Python Client for Ipidea Proxy Service API

Project description

ipidea-proxy

Python library for ipidea proxy service API

使用客户端

1. 获取UID和APPKEY

登录用户Profile

https://www.ipidea.net/ucenter/

然后访问API文档链接,从页面上获取UID和APPKEY

https://www.ipidea.net/ipidea-api.html#001

2. 设置环境变量

通过上面获取的UID和APPKEY,设置到以下的环境变量。客户端会自动从该环境变量读取。

export IPIDEA_UID=xxx
export IPIDEA_APPKEY=xxx

3. 初始化客户端

from ipidea_proxy import IpideaProxy

# 通过环境变量设置UID和APPKEY
# 如果UID和APPKEY已经通过环境变量设置,可以这样初始化客户端
ipp = IpideaProxy()

# 通过参数设置UID和APPKEY
ipp = IpideaProxy(uid='xxxx', appkey='xxxxxx')

4. 使用客户端

4.1 设置IP到白名单
# 添加本机公网IP到白名单
ipp.add_whitelist()

# 添加2.3.4.5到白名单
ipp.add_whitelist('2.3.4.5')
4.2 从白名单中删除IP
# 从白名单中删除指定IP
ipp.delete_whitelist('2.3.4.5')

# 从白名单中删除本机对应公网IP
ipp.delete_whitelist()

API Reference

https://www.ipidea.net/ipidea-api.html#001

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ipidea_proxy-0.5.0.tar.gz (7.6 kB view hashes)

Uploaded Source

Built Distribution

ipidea_proxy-0.5.0-py3-none-any.whl (7.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page