Metadata-Version: 2.1
Name: adia
Version: 2.0.3
Summary: Language for ASCII diagrams.
Home-page: http://github.com/pylover/adia
License: MIT
Description: 
        [![PyPI](http://img.shields.io/pypi/v/adia.svg)](https://pypi.python.org/pypi/adia)
        [![Build](https://github.com/pylover/adia/actions/workflows/build.yml/badge.svg)](https://github.com/pylover/adia/actions/workflows/build.yml)
        [![Coverage Status](https://coveralls.io/repos/github/pylover/adia/badge.svg?branch=master)](https://coveralls.io/github/pylover/adia?branch=master)
        [![Python](https://img.shields.io/badge/Python-%3E%3D3.6-blue)](https://python.org)
        [![Documentation](https://img.shields.io/badge/Documentation-almost%20done-blue)](https://pylover.github.io/adia/docs/latest/html/)
        
        
        # ADia
        ```adia
        diagram: Foo
        sequence:
        foo -> bar: Hello World!
        ```
        
        Output: 
        
        ```
         DIAGRAM: Foo                             
        
         +-----+             +-----+
         | foo |             | bar |
         +-----+             +-----+
            |                   |
            |~~~Hello World!~~~>|
            |                   |
            |<------------------|
            |                   |
         +-----+             +-----+
         | foo |             | bar |
         +-----+             +-----+
        ```
        
        [ADia](https://github.com/pylover/adia) is a language specially designed to 
        render ASCII diagrams.
        
        Currently, only sequence diagrams are supported, but the roadmap is to support 
        two more types of diagrams: `fork` (pylover/adia#42) and `class` 
        (pylover/adia#41).
        
        ## Get Closer!
        
        - [live demo page](https://pylover.github.io/adia/)
        - [documentation](https://pylover.github.io/adia/docs/latest/html/)
        
        The ADia can also run flawlessly inside the browsers using the awesome 
        project: [Brython](https://github.com/brython-dev/brython). 
        
        The https://github.com/pylover/adia-live is a good example of how
        to use it inside the Javascript. In addition, please read the 
        [Javascript API](https://pylover.github.io/adia/docs/latest/html/javascriptapi.html#introduction)
        section of the [documentation](https://pylover.github.io/adia/docs/latest/html/).
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Interpreters
Classifier: Topic :: Text Processing
Description-Content-Type: text/markdown
