Metadata-Version: 2.4
Name: YappatronBasicBrowser
Version: 0.1.1
Summary: A library for building a basic web browser with tabs in 2 lines of code.
Author-email: ZoeyDev <zoeydev@chickennet.work>
License: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: PyQt6>=6.9.1
Requires-Dist: PyQt6-WebEngine>=6.9.0

# Yappatron Basic Browser

```python
from yappatronbasicbrowser import run, YappatronSettings

# Run default browser
run()

# Run browser with custom settings
settings = YappatronSettings(start_url="https://google.com", width=1280, height=720)
run(settings=settings)
