Metadata-Version: 2.3
Name: drawsvg_helper_micro
Version: 0.1.0
Summary: A wrapper class for drawsvg
Author: Samuel Shiels
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Requires-Python: >=3.12.4
Requires-Dist: drawsvg
Description-Content-Type: text/markdown

# python-svg-helper-micro

drawsvg_helper_micro provides a wrapper class for drawsvg when you have
a known list of coordinates and want to offload the coordinate calculations

```python
from py_svghelper_micro import DrawingHandler

dh = DrawingHandler([(1,1),(10,5)], 800, 600)

# drawsvg Drawing can be access via the d property

dh.d.append(element)

```

# TODO

-   allow choice of square adjustments on a non square image size
