Files
CollectMangaInfo/main.py
2024-05-31 20:51:12 +09:00

31 lines
676 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.AddTagInfo("female:bondage", "/tag/bondage/")
tempxls.AddTagInfo("female:slave", "/tag/slave/")
tempxls.DBXLSClose()
# For Main Loop
if __name__ == '__main__':
main()