Home
Softono

Svg.py

Open source MIT Python
392
Stars
30
Forks
0
Issues
4
Watchers
8 months
Last Commit

 About Svg.py

🎨 Type-safe and powerful Python library to generate SVG files

Platforms

Web Self-hosted

Languages

Python

Links

Need Help Installing Svg.py?

We provide expert installation service for this software. Our team will install, configure, and secure Svg.py on your server. plans start at just $30.

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.