Metadata-Version: 2.1
Name: anobbs-client
Version: 0.0.0
Summary: Simple AnoBBS API wrapper
Home-page: https://github.com/FToovvr/anobbs-api-wrapper-py
Author: FToovvr
Author-email: FToovvr@protonmail.com
License: UNKNOWN
Description: # AnoBBS API Wrapper
        
        AnoBBS API 的 Python 简易封装库。
        
        ## 示例
        
        ### 获取串内容
        
        ```python
        from anobbsclient import Client
        
        import os
        
        client = Client(
            user_agent=os.environ["MY_ADNMB_CLIENT_USER_AGENT"],
            host="adnmb2.com",
        )
        
        luwei_thread = client.get_thread_page(49607, page=1)
        
        print(luwei_thread.content)
        #=> 这是芦苇
        ```
        
        ## 术语
        
        * 「卡99」
            * 访问串的100页之后的页面，响应的会是100页的内容。
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Natural Language :: Chinese (Simplified)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
