Metadata-Version: 1.1
Name: flask2postman
Version: 1.0.2
Summary: A tool that creates a Postman configuration from a Flask application.
Home-page: https://github.com/1000mercis/flask2postman
Author: Guillaume Gelin
Author-email: ramnes@1000mercis.com
License: UNKNOWN
Description: =============
        flask2postman
        =============
        
        A tool that creates a Postman configuration from a Flask application.
        
        
        Install
        =======
        
        .. code-block:: sh
        
            $ pip install flask2postman
        
        
        Example
        =======
        
        See :code:`example.py` for the example application.
        
        .. code-block:: sh
        
            $ flask2postman example.app --name "Example Collection" > example.json
        
        It will write the generated JSON configuration into a :code:`example.json` file,
        then you just have to import than file into Postman ("Import Collection" button,
        left panel, top right), and profit:
        
        .. image:: img/screenshot.jpg
            :alt: Postman screenshot
        
        
        Usage
        =====
        
        .. code-block:: sh
        
            usage: flask2postman [-h] [-n NAME] [-b BASE_URL] [-a] flask_instance
        
            positional arguments:
              flask_instance
        
            optional arguments:
              -h, --help            show this help message and exit
              -n NAME, --name NAME  Postman collection name (default: current directory
                                    name)
              -b BASE_URL, --base_url BASE_URL
                                    the base of every URL (default: {{base_url}})
              -a, --all             also generate OPTIONS/HEAD methods
        
        
        License
        =======
        
        MIT
        
Platform: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
