Metadata-Version: 2.1
Name: prsaw
Version: 0.2.0
Summary: PRSAW, an acronym for `Python Random Stuff API Wrapper`, is a wrapper for the Random Stuff API.
Home-page: https://github.com/CodeWithSwastik/prsaw
Author: Swas.py
Author-email: cwswas.py@gmail.com
License: MIT
Description: # PRSAW 0.2.0
        
        PRSAW, an acronym for `Python Random Stuff API Wrapper`, is a wrapper for the Random Stuff API.
        PyPI: https://pypi.org/project/prsaw/ 
        
        ## Installation
        
        You can install released versions of prsaw from the Python Package Index with pip or a similar tool:
        
        **Stable Release:** `pip install prsaw`<br>
        **Working Version:** `pip install git+https://github.com/CodeWithSwastik/prsaw.git`
        
        ## Example Usage:
        ```python
        # import the module
        from prsaw import RandomStuff
        
        # initiate the object
        rs = RandomStuff()
        
        # get a response from an endpoint
        response = await rs.get_ai_response("How are you?")
        print(response)
        
        # close the object once done (recommended)
        await rs.close()
        ```
        
        ## Functions available:
        
        The current list of asynchronous functions available are:
        
        ```python
        # endpoints
        await get_joke(_type = "any")  # Refer to https://api.pgamerx.com/endpoints
        await get_image(_type = "any") # for all the endpoints
        await get_ai_response(msg)
        
        # others
        await close() # closes the object
         ```
        
Keywords: random stuff,api,wrapper
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
