Pana is a CLI and module built to check if a package name or username is available from common package managers.
Project description
Pana - Pick a Name Already
Check if a package or username is available from some of the most popular package managers.
Install
Pana is available from pip
:
pip install pana
Package Managers
Package Manager | Status |
---|---|
PyPI | :white_check_mark: |
npm | :white_check_mark: |
NuGet | :white_check_mark: |
crates | :white_check_mark: |
Examplea
Module
from pana import Pana
# Print both lists to stdout
print(Pana.check_pkg("pana"))
print(Pana.check_user("battleoverflow"))
# Example output
"""
[
['pypi', False],
['npm', False],
['nuget', True],
['crates/docs', False]
]
"""
CLI
Search for a specific package
pana -p pana
Search for a username
pana -u battleoverflow
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pana-0.2.1.tar.gz
(3.3 kB
view hashes)
Built Distribution
pana-0.2.1-py3-none-any.whl
(4.6 kB
view hashes)