コード例 #1
0
ファイル: __init__.py プロジェクト: pierreGit/LolStats
 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)
コード例 #2
0
ファイル: __init__.py プロジェクト: pierreGit/LolStats
 def testLoadingAuraItem(self):
     item = loadItem("http://leagueoflegends.wikia.com/wiki/Aegis_of_the_Legion")
     print item
コード例 #3
0
ファイル: __init__.py プロジェクト: pierreGit/LolStats
 def loadItems(self):
     itemsList = listItems()
     
     for item in itemsList:
         item = loadItem("http://leagueoflegends.wikia.com" + item)
         self.dbInterface.insertItem(item)