Metadata-Version: 2.1
Name: pythapi
Version: 0.0.2
Summary: A micro framework for API calls
Home-page: https://github.com/geluyan/pythapi
Author: Andy Geluykens
Author-email: a.geluykens@gmail.com
License: UNKNOWN
Description: # pythapi
        pythapi is a micro framework written in Python to perform API calls. Currently it is a work in progress and all contributation are welcome.
        
        # Contributing
        Up to the challenge making this micro framework even better? Fork the repository and checkout the devel branch for local development.
        
        Ready for a merge? Create a merge request from your devel branche to the original devel branche.
        
        # Installation
        pythapi is distributed through pypi and can be install using pip for python 2 and 3.
        
            pip install pythapi
            pip3 install pythapi
        
        # Getting started example
        
        ```
        import urllib3
        import pythapi
        
        # Disable certificate warnings and connect to destination API host
        urllib3.disable_warnings()
        
        # Specify the destination host and the base URL.
        apiEndpoint = pythapi.Connect('localhost', '/base/api/url')
        
        # Get all users
        # This will perform a GET request using the URL https://localhost/base/api/url/users
        apiEndpoint.get(/users)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
