當前位置: 首頁>>代碼示例>>Python>>正文


Python Net.set_cookies方法代碼示例

本文整理匯總了Python中net.Net.set_cookies方法的典型用法代碼示例。如果您正苦於以下問題:Python Net.set_cookies方法的具體用法?Python Net.set_cookies怎麽用?Python Net.set_cookies使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.Net的用法示例。


在下文中一共展示了Net.set_cookies方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: Net

# 需要導入模塊: from net import Net [as 別名]
# 或者: from net.Net import set_cookies [as 別名]

#libs = []
libs = ["/mnt/Multimedia_NV/","/mnt/Anime/Filmes/","/mnt/Filmes/"]
plexserver = "192.168.1.71"
finalpath = True
finalpathloc =  "/mnt/Filmes/Filmes"
filepath = "movieList.txt"
deleteonError = True
plexUpdate = True

user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:40.0) Gecko/20100101 Firefox/40.0'
cf_cookie_file = os.path.join(os.path.dirname(__file__), 'tugaio.cache')

net = Net()
net.set_cookies(cf_cookie_file)
net.set_user_agent(user_agent)

#####Codigo Addon Kodi

def cf_decrypt_ddos(url, agent, cookie_file):
    class NoRedirection(urllib2.HTTPErrorProcessor):
        def http_response(self, request, response):
            return response

    if len(agent) == 0:
        agent = 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0) Gecko/20100101 Firefox/6.0'

    cj = cookielib.CookieJar()
    opener = urllib2.build_opener(NoRedirection, urllib2.HTTPCookieProcessor(cj))
    opener.addheaders = [('User-Agent', agent)]
開發者ID:jms05,項目名稱:TugaIO-Downloader,代碼行數:32,代碼來源:tugaIo.py


注:本文中的net.Net.set_cookies方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。