PyComicPackRouMan/utils/comic/ComicStr.py
2022-12-04 22:29:04 +08:00

28 lines
595 B
Python

class comicStr:
url = "url"
xpath = "xpath"
title = "title"
icon = "icon"
author = "author"
dep = "dep"
chapters = "chapters"
homepage = "homepage"
chapter_href = "chapter_href"
list_img = "list_img"
img = "img"
last_update = "last_update"
alias = "alias"
tags = "tags"
action = "action"
chapters_href = "chapters_href"
base_url = ""
data = "data"
result = "result"
@classmethod
def setBaseUrl(cls,url):
cls.base_url = url
@classmethod
def getBaseUrl(cls):
return cls.base_url