Metadata-Version: 2.1
Name: miniipe
Version: 0.1.6
Summary: An easy, no-dependencies package for writing IPE files from Python.
Home-page: https://github.com/tcvdijk/mini-ipe
Author: Thomas van Dijk
Author-email: tvdmaps@gmail.com
License: UNKNOWN
Description: # Mini-Ipe
        
        This is a source-only, no-dependencies Python package to write [Ipe](http://ipe.otfried.org/) files.
        The proper way to write Ipe files from Python would be to use `ipepython` from [ipe-tools](https://github.com/otfried/ipe-tools), but this requires building a number of things from source, which may be difficult (or just time-consuming) depending on your computing environment.
        Mini-Ipe is a "quick and dirty" way to easily write Ipe files with minimum effort, from a plain Python environment.
        
        ## What are Ipe files
        
        Ipe is an "extensible drawing editor" that is excellent for making diagrams for scientific papers and presentations.
        This makes its file format ideal as output from computational experiments.
        
        ## Example
        ```python
        from miniipe import Document
        
        doc = Document()
        doc.import_stylefile()
        
        doc.add_layer('alpha')
        
        ps = [(0,0), (100,100), (200,0)]
        doc.add_path( ps, color='black', layer='alpha')
        
        doc.write('simple.ipe')
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
