无需打开Web浏览器即可启动HTML代码

时间:2014-10-13 12:48:26

标签: python html

我有一个可以用HTML代码管理的设备

我想使用python将这些HTML代码传递给设备而无需打开网络浏览器,是否有可能的方法?

import IEC

ie = IEC.IEController()       # Creates a new IE Window   "i want to skip this step"    
ie.Navigate('http://10.16.16.96/set?params=default')       # Navigate to a website. 

1 个答案:

答案 0 :(得分:3)

在Python 2.x中,使用urllib.urlopen

import urllib
urlilb.urlopen('http://10.16.16.96/set?params=default').read()

在Python 3.x中,使用urllib.request.urlopen

import urllib.request
urlilb.request.urlopen('http://10.16.16.96/set?params=default').read()

<强>更新

如果您不介意安装第三方库,也可以使用requests

import requests
requests.get('http://10.16.16.96/set?params=default').content