Metadata-Version: 1.1
Name: cookiestxt
Version: 0.2
Summary: A version of MozillaCookieJar that works with curl/wget
Home-page: http://www.github.com/tubaman/cookiestxt/
Author: Ryan Nowakowski
Author-email: tubaman@fattuba.com
License: PSFL
Description: # cookiestxt
        
        A version of Python's MozillaCookieJar that produces cookies.txt files
        that are compatible with curl/wget.
        
        MozillaCookieJar is a *great* idea.  It just doesn't work well right
        now without [this patch](https://bugs.python.org/issue17164).  So,
        I've applied the patch here.
        
        Use it like you would use MozillaCookieJar.
        
        ```python
        from cookiestxt import MozillaCookieJar
        cj = MozillaCookieJar()
        ...
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
