Metadata-Version: 2.4
Name: pycircuits
Version: 0.1.0
Summary: Generated Python bindings for @tscircuit/props 0.0.506
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pycircuits

Generated Python bindings for tscircuit components from `@tscircuit/props@0.0.506`.

```python
from pycircuits import Circuit, board, led, resistor, trace

led1 = led(name="LED1", color="red", footprint="0603", pcbY=4)
r1 = resistor(name="R1", resistance="1k", footprint="0603", pcbY=-4)

circuit = Circuit(
    board(
        width="12mm",
        height="20mm",
        children=[
            led1,
            r1,
            trace(from_=r1.pin2, to=led1.anode),
            trace(from_=r1.pin1, to="net.VCC"),
            trace(from_=led1.cathode, to="net.GND"),
        ],
    )
)
```
