Metadata-Version: 2.1
Name: tweakers
Version: 0.2.2
Summary: A Python API for https://tweakers.net
Home-page: https://github.com/timotk/tweakers
License: MIT
Description: # Tweakers
        A Python wrapper for [tweakers.net](https://tweakers.net/)
        
        ## Install
        ```
        pip install tweakers
        ```
        
        ## Usage
        ```
        import tweakers
        ```
        
        Print a list of active topics:
        ```
        for topic in tweakers.gathering.active_topics():
            print(topic.title)
        ```
        
        Search for topics:
        ```
        for topic in tweakers.gathering.search('tweakers.net'):
            print(topic.title)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
