Metadata-Version: 2.1
Name: phantombrowser
Version: 0.0.2
Summary: Typed Python wrapper for Phantomjs Cloud API
Home-page: https://github.com/guangrei/PhantomBrowser
Author: guangrei
Author-email: myawn@pm.me
License: MIT
Platform: any
Description-Content-Type: text/markdown

[![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) 
[![status workflow test](https://github.com/guangrei/PhantomBrowser/actions/workflows/python-app.yml/badge.svg)](https://github.com/guangrei/PhantomBrowser/actions) 
[![status workflow build](https://github.com/guangrei/PhantomBrowser/actions/workflows/release_to_pypi.yml/badge.svg)](https://github.com/guangrei/PhantomBrowser/actions)

[![Downloads](https://static.pepy.tech/badge/phantombrowser)](https://pepy.tech/project/phantombrowser)
[![Downloads](https://static.pepy.tech/badge/phantombrowser/month)](https://pepy.tech/project/phantombrowser)
[![Downloads](https://static.pepy.tech/badge/phantombrowser/week)](https://pepy.tech/project/phantombrowser)

PhantomBrowser is typed Python wrapper for [phantomjscloud.com](https://phantomjscloud.com) api with optimize magic rendering and support asynchronous.

## Installation

```
pip install phantombrowser
```

## Example

render html:

```python
from PhantomBrowser import Browser


browser = Browser()
response = browser.get("https://example.com")
print(response.text)
browser.close()
```

render plain text:
```python
from PhantomBrowser import Browser


browser = Browser()
response = browser.get("https://example.com", render="plainText")
print(response.text)
browser.close()
```

render image:
```python
from PhantomBrowser import Browser


browser = Browser()
response = browser.get("https://example.com", render="png")
browser.saveAs("example.png", response.content)
browser.close()
```

render PDF:
```python
from PhantomBrowser import Browser


browser = Browser()
response = browser.get("https://example.com", render="pdf")
browser.saveAs("example.pdf", response.content)
browser.close()
```

the other method like `browser.post()`, `browser.put()`, `browser.patch()`, `browser.option()` and `browser.delete()` also supported.

You can also use the API key by setting the environment variable `PHANTOMJSCLOUD.COM_APIKEY` or directly in the class
```python
from PhantomBrowser import Browser


browser = Browser("Your API Key")
```

## Asynchronous Example

```python
from PhantomBrowser import AsyncBrowser
import asyncio


async def main():
    browser = AsyncBrowser()
    response = await browser.get("https://example.com")
    print(await response.text())
    await browser.close()

if __name__ == '__main__':
    asyncio.run(main())
```

## License

MIT
