-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBang_Dream_Ave_Mujica.py
More file actions
34 lines (27 loc) · 995 Bytes
/
Bang_Dream_Ave_Mujica.py
File metadata and controls
34 lines (27 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/python
# coding=utf-8
from __future__ import print_function, unicode_literals
import datetime, re, os, imp
from bgmi.config import cfg
from bgmi.lib.fetch import DATA_SOURCE_MAP
file, pathname, desc = imp.find_module('script_extend', [os.path.join(cfg.script_path)])
imp.load_module('script_extend', file, pathname, desc)
from script_extend.script import SearchScriptBase
class Script(SearchScriptBase):
class Model(SearchScriptBase.Model):
bangumi_name = 'BanG Dream! Ave Mujica'
cover = 'https://lain.bgm.tv/pic/cover/l/77/c3/454684_ZH5tU.jpg'
update_time = 'Thu'
# due_date = datetime.datetime(2025, 4, 1)
source = 'dmhy'
keyword = 'Ave Mujica'
include_regex_filters = [
r'(BIG5|繁体|繁體|\[繁\]|繁日)',
];
exclude_regex_filters = [
r'(MKV)',
];
if __name__ == '__main__':
os.environ["TEST_RUN"] = '1'
s = Script()
print(s.get_download_url())