33 lines
794 B
Python
33 lines
794 B
Python
import GetArc_Hitomi as getHitomi
|
|
import GetArc_Ehentai as getEhentai
|
|
import MgrCalibreLibs as mgrCal
|
|
|
|
import UtilPack as util
|
|
import StoreXLS as xls
|
|
|
|
def main():
|
|
#getHitomi.GetSearchResult("2890685")
|
|
#etEhentai.GetSearchResult("artist%3A%22kotomi+yo-ji%24%22")
|
|
|
|
#mgrCal.Start()
|
|
#util.printDbgMessages()
|
|
|
|
#artist:"kotomi yo-ji$"
|
|
#"artist%3A%22kotomi+yo-ji%24%22"
|
|
|
|
tempxls = xls.DBXLStorage("./temp.xls")
|
|
tempxls.DBXLSOpen()
|
|
tempxls.AddArtistInfo("Kuno Inu", "/artist/kunoinu/")
|
|
tempxls.AddSeriesInfo("Original", "/serires/original/")
|
|
tempxls.AddTagInfo("female:bondage", "/tag/bondage/")
|
|
tempxls.AddTagInfo("female:slave", "/tag/slave/")
|
|
tempxls.DBXLSClose()
|
|
|
|
|
|
|
|
|
|
# For Main Loop
|
|
if __name__ == '__main__':
|
|
main()
|
|
|