piplexed


Namepiplexed JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryFind outdated python packages installed with pipx
upload_time2024-11-20 16:38:39
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT
keywords dependency cli pipx
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

# Piplexed

### Find outdated packages installed with pipx or uv

[![PyPI - Version](https://img.shields.io/pypi/v/piplexed.svg)](https://pypi.org/project/piplexed)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/piplexed)](https://pypi.org/project/piplexed)

**Piplexed** is a command line tool to identify outdated python packages, installed from [PyPI](https://pypi.org/), via [pipx](https://pypa.github.io/pipx/) or [uv](https://docs.astral.sh/uv/) (using the `uv tool` command).

**Documentation**: [https://aj-white.github.io/piplexed/](https://aj-white.github.io/piplexed/)

</div>

## ⛳ Table of Contents

- [Usage](#usage)
- [Installation](#installation)
- [Why piplexed ?](#why-piplexed)
- [Caveats](#caveats)
- [License](#license)



## 🔧 Usage

### Show Outdated Packages (Tools)

Ignores prelease and dev releases by default.

#### Installed with Pipx

```console
piplexed list --outdated
```

<p align="left">
<img src="https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-out.gif" alt="piplexed in action" width=750/>
</p>

#### Installed with uv
```console
piplexed list --outdated --tool uv
```

### Show outdated packages (include pre or dev releases)

#### Installed with pipx

```console
piplexed list --outdated --pre
```

<p>
<img src="https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-outdated-pre.PNG" alt="pipx installed tool include prerelease" width=300/>
</p>

#### Installed with uv
```consle
piplexed list --outdated --pre --tool uv
```

<p>
<img src="https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-outdated-pre-uv.PNG" alt="uv installed tool include prerelease" width=300/>
</p>

### List Installed Packages

#### With pipx

```console
piplexed list
```
Outputs similar information to `pipx list`, albeit minus the names of the binaries, in a rich table format.

<p>
<img src="https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-table.PNG" width=300>
</p>


```console
piplexed list --tree
```

An optional tree flag can be passed for a tree view (less useful if there are a lot of packages)

<p>
<img src="https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-tree.PNG" alt="piplexed list tree" width=200/>
</p>

#### With UV
```console
piplexed list --tool uv
```



## 👷‍♀️ Installation

**Piplexed** is designed to be installed globally via **pipx** or **uv**.

To install **piplexed**:

```console
pipx install piplexed
```

or

```console
uv tool install piplexed
```

Alternatively you can run it wihtout installation, supplying the required arguments shown below

```console
pipx run -- piplexed <ARGS>
```
or
```console
uv tool run piplexed <ARGS>
```

## ❓ Why piplexed

The name **piplexed** is a play on words, it contains the letters for pipx and I was also mildly perplexed trying to find a simpler way to identify outdated pipx installed packages, only to discover it didn't exist. Put the two together and well.... you get the idea (naming things is hard after all!).
For a longer answer see the [documentation](https://aj-white.github.io/piplexed/Why-piplexed/).


## 🩹 Caveats

**Piplexed** is a project that I built for my workflow, but it may not work for everyone.

It is only intended to work for packages that are installed from [PyPI](https://pypi.org), so will not work for local packages or git/url etc.

## 📝 License

**Piplexed** is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "piplexed",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "dependency, cli, pipx",
    "author": null,
    "author_email": "Andrew White <white-aj@outlook.com>",
    "download_url": "https://files.pythonhosted.org/packages/d7/8e/e200c68603bed3e5856507964d33017715e693ecc63aefb91b0c2b9355cb/piplexed-1.0.1.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n# Piplexed\n\n### Find outdated packages installed with pipx or uv\n\n[![PyPI - Version](https://img.shields.io/pypi/v/piplexed.svg)](https://pypi.org/project/piplexed)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/piplexed)](https://pypi.org/project/piplexed)\n\n**Piplexed** is a command line tool to identify outdated python packages, installed from [PyPI](https://pypi.org/), via [pipx](https://pypa.github.io/pipx/) or [uv](https://docs.astral.sh/uv/) (using the `uv tool` command).\n\n**Documentation**: [https://aj-white.github.io/piplexed/](https://aj-white.github.io/piplexed/)\n\n</div>\n\n## \u26f3 Table of Contents\n\n- [Usage](#usage)\n- [Installation](#installation)\n- [Why piplexed ?](#why-piplexed)\n- [Caveats](#caveats)\n- [License](#license)\n\n\n\n## \ud83d\udd27 Usage\n\n### Show Outdated Packages (Tools)\n\nIgnores prelease and dev releases by default.\n\n#### Installed with Pipx\n\n```console\npiplexed list --outdated\n```\n\n<p align=\"left\">\n<img src=\"https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-out.gif\" alt=\"piplexed in action\" width=750/>\n</p>\n\n#### Installed with uv\n```console\npiplexed list --outdated --tool uv\n```\n\n### Show outdated packages (include pre or dev releases)\n\n#### Installed with pipx\n\n```console\npiplexed list --outdated --pre\n```\n\n<p>\n<img src=\"https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-outdated-pre.PNG\" alt=\"pipx installed tool include prerelease\" width=300/>\n</p>\n\n#### Installed with uv\n```consle\npiplexed list --outdated --pre --tool uv\n```\n\n<p>\n<img src=\"https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-outdated-pre-uv.PNG\" alt=\"uv installed tool include prerelease\" width=300/>\n</p>\n\n### List Installed Packages\n\n#### With pipx\n\n```console\npiplexed list\n```\nOutputs similar information to `pipx list`, albeit minus the names of the binaries, in a rich table format.\n\n<p>\n<img src=\"https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-table.PNG\" width=300>\n</p>\n\n\n```console\npiplexed list --tree\n```\n\nAn optional tree flag can be passed for a tree view (less useful if there are a lot of packages)\n\n<p>\n<img src=\"https://raw.githubusercontent.com/aj-white/piplexed/main/docs/img/piplexed-list-tree.PNG\" alt=\"piplexed list tree\" width=200/>\n</p>\n\n#### With UV\n```console\npiplexed list --tool uv\n```\n\n\n\n## \ud83d\udc77\u200d\u2640\ufe0f Installation\n\n**Piplexed** is designed to be installed globally via **pipx** or **uv**.\n\nTo install **piplexed**:\n\n```console\npipx install piplexed\n```\n\nor\n\n```console\nuv tool install piplexed\n```\n\nAlternatively you can run it wihtout installation, supplying the required arguments shown below\n\n```console\npipx run -- piplexed <ARGS>\n```\nor\n```console\nuv tool run piplexed <ARGS>\n```\n\n## \u2753 Why piplexed\n\nThe name **piplexed** is a play on words, it contains the letters for pipx and I was also mildly perplexed trying to find a simpler way to identify outdated pipx installed packages, only to discover it didn't exist. Put the two together and well.... you get the idea (naming things is hard after all!).\nFor a longer answer see the [documentation](https://aj-white.github.io/piplexed/Why-piplexed/).\n\n\n## \ud83e\ude79 Caveats\n\n**Piplexed** is a project that I built for my workflow, but it may not work for everyone.\n\nIt is only intended to work for packages that are installed from [PyPI](https://pypi.org), so will not work for local packages or git/url etc.\n\n## \ud83d\udcdd License\n\n**Piplexed** is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Find outdated python packages installed with pipx",
    "version": "1.0.1",
    "project_urls": {
        "Documentation": "https://aj-white.github.io/piplexed/",
        "Issues": "https://github.com/aj-white/piplexed/issues",
        "Source": "https://github.com/aj-white/piplexed"
    },
    "split_keywords": [
        "dependency",
        " cli",
        " pipx"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6898e5b0aaab3be03ca21fed4089f307523b42b87a22287b51b3bf2937d4e1ef",
                "md5": "a2babdf0a79693b7f483739ce204a8a6",
                "sha256": "81bcdc1a4102a4422456fbd91e70354b32288b716394f4fc0bace32de2fd5871"
            },
            "downloads": -1,
            "filename": "piplexed-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a2babdf0a79693b7f483739ce204a8a6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 12296,
            "upload_time": "2024-11-20T16:38:37",
            "upload_time_iso_8601": "2024-11-20T16:38:37.827189Z",
            "url": "https://files.pythonhosted.org/packages/68/98/e5b0aaab3be03ca21fed4089f307523b42b87a22287b51b3bf2937d4e1ef/piplexed-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d78ee200c68603bed3e5856507964d33017715e693ecc63aefb91b0c2b9355cb",
                "md5": "1b79ac68c2d69b0829c45bb98e0610b5",
                "sha256": "766ca6aeadc927eae314567ec45de971f3fde8df8b052159be47224825fff47f"
            },
            "downloads": -1,
            "filename": "piplexed-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "1b79ac68c2d69b0829c45bb98e0610b5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 156221,
            "upload_time": "2024-11-20T16:38:39",
            "upload_time_iso_8601": "2024-11-20T16:38:39.761552Z",
            "url": "https://files.pythonhosted.org/packages/d7/8e/e200c68603bed3e5856507964d33017715e693ecc63aefb91b0c2b9355cb/piplexed-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-20 16:38:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aj-white",
    "github_project": "piplexed",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "piplexed"
}
        
Elapsed time: 0.45348s