Metadata-Version: 2.0
Name: caniuse
Version: 0.3.0
Summary: check whether a package name has been used on PyPI.
Home-page: http://github.com/lord63/caniuse
Author: lord63
Author-email: lord63.j@gmail.com
License: MIT
Keywords: PyPI package name used registered
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: click (>=4.0)
Requires-Dist: requests (>=2.7.0)

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.

.. |Latest Version| image:: http://img.shields.io/pypi/v/caniuse.svg
   :target: https://pypi.python.org/pypi/caniuse
.. |Build Status| image:: https://travis-ci.org/lord63/caniuse.svg?branch=master
   :target: https://travis-ci.org/lord63/caniuse
.. |Wheel Status| image:: https://img.shields.io/badge/wheel-yes-blue.svg
   :target: https://img.shields.io/badge/wheel-yes-blue
.. |Coverage Status| image:: http://codecov.io/github/lord63/caniuse/coverage.svg?branch=master
   :target: http://codecov.io/github/lord63/caniuse?branch=master
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/caniuse.svg
   :target: https://pypi.python.org/pypi/caniuse


