Metadata-Version: 1.1
Name: DrafterPy
Version: 0.1.2
Summary: Python bindings for libdrafter
Home-page: https://github.com/menecio/drafterpy
Author: menecio
Author-email: aristobulo@gmail.com
License: MIT License
Description: DrafterPy
        =========
        
        API Blueprint Parser for Python
        -------------------------------
        Python bindings for the `Drafter`_ library. It might also release the `Kraken`_, so please be careful.
        
        API Blueprint is Web API documentation language. You can find API Blueprint documentation on the `API Blueprint site`_.
        
        Example
        -------
        
        Simple api-blueprint to json parsing:
        
        .. code:: python
        
                from drafterpy.blueprint import Blueprint
        
                content = "# My API\n" \
                    "## GET /message\n" \
                    "+ Response 200 (text/plain)\n" \
                    "\n" \
                    "        Hello World!\n"
        
                bp = Blueprint(content)
                bp.parse()
        
        
        Contribution
        ------------
        Any contributions and advices are welcome. Please report any issues at
        the `Github Page`_.
        
        License
        -------
        MIT License. See the `LICENSE`_ file.
        
        .. _Drafter: https://github.com/apiaryio/drafter
        .. _Kraken: https://en.wikipedia.org/wiki/Kraken 
        .. _API Blueprint site: http://apiblueprint.org
        .. _Github page: https://github.com/menecio/drafterpy
        .. _LICENSE: https://github.com/menecio/drafterpy/blob/master/LICENSE
        
Keywords: python3,api-blueprint
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
