Metadata-Version: 2.1
Name: httpmethods
Version: 0.0.1
Summary: HTTP methods that python supports
Home-page: https://github.com/staimerapi/httpmethods
Author: Braian Staimer
Author-email: braianflorian@gmail.com
License: MIT
Download-URL: https://github.com/staimerapi/httpmethods/archive/1.0.0-alpha.1.tar.gz
Description: # Methods
        
        HTTP verbs that python core's HTTP parser supports.
        
        This module provides an export that is just like
        [HTTP request methods](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) from Developer Mozilla,
        with the following differences:
        
          * All method names are lower-cased.
        
        We use the methods package from [Node.js](https://www.npmjs.com/package/methods) as inspiration
        
        ## Install
        Install and update using [Pip](https://pypi.org/):
        
        ```sh
        $ pip install httpmethods
        ```
        
        ## API
        
        ```python
        import httpmethods as methods
        ```
        
        
        ### A Simple Example
        ```python
        from httpmethods import getHttpMethods
        
        for method in getHttpMethods():
            print(method)
        ```
        ```
        $ get
        $ post
        $ put
        $ delete
        $ ...
        ```
        ## License
        
        [MIT](LICENSE)
Keywords: HTTP,HTTP REQUEST,REQUESTS METHODS
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
