caniuse

check whether a package name has been used on PyPI.


Keywords
PyPI, package, name, used, registered
License
MIT
Install
pip install caniuse==0.3.1

Documentation

caniuse

Latest Version Build Status Wheel Status Coverage Status Python Versions

Can I use this name for my python package on PyPI?

check whether a package name has been used on PyPI.

Install

$ pip install caniuse

Usage

API

>>> from caniuse.main import check
>>> check('requests')
u'Sorry, this package name has been registered :(\nHave a look at it: http://pypi.python.org/pypi/requests'
>>>
>>> check('you_will_never_use_this_name')
u'Congratulations! You can use it :)'

CLI

$ caniuse requests
Sorry, this package name has been registered :(
Have a look at it: http://pypi.python.org/pypi/requests

$ caniuse you_will_never_use_this_name
Congratulations! You can use it :)

Tests

$ pip install -r dev-requirements.txt
$ make test

License

MIT.