Metadata-Version: 2.1
Name: baidu-api
Version: 0.0.1
Summary: the python sdk for baidu
Home-page: https://github.com/ramwin/baidu-api
Author: Xiang Wang
Author-email: ramwin@qq.com
License: UNKNOWN
Description: # baidu-api
        调用百度的接口
        
        # 文档
        ```
        # 授权认证
        >>> from baidu.client import BaiduClient
        >>> client = BaiduClient(app_id=<你的appid>, api_key=<你的apikey>, secret_key=<你的secretkey>)
        # 调用接口
        >>> from baidu.api import TextCensor
        >>> result, detail = TextCensor(client).is_allowed("在线阅读色情小说,在线赌博,枪支弹药购买: https://iqiyi.com")
        >>> result == "rejected"
        True
        ```
        
        # 感谢
        * 里面的session是模仿的[wechatpy](https://github.com/jxtech/wechatpy)的session
        
        # 贡献代码
        欢迎提交pr, 我一定会尽早地处理. 不用在乎什么格式, 写代码就是勇敢地提交, 上线. 出错了再修改, 回滚就可以了啊.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
