排程模組
在完成儲存、cookies獲取、檢測等模組後,我們需要乙個排程模組將不同模組在不同程序上執行起來。
這裡匯入python自帶多程序庫 multiprocessing裡的process,注意這裡process要大寫,有些ide裡自動補全為小寫會報錯。
process()的用法為:
def c():
print(『我是c執行緒』)
a=process(target=c)
a.start() #執行緒開始
scheduler.py
from multiprocessing import process
from test import *
from new_cookies import *
from config import *
import time
class schelduler():
@staticmethod
def test_cookies(cycle=60):
while true:
print('開始檢測cookies')
try:
for website,cls in tester_map.items():
test=eval(cls+'()')
test.run()
print('檢測完成')
del test
time.sleep(cycle)
except exception as e:
print(e.args,'\n--------------------------------\n')
time.sleep(cycle)
@staticmethod
def api():
print('api介面開始執行')
def run(self):
if api_process:
api_process=process(target=schelduler.api)
api_process.start()
if test_process:
test_process=process(target=schelduler.test_cookies)
test_process.start()
if __name__ == '__main__':
zouni=schelduler()
zouni.run()
Github 搭建 hexo 微博秀
github 搭建 hexo 微博秀 可以在自己的靜態部落格裡面新增 微博秀這個功能 因為目前csdn只有部落格專家才有許可權在部落格欄目裡自定義新增部落格秀 step 1 step 2 具體的副檔名 比如這裡.jade 根據主題可能不一樣,有的是.jade,有的是.ejs。或者還有其他副檔名的檔案...
03 swift微博搭建框架
這裡是用純 的方法搭建tabbar的框架,學習這個方法也是為了適配低版本的程式,storeboard的開發為了可以方便多使用者的開發 有乙個reference的方法可以將storeboard單分出來,但是這個方法只能用於ios9.0以上的機型,操作步驟是editor refactor to stor...
linux環境下搭建個人微博
近來微博很受大家的追捧,俺偶然發現了乙個開源的微博 於是就有了本片文章.簡介 就目前國外的開源微博 php mysql 做的比較好的也就兩個 1.文字的多 微部落格平台,新版本1.5.0提供包括中文在內20多種語言支援,有一般微博應具備的所有功能,更新速度較快.2.statusnet是個相當老牌的開...