SVG drawing library
Project description
svg.py
Python library to generate SVG files.
Features:
- Compatible with all SVG standards: 1.1, 1.2, 2.0, Tiny.
- 100% type safe.
- Pure Python.
- No third-party runtime dependencies.
- No deprecated attributes, only what actually works.
- The same names and structure as in the standard. If you know how to write SVG files, you know how to use this library.
Based on svg-xsd-schema and MDN reference.
Installation
python3 -m pip install --user svg.py
Usage
Try svg.py online: svg.orsinium.dev.
import svg
canvas = svg.SVG(
width=60,
height=60,
elements=[
svg.Circle(
cx=30, cy=30, r=20,
stroke="red",
fill="white",
stroke_width=5,
),
],
)
print(canvas)
See examples for more.
Projects using svg.py
The github topic svg-py contains some of the projects that use svg.py in one way or another. If you want your project to appear on the list, simply add svg-py
into the list of project topics. Here is how.
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
svg_py-1.5.0.tar.gz
(40.7 kB
view details)
Built Distribution
svg_py-1.5.0-py3-none-any.whl
(13.4 kB
view details)
File details
Details for the file svg_py-1.5.0.tar.gz
.
File metadata
- Download URL: svg_py-1.5.0.tar.gz
- Upload date:
- Size: 40.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a036d0118176c2498601fab33b9b68dd9754e6a5fa12e4d36cce071b307b5c11 |
|
MD5 | 7af90ced4934f375cd3122bb01021c66 |
|
BLAKE2b-256 | b96d4680d284924d66082b39e7508b70346a8132c06a4bac497ef4d2c05430ec |
File details
Details for the file svg_py-1.5.0-py3-none-any.whl
.
File metadata
- Download URL: svg_py-1.5.0-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c467efd5a43e8df4dd6f6d078063f195a04966721d36c43d62f5d7529f908d1 |
|
MD5 | 995a72a4c950a52c15bf5f657bd16499 |
|
BLAKE2b-256 | 512ba541bed029de9ac6a558d3eeeeb0fff5046687651e61d38df3dc43f48e2a |