Joy CodeGround
joy library to render joy sketches in browser using vs code, (or in other words, for those who are allergic to Jupyter Notebook
😎
)
A simple wrapper for How to use
- Write your code in main.py
- use
render()
instead ofshow()
- open
index.html
to view the svg, use Live Server VS-code extension for realtime reload.
Example
from helpers import render
from joy import *
c = circle()
render(c)