Metadata-Version: 1.1
Name: firefox_jar
Version: 0.0.2
Summary: Load firefox cookies to CookieJar (requests compatible format).
Home-page: https://github.com/imbolc/firefox_jar
Author: Imbolc
Author-email: imbolc@imbolc.name
License: ISC
Description: firefox_jar
        ===========
        Load firefox cookies to CookieJar (requests compatible format).
        
        Install
        -------
            pip install firefox_jar
        
        Usage
        -----
            >>> import requests
            >>> from firefox_jar import firefox_jar
        
            >>> with requests.session() as s:
            ...     s.cookies = firefox_jar()
            ...     r = s.get('http://yandex.ru')
            ...     assert 'imbolc' in r.text  # you should be logged in ff
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
