예제 #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)