Metadata-Version: 2.4
Name: simple-cookie-downloader
Version: 0.1.1
Summary: a simple web page downloader based on requests.
License: MIT
License-File: LICENSE
Author: GGN_2015
Author-email: neko@jlulug.org
Requires-Python: >=3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: fake_useragent
Requires-Dist: requests
Description-Content-Type: text/markdown

# simple_cookie_downloader
a simple web page downloader based on requests.

## Installation

```bash
pip install simple_cookie_downloader
```

## Usage

```python
from simple_cookie_downloader import get_page_with_cookie

# public url for testing
test_url = "https://httpbin.org/get"

# test cookie
test_cookies = {
    "user_session": "test_abc123",
    "token": "test_xyz789"
}

# webpage json/html text
result = get_page_with_cookie(url=test_url, cookies=test_cookies)
print(result)
```

