Skip to content

Commit

Permalink
edit docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Sep 13, 2023
1 parent 4ef40fc commit 7fbe62e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ ezdxf
Abstract
--------

This Python package is for creating and modifying DXF documents, regardless of
the DXF version. The package supports loading and rewriting DXF file without
losing any content except comments.
Unknown DXF tags in the document are ignored but kept for rewriting.
This behavior allows processing DXF documents that contain data from third-party
applications without loosing information.
This Python package is designed to facilitate the creation and manipulation of DXF
documents, with compatibility across various DXF versions. It empowers users to
seamlessly load and edit DXF files while preserving all content, except for comments.

Any unfamiliar DXF tags encountered in the document are gracefully ignored but retained
for future modifications. This feature enables the processing of DXF documents
containing data from third-party applications without any loss of valuable information.

Quick-Info
----------
Expand Down
12 changes: 11 additions & 1 deletion src/ezdxf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Copyright (C) 2011-2021, Manfred Moitzi
# Copyright (C) 2011-2023, Manfred Moitzi
# License: MIT License
"""Ezdxf is an interface library for the DXF file format.
The package is designed to facilitate the creation and manipulation of DXF
documents, with compatibility across various DXF versions. It empowers users to
seamlessly load and edit DXF files while preserving all content, except for comments.
Any unfamiliar DXF tags encountered in the document are gracefully ignored but retained
for future modifications. This feature enables the processing of DXF documents
containing data from third-party applications without any loss of valuable information.
"""
from typing import TextIO, Optional
import sys
import os
Expand Down

0 comments on commit 7fbe62e

Please sign in to comment.