コード例 #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)