A Python package to create/manipulate DXF drawings.
Project description
ezdxf
Abstract
A Python package for creating and modifying DXF drawings, regardless of the DXF version. You can open/save any DXF file without losing content (except comments). Unknown tags in the DXF file are ignored but retained for saving. With this behavior it is possible to also open DXF drawings that contain data from third-party applications.
Quick-Info
- ezdxf is a Python package to create new DXF files and read/modify/write existing DXF files
- MIT-License
- the intended audience are programmers
- requires at least Python 3.7
- OS independent
- tested with CPython and pypy3
- has type annotations and passes
mypy --ignore-missing-imports -p ezdxfsuccessful - additional required packages for the core package without add-ons: typing_extensions, pyparsing
- read/write/new support for DXF versions: R12, R2000, R2004, R2007, R2010, R2013 and R2018
- read-only support for DXF versions R13/R14 (upgraded to R2000)
- read-only support for older DXF versions than R12 (upgraded to R12)
- read/write support for ASCII DXF and Binary DXF
- retains third-party DXF content
- optional C-extensions for CPython are included in the binary wheels, available on PyPI for Windows, Linux and macOS
Included Extensions
Additional packages required for these add-ons are not automatically installed during the basic setup, for more information about the setup & dependencies visit the documentation.
- The
drawingadd-on is a translation layer to send DXF data to a render backend, interfaces to matplotlib, which can export images as png, pdf or svg, and PyQt5 are implemented. r12writeradd-on to write basic DXF entities direct and fast into a DXF R12 file or streamiterdxfadd-on to iterate over DXF entities from the modelspace of huge DXF files (> 5GB) which do not fit into memoryImporteradd-on to import entities, blocks and table entries from another DXF documentdxf2codeadd-on to generate Python code for DXF structures loaded from DXF documents as starting point for parametric DXF entity creationacadctbadd-on to read/write plot style files (CTB/STB)pycsgadd-on for basic Constructive Solid Geometry (CSG) modelingMTextExplodeadd-on for exploding MTEXT entities into single-line TEXT entitiestext2pathadd-on to convert text into linear pathsgeoadd-on to support the__geo_interface__meshexfor exchanging meshes with other tools as STL, OFF or OBJ filesopenscadadd-on, an interface to OpenSCADodafcadd-on, an interface to the ODA File Converter to read and write DWG files
A simple example:
import ezdxf
# Create a new DXF document.
doc = ezdxf.new(dxfversion="R2010")
# Create new table entries (layers, linetypes, text styles, ...).
doc.layers.add("TEXTLAYER", color=2)
# DXF entities (LINE, TEXT, ...) reside in a layout (modelspace,
# paperspace layout or block definition).
msp = doc.modelspace()
# Add entities to a layout by factory methods: layout.add_...()
msp.add_line((0, 0), (10, 0), dxfattribs={"color": 7})
msp.add_text(
"Test",
dxfattribs={
"layer": "TEXTLAYER"
}).set_pos((0, 0.2), align="CENTER")
# Save the DXF document.
doc.saveas("test.dxf")
Example for the r12writer, which writes a simple DXF R12 file without in-memory structures:
from random import random
from ezdxf.addons import r12writer
MAX_X_COORD = 1000
MAX_Y_COORD = 1000
with r12writer("many_circles.dxf") as doc:
for _ in range(100000):
doc.add_circle((MAX_X_COORD*random(), MAX_Y_COORD*random()), radius=2)
The r12writer supports only the ENTITIES section of a DXF R12 drawing, no HEADER, TABLES or BLOCKS section is present, except FIXED-TABLES are written, than some additional predefined text styles and line types are available.
Installation
Basic installation by pip including the optional C-extensions from PyPI as binary wheels:
pip install ezdxf
Full installation with all dependencies (matplotlib, PyQt5) to use the drawing add-on:
pip install ezdxf[draw]
For more information about the setup & dependencies visit the documentation.
Website
Documentation
Documentation of the development version at https://ezdxf.mozman.at/docs
Documentation of the latest release at https://ezdxf.readthedocs.io/
Contribution
The source code of ezdxf can be found at GitHub, target your pull requests
to the master branch:
https://github.com/mozman/ezdxf.git
Feedback
Questions and feedback at GitHub Discussions:
https://github.com/mozman/ezdxf/discussions
Questions at Stack Overflow:
Post questions at stack overflow and use the tag dxf or ezdxf.
Issue tracker at GitHub:
http://github.com/mozman/ezdxf/issues
Contact
Please always post questions at the forum or stack overflow to make answers available to other users as well.
Feedback is greatly appreciated.
Manfred
News
Version 0.18 - 2022-07-29
- Release notes: https://ezdxf.mozman.at/release-v0-18.html
- NEW: angular dimension rendering support, new factory methods:
add_angular_dim_2l(),add_angular_dim_3p(),add_angular_dim_cra(),add_angular_dim_arc() - NEW: arc length dimension rendering support, new factory methods:
add_arc_dim_3p(),add_arc_dim_cra(),add_arc_dim_arc() - NEW: ordinate dimension rendering support, new factory methods:
add_ordinate_dim(),add_ordinate_x_dim(),add_ordinate_y_dim() - NEW: extended query functionality for the
EntityQueryclass - NEW: function
ezdxf.tools.text.is_upside_down_text_angle()in WCS - NEW: function
ezdxf.tools.text.upright_text_angle()in WCS - NEW: helper class
ezdxf.math.ConstructionPolylineto measure, interpolate and divide polylines and anything that can be approximated or flattened into vertices - NEW: approximation tool for parametrized curves:
ezdxf.math.ApproxParamT() - NEW:
BoundingBox(2d).intersection(other), returns the 3D/2D bbox of the intersection space - NEW:
BoundingBox(2d).has_intersection(other)replaces deprecated methodintersect() - NEW:
BoundingBox(2d).has_overlap(other)replaces deprecated methodoverlap() - DEPRECATED: method
BoundingBox(2d).intersect()will be removed in v1.0.0 - DEPRECATED: method
BoundingBox(2d).overlap()will be removed in v1.0.0 - CHANGE:
BoundingBox(2d).is_emptyisTruefor bounding boxes with a size of 0 in any dimension or has no data - NEW:
ezdxf.gfxattribs.GfxAttribs()class, docs - NEW:
TextEntityAlignmentenum replaces the string based alignment definition - NEW: method
Text.get_placement(), replacesget_pos() - NEW: method
Text.set_placement(), replacesset_pos() - NEW: method
Text.get_align_enum(), replacesget_align() - NEW: method
Text.set_align_enum(), replacesset_align() - NEW: virtual DXF attribute
MText.dxf.text, adds compatibility to other text based entities:TEXT, ATTRIB, ATTDEF - NEW: command
ezdxf info FILE [FILE ...], show info and optional stats of DXF files - NEW: module
ezdxf.appsettings, docs - NEW: module
ezdxf.addons.binpacking, a simple solution for the bin-packing problem in 2D and 3D, docs - NEW: arguments
heightandrotationfor factory methodsadd_text()andadd_attdef() - NEW: argument
size_inchesin functionezdxf.addons.drawing.matplotlib.qsave() - NEW: DXF/DWG converter function
ezdxf.addons.odafc.convert() - NEW: support for layer attribute override in VIEWPORT entities
- NEW: mesh exchange add-on
ezdxf.addons.meshex: STL, OFF, and OBJ mesh loader and STL, OFF, OBJ, PLY, OpenSCAD and IFC4 mesh exporter, docs - NEW:
ezdxf.addons.openscadadd-on as interface to OpenSCAD, docs - NEW:
acismodule, a toolbox to handle ACIS data, docs - NEW: factory function
add_helix()to create newHELIXentities - NEW: precise bounding box calculation for Bezier curves
- NEW: module
ezdxf.math.trianglationfor polygon triangulation with hole support - NEW: spatial search tree
ezdxf.math.rtree.RTree - NEW: module
ezdxf.math.clusteringfor DBSCAN and K-means clustering - CHANGE: keyword only argument
dxfattribsfor factory methodsadd_text()andadd_attdef() - CHANGE:
recovermodule - recovered integer and float values are logged as severe errors - CHANGE: method
Path.all_lines_to_curve3replaced by functionpath.lines_to_curve3() - CHANGE: method
Path.all_lines_to_curve4replaced by functionpath.lines_to_curve4() - CHANGE: replaced arguments
flattenandsegmentsby argumentfastof tool functionPath.bbox() - CHANGE: replaced argument
flattenby argumentfastin theezdxf.bboxmodule - CHANGE: restructure of the
ezdxf.mathsub-package - BUGFIX #663:
improve handling of large coordinates in
Bezier4PandBezier3Pclasses - BUGFIX #655: fixed invalid flattening of 3D ARC entities
- BUGFIX #640:
DXF loader ignore data beyond
EOFtag - BUGFIX #620:
add missing caret decoding to
fast_plain_mtext() - BUGFIX:
3DSOLIDexport for DXF R2004 has no subclassAcDb3dSolid
Version 0.17.2 - 2022-01-06
- NEW: extended binary wheels support
manylinux2010_x86_64for Python < 3.10 andmanylinux2014_x86_64for Python >= 3.10musllinux_2010_x86_64for Python < 3.10 andmusllinux_2014_x86_64for Python >= 3.10manylinux_2014_aarch64for ARM64 based Linuxmusllinux_2014_aarch64for ARM64 based Linuxmacosx_11_0_arm64for Apple Siliconmacosx_10_9_universal2for Apple Silicon & x86
- NEW: Auditor fixes invalid transparency values
- NEW: Auditor fixes invalid crease data in
MESHentities - NEW: add
transparencyargument toLayerTable.add() - NEW: support for transparency
BYLAYERandBYBLOCKfor thedrawingadd-on - NEW:
Textstyle.make_font()returns the ezdxf font abstraction - NEW: added
dxfattribsargument to methodDrawing.set_modelspace_vport() - NEW:
ezdxf.math.split_bezier()function to split Bezier curves of any degree - NEW:
ezdxf.math.intersection_line_line_3d() - NEW:
ezdxf.math.intersect_poylines_2d() - NEW:
ezdxf.math.intersect_poylines_3d() - NEW:
ezdxf.math.quadratic_bezier_from_3p() - NEW:
ezdxf.math.cubic_bezier_from_3p() - NEW:
BoundingBox.contains(), check if a bounding box contains completely another bounding box - NEW:
TextEntityAlignmentenum replaces the string based alignment definition - NEW: method
Text.get_placement(), replacesget_pos() - NEW: method
Text.set_placement(), replacesset_pos() - NEW: method
Text.get_align_enum(), replacesget_align() - NEW: method
Text.set_align_enum(), replacesset_align() - DEPRECATED: method
Text.get_pos()will be removed in v1.0.0 - DEPRECATED: method
Text.set_pos()will be removed in v1.0.0 - DEPRECATED: method
Text.get_align()will be removed in v1.0.0 - DEPRECATED: method
Text.set_align()will be removed in v1.0.0 - CHANGE: moved enum
MTextEntityAlignmenttoezdxf.enums - CHANGE: moved enum
MTextParagraphAlignmenttoezdxf.enums - CHANGE: moved enum
MTextFlowDirectiontoezdxf.enums - CHANGE: moved enum
MTextLineAlignmenttoezdxf.enums - CHANGE: moved enum
MTextStroketoezdxf.enums - CHANGE: moved enum
MTextLineSpacingtoezdxf.enums - CHANGE: moved enum
MTextBackgroundColortoezdxf.enums - CHANGE:
Dimstyle.set_tolerance(): argumentalignas enumMTextLineAlignment - CHANGE:
DimstyleOverride.set_tolerance(): argumentalignas enumMTextLineAlignment - CHANGE:
MeshData.add_edge()is changed toMeshData.add_edge_crease(), this fixes my misunderstanding of edge and crease data in theMESHentity. - BUGFIX #574:
flattening issues in
Path()andConstructionEllipse() - BUGFIX:
drawingadd-on shows block references inACAD_TABLEat the correct location - BUGFIX #589:
Polyface.virtual_entities()yields correct triangle faces - BUGFIX: prevent invalid DXF export of the
MESHentity - PREVIEW: arc length dimension rendering support, new factory methods:
add_arc_dim_3p(),add_arc_dim_cra(),add_arc_dim_arc() - PREVIEW: ordinate dimension rendering support, new factory methods:
add_ordinate_dim(),add_ordinate_x_dim(),add_ordinate_y_dim() - PREVIEW:
ezdxf.gfxattribs.GfxAttribs()class, docs - PREVIEW: command
ezdxf info FILE [FILE ...], show info and optional stats of DXF files - PREVIEW: approximation tool for parametrized curves:
ezdxf.math.ApproxParamT()
Version 0.17.1 - 2021-11-14
- CHANGE: using PySide6 as Qt binding
if installed,
PyQt5is still supported as fallback - NEW: tracking feature for DXF entity copies, new properties of
DXFEntitysource_of_copy- the immediate source of an entity copyorigin_of_copy- the first non virtual source entity of an entity copyis_copy- isTrueif the entity is a copy
- NEW: source entity tracking for virtual sub-entities for:
POINT,LWPOLYLINE,POLYLINE,LEADER,MLINE,ACAD_PROXY_ENTITY - NEW: source block reference tracking for virtual entities created from block
references, new properties of
DXFEntityhas_source_block_reference- isTrueif the virtual entity was created by a block referencesource_block_reference- the immediate source block reference (INSERT), which created the virtual entity, otherwiseNone
- NEW:
ezdxf.tools.text_sizemodule to measureTEXTandMTEXTentity dimensions - CHANGE:
--ltypearguments of thedrawcommand toapproximateandaccurateto be in sync with thedrawingadd-on configuration. - CHANGE:
--ltypearguments of theviewcommand toapproximateandaccurateto be in sync with thedrawingadd-on configuration. - REMOVE
--scaleargument of theviewcommand - REMOVE:
PolylinePath.PATH_TYPE, usePolylinePath.typeinstead - REMOVE:
EdgePath.PATH_TYPE, useEdgePath.typeinstead - BUGFIX: invalid XDATA processing in
XData.safe_init() - BUGFIX: group code 1003 is valid in XDATA section
- BUGFIX: fix loading error of
DIMSTYLEattributedimtxsty - BUGFIX: fix "Next Entity" and "Previous Entity" actions in the
browsecommand - BUGFIX: export
MTEXTentities with column count different than the count of linkedMTEXTentities - BUGFIX: fix invalid text rotation for relative text shifting for linear dimensions
- PREVIEW: angular dimension rendering support, new factory methods:
add_angular_dim_2l(),add_angular_dim_3p(),add_angular_dim_cra() - PREVIEW: helper class
ezdxf.math.ConstructionPolylineto measure, interpolate and divide polylines and anything that can be approximated or flattened into vertices
Version 0.17 - 2021-10-01
- Release notes: https://ezdxf.mozman.at/release-v0-17.html
- NEW: column support for MTEXT read and create, but no editing
- NEW: factory method
BaseLayout.add_mtext_static_columns() - NEW: factory method
BaseLayout.add_mtext_dynamic_manual_height_columns() - NEW: add-on tool
MTextExplode()to explode MTEXT entities into single line TEXT entities and additional LINE entities to emulate strokes, requires theMatplotlibpackage - NEW:
move_to()command and multi-path support for theezdxf.path.Pathclass - NEW: regular
make_path()support for the HATCH entity, returns a multi-path object - NEW: regular
make_primitive()support for the HATCH entity - NEW:
text2path.make_path_from_str()returns a multi-path object - NEW:
text2path.make_path_from_enity()returns a multi-path object - NEW:
MPOLYGONload/write/create support - NEW:
ezdxf.path.to_mpolygons()function: Path() to MPOLYGON converter - NEW:
ezdxf.path.render_mpolygons()function: render MPOLYGON entities form paths - NEW: store ezdxf and custom metadata in DXF files
- NEW: command
ezdxf browse FILE ..., PyQt DXF structure browser - NEW:
dxf2codeadd-on: functionblack()and methodCode.black_code_str()returns the code string formatted by Black - NEW:
ezdxf.uprightmodule to flip inverted extrusion vectors, for more information read the docs - NEW: support for
ACAD_PROXY_ENTITY - NEW:
BaseLayout.add_mtext_static_columns() - NEW:
BaseLayout.add_mtext_dynamic_manual_height_columns() - NEW: rendering support for inline codes in
MTEXTentities for thedrawingadd-on - NEW:
XDATAtransformation support - NEW: copy support for extension dictionaries
- CHANGE:
drawingadd-on: replaced the backendparamsargument (untyped dict) by the new typedConfigurationobject passed to the frontend class as argumentconfig - REMOVED: deprecated class methods
from_...(entity)fromPathclass, usepath.make_path(entity)instead - REMOVED: deprecated
Pathmethodsadd_...(entity), usepath.add_...(path, entity)function instead - BUGFIX: entity query did not match default values if the attribute was not present
- BUGFIX: groupby query did not match default values if the attribute was not present
- BUGFIX: ODAFC add-on - reintroduce accidentally removed global variable
exec_pathaswin_exec_path - BUGFIX: graphic entities are not allowed as
DICTIONARYentries - BUGFIX: copied
DICTIONARYwas not added to the OBJECTS section by callingfactory.bind() - BUGFIX:
XRecord.copy()copies content tags
Version 0.16.6 - 2021-08-28
- NEW:
MPOLYGONsupport for thedrawingadd-on - NEW:
MPOLYGONsupport for thegeoadd-on - NEW:
fastargument for methodMText.plain_text() - NEW: support for multi-line
ATTRIBandATTDEFentities in DXF R2018 - NEW:
Auditorremoves invalid DXF entities from layouts, blocks and the OBJECTS section - NEW:
Auditorremoves standalone ATTRIB entities from layouts and blocks - NEW:
Drawing.layers.add()factory method to create new layers - NEW:
Drawing.styles.add()factory method to create new text styles - NEW:
Drawing.linetypes.add()factory method to create new line types - CHANGE: renamed
RenderContext.current_layertoRenderContext.current_layer_properties - CHANGE: renamed
RenderContext.current_block_referencetoRenderContext.current_block_reference_properties - CHANGE: extended entity validation for
GROUP - REMOVED:
BaseLayout.add_attrib()factory method to add standaloneATTRIBentities.ATTRIBentities cannot exist as standalone entities. - BUGFIX: add missing "doc" argument to DXF loaders, DXF version was not available at loading stage
- BUGFIX: DXF export for
ARC_DIMENSION - BUGFIX:
Arc.flattening()always have to returnVec3instances - PREVIEW: new features to try out, API may change until official release in v0.17
- PREVIEW: support for
ACAD_PROXY_ENTITY - PREVIEW: Rendering support for inline codes in
MTEXTentities for thedrawingadd-on.
Version 0.16.5 - 2021-07-18
- NEW: hard dependency
typing_extensions - CHANGE: replaced
ezdxf.tools.rgbbyezdxf.colors - CHANGE:
optionsmodule renamed to_options; this eliminates the confusion between theoptionsmodule and the global objectezdxf.options - NEW: config file support, see docs
- NEW:
ezdxf configcommand to manage config files - NEW:
ezdxf.path.have_close_control_vertices(a, b), test for close control vertices of twoPathobjects - REMOVED: environment variable options, these are config file only options:
EZDXF_AUTO_LOAD_FONTSEZDXF_FONT_CACHE_DIRECTORYEZDXF_PRESERVE_PROXY_GRAPHICSEZDXF_LOG_UNPROCESSED_TAGSEZDXF_FILTER_INVALID_XDATA_GROUP_CODES
- REMOVED:
ezdxf.options.default_text_style, was not used - REMOVED:
ezdxf.options.auto_load_fonts, disabling auto load has no advantage - REMOVED:
Vectoralias forVec3 - REMOVED:
get_acis_data(),set_acis_data()and context manageredit_data()from ACIS based entities, useacis_dataproperty instead asList[str]orList[bytes] - BUGFIX:
Spline.construction_tool()recognizes start- and end tangents for B-splines from fit points if defined - PREVIEW: new features to try out, API may change until official release in v0.17
- PREVIEW:
dxf2codeadd-on: functionblack()and methodCode.black_code_str()returns the code string formatted by Black - PREVIEW:
ezdxf.uprightmodule to flip inverted extrusion vectors, for more information read the docs
Version 0.16.4 - 2021-06-20
- NEW:
PolylinePath.typeandEdgePath.typeasezdxf.entities.BoundaryPathTypeenum - NEW:
LineEdge.type,ArcEdge.type,EllipseEdge.typeandSplineEdge.typeasezdxf.entities.EdgeTypeenum - NEW:
Path.all_lines_to_curve3(), convert all LINE_TO commands into linear CURVE3_TO commands - NEW:
Path.all_lines_to_curve4(), convert all LINE_TO commands into linear CURVE4_TO commands - NEW: create an AppID
EZDXFwhen saving a DXF file by ezdxf - BUGFIX: loading crash of the PyQt
CADViewerclass - BUGFIX: loading
GEODATAversion 1, perhaps data is incorrect, logged as warning - BUGFIX:
HATCHspline edge from fit points require start- and end tangents - BUGFIX:
disassemble.make_primitive()transform LWPOLYLINE including width values into WCS - BUGFIX: ignore open loops in
HATCHedge paths - BUGFIX: correct application of the
Dimension.dxf.insertattribute - BUGFIX: fixed incorrect "thickness" transformation of OCS entities
- BUGFIX: add missing "width" transformation to POLYLINE and LWPOLYLINE
- BUGFIX: drawing add-on handles the invisible flag for INSERT correct
- PREVIEW: new features to try out, API may change until official release in v0.17
- PREVIEW:
move_to()command and multi-path support for theezdxf.path.Pathclass - PREVIEW:
MPOLYGONload/write/create support - PREVIEW: store ezdxf and custom metadata in DXF files, see docs
- PREVIEW: command
ezdxf browse FILE, PyQt DXF structure browser - PREVIEW: command
ezdxf strip FILE [FILE ...], remove comment tags (999) and the THUMBNAILIMAGE section
Version 0.16.3 - 2021-05-22
- NEW:
ezdxf.tools.text.MTextEditorclass, extracted from theMTextclass - NEW:
MText.set_bg_color(), new argumenttext_frameto add a text frame - CHANGE: move
MTextconstants toMTextEditorclass - CHANGE: move
MText.set_font()toMTextEditor.change_font() - CHANGE: move
MText.set_color()toMTextEditor.change_color() - CHANGE: move
MText.append_stacked_text()toMTextEditor.stacked_text() - BUGFIX: DXF export of GROUP checks for deleted entities
- BUGFIX: improved virtual DIMENSION handling
- BUGFIX: DIMENSION transformation also transform the content of the associated anonymous geometry block content
- BUGFIX:
drawingadd-on, true color values always override ACI colors - BUGFIX:
drawingadd-on, handle SOLID as OCS entity like TRACE - BUGFIX/CHANGE:
Vec2/3.__eq__()(==operator) compares all components with the full floating point precision, useVec2/3.isclose()to take floating point imprecision into account. This is an annoying but necessary change! - CHANGE: new signature for
Vec2/3.isclose(other, *, rel_tol=1e-9, abs_tol=1e-12), new argumentrel_tol, argumentsrel_tolandabs_tolare keyword only
Version 0.16.2 - 2021-04-21
- CHANGED:
ezdxf.path.add_bezier4p(), add linear Bezier curve segments as LINE_TO commands - CHANGED:
ezdxf.path.add_bezier3p(), add linear Bezier curve segments as LINE_TO commands - CHANGED:
$FINGERPRINTGUIDmatches AutoCAD pattern{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} - CHANGED:
$VERSIONGUIDmatches AutoCAD pattern{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} - BUGFIX: check for degenerated Bezier curves in
have_bezier_curves_g1_continuity() - BUGFIX: delete and unlink support for DXFTagStorage (unsupported entities)
Version 0.16.1 - 2021-04-10
- BUGFIX:
disassemble.recursive_decompose()was not recursive - BUGFIX:
Frontendfont resolver uses XDATA if no regular font file is defined - BUGFIX: version specific group code for header variable
$XCLIPFRAME - BUGFIX:
INSERT(block reference) transformation
Version 0.16 - 2021-03-27
- Release notes: https://ezdxf.mozman.at/release-v0-16.html
- NEW:
ezdxfcommand line launcher, supported commands:ppthe previousdxfppcommand, the DXF pretty printerauditDXF filesdrawand convert DXF files by the Matplotlib backendviewDXF files by the PyQt viewer
- NEW:
text2pathadd-on to createPathobjects from text strings and text entities, see docs - NEW:
bboxmodule to detect the extents (bounding boxes) of DXF entities, see docs - NEW:
zoommodule to reset the active viewport of layouts, see docs - NEW:
pathsub-package, an extended version of the previousezdxf.render.pathmodule, see docs - NEW: support module
disassemble, see docs- deconstruct complex nested DXF entities into a flat sequence
- create a "primitive" representation of DXF entities
- NEW: Using the optional
Matplotlibpackage by default for better font metric calculation and font rendering if available. - NEW: Cached font metrics are loaded at startup, this can be disabled by the
environment variable
EZDXF_AUTO_LOAD_FONTS=False, if this slows down the interpreter startup too much. - NEW:
Layout.reset_extents(), reset layout extents to the given values, or the AutCAD default values - NEW:
Layout.reset_limits(), reset layout limits to the given values, or the AutCAD default values - NEW:
Paperspace.reset_main_viewport(), reset the main viewport of a paper space layout to custom- or default values - NEW: quadratic Bézier curve support for the
Path()class - NEW:
ezdxf.entity.Textgetter/setter propertiesis_backwardandis_upside_down - NEW:
ezdxf.entity.TextStylegetter/setter propertiesis_backward,is_upside_downandis_vertical_stacked - NEW:
ezdxf.math.Bezier3P, optimized quadratic Bézier curve construction tool - NEW:
ezdxf.math.quadratic_to_cubic_bezier(),Bezier3PtoBezier4Pconverter - NEW:
ezdxf.math.bezier_to_bspline(), Bézier curves to B-spline converter - NEW:
ezdxf.math.clip_polygon_2d(), clip polygon by a convex clipping polygon - NEW:
ezdxf.math.basic_transformation(), returns a combined transformation matrix for translation, scaling and rotation about the z-axis - NEW:
ezdxf.math.best_fit_normal(), returns the normal vector of flat spatial planes - NEW:
fit_points_to_cubic_bezier()creates a visual equal SPLINE from fit points without end tangents like BricsCAD, but only for short B-splines. - CHANGED:
fit_points_to_cad_cv(), removed unused argumentsdegreeandmethod - CHANGED:
ezdxf.render.nestingcontent moved into theezdxf.pathpackage - CHANGED: renamed
MeshBuilder.render()toMeshBuilder.render_mesh() - CHANGED:
ezdxf.math.BSplineis immutable, all methods return a newBSplineobject - CHANGED: replaced
BSplineU()class by factory functionezdxf.math.open_uniform_bspline() - CHANGED: replaced
BSplineClosed()class by factory functionezdxf.math.closed_uniform_bspline() - CHANGED: renamed
rational_spline_from_arc()torational_bspline_from_arc() - CHANGED: renamed
rational_spline_from_ellipse()torational_bspline_from_ellipse() - BUGFIX: fixed
ezdxf.math.rational_bspline_from_ellipse()invalid parameter conversion - DEPRECATED:
ezdxf.render.pathmodule, replaced byezdxf.pathpackage - DEPRECATED:
Path.from_lwpolyline(), replaced by factorypath.make_path() - DEPRECATED:
Path.from_polyline(), replaced by factorypath.make_path() - DEPRECATED:
Path.from_spline(), replaced by factorypath.make_path() - DEPRECATED:
Path.from_ellipse(), replaced by factorypath.make_path() - DEPRECATED:
Path.from_arc(), replaced by factorypath.make_path() - DEPRECATED:
Path.from_circle(), replaced by factorypath.make_path() - DEPRECATED:
Path.add_curve(), replaced by functionpath.add_bezier4p() - DEPRECATED:
Path.add_ellipse(), replaced by functionpath.add_ellipse() - DEPRECATED:
Path.add_spline(), replaced by functionpath.add_spline() - DEPRECATED:
Path.from_vertices(), replaced by factorypath.from_vertices() - REMOVED:
Path.from_hatch_boundary_path(), replaced by factorypath.from_hatch() - REMOVED:
Path.from_hatch_polyline_path() - REMOVED:
Path.from_hatch_edge_path() - REMOVED:
BlocksSection.purge(), unsafe operation - REMOVED:
dxfppcommand, replaced byezdxf pp ... - REMOVED:
Layout.add_closed_spline(), broken and nobody noticed it - REMOVED:
Layout.add_closed_rational_spline(), broken and nobody noticed it
Version 0.15.2 - 2021-02-07
- Active Python 3.6 support removed, no tests and no deployment of binary wheels for Python 3.6
- NEW:
BoundingBox()intersection test, inside- and outside tests, union of two bounding boxes. - NEW:
ezdxf.math.ellipse_param_span(), works the same way asarc_angle_span_deg()for special cases - NEW:
DXFEntity.uuidproperty, returns an UUID on demand, which allows distinguishing even virtual entities without a handle - CHANGE: extraction of many text utility functions into
ezdxf.tools.text - CHANGE:
add_polyline2d(),add_polyline3d(),add_lwpolyline()andadd_mline()got argumentcloseto create a closed polygon and dxfattribclosedis deprecated,closeanddxfattribsfor these factories are keyword only arguments. - CHANGE: improved text alignment rendering in the drawing add-on
- CHANGE: moved
ezdxf.addons.drawing.fonts.pyintoezdxf.toolsand added a font measurement cache. - BUGFIX:
FITandALIGNEDtext rendering in the drawing add-on - BUGFIX: matplotlib backend uses linewidth=0 for solid filled polygons and the scaled linewidth for polygons with pattern filling
- BUGFIX: clipping path calculation for IMAGE and WIPEOUT
- BUGFIX: transformation of a closed (360deg) arc preserves a closed arc
- BUGFIX: bulge values near 0 but != 0 caused an exception in
Path.add_2d_polyline() - BUGFIX: invalid polygon building in the
geoadd-on
Version 0.15.1 - 2021-01-15
- NEW:
Spline.audit()audit support for the SPLINE entity - NEW: The
recovermodule tolerates malformed group codes and value tags. - Changed the
Matrix44.matrixattribute in the Python implementation to a "private" attributeMatrix44._matrix, because this attribute is not available in the Cython implementation - BUGFIX: proxy graphic decoding error on big-endian systems
- BUGFIX: invalid vertex subscript access in
dxf2codeadd-on - BUGFIX:
cubic_bezier_from_ellipse()recognizes full ellipses - BUGFIX:
cubic_bezier_from_arc()recognizes full circles - BUGFIX: pickle support for C-extensions
Vec2,Vec3,Matrix44andBezier4P - BUGFIX: attribute error when exporting matrices in the MATERIAL entity
Version 0.15 - 2020-12-30
- Release notes: https://ezdxf.mozman.at/release-v0-15.html
- NEW: linetype support for matplotlib- and pyqt drawing backend
- NEW: HATCH island support for matplotlib- and pyqt drawing backend
- NEW: basic HATCH pattern support for matplotlib- and pyqt drawing backend
- NEW: Font support for matplotlib- and pyqt drawing backend
- NEW: POINT mode support for matplotlib- and pyqt drawing backend, relative point size is not supported
- NEW: Proxy graphic support for the drawing add-on
- NEW: recover misplaced tags of the
AcDbEntitysubclass (color, layer, linetype, ...), supported by all loading modes - NEW:
ezdxf.addons.geomodule, support for the__geo_interface__, see docs and tutorial - NEW:
GeoData.setup_local_grid()setup geo data for CRS similar to EPSG:3395 World Mercator - NEW: MLINE support but without line break and fill break (gaps) features
- NEW:
Bezier.flattening()adaptive recursive flattening (approximation) - NEW:
Bezier4P.flattening()adaptive recursive flattening (approximation) - NEW:
Path.flattening()adaptive recursive flattening (approximation) - NEW:
Circle.flattening()approximation determined by a max. sagitta value - NEW:
Arc.flattening()approximation determined by a max. sagitta value - NEW:
ConstructionArc.flattening()approximation determined by a max. sagitta value - NEW:
ezdxf.math.distance_point_line_3d() - NEW:
ConstructionEllipse.flattening()adaptive recursive flattening (approximation) - NEW:
Ellipse.flattening()adaptive recursive flattening (approximation) - NEW:
BSpline.flattening()adaptive recursive flattening (approximation) - NEW:
Spline.flattening()adaptive recursive flattening (approximation) - NEW:
matplotlib.qsave(),ltypeargument to switch between matplotlib dpi based linetype rendering and AutoCAD like drawing units based linetype rendering - NEW:
Solid.vertices()returns OCS vertices in correct order (alsoTrace) - NEW:
Solid.wcs_vertices()returns WCS vertices in correct order (alsoTrace) - NEW:
Face3D.wcs_vertices()compatibility interface to SOLID and TRACE - NEW:
Hatch.paths.external_paths()returns iterable of external boundary paths - NEW:
Hatch.paths.outermost_paths()returns iterable of outer most boundary paths - NEW:
Hatch.paths.default_paths()returns iterable of default boundary paths - NEW:
Hatch.paths.rendering_paths()returns iterable of paths to process for rendering - NEW:
Drawing.unitsproperty to get/set document/modelspace units - NEW:
ezdxf.new()argumentunitsto setup document and modelspace units and $MEASUREMENT setting and the linetype setup is based on this $MEASUREMENT setting. - NEW:
pattern.load(measurement, factor)load scaled hatch pattern - NEW:
Path.from_hatch_boundary_path() - NEW:
odafc.export_dwg()new replace option to delete existing DWG files - NEW
Styletable entry supports extended font data - NEW:
Point.virtual_entities(), yield POINT entities as DXF primitives - NEW:
ezdxf.render.point, support module forPoint.virtual_entities() - NEW: Optional Cython implementation of some low level math classes: Vec2, Vec3, Matrix44, Bezier4P
- NEW: support for complex linetypes for the Importer add-on
- CHANGE: Optimized infrastructure for loading DXF attributes
- CHANGE:
Hatch.set_pattern_fill()uses HEADER variable $MEASUREMENT to determine the default scaling of predefined hatch pattern. - CHANGE: fix invalid linetype setup - new linetype scaling like common CAD applications
- CHANGE:
ezdxf.colorsmodule will consolidate all color/transparency related features - CHANGE: renamed
ezdxf.math.VectortoVec3, butVectorremains as synonym - DEPRECATED:
ezdxf.tools.rgbmodule replaced byezdxf.colors - REMOVED: deprecated
DXFEntity.transform_to_wcs()interface, useDXFEntity.transform(ucs.matrix) - REMOVED: deprecated
Hatch.edit_boundary()context manager, useHatch.pathsattribute - REMOVED: deprecated
Hatch.get_gradient()method, useHatch.gradientattribute - REMOVED: deprecated
Hatch.edit_gradient()context manager, useHatch.gradientattribute - REMOVED: deprecated
Hatch.edit_pattern()context manager, useHatch.patternattribute - REMOVED: deprecated
Hatch.get_seed_points()method, useHatch.seedsattribute - REMOVED: unnecessary argument
non_uniform_scalingfromInsert.explode() - REMOVED: unnecessary argument
non_uniform_scalingfromInsert.virtual_entities() - REMOVED: deprecated
Spline.edit_data()context manager, usefit_points,control_points,knotsandweightsattributes - BUGFIX:
ezdxf.math.has_clockwise_orientation()returnsTruefor counter-clock wise and vice versa - BUGFIX: default color for HATCH is 256 (by layer)
- BUGFIX: fixed broken complex linetype setup
- BUGFIX: validate loaded handle seed
Version 0.14.2 - 2020-10-18
- Release notes: https://ezdxf.mozman.at/release-v0-14.html
- BUGFIX: fix invalid attribute reference
self.drawing
Version 0.14.1 - 2020-09-19
- Release notes: https://ezdxf.mozman.at/release-v0-14.html
- BUGFIX: MLEADER and MLEADERSTYLE min DXF version changed to R2000
- BUGFIX: AutoCAD ignores not existing default objects in ACDBDICTIONARYWDFLT
and so ezdxf have to.
Auditor()creates a place holder object as default value.
Version 0.14 - 2020-09-12
- Release notes: https://ezdxf.mozman.at/release-v0-14.html
- NEW: DXF attribute setter validation, some special and undocumented Autodesk
table names may raise
ValueError()exceptions, please report this table names (layers, linetypes, styles, ...). DXF unicode notation "\U+xxxx" raises aValueError()if used as resource names like layer name or text style names, such files can only be loaded by the newrecovermodule. - NEW:
ezdxf.recovermodule to load DXF Documents with structural flaws, see docs - NEW: All DXF loading functions accept an unicode decoding error handler:
"surrogateescape", "ignore" or "strict", see docs
of the
recovermodule for more information. - NEW:
addons.drawing.Frontend()supports width attributes of LWPOLYLINE and 2D POLYLINE entities - NEW:
TraceBuilder()a render tool to generate quadrilaterals (TRACE, SOLID or 3DFACE), from LWPOLYLINE or 2D POLYLINE with width information, see docs - NEW:
Path()a render tool for paths build of lines and cubic Bezier curves, used for faster rendering of LWPOLYLINE, POLYLINE and SPLINE entities for render back-ends, see docs - NEW:
drawing.matplotlib.qsave()function, a simplified matplotlib export interface - NEW:
Arc.construction_tool()returns the 2DConstructionArc() - NEW:
Arc.apply_construction_tool()apply parameters fromConstructionArc() - NEW:
Leader.virtual_entities()yields 'virtual' DXF primitives - NEW:
Leader.explode()explode LEADER as DXF primitives into target layout - NEW:
LWPolyline.has_widthproperty isTrueif any width attribute is set - NEW:
Polyline.has_widthproperty isTrueif any width attribute is set - NEW:
Polyline.audit()extended verify and repair support - NEW:
Polyline.append_formatted_vertices(), support for user defined point format - NEW:
DXFVertex.format()support for user defined point format - NEW:
Drawing.blocks.purge()delete all unused blocks but protect modelspace- and paperspace layouts, special arrow blocks and DIMENSION and ACAD_TABLE blocks in use, but see also warning in the docs - NEW:
Insert.explode()support for MINSERT (multi insert) - NEW:
Insert.virtual_entities()support for MINSERT (multi insert) - NEW:
Insert.mcountproperty returns multi insert count - NEW:
Insert.multi_insert()yields a virtual INSERT entity for each grid element of a MINSERT entity - NEW:
Layout.add_wipeout()interface to create WIPEOUT entities - NEW:
Image.boundary_path_wcs(), returns boundary path in WCS coordinates - NEW:
Wipeout.boundary_path_wcs(), returns boundary path in WCS coordinates - NEW:
Wipeout.set_masking_area() - NEW:
BSpline.is_clampedproperty isTruefor a clamped (open) B-spline - NEW:
UCS.transform()general transformation interface - NEW:
Bezier4P.transform()general transformation interface - NEW:
Bezier4P.reverse()returns object with reversed control point order - NEW:
Bezier.transform()general transformation interface - NEW:
Bezier.reverse()returns object with reversed control point order - NEW:
has_clockwise_orientation(vertices)returnsTrueif the closed polygon of 2D vertices has clockwise orientation - NEW:
DXFEntity.new_extension_dict(), create explicit a new extension dictionary - NEW:
ezdxf.reorder, support module to implement modified entities redraw order - NEW: get DXF test file path from environment variable
EZDXF_TEST_FILES, imported automatically asezdxf.EZDXF_TEST_FILES - NEW:
arc_chord_length()andarc_segment_count()tool functions inezdxf.math - NEW:
Drawing.encode()to encode unicode strings with correct encoding and error handler - NEW:
ezdxf.has_dxf_unicode()to detect "\U+xxxx" encoded chars - NEW:
ezdxf.decode_dxf_unicode()to decode strings containing
"\U+xxxx" encoded chars, the newrecovermodule decodes such strings automatically. - CHANGE:
DXFEntity.get_extension_dict(), raisesAttributeErrorif entity has no extension dictionary - CHANGE:
DXFEntity.has_extension_dictis now a property not a method - CHANGE:
linspace()usesDecimal()for precise calculations, but still returns an iterable offloat - CHANGE:
Drawing.blocks.delete_all_blocks(), unsafe mode is disabled and argumentsafeis deprecated, will be removed in v0.16 - CHANGE: Dictionary raise
DXFValueErrorfor adding invalid handles - CHANGE:
BaseLayout.add_entity()will bind entity automatically to doc/db if possible - CHANGE: handle all layout names as case insensitive strings:
Model == MODEL - REMOVE:
option.check_entity_tag_structure, entity check is done only in recover mode - REMOVE:
legacy_modeinezdxf.read()andezdxf.readfile(), use theezdxf.recovermodule to load DXF Documents with structural flaws - REMOVE: Alias
DXFEntity.drawinguseDXFEntity.doc - REMOVE:
DXFEntity.entitydb - REMOVE:
DXFEntity.dxffactory - REMOVE:
DXFInvalidLayerName, replaced byDXFValueError - REMOVE:
Image.get_boundary_path(), replaced by propertyImage.boundary_path - REMOVE:
Image.get_image_def(), replaced by propertyImage.image_def - REMOVE:
filter_stackargument inezdxf.read()andezdxf.readfile() - BUGFIX: Set
non-constant-attribsflag (2) in BLOCK at DXF export if non constant ATTDEF entities are present. - BUGFIX: DXF R2018 -
HATCHextrusion vector (210) is mandatory? - BUGFIX: Layout names are case insensitive; "MODEL" == "Model"
- BUGFIX: Using "surrogateescape" error handler to preserve binary data in ASCII DXF files. Prior versions of ezdxf corrupted this data by using the "ignore" error handler; Example file with binary data in XRECORD is not valid for TrueView 2020 - so binary data is maybe not allowed.
Version 0.13.1 - 2020-07-18
- Release notes: https://ezdxf.mozman.at/release-v0-13.html
- BUGFIX: remove white space from structure tags like
"SECTION " - BUGFIX:
MeshBuilder.from_polyface()processing error of POLYMESH entities
Version 0.13 - 2020-07-04
- Release notes: https://ezdxf.mozman.at/release-v0-13.html
- NEW: general transformation interface:
DXFGraphic.transform(m), transform entity by a transformation matrixminplace - NEW: specialized entity transformation interfaces:
DXFGraphic.translate(dx, dy, dz)DXFGraphic.scale(sx, sy, sz)DXFGraphic.scale_uniform(s)DXFGraphic.rotate_axis(axis, angle)DXFGraphic.rotate_x(angle)DXFGraphic.rotate_y(angle)DXFGraphic.rotate_z(angle)
- NEW: drawing add-on by Matt Broadway is a translation layer to send DXF data to a render backend, supported backends for now: matplotlib and PyQt5, both packages are optional and not required to install ezdxf.
- NEW:
DXFGraphic.unlink_from_layout()to unlink entity from associated layout - NEW:
Arc.angles(num), yieldsnumangles from start- to end angle in counter clockwise order - NEW:
Circle.to_ellipse(), convert CIRCLE/ARC to ELLIPSE entity - NEW:
Circle.to_spline(), convert CIRCLE/ARC to SPLINE entity - NEW:
Ellipse.params(num), yieldsnumparams from start- to end param in counter clockwise order - NEW:
Ellipse.construction_tool(), return ellipse data asConstructionEllipse() - NEW:
Ellipse.apply_construction_tool(), applyConstructionEllipse()data - NEW:
Ellipse.to_spline(), convert ELLIPSE to SPLINE entity - NEW:
Ellipse.from_arc(), create a new ELLIPSE entity from CIRCLE or ARC entity (constructor) - NEW:
Spline.construction_tool(), return spline data asezdxf.math.BSpline() - NEW:
Spline.apply_construction_tool(), applyezdxf.math.BSpline()data - NEW:
Spline.from_arc(), create a new SPLINE entity from CIRCLE, ARC or ELLIPSE entity (constructor) - NEW:
Hatch.set_pattern_scale()to set scaling of pattern definition - NEW:
Hatch.set_pattern_angle()to set rotation angle of pattern definition - NEW:
Hatch.paths.polyline_to_edge_paths()convert polyline paths with bulge values to edge paths with lines and arcs - NEW:
Hatch.paths.arc_edges_to_ellipse_edges()convert arc edges to ellipse edges - NEW:
Hatch.paths.ellipse_edges_to_spline_edges()convert ellipse edges to spline edges - NEW:
Hatch.paths.all_to_spline_edges()convert all curves to approximated spline edges - NEW:
Hatch.paths.all_to_line_edges()convert all curves to approximated line edges - NEW:
Text.plain_text()returns text content without formatting codes - NEW:
ezdxf.math.ConstructionEllipse() - NEW:
ezdxf.math.linspace()likenumpy.linspace() - NEW:
ezdxf.math.global_bspline_interpolation()supports start- and end tangent constraints - NEW:
ezdxf.math.estimate_tangents()curve tangent estimator for given fit points - NEW:
ezdxf.math.estimate_end_tangent_magnitude()curve end tangent magnitude estimator for given fit points - NEW:
ezdxf.math.rational_bspline_from_arc()returns a rational B-spline for a circular arc - NEW:
ezdxf.math.rational_bspline_from_ellipse()returns a rational B-spline for an elliptic arc - NEW:
ezdxf.math.local_cubic_bspline_interpolation() - NEW:
ezdxf.math.cubic_bezier_from_arc()returns an approximation for a circular 2D arc by multiple cubic Bezier curves - NEW:
ezdxf.math.cubic_bezier_from_ellipse()returns an approximation for an elliptic arc by multiple cubic Bezier curves - NEW:
ezdxf.math.cubic_bezier_interpolation()returns an interpolation curve for arbitrary data points as multiple cubic Bezier curves - NEW:
ezdxf.math.LUDecompositionlinear equation solver, for more linear algebra tools see moduleezdxf.math.linalg - NEW:
ezdxf.render.random_2d_path()generate random 2D path for testing purpose - NEW:
ezdxf.render.random_3d_path()generate random 3D path for testing purpose - NEW:
BSpline()uses normalized knot vector for 'clamped' curves by default (open uniform knots) - NEW:
BSpline.points()compute multiple points - NEW:
BSpline.derivative()compute point and derivative up to n <= degree - NEW:
BSpline.derivatives()compute multiple points and derivatives up to n <= degree - NEW:
BSpline.params()return evenly spaced B-spline params from start- to end param - NEW:
BSpline.reverse()returns a new reversed B-spline - NEW:
BSpline.from_arc()B-spline from an arc, best approximation with a minimum number of control points - NEW:
BSpline.from_ellipse()B-spline from an ellipse, best approximation with a minimum number of control points - NEW:
BSpline.from_fit_points()B-spline from fit points - NEW:
BSpline.arc_approximation()B-spline approximation from arc vertices as fit points - NEW:
BSpline.ellipse_approximation()B-spline approximation from ellipse vertices as fit points - NEW:
BSpline.transform()transform B-spline by transformation matrix inplace - NEW:
BSpline.transform()transform B-spline by transformation matrix inplace - NEW:
BSpline.to_nurbs_python_curve()andBSpline.from_nurbs_python_curve(), interface to NURBS-Python,NURBS-Pythonis now a testing dependency - NEW:
BSpline.bezier_decomposition()decompose a non-rational B-spline into multiple Bezier curves - NEW:
BSpline.cubic_bezier_approximation()approximate any B-spline by multiple cubic Bezier curves - NEW:
Bezier.points()compute multiple points - NEW:
Bezier.derivative()compute point, 1st and 2nd derivative for one parameter - NEW:
Bezier.derivatives()compute point and derivative for multiple parameters - CHANGE:
Hatchfull support for rotated patterns. - CHANGE:
Hatch.set_pattern_definition()added argumentanglefor pattern rotation. - CHANGE:
Hatch.path.add_arcrenamed argumentis_counter_clockwisetoccw, typeboolandTrueby default - CHANGE:
Hatch.path.add_ellipserenamed argumentis_counter_clockwisetoccw, typeboolandTrueby default - CHANGE: renamed 2D
ConstructionXXX.move()methods totranslate() - CHANGE: renamed old
Insert.scale()toInsert.set_scale(), name conflict with transformation interface - CHANGE: renamed
Spline.set_periodic()toSpline.set_closed() - CHANGE: renamed
Spline.set_periodic_rational()toSpline.set_closed_rational() - CHANGE: renamed
ezdxf.math.bspline_control_frame()toezdxf.math.global_bspline_interpolation() - REMOVED:
ezdxf.math.Matrix33class,UCSandOCSusesMatrix44for transformations - REMOVED:
ezdxf.math.BRCSclass andInsert.brcs() - REMOVED:
ezdxf.math.ConstructionToolbase class - REMOVED:
ezdxf.math.normalize_angle(angle), replace call by expression:angle % math.tau - REMOVED:
ezdxf.math.DBSpline, integrated asBSpline.derivatives() - REMOVED:
ezdxf.math.DBSplineU, integrated asBSplineU.derivatives() - REMOVED:
ezdxf.math.DBSplineClosed, integrated asBSplineClosed.derivatives() - REMOVED:
ezdxf.math.DBezier, integrated asBezier.derivatives() - REMOVED:
BaseLayout.add_spline_approx(), incorrect and nobody noticed it - so it's not really needed, if required use thegeomdl.fitting.approximate_curve()function from the package NURBS-Python, see exampleusing_nurbs_python.py - REMOVED:
ezdxf.math.bspline_control_frame_approx(), incorrect and nobody noticed it - so it's not really needed - DEPRECATED:
DXFGraphic.transform_to_wcs(ucs), replace call byDXFGraphic.transform(ucs.matrix) - DEPRECATED:
non_uniform_scalingargument forInsert.explode() - DEPRECATED:
non_uniform_scalingargument forInsert.virtual_entities() - DEPRECATED: getter and edit methods in
Hatchfor attributespaths,gradient,patternandseeds - DEPRECATED:
Spline.edit_data()all attributes accessible by properties - BUGFIX:
ezdxf.math.intersection_ray_ray_3d() - BUGFIX:
Spline.set_periodic()created invalid data for BricsCAD - misleading information by Autodesk
Version 0.12.5 - 2020-06-05
- BUGFIX: DXF export error for hatches with rational spline edges
Version 0.12.4 - 2020-05-22
- BUGFIX: structure validator for XRECORD
Version 0.12.3 - 2020-05-16
- BUGFIX: DXF R2010+ requires zero length tag 97 for HATCH/SplineEdge if no fit points exist (vshu3000)
- BUGFIX: Export order of XDATA and embedded objects (vshu3000)
- BUGFIX: ATTRIB and ATTDEF did not load basic DXF attributes
- NEW:
BlockLayout()propertiescan_explodeandscale_uniformly - NEW:
Hatch.remove_association()
Version 0.12.2 - 2020-05-03
- BUGFIX:
XData.get()now raisesDXFValueErrorfor not existing appids, like all other methods of theXData()class - BUGFIX:
Layer.descriptionreturns an empty string for unknown XDATA structure inAcAecLayerStandard - BUGFIX: Initialize/Load
Hatchedge coordinates asVec2()objects - BUGFIX: typo in 3 point angular dimension subclass marker (vshu3000)
- BUGFIX: HATCH/SplineEdge did export length tag 97 if no fit points exist, creates invalid DXF for AutoCAD/BricsCAD (vshu3000)
- BUGFIX: Ellipse handling in
virtual_block_reference_entities()(Matt Broadway)
Version 0.12.1 - 2020-04-25
- BUGFIX: fixed uniform scaled ellipse handling in
explode.virtual_block_reference_entities() - BUGFIX: fixed crash caused by floating point inaccuracy in
Vector.angle_between()(Matt Broadway) - BUGFIX: fixed crash for axis transformation of nearly perpendicular ellipse axis
- BUGFIX: fixed
Hatch.has_critical_elements()
Version 0.12 - 2020-04-12
- Release notes: https://ezdxf.mozman.at/release-v0-12.html
- NEW:
Insert.block()returns associatedBlockLayout()orNoneif block not exist or is an XREF - NEW:
Insert.has_scalingreturnsTrueif any axis scaling is applied - NEW:
Insert.has_uniform_scalingreturnsTrueif scaling is uniform in x-, y- and z-axis. - NEW:
Insert.scale(factor)set uniform scaling. - NEW:
Insert.virtual_entities()yields 'virtual' entities of a block reference (experimental) - NEW:
Insert.explode()explode block reference entities into target layout (experimental) - NEW:
Insert.add_auto_attribs()add ATTRIB entities defined as ATTDEF in the block layout and fill tags with values defined by adict(experimental) - NEW:
LWPolyline.virtual_entities()yields 'virtual' LINE and ARC entities - NEW:
LWPolyline.explode()explode LWPOLYLINE as LINE and ARC entities into target layout - NEW:
Polyline.virtual_entities()yields 'virtual' LINE, ARC or 3DFACE entities - NEW:
Polyline.explode()explode POLYLINE as LINE, ARC or 3DFACE entities into target layout - NEW:
Dimension.virtual_entities()yields 'virtual' DXF entities - NEW:
Dimension.explode()explode DIMENSION as basic DXF entities into target layout - NEW:
Dimension.transform_to_wcs()support for UCS based entity transformation - NEW:
Dimension.override()returnsDimStyleOverride()object - NEW:
Dimension.render()render graphical representation as anonymous block - NEW:
Block()propertiesis_anonymous,is_xrefandis_xref_overlay - NEW:
R12FastStreamWriter.add_polyline_2d(), add 2D POLYLINE with start width, end width and bulge value support - NEW:
Ellipse.minor_axisproperty returns minor axis asVector - NEW: Option
ezdxf.options.write_fixed_meta_data_for_testing, writes always same timestamps and GUID - NEW: Support for loading and exporting proxy graphic encoded as binary data, by default disabled
- NEW:
ezdxf.proxygraphic.ProxyGraphic()class to examine binary encoded proxy graphic (Need more example data for testing!) - NEW: Get/set hyperlink for graphic entities
- NEW:
odafcadd-on to use an installed ODA File Converter for reading and writing DWG files - NEW: Support for reading and writing Binary DXF files
- NEW: Binary DXF support for
r12writeradd-on - CHANGE:
R12FastStreamWriter.add_polyline(), add 3D POLYLINE only, closed flag support - CHANGE: renamed
Insert.ucs()toInsert.brcs()which now returns aBRCS()object - CHANGE:
Polyline.close(),Polyline.m_close()andPolyline.n_close()can set and clear closed state. - BUGFIX:
Dimension.destroy()should not not destroy associated anonymous block, because if DIMENSION is used in a block, the anonymous block may be used by several block references - BUGFIX: floating point precision error in
intersection_line_line_2d() - BUGFIX: attribute error in
Polyline.transform_to_wcs()for 2d polylines - BUGFIX: LWPOLYLINE was always exported with
const_width=0 - BUGFIX:
Face3d.set_edge_visibility()set inverted state (visible <-> invisible) - BUGFIX: Load
AcDbEntitygroup codes from base class
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ezdxf-0.18.zip.
File metadata
- Download URL: ezdxf-0.18.zip
- Upload date:
- Size: 1.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f3f2856a86431329d48e1675c3a8be502faa0ce5f5a97f9218e19fd6e255d36
|
|
| MD5 |
b317bf7adb81744e32ab5327bbcc9a80
|
|
| BLAKE2b-256 |
c12173cda11e3a1885ca8679c47de8775f5dc06b67ca7caf2ff7059eab1a7afb
|
File details
Details for the file ezdxf-0.18-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: ezdxf-0.18-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eecc2d620cff4ca1940b5e422206d63bb0d65da421cb4d82d633cd27f65c2997
|
|
| MD5 |
af1422492e8ee0256d6c361ec58436b0
|
|
| BLAKE2b-256 |
99f0331addc105750ebd2ccb83615987f14ede121e9aef24f030eb9ba9a73522
|
File details
Details for the file ezdxf-0.18-cp310-cp310-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
020a958a8dac97e7d119ff7f3866909b0b35eb6be6b38d2a534e603cdd6ccd12
|
|
| MD5 |
5f2a073f7d6b11ae2a70cff8c9cec759
|
|
| BLAKE2b-256 |
9ba24cd6da4d8a133a76f3be138f876eb26794b18c9bfc9f15897372fd265374
|
File details
Details for the file ezdxf-0.18-cp310-cp310-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ezdxf-0.18-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f7f478b1bf42b1fcb2e3497d307f3d2763bc858ab478659ebb447825afa4cc4
|
|
| MD5 |
522dcf01d31d81bed6ecb90eb3319f41
|
|
| BLAKE2b-256 |
e7c6214f7bc14734462f191b85122a33bf004c6bed4ccbaf030fb18bd4d9a94e
|
File details
Details for the file ezdxf-0.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a87db21231ccd8816ca49f50a31ecd6aa2b91db86dc89453634df54eb8ba907
|
|
| MD5 |
df1e4eb2c23824c8e4a9a13a63b33112
|
|
| BLAKE2b-256 |
c61ce7956354b40e807f845a49472461a30bfa1d09b207b8f0c7c4f86fa5e097
|
File details
Details for the file ezdxf-0.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ezdxf-0.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c11f70f65318d68106d222295bc1c96fc7da1b3520b3de979f46e98476b7819
|
|
| MD5 |
adced18ec9803e3e456b730d16ff2221
|
|
| BLAKE2b-256 |
667750ab77de2f2afc8ee2dd5b72b588e72bc5ef4071b2ec1da35250a19460c3
|
File details
Details for the file ezdxf-0.18-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: ezdxf-0.18-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a814a4595d7b97442dc98fb64dd3bdaa88552f219cbe980597b25e0da18cf706
|
|
| MD5 |
15d0334c54cdd18eaa5a3c45eb465be8
|
|
| BLAKE2b-256 |
bb618d0ba1a5a40fcddcb22e50371dc2682ce213769d15f82e5975bc131c4acc
|
File details
Details for the file ezdxf-0.18-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b23c5a747dfe7f786bf007625a711581fc0285d6915d8ecc6381572170817672
|
|
| MD5 |
58caa992d1cb364156b63cabc7a50ff5
|
|
| BLAKE2b-256 |
8befa2e76498af18a54cfef24a84243a558cb8ab6cc80d6a2abf0fd1ead98205
|
File details
Details for the file ezdxf-0.18-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: ezdxf-0.18-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8db059f581e1f09ae069cb8eb21342a139f9fa0fe6d26fbec00b15ea7f41b06f
|
|
| MD5 |
a8ce565b327fac223815b7982ed6468f
|
|
| BLAKE2b-256 |
ee538f637bea2d36048ab9ffc589fca2fadc4f4c1e43a5ec5c5210e2876a2728
|
File details
Details for the file ezdxf-0.18-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: ezdxf-0.18-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b901390b5c32801a5adce7dc12fddee24e9029cfcd2ae22ccc063fb42372fea6
|
|
| MD5 |
2b8b4b4b756bb9e6d4da1c8a00981ed1
|
|
| BLAKE2b-256 |
aa0f77b30b6700fcb6ee03d20f7b588ada2e9801cb2ff3924c31a1e2f0b1e2bf
|
File details
Details for the file ezdxf-0.18-cp39-cp39-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9413ea670198fe6143379c22f747aa3fe05c5d45070ec6705df581ca82152c7
|
|
| MD5 |
a512a082c0ffd717480fe1236b02c08e
|
|
| BLAKE2b-256 |
9742762ecdac44cba5409f0addff4b9be5fe1b07bbf07c7ed219c8b68b0b23f1
|
File details
Details for the file ezdxf-0.18-cp39-cp39-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ezdxf-0.18-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee6f54c7fb9c4ed43c8bdf8e8119d03483ed492711c597d949c0d782ce81b9b5
|
|
| MD5 |
d2493ce5c166e48b9394d31970101cb9
|
|
| BLAKE2b-256 |
2cc7eb4ed8c2091bf6a16d3584d734fd8f820fc07ba854f7a3692984a3d5324f
|
File details
Details for the file ezdxf-0.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ezdxf-0.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eae83cb0bd65ad240e2b80819753f7c4ec7ff3d8e2b6cf5b98fb1e122492f3fb
|
|
| MD5 |
8fe8b8366a141c24fd8707e0c58e03c3
|
|
| BLAKE2b-256 |
10aacff4b7145579e71c9ef3c7b1627938b81942d37790dd4e1f5d7c8bafcc56
|
File details
Details for the file ezdxf-0.18-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
368a14a37b9adcf010d2b2b34886198423fbd72d73b1acdcd4048d1611c96589
|
|
| MD5 |
3834c7eaeb14565608787fefc159ddfe
|
|
| BLAKE2b-256 |
958ca0dba062a11539797e989f1d32bf94c08a1aa27fbeb902fc41cf8bd293a7
|
File details
Details for the file ezdxf-0.18-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: ezdxf-0.18-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
742d4efdb7af7d593e53870c731ac9b5e5ef735f1c93cecfff0339fbe4da11a2
|
|
| MD5 |
db0133c4a5547b2c052d3fc134727ad0
|
|
| BLAKE2b-256 |
cc070be5e0d521f50de499feda08841c037f3d2bb786e38a496d55c7424812a4
|
File details
Details for the file ezdxf-0.18-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0c4f9b0d36ad1d7189952c88fe574d20d8094f68caf226920691ab081163b4d
|
|
| MD5 |
efe2902d0fadbe17172cf9d94454554c
|
|
| BLAKE2b-256 |
ec846ec35238bade951c14037023d0bfb67e5f6b7b79d7a9121ca917f0950ce7
|
File details
Details for the file ezdxf-0.18-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: ezdxf-0.18-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2db5a5fee6daa6ec2dfeffbc1094fd68d42679c81689cecdeb28b5fa72539f0f
|
|
| MD5 |
bc75fa642bf3e6aa0980b5152bed80e2
|
|
| BLAKE2b-256 |
19d909ac41a01e334912bfd83ecd26919efe9341b13ea0c71e481ba3861225bf
|
File details
Details for the file ezdxf-0.18-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: ezdxf-0.18-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da9b4500245a9bbd29da7d0b94485c75c12fc6408394f19259986f092d9eae18
|
|
| MD5 |
7c14db11a737714d955d11e29edd9686
|
|
| BLAKE2b-256 |
b5ada29ea80cbbd70ef4e7c0dc012d7578205235c261fdf95badfa9d92a5ba1e
|
File details
Details for the file ezdxf-0.18-cp38-cp38-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac29367630ff69cf491352a84d224cdc9d648a85de6b86d44357f2220738d017
|
|
| MD5 |
1aaeb2c15be179b403375c909c0c0d91
|
|
| BLAKE2b-256 |
4d5682ca7a00f600585d83497a61cd5db87dba8e44797dd2cceffaec08b83499
|
File details
Details for the file ezdxf-0.18-cp38-cp38-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ezdxf-0.18-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3332d5de505aac65bdbb89b513cb3f438f1e835a28dbc89a069aac80f0a33773
|
|
| MD5 |
76e0d8c07c20667a224130cf3fd7d65c
|
|
| BLAKE2b-256 |
67c781724dae4fc897a9c327dd4a052f8592fabb42cfe6500bbe950776f1eb7e
|
File details
Details for the file ezdxf-0.18-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ezdxf-0.18-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
777161f65833afe12910937ae9dc849ac795c9f79471ca4f23dbb8ee97dccc16
|
|
| MD5 |
94d9af7f38e2f616e5039ff47fca9834
|
|
| BLAKE2b-256 |
3c4b754036db280a0b277f540b59bc7cbd331b78331c82cdb606b2620f23e41e
|
File details
Details for the file ezdxf-0.18-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f147d4e29972391ac9e848be40de884101458c63c65fc1596bea1162227a1725
|
|
| MD5 |
9c67f4eb8f33f4a3181bdef6408bccb3
|
|
| BLAKE2b-256 |
092acd55ca031a1e8bfcfed0aa819166b59513479e68d83265262efdebae3f79
|
File details
Details for the file ezdxf-0.18-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: ezdxf-0.18-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
363346c03fb20cfd2d1e002dbdee401e34af1b312148edb62ca4000142e53c64
|
|
| MD5 |
78901beaddd9ea40d7687c9bcbff96bd
|
|
| BLAKE2b-256 |
3b45d60dc783420272b9b7a1f32cb3c05b23da097f3a49a3ad55857959230c4a
|
File details
Details for the file ezdxf-0.18-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94daeb884722ff2bfa0f074fa89b6b928ce518447bbc9e1f2ef15b67044a5a71
|
|
| MD5 |
78157089a29eb4993fe83d85eab9552c
|
|
| BLAKE2b-256 |
94a7e2f44b559dbe2d7e8bb74317b57b76169264aa4d09de8ec8607a9f846865
|
File details
Details for the file ezdxf-0.18-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: ezdxf-0.18-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3aec61f7f5453a141c2512ba06ddfc1179096d0946cf52367ac3bd1cd61b910
|
|
| MD5 |
c93ed8ad51db6613bad68332b859dd00
|
|
| BLAKE2b-256 |
824e651e7f6a75cf0220649f20f9999664508f6b3b4a6f06f77394f952ec6653
|
File details
Details for the file ezdxf-0.18-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: ezdxf-0.18-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29f21236052db46b0e2d654a60d8bf29b0f04174d848947ae1a26cbf0dbbe3e1
|
|
| MD5 |
3e5bdac8c3a7dd06003d2bed13d5654d
|
|
| BLAKE2b-256 |
b222afcf07ccc53a2e4d509842bf853c0505f43b4dcc1b73054147facb8037a5
|
File details
Details for the file ezdxf-0.18-cp37-cp37m-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42a13d71ee6a5b57965a1f3f9b47b91c0a68950801dc619761076a737b03d788
|
|
| MD5 |
bb348c0354321a8f521d30c6f63ce600
|
|
| BLAKE2b-256 |
9e55def2fcb01d2ac849f924a1913cb7794f980702002add951d38f983ff5588
|
File details
Details for the file ezdxf-0.18-cp37-cp37m-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: ezdxf-0.18-cp37-cp37m-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e77805a336ef2864ace8c584ae45e30f1f660f6d4ed3ab7de6b86498ffa489a1
|
|
| MD5 |
ffb52d19c8a4ae4251ed55b3e853116d
|
|
| BLAKE2b-256 |
6c310729800429b7c5b9c77e2c1bcbc92fefcb9f62a36fe73e95a6c926f92b84
|
File details
Details for the file ezdxf-0.18-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ezdxf-0.18-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
959d70de4732dcc70e635f3a88e1e6dd7196be1a644644144757870854a2cbb0
|
|
| MD5 |
4d54ade41ed0bfd21f031bdb3a5e8f6d
|
|
| BLAKE2b-256 |
0dd802282394340c27b185fc3782292b5885d1fef0975ba602f4c5980ce964f7
|
File details
Details for the file ezdxf-0.18-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
570e0a8a0a2692fcf051788f93397b643b44931669ea0db6f56511727e7004b5
|
|
| MD5 |
20480d879b80105fe7c83180812b1c5b
|
|
| BLAKE2b-256 |
7842a2f9966194dc03af54d292eca87d9bc58b0d5b7563f0938e1cdfca76c470
|
File details
Details for the file ezdxf-0.18-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: ezdxf-0.18-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
454207923598577db293b63cbedceeca17426195ad834aecdfc8e74e7c35943a
|
|
| MD5 |
cd4be25acd6ee211d2872af5f73f4b31
|
|
| BLAKE2b-256 |
b5c5fe009dbec132245c005e6f33d38a97420831f951b20e6c1b57292db1c381
|