From 826a0eb82cc786d480888f3a032df95447c133b8 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 22 Oct 2017 09:43:54 +0200 Subject: digikey.to_pandas(): Make sure that 'Digi-Key', 'MPN' and 'URL' fields always are in the data frame. kicad.to_pandas(): support Schematics objects too. read_schematics(): Support hierarchical labels. --- src/ee/kicad/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/ee/kicad/__init__.py') diff --git a/src/ee/kicad/__init__.py b/src/ee/kicad/__init__.py index 1aac33d..1261cb5 100644 --- a/src/ee/kicad/__init__.py +++ b/src/ee/kicad/__init__.py @@ -27,6 +27,11 @@ def to_pandas(obj: Any, **kwarg): return False return True + def to_pandas_schematics(ss: Schematics): + dfs = [to_pandas_schematic(schematic) for schematic in ss.schematics] + + return pandas.concat(dfs) + def to_pandas_schematic(sch: Schematic): # These fields will always be put first. special_fields = ["ref", "ref_type", "ref_num", "value", "footprint"] @@ -64,5 +69,7 @@ def to_pandas(obj: Any, **kwarg): if isinstance(obj, Schematic): return to_pandas_schematic(obj) + elif isinstance(obj, Schematics): + return to_pandas_schematics(obj) else: raise EeException("Unsupported type: {}".format(type(obj))) -- cgit v1.2.3