Metadata-Version: 2.4
Name: hbrowser
Version: 0.9.5
Summary: A tool for browsing tasks on e-h/exh-websites.
Author: Kuan-Lun Wang
License: GNU Affero General Public License v3
Project-URL: Homepage, https://github.com/Kuan-Lun/hbrowser
Project-URL: Tracker, https://github.com/Kuan-Lun/hbrowser/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: webdriver-manager>=4.0.2
Requires-Dist: fake-useragent>=2.2.0
Requires-Dist: h2h-galleryinfo-parser>=0.2.2
Requires-Dist: selenium>=4.35.0
Requires-Dist: beautifulsoup4>=4.13.4
Requires-Dist: hv-bie>=0.3.2
Requires-Dist: numpy>=2.2.6
Requires-Dist: opencv-python>=4.12.0.88
Dynamic: license-file

# HBrowser (hbrowser)

## Usage

Here's a quick example of how to use HBrowser:

```python
from hbrowser import DriverPass, EHDriver


if __name__ == "__main__":
    driverpass = DriverPass(username="username", password="password")

    with EHDriver(**driverpass.getdict()) as driver:
        driver.punchin()
```

Here's a quick example of how to use HVBrowser:

```python
from hbrowser import DriverPass
from hvbrowser import HVDriver


if __name__ == "__main__":
    driverpass = DriverPass(username="username", password="password")

    with HVDriver(**driverpass.getdict()) as driver:
        driver.monstercheck()
```
