MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / directAttrRequest

Method directAttrRequest

service/market.py:916–929  ·  view source on GitHub ↗
(items, attribs)

Source from the content-addressed store, hash-verified

914
915 @staticmethod
916 def directAttrRequest(items, attribs):
917 try:
918 itemIDs = tuple([i.ID for i in items])
919 except TypeError:
920 itemIDs = (items.ID,)
921 try:
922 attrIDs = tuple([i.ID for i in attribs])
923 except TypeError:
924 attrIDs = (attribs.ID,)
925 info = {}
926 for itemID, typeID, val in eos.db.directAttributeRequest(itemIDs, attrIDs):
927 info[itemID] = val
928
929 return info
930
931 def getImplantTree(self):
932 """Return implant market group children"""

Callers 1

refreshMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected