|
@@ -0,0 +1,39 @@
|
|
|
+import requests as req
|
|
|
+from urllib import parse
|
|
|
+
|
|
|
+import datetime
|
|
|
+import os
|
|
|
+
|
|
|
+x = 2
|
|
|
+
|
|
|
+def ifttt():
|
|
|
+ evt = 'notify_me'
|
|
|
+ key = 'c3xo5EvpBX64fPEqxphcR4jBTzDh1r2joTDsB_BslOA'
|
|
|
+ val1 = parse.quote(str(x))
|
|
|
+ val2 = parse.quote('open')
|
|
|
+ val3 = parse.quote('forget')
|
|
|
+
|
|
|
+ url = (f'https://maker.ifttt.com/trigger/{evt}' +
|
|
|
+ f'/with/key/{key}?value1={val1}&value2={val2},&value3={val3}')
|
|
|
+
|
|
|
+ r = req.get(url)
|
|
|
+ r.text
|
|
|
+
|
|
|
+ifttt()
|
|
|
+os.system(ifconfig)
|
|
|
+
|
|
|
+'''
|
|
|
+ evt = 'notify_me'
|
|
|
+ key = 'c3xo5EvpBX64fPEqxphcR4jBTzDh1r2joTDsB_BslOA'
|
|
|
+ val1 = parse.quote('執行第')
|
|
|
+ val2 = parse.quote(str(x))
|
|
|
+ val3 = parse.quote('次')
|
|
|
+
|
|
|
+ url = (f'https://maker.ifttt.com/trigger/{evt}' +
|
|
|
+ f'/with/key/{key}?value1={val1}&value2={val2}&value3={val3}')
|
|
|
+
|
|
|
+ r = req.get(url)
|
|
|
+ r.text
|
|
|
+ x = x+1
|
|
|
+ '''
|
|
|
+
|