diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-20 22:46:45 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-20 22:53:42 +0200 |
commit | 5f3623b8dd26b37b9ea6011bf71467b2a608b5ff (patch) | |
tree | 00fdb064f9116c5bf307f8b9815500487d86482b /src/ee/part | |
parent | 148ff60aa5a211292661e16ddba0f6fced85f372 (diff) | |
download | ee-python-5f3623b8dd26b37b9ea6011bf71467b2a608b5ff.tar.gz ee-python-5f3623b8dd26b37b9ea6011bf71467b2a608b5ff.tar.bz2 ee-python-5f3623b8dd26b37b9ea6011bf71467b2a608b5ff.tar.xz ee-python-5f3623b8dd26b37b9ea6011bf71467b2a608b5ff.zip |
common_fact_types: Adding key for footprint.
functions:
o Changing the structure of the functions, they're now factories that
will be given kwargs and must return a function that processes the
parts.
o Adding new function to default set; 'map_footprint' that maps the
KiCAD footprints to common footprints.
part_validate_parts: Using only common keys.
Diffstat (limited to 'src/ee/part')
-rw-r--r-- | src/ee/part/__init__.py | 3 | ||||
-rw-r--r-- | src/ee/part/common_fact_types.py | 4 | ||||
-rw-r--r-- | src/ee/part/fact_keys.py | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/src/ee/part/__init__.py b/src/ee/part/__init__.py index a2face8..3ce255e 100644 --- a/src/ee/part/__init__.py +++ b/src/ee/part/__init__.py @@ -375,6 +375,9 @@ class Facts(object): k = self._get_key(key) return next((f.valueProp for f in self.part.get_facts() if f.keyProp == k), None) + def get_values(self, *keys: Union[str, FactType]) -> List[Optional[str]]: + return [self.get_value(key) for key in keys] + class Entry(object): def __init__(self, new: bool, part: types.Part): diff --git a/src/ee/part/common_fact_types.py b/src/ee/part/common_fact_types.py index 12c099e..10ba1eb 100644 --- a/src/ee/part/common_fact_types.py +++ b/src/ee/part/common_fact_types.py @@ -1,5 +1,7 @@ import ee -from ee.part import EeValueFactType, fact_keys +from ee.part import EeValueFactType, fact_keys, FactType + +footprint = FactType(fact_keys.footprint, "Footprint") resistance = EeValueFactType(fact_keys.resistance, "Resistance", ee.resistance_type) capacitance = EeValueFactType(fact_keys.capacitance, "Capacitance", ee.capacitance_type) diff --git a/src/ee/part/fact_keys.py b/src/ee/part/fact_keys.py index 65dc699..9617b9c 100644 --- a/src/ee/part/fact_keys.py +++ b/src/ee/part/fact_keys.py @@ -14,3 +14,4 @@ place_part = "http://purl.org/ee/fact-type/place-part" imperial_footprint_size = "http://purl.org/ee/fact-type/imperial-footprint-size" part_class = "http://purl.org/ee/fact-type/part-class" +footprint = "http://purl.org/ee/fact-type/footprint" |