#=============================================================================== # # FILE: openKicad.py # # USAGE: --- # # DESCRIPTION: It call kicad schematic # # OPTIONS: --- # REQUIREMENTS: --- # BUGS: --- # NOTES: --- # AUTHOR: Fahim Khan, fahim.elex@gmail.com # ORGANIZATION: ecSim team at FOSSEE, IIT Bombay. # CREATED: Tuesday 17 Feb 2015 # REVISION: --- #=============================================================================== class Kicad: """ Class Kicad open Schematic,PCB and Layout """ def __init__(self): pass def openSchematic(self): print "Kicad Schematic is called" def openFootprint(self): print "Kicad Foot print Editor called" def openLayout(self): print "Kicad Layout is called"