pymecli 0.4.1__tar.gz → 0.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pymecli-0.4.1 → pymecli-0.4.2}/PKG-INFO +1 -1
- {pymecli-0.4.1 → pymecli-0.4.2}/core/clash.py +4 -2
- {pymecli-0.4.1 → pymecli-0.4.2}/pyproject.toml +1 -1
- {pymecli-0.4.1 → pymecli-0.4.2}/.gitignore +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/README.md +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/api/__init__.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/api/v1/__init__.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/api/v1/clash.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/api/v1/redis.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/cli/__init__.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/cli/baidu.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/cli/bitget.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/cli/example.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/cli/fast.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/cli/gate.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/cli/redis_csv.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/cli/util.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/core/__init__.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/core/config.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/core/redis_client.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/crypto/__init__.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/crypto/bitget.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/crypto/gate.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/data/__init__.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/data/dou_dict.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/data/dou_list.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/data/main.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/data/template.yaml +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/models/__init__.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/models/douzero_model.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/models/ocr_model.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/models/response.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/__init__.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/elapsed.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/helper.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/logger.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/mysql.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/path.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/pd.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/pyredis.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/sleep.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/text.py +0 -0
- {pymecli-0.4.1 → pymecli-0.4.2}/utils/toml.py +0 -0
|
@@ -102,6 +102,10 @@ class ClashYamlGenerator:
|
|
|
102
102
|
},
|
|
103
103
|
)
|
|
104
104
|
|
|
105
|
+
template["rules"].append("DOMAIN,clash.razord.top,DIRECT")
|
|
106
|
+
template["rules"].append("DOMAIN,yacd.haishan.me,DIRECT")
|
|
107
|
+
template["rules"].append("DOMAIN-SUFFIX,kleientertainment.com,全局选择")
|
|
108
|
+
template["rules"].append("DOMAIN-SUFFIX,klei.com,全局选择")
|
|
105
109
|
# 获取rules
|
|
106
110
|
rule_list = [
|
|
107
111
|
[f"{self.my_rule_base_url}/direct.yaml", "DIRECT"],
|
|
@@ -216,8 +220,6 @@ class ClashYamlGenerator:
|
|
|
216
220
|
template["rules"].extend(
|
|
217
221
|
[
|
|
218
222
|
"RULE-SET,applications,DIRECT",
|
|
219
|
-
"DOMAIN,clash.razord.top,DIRECT",
|
|
220
|
-
"DOMAIN,yacd.haishan.me,DIRECT",
|
|
221
223
|
"RULE-SET,private,DIRECT",
|
|
222
224
|
"RULE-SET,icloud,DIRECT",
|
|
223
225
|
"RULE-SET,apple,DIRECT",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|