mirror of
https://github.com/TeamPGM/PagerMaid_Plugins_Pyro.git
synced 2024-11-16 14:21:10 +00:00
1360fe05e2
Co-authored-by: Sourcery AI <>
36 lines
979 B
Python
36 lines
979 B
Python
import json, time, sys
|
||
from httpx import get, post
|
||
|
||
token = str(sys.argv[1])
|
||
main = json.loads(get("https://api.github.com/repos/TeamPGM/PagerMaid_Plugins_Pyro/commits/v2").content)
|
||
text = (
|
||
(
|
||
(
|
||
(
|
||
"#更新日志 #pyro #"
|
||
+ main['commit']['author']['name'].replace('_', '')
|
||
+ ' \n\n🔨 ['
|
||
+ main['sha'][:7]
|
||
)
|
||
+ '](https://github.com/TeamPGM/PagerMaid_Plugins_Pyro/commit/'
|
||
)
|
||
+ main['sha']
|
||
)
|
||
+ '): '
|
||
) + main['commit']['message']
|
||
|
||
push_content = {'chat_id': '-1001441461877', 'disable_web_page_preview': 'True', 'parse_mode': 'markdown',
|
||
'text': text}
|
||
url = f'https://api.telegram.org/bot{token}/sendMessage'
|
||
try:
|
||
main_req = post(url, data=push_content)
|
||
except:
|
||
pass
|
||
push_content['chat_id'] = '-1001319957857'
|
||
time.sleep(1)
|
||
try:
|
||
main_req = post(url, data=push_content)
|
||
except:
|
||
pass
|
||
print(main['sha'] + " ok!")
|