Metadata-Version: 2.4
Name: go2web
Version: 0.1.0
Summary: CLI for making requests and searching the web
Project-URL: bugs, https://github.com/m33ga/go2web/issues
Project-URL: changelog, https://github.com/m33ga/go2web/releases
Project-URL: documentation, https://m33ga.github.io/go2web/
Project-URL: homepage, https://github.com/m33ga/go2web
Author-email: Mihai Gurduza <mihai.gurduza@isa.utm.md>
Maintainer-email: Mihai Gurduza <mihai.gurduza@isa.utm.md>
License: MIT
License-File: LICENSE
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: bs4>=0.0.2
Requires-Dist: questionary>=2.1.1
Requires-Dist: typer>=0.24.1
Description-Content-Type: text/markdown

# go2web

![PyPI version](https://img.shields.io/pypi/v/go2web.svg)

CLI for making requests and searching the web

* GitHub: https://github.com/m33ga/go2web/
* PyPI package: https://pypi.org/project/go2web/
* Created by: **[Mihai Gurduza](-)** | GitHub https://github.com/m33ga | PyPI https://pypi.org/user/m33ga/
* Free software: MIT License

## Features

* TODO

## Documentation

Documentation is built with [Zensical](https://zensical.org/) and deployed to GitHub Pages.

* **Live site:** https://m33ga.github.io/go2web/
* **Preview locally:** `just docs-serve` (serves at http://localhost:8000)
* **Build:** `just docs-build`

API documentation is auto-generated from docstrings using [mkdocstrings](https://mkdocstrings.github.io/).

Docs deploy automatically on push to `main` via GitHub Actions. To enable this, go to your repo's Settings > Pages and set the source to **GitHub Actions**.

## Development

To set up for local development:

```bash
# Clone your fork
git clone git@github.com:your_username/go2web.git
cd go2web

# Install in editable mode with live updates
uv tool install --editable .
```

This installs the CLI globally but with live updates - any changes you make to the source code are immediately available when you run `go2web`.

Run tests:

```bash
uv run pytest
```

Run quality checks (format, lint, type check, test):

```bash
just qa
```

## Author

go2web was created in 2026 by Mihai Gurduza.

Built with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [audreyfeldroy/cookiecutter-pypackage](https://github.com/audreyfeldroy/cookiecutter-pypackage) project template.
