文件名称:moves:适用于Moves应用程序的Python API客户端
文件大小:10KB
文件格式:ZIP
更新时间:2024-06-07 05:19:39
Python
动作
这是的Python客户端库。
要求
安装
通过pip安装:
pip install moves
用法
有关一些基本示例,请参见examples/oauth.py 。
您可以像这样请求API端点:
moves.api('/user/profile', 'GET', params={'access_token': access_token})
或者
moves.get('/user/profile', params={'access_token': access_token})
要不就
moves.user_profile(access_token=access_token)
对于在URL中需要RESTful参数的端点,例如/user/summary/daily/
【文件预览】:
moves-master
----setup.py(874B)
----.gitignore(358B)
----requirements.txt(15B)
----.travis.yml(226B)
----moves()
--------_moves.py(6KB)
--------__init__.py(21B)
----examples()
--------oauth.py(2KB)
--------moves_cli.py(5KB)
--------oauth-update.py(7KB)
----README.md(2KB)