pyavax


Namepyavax JSON
Version 1.2.2 PyPI version JSON
download
home_pageNone
Summarypyava is command line tool to help you check the availability of a package name you want on PyPI
upload_time2025-08-26 08:23:40
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseApache-2.0
keywords pypi package checker availability cli
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pyava

![GitHub Repo stars](https://img.shields.io/github/stars/BirukBelihu/pyava)
![GitHub forks](https://img.shields.io/github/forks/BirukBelihu/pyava)
![GitHub issues](https://img.shields.io/github/issues/BirukBelihu/pyava)
[![PyPI Downloads](https://static.pepy.tech/badge/pyavax)](https://pepy.tech/projects/pyavax)<br>
![Python](https://img.shields.io/pypi/pyversions/pyavax)

**pyava** is command line tool to help you check the availability of a package name you want on [PyPI](https://pypi.org)

---
GitHub: [pyava](https://github.com/BirukBelihu/pyava)
---

## ✨ Features

- đŸ’ģ Check up to 5 package names you want at a time.
- ✅ Set custom timeout for each package name you check
- â„šī¸ Get info about the package if it's taken like `summary`, `version`, `author`, `author email`, `home page` & more.
- 🎨 Colorful output

---

### Sample

![pyava Sample](https://github.com/birukbelihu/pyava/raw/master/samples/sample_1.png)

![pyava Sample](https://github.com/birukbelihu/pyava/raw/master/samples/sample_2.png)

---

## đŸ“Ļ Installation

```
pip install pyavax
```

You can also install pyava from source code. source code may not be stable, but it will have the latest features and
bug fixes.

Clone the repository:

```
git clone https://github.com/birukbelihu/pyava.git
```

Go inside the project directory:

```bash
cd pyava
```

### Set up Python virtual environment(I recommend using [uv](https://github.com/astral-sh/uv) for lightning speed)

### With uv

```bash
uv venv .venv
```

### With Python

```bash
python -m venv .venv
```

# Activate virtual environment

```bash
.venv\Scripts\activate # On Windows
```

```bash
source .venv/bin/activate # On Linux, WSL & macOS
```

# Install required dependencies

### With uv

```bash
uv pip install -r requirements.txt
```

### With Python

```bash
pip install -r requirements.txt
```

---

Install pyava:

```
pip install -e .
```

---

## 🧠 Example Usage

```bash
pyava requests tensorflow mediapipe
```

### Output

![pyava Sample](https://github.com/birukbelihu/pyava/raw/master/samples/sample_3.png)

## 🙌 Contribute

Want to improve `pyava`? Contributions are welcome!

---

## đŸ“ĸ Social Media

- đŸ“ē [YouTube: @pythondevs](https://youtube.com/@pythondevs?si=_CZxaEBwDkQEj4je)

---

## 📄 License

This project is licensed under the **Apache License 2.0**. See
the [LICENSE](https://github.com/birukbelihu/pyava/blob/master/LICENSE) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyavax",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "pypi, package checker, availability, cli",
    "author": null,
    "author_email": "BirukBelihu <birukbelihu1995@email.com>",
    "download_url": "https://files.pythonhosted.org/packages/27/86/2e63437339349a479becfabeaf865675c37d510736bd235292f5398e0fd9/pyavax-1.2.2.tar.gz",
    "platform": null,
    "description": "# pyava\r\n\r\n![GitHub Repo stars](https://img.shields.io/github/stars/BirukBelihu/pyava)\r\n![GitHub forks](https://img.shields.io/github/forks/BirukBelihu/pyava)\r\n![GitHub issues](https://img.shields.io/github/issues/BirukBelihu/pyava)\r\n[![PyPI Downloads](https://static.pepy.tech/badge/pyavax)](https://pepy.tech/projects/pyavax)<br>\r\n![Python](https://img.shields.io/pypi/pyversions/pyavax)\r\n\r\n**pyava** is command line tool to help you check the availability of a package name you want on [PyPI](https://pypi.org)\r\n\r\n---\r\nGitHub: [pyava](https://github.com/BirukBelihu/pyava)\r\n---\r\n\r\n## \u2728 Features\r\n\r\n- \ud83d\udcbb Check up to 5 package names you want at a time.\r\n- \u2705 Set custom timeout for each package name you check\r\n- \u2139\ufe0f Get info about the package if it's taken like `summary`, `version`, `author`, `author email`, `home page` & more.\r\n- \ud83c\udfa8 Colorful output\r\n\r\n---\r\n\r\n### Sample\r\n\r\n![pyava Sample](https://github.com/birukbelihu/pyava/raw/master/samples/sample_1.png)\r\n\r\n![pyava Sample](https://github.com/birukbelihu/pyava/raw/master/samples/sample_2.png)\r\n\r\n---\r\n\r\n## \ud83d\udce6 Installation\r\n\r\n```\r\npip install pyavax\r\n```\r\n\r\nYou can also install pyava from source code. source code may not be stable, but it will have the latest features and\r\nbug fixes.\r\n\r\nClone the repository:\r\n\r\n```\r\ngit clone https://github.com/birukbelihu/pyava.git\r\n```\r\n\r\nGo inside the project directory:\r\n\r\n```bash\r\ncd pyava\r\n```\r\n\r\n### Set up Python virtual environment(I recommend using [uv](https://github.com/astral-sh/uv) for lightning speed)\r\n\r\n### With uv\r\n\r\n```bash\r\nuv venv .venv\r\n```\r\n\r\n### With Python\r\n\r\n```bash\r\npython -m venv .venv\r\n```\r\n\r\n# Activate virtual environment\r\n\r\n```bash\r\n.venv\\Scripts\\activate # On Windows\r\n```\r\n\r\n```bash\r\nsource .venv/bin/activate # On Linux, WSL & macOS\r\n```\r\n\r\n# Install required dependencies\r\n\r\n### With uv\r\n\r\n```bash\r\nuv pip install -r requirements.txt\r\n```\r\n\r\n### With Python\r\n\r\n```bash\r\npip install -r requirements.txt\r\n```\r\n\r\n---\r\n\r\nInstall pyava:\r\n\r\n```\r\npip install -e .\r\n```\r\n\r\n---\r\n\r\n## \ud83e\udde0 Example Usage\r\n\r\n```bash\r\npyava requests tensorflow mediapipe\r\n```\r\n\r\n### Output\r\n\r\n![pyava Sample](https://github.com/birukbelihu/pyava/raw/master/samples/sample_3.png)\r\n\r\n## \ud83d\ude4c Contribute\r\n\r\nWant to improve `pyava`? Contributions are welcome!\r\n\r\n---\r\n\r\n## \ud83d\udce2 Social Media\r\n\r\n- \ud83d\udcfa [YouTube: @pythondevs](https://youtube.com/@pythondevs?si=_CZxaEBwDkQEj4je)\r\n\r\n---\r\n\r\n## \ud83d\udcc4 License\r\n\r\nThis project is licensed under the **Apache License 2.0**. See\r\nthe [LICENSE](https://github.com/birukbelihu/pyava/blob/master/LICENSE) file for details.\r\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "pyava is command line tool to help you check the availability of a package name you want on PyPI",
    "version": "1.2.2",
    "project_urls": {
        "Homepage": "https://github.com/birukbelihu/pyava",
        "Issues": "https://github.com/birukbelihu/pyava",
        "Source": "https://github.com/birukbelihu/pyava"
    },
    "split_keywords": [
        "pypi",
        " package checker",
        " availability",
        " cli"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3fd7aefdc598c68260f7cd92827f8804287911a649bd4166e7afaf1f604f3c6",
                "md5": "9409980bd4cdc44ce3517f2cac01f93c",
                "sha256": "8fc6a44d9bc21218f703fe0222da742d7d6de4818b4b162c910355e8979df92e"
            },
            "downloads": -1,
            "filename": "pyavax-1.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9409980bd4cdc44ce3517f2cac01f93c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 9491,
            "upload_time": "2025-08-26T08:23:39",
            "upload_time_iso_8601": "2025-08-26T08:23:39.401653Z",
            "url": "https://files.pythonhosted.org/packages/a3/fd/7aefdc598c68260f7cd92827f8804287911a649bd4166e7afaf1f604f3c6/pyavax-1.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27862e63437339349a479becfabeaf865675c37d510736bd235292f5398e0fd9",
                "md5": "a74a57c68356096b8a0244745914769e",
                "sha256": "3ec16166107051c0e067c73a1893728c0d15af323c1d9d713222f0606ecb26dd"
            },
            "downloads": -1,
            "filename": "pyavax-1.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "a74a57c68356096b8a0244745914769e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 8663,
            "upload_time": "2025-08-26T08:23:40",
            "upload_time_iso_8601": "2025-08-26T08:23:40.580824Z",
            "url": "https://files.pythonhosted.org/packages/27/86/2e63437339349a479becfabeaf865675c37d510736bd235292f5398e0fd9/pyavax-1.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-26 08:23:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "birukbelihu",
    "github_project": "pyava",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "pyavax"
}
        
Elapsed time: 1.26314s