示例#1
0
文件: google.py 项目: EITC-IRPD/RAPID
    def __init__(self):
        """
        Create a new LWPCookieJar that uses an in-memory "file."

        The contents of this file can be retrieved by calling the 'getvalue' method.
        """
        LWPCookieJar.__init__(self)
        self._string = ""
示例#2
0
文件: google.py 项目: armyninja/cyber
    def __init__(self):
        """
        Create a new LWPCookieJar that uses an in-memory "file."

        The contents of this file can be retrieved by calling the 'getvalue' method.
        """
        LWPCookieJar.__init__(self)
        self._string = ""
示例#3
0
文件: cookie.py 项目: nyon-one/bro
 def __init__(self, file_name):
     file_name = Rel(__file__).folder('.cook').join(file_name)
     LWPCookieJar.__init__(self, file_name)