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

Method getSkillsByName

service/character.py:293–299  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

291
292 @staticmethod
293 def getSkillsByName(text):
294 items = eos.db.searchSkills(text)
295 skills = []
296 for skill in items:
297 if skill.published is True:
298 skills.append((skill.ID, skill.name))
299 return sorted(skills, key=lambda x: x[1])
300
301 @staticmethod
302 def setAlphaClone(char, cloneID):

Callers 1

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected