(items, attribs)
| 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""" |