Metadata-Version: 2.1
Name: inspiro
Version: 0.0.2
Summary: Python3 API wrapper for InspiroBot
Home-page: https://github.com/samhdev/inspiro
Author: SamHDev
Author-email: sam.fucked.up@samh.dev
License: UNKNOWN
Description: # Inspirobot API
        
        A Python3 api wrapper for [InspiroBot](https://inspirobot.me/)
        
        ### Requirements
        * Python 3.5+
        * Requests
        
        ### Install
        Using PyPi (Pip)
        ```shell script
        python3 -m pip install inspiro
        ```
        Using Git
        ```shell script
        python3 -m pip install git+https://github.com/SamHDev/inspiro.git
        ```
        Manual
        ```shell script
        git clone https://github.com/SamHDev/inspiro.git inspiro_python
        cd inspiro_python
        python3 -m pip -r requirements.txt
        python3 -m pip install .
        ```
        
        ## Usage
        #### Generating a classic Quote Image
        ```python
        import inspirobot  # Import the libary
        quote = inspirobot.generate()  # Generate Image
        print(quote.url)  # Print the url
        ```
        #### Using the mindfullness (flow) API
        ```python
        import inspirobot  # Import the libary
        flow = inspirobot.flow()  # Generate a flow object
        for quote in flow:
            print(quote.text)
        ```
        #### Spamming the mindfullness (flow) API
        ```python
        import inspirobot  # Import the libary
        flow = inspirobot.flow()  # Generate a flow object
        for i in range(0, 100):
            for quote in flow:
                print(quote.text, quote.image.url)
            flow.new()
            print("-"*50)
        ```
        
        ##### HTTP Mode
        Does your work/school network use https interception? Mine sure does!
        ```python
        import inspirobot
        inspirobot.HTTPS = False
        ```
        
        
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
