Metadata-Version: 2.1
Name: rookiepy
Version: 0.1.8
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# rookiepy
Extract cookies from web browsers
Bindings for [rookie](https://github.com/thewh1teagle/rookie)


# Usage
```python
from rookiepy import chrome
cookies = chrome()
for cookie in cookies:
    print(cookie.host, cookie.name, cookie.value)
```
