Skip to content

stevelittlefish/easysvg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

easysvg

Simple SVG library for Python3

Usage

import easysvg

svg = easysvg.SvgGenerator()
svg.begin(640, 480)

svg.text('This is text', 20, 100)
svg.circle(320, 360, 100, '#ff0000')

svg.end()
svg_string = svg.get_svg()
print(svg_string)

About

Simple SVG library for Python3

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages