src/p/y/pypy3-HEAD/lib-python/3.1.2/xml/dom/xmlbuilder.py pypy3(Download)
def parse(self, input):
options = copy.copy(self._options)
options.filter = self.filter
options.errorHandler = self.errorHandler
fp = input.byteStream
if fp is None and options.systemId:
import urllib.request
def _create_opener(self):
import urllib.request
return urllib.request.build_opener()
def _guess_media_encoding(self, source):
info = source.byteStream.info()
if "Content-Type" in info:
src/t/w/twython-HEAD/twython3k/twython.py twython(Download)
__author__ = "Ryan McGrath <ryan@venodesigns.net>" __version__ = "1.3.4" import urllib.request, urllib.parse, urllib.error import urllib.request, urllib.error, urllib.parse import urllib.parse import http.client
src/p/y/pypy3-HEAD/lib-python/3.1.2/xml/sax/saxutils.py pypy3(Download)
"""\ A library of useful helper classes to the SAX classes, for the convenience of application and driver writers. """ import os, urllib.parse, urllib.request from . import handler
src/p/y/pywii-HEAD/Python-3.1.2/Tools/webchecker/webchecker.py pywii(Download)
import getopt import pickle import urllib.request import urllib.parse as urlparse import sgmllib import cgi
src/p/y/pypy3-HEAD/lib-python/3.1.2/urllib/robotparser.py pypy3(Download)
http://info.webcrawler.com/mak/projects/robots/norobots-rfc.html
"""
import urllib.parse, urllib.request
__all__ = ["RobotFileParser"]
src/p/y/pypy3-HEAD/lib-python/3.1.2/http/cookiejar.py pypy3(Download)
import copy
import re
import time
import urllib.parse, urllib.request
try:
import threading as _threading
except ImportError:
src/a/t/Athena-Dependencies-Python-HEAD/Tools/webchecker/webchecker.py Athena-Dependencies-Python(Download)
import getopt import pickle import urllib.request import urllib.parse as urlparse import sgmllib import cgi
src/s/y/synchro-HEAD/synchro-windows/lib/twython/twython3k.py synchro(Download)
Questions, comments? ryan@venodesigns.net """ import http.client, urllib, urllib.request, urllib.error, urllib.parse, mimetypes, mimetools from urllib.parse import urlparse from urllib.error import HTTPError
src/s/y/synchro-HEAD/synchro-unix/lib/twython/twython3k.py synchro(Download)
Questions, comments? ryan@venodesigns.net """ import http.client, urllib, urllib.request, urllib.error, urllib.parse, mimetypes, mimetools from urllib.parse import urlparse from urllib.error import HTTPError
src/p/y/pywii-HEAD/Python-3.1.2/Lib/xml/dom/xmlbuilder.py pywii(Download)
def parse(self, input):
options = copy.copy(self._options)
options.filter = self.filter
options.errorHandler = self.errorHandler
fp = input.byteStream
if fp is None and options.systemId:
import urllib.request
def _create_opener(self):
import urllib.request
return urllib.request.build_opener()
def _guess_media_encoding(self, source):
info = source.byteStream.info()
if "Content-Type" in info:
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next