def testLoadingItems(self): l = listItems() print l print len(l) for item in l: i = loadItem("http://leagueoflegends.wikia.com" + item) print i self.dbInterface.insertItem(i)
def testLoadingAuraItem(self): item = loadItem("http://leagueoflegends.wikia.com/wiki/Aegis_of_the_Legion") print item
def loadItems(self): itemsList = listItems() for item in itemsList: item = loadItem("http://leagueoflegends.wikia.com" + item) self.dbInterface.insertItem(item)