欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Python獲取當前公網ip并自動斷開寬帶連接實例代碼

 更新時間:2018年01月12日 15:33:58   作者:mingz2013  
這篇文章主要介紹了Python獲取當前公網ip并自動斷開寬帶連接實例代碼,具有一定借鑒價值,需要的朋友可以參考下

今天寫了一個獲取當前公網ip并且自動斷開寬帶連接的文件,和大家分享下。

這個文件的具體用途大家懂的,可以盡管拿去用,不過目前只適用于Windows平臺,我的Python版本是2.7的,win32ras模塊需要下載pywin32。

代碼如下:

#!coding: cp936 
import win32ras 
import time,os 
 
def Connect(dialname, account, passwd): 
  dial_params = (dialname, '', '', account, passwd, '') 
  return win32ras.Dial(None, None, dial_params, None) 
 
def DialBroadband(): 
  dialname = '寬帶連接' #just a name 
  account = '********' 
  passwd = '****************' 
  try: 
    #handle is a pid, for disconnect or showipadrress, if connect success return 0. 
    #account is the username that your ISP supposed, passwd is the password. 
    handle, result = Connect(dialname, account, passwd) 
    if result == 0: 
      print "Connection success!" 
      return handle, result 
    else: 
      print "Connection failed, wait for 5 seconds and try again..." 
      time.sleep(5) 
      DialBroadband()   
  except: 
    print "Can't finish this connection, please check out." 
    return 
 
def Disconnect(handle): 
  if handle != None: 
    try: 
      win32ras.HangUp(handle) 
      print "Disconnection success!" 
      return "success" 
    except: 
      print "Disconnection failed, wait for 5 seconds and try again..." 
      time.sleep(5) 
      Disconnect() 
  else: 
    print "Can't find the process!" 
    return 
 
def Check_for_Broadband(): 
  connections = [] 
  connections = win32ras.EnumConnections() 
  if(len(connections) == 0): 
    print "The system is not running any broadband connection." 
    return 
  else: 
    print "The system is running %d broadband connection." % len(connections) 
    return connections 
 
def ShowIpAddress(handle): 
  print win32ras.GetConnectStatus(handle) 
  data = os.popen("ipconfig","r").readlines() 
  have_ppp = 0 
  ip_str = None 
  for line in data: 
    if line.find("寬帶連接")>=0: 
      have_ppp = 1 
    #if your system language is English, you should write like this: 
    #if have_ppp and line.strip().startswith("IP Address"): 
    #in othewords, replace the "IPv4 地址" to "IP Address" 
    if have_ppp and line.strip().startswith("IPv4 地址"): 
      ip_str = line.split(":")[1].strip() 
      have_ppp = 0 
      print ip_str 
 
#get my ipaddress anf disconnect broadband connection. 
def main(): 
  data = Check_for_Broadband() 
  #if exist running broadband connection, disconnected it. 
  if data != None: 
    for p in data: 
      ShowIpAddress(p[0]) 
      if(Disconnect(p[0]) == "success"): 
        print "%s has been disconnected." % p[1] 
      time.sleep(3) 
  else: 
    pid, res = DialBroadband() 
    ShowIpAddress(pid) 
    time.sleep(3) 
    Disconnect(pid) 
  return "finsh test" 
 
test = main() 
print test 

基本的注釋都有,大家可以自己參考。

總結

以上就是本文關于Python獲取當前公網ip并自動斷開寬帶連接實例代碼的全部內容,希望對大家有所幫助。感興趣的朋友可以繼續(xù)參閱本站其他相關專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!

相關文章

  • python基礎之匿名函數詳解

    python基礎之匿名函數詳解

    這篇文章主要介紹了python基礎之匿名函數詳解,文中有非常詳細的代碼示例,對正在學習python基礎的小伙伴們有很好的幫助,需要的朋友可以參考下
    2021-04-04
  • Python multiprocessing.Manager介紹和實例(進程間共享數據)

    Python multiprocessing.Manager介紹和實例(進程間共享數據)

    這篇文章主要介紹了Python multiprocessing.Manager介紹和實例(進程間共享數據),本文介紹了Manager的dict、list使用例子,同時介紹了namespace對象,需要的朋友可以參考下
    2014-11-11
  • 解決運行出現''dict'' object has no attribute ''has_key''問題

    解決運行出現''dict'' object has no attribute ''has_key''問題

    這篇文章主要介紹了快速解決出現class object has no attribute ' functiong' or 'var'問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-07-07
  • 對sklearn的使用之數據集的拆分與訓練詳解(python3.6)

    對sklearn的使用之數據集的拆分與訓練詳解(python3.6)

    今天小編就為大家分享一篇對sklearn的使用之數據集的拆分與訓練詳解(python3.6),具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-12-12
  • 詳解使用Pytorch Geometric實現GraphSAGE模型

    詳解使用Pytorch Geometric實現GraphSAGE模型

    這篇文章主要為大家介紹了詳解使用Pytorch Geometric實現GraphSAGE模型示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-04-04
  • Python爬取個人微信朋友信息操作示例

    Python爬取個人微信朋友信息操作示例

    這篇文章主要介紹了Python爬取個人微信朋友信息操作,涉及Python使用itchat包實現微信朋友信息爬取操作相關實現技巧,需要的朋友可以參考下
    2018-08-08
  • python中匿名函數的應用方法

    python中匿名函數的應用方法

    這篇文章主要介紹了python中匿名函數的應用方法,匿名函數是無需使用def定義的函數,只需使用關鍵字lambda進行聲明,且只可使用一次,只有一個返回值,需要的朋友可以參考下
    2023-07-07
  • python中kmeans聚類實現代碼

    python中kmeans聚類實現代碼

    這篇文章主要為大家詳細介紹了python中kmeans聚類的實現代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-02-02
  • TensorFlow2.X使用圖片制作簡單的數據集訓練模型

    TensorFlow2.X使用圖片制作簡單的數據集訓練模型

    這篇文章主要介紹了TensorFlow2.X使用圖片制作簡單的數據集訓練模型,本文通過截圖實例代碼相結合給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-04-04
  • Pyspark讀取parquet數據過程解析

    Pyspark讀取parquet數據過程解析

    這篇文章主要介紹了pyspark讀取parquet數據過程解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-03-03

最新評論