Metadata-Version: 1.1
Name: ezdxf
Version: 0.4.2
Summary: A Python package to create/manipulate DXF drawings.
Home-page: http://bitbucket.org/mozman/ezdxf
Author: Manfred Moitzi
Author-email: mozman@gmx.at
License: MIT License
Download-URL: http://bitbucket.org/mozman/ezdxf/downloads
Description: 
        ezdxf
        =====
        
        Abstract
        --------
        
        A Python package to create and modify DXF drawings, independent from the DXF
        version. You can open/save every DXF file without loosing any content (except comments),
        Unknown tags in the DXF file will be ignored but preserved for saving. With this behavior
        it is possible to open also DXF drawings that contains data from 3rd party applications.
        
        Quick-Info
        ----------
        
        - *ezdxf* is a Python package to read and write DXF drawings
        - intended audience: Developer
        - requires Python 2.7 or later, runs on CPython and pypy, maybe on IronPython and Jython
        - OS independent
        - additional required packages: `pyparsing <https://pypi.python.org/pypi/pyparsing/2.0.1>`_
        - MIT-License
        - supported DXF versions: R12, R2000, R2004, R2007, R2010 and R2013
        - preserves third-party DXF content
        
        a simple example::
        
            import ezdxf
            drawing = ezdxf.new(dxfversion='AC1024')
            modelspace = drawing.modelspace()
            modelspace.add_line((0, 0), (10, 0), dxfattribs={'color': 7})
            drawing.layers.create('TEXTLAYER', dxfattribs={'color': 2})
            modelspace.add_text('Test', dxfattribs={'insert': (0, 0.2), 'layer': 'TEXTLAYER'})
            drawing.saveas('test.dxf')
        
        Installation
        ============
        
        Install with pip::
        
            pip install ezdxf
        
        or from source::
        
            python setup.py install
        
        Documentation
        =============
        
        http://pythonhosted.org/ezdxf
        
        http://ezdxf.readthedocs.org/
        
        The source code of ezdxf can be found on bitbucket.org at:
        
        http://bitbucket.org/mozman/ezdxf
        
        Feedback
        ========
        
        Issue Tracker at:
        
        https://bitbucket.org/mozman/ezdxf/issues
        
        Feedback, Q&A, Discussions at Google Groups:
        
        https://groups.google.com/d/forum/python-ezdxf
        
        Mailing List:
        
        python-ezdxf@googlegroups.com
        
        Feedback is greatly appreciated.
        
        Manfred
        
        mozman@gmx.at
        
        News
        ====
        
        Version 0.4.2 - 2014-04-02
        
          * BUGFIX: added missing DXF template files, again
        
        Version 0.4.1 - 2014-04-02
        
          * Beta status
          * added convenience methods place(), grid(), get_attrib_text() and has_attrib() to the Insert entity
          * Supported Python versions: CPython 2.7, 3.3, 3.4 and pypy 2.1
          * BUGFIX: added missing DXF template files
          * BUGFIX: Iteration over drawing.entities yields full functional entities
        
        Version 0.4.0 - 2014-03-16
        
          * Beta status
          * Supported Python versions: CPython 2.7, 3.3 and pypy 2.1/pypy3 2.1-beta
          * new supported DXF entities: LWPolyline, MText
          * pyparsing as external dependency
          * BUGFIX: install error with pip
        
        Version 0.3.0 - 2013-07-20
        
          * Alpha status
          * Supported Python versions: CPython 2.7, 3.3 and pypy 2.0
          * License changed to MIT License
          * Entity Query Language
          * Import data from other DXF files
        
        Version 0.1.0 - 2010-03-14
        
          * Alpha status
          * Initial release
        
Keywords: DXF,CAD
Platform: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides: ezdxf
