-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto_get.py
52 lines (45 loc) · 1.42 KB
/
auto_get.py
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import requests
import json
import warnings
import base64
import string
# warnings.filterwarnings('ignore')
def sendRequest():
confUrl = "https://api.buliang0.cf/opconf.json"
try:
response = requests.get(confUrl)
except Exception:
print("网络请求出错了……")
return response.json().get("data").get("items")[0].get("items")
def createSubscribe():
list = sendRequest()
result = ""
for item in list:
ovpnItem = item.get("ovpn")
ovpn = base64.b64decode(ovpnItem)
ovpn = str(ovpn,'utf8')
# text = unquote(ovpn, 'utf-8')
# text = quote(text, 'utf-8')
result += _removeMarkName(ovpn) + "\n"
# subscribe = result.strip('|')
print(result)
result = base64.b64encode(result.encode())
result = str(result, 'utf8')
print("\n")
print(result)
_write2File(result)
# 移除特定的名称标记
def _removeMarkName(node):
print('原节点:' + node)
newNode = ''
if node.startswith('vmess://'):
newNode = str(base64.b64decode(node[8:]), 'utf8')
newNode = newNode.replace('(Youtube:不良林)', '')
newNode = 'vmess://' + str(base64.b64encode(newNode.encode()), 'utf8')
else:
newNode = node.replace('%28Youtube%3A%E4%B8%8D%E8%89%AF%E6%9E%97%29', '')
return newNode
def _write2File(subscribe):
with open('sub.txt', 'w') as fobj:
fobj.write(subscribe)
createSubscribe()