
Chris Lott writes on Hackaday:
Wires vs Words: PCB Routing in Python
Preferring to spend hours typing code instead of graphically pushing traces around in a PCB layout tool, [James Bowman] over at ExCamera Labs has developed CuFlow, a method for routing PCBs in Python. Whether or not you’re on-board with the concept, you have to admit the results look pretty good.
Key to this project is a concept [James] calls rivers — the Dazzler board shown above contains only eight of them. Connections get to their destination by taking one or more of these rivers which can be split, joined, and merged along the way as needed in a very Pythonic manner. River navigation is performed using Turtle graphics-like commands such as
left(90)
and the appropriately namedshimmy(d)
that aligns two displaced rivers. He also makes extensive use of pin / gate swapping to make the routing smoother, and there’s a niftyshuffler
feature which arbitrarily reorders signals in a crossbar manner. Routing to complex packages, like the BGA shown, is made easier by embedding signalescapes
for each part’s library definition.