Metadata-Version: 1.1
Name: vanity
Version: 2.2.2
Summary: Get package download statistics from PyPI
Home-page: https://github.com/aclark4life/vanity
Author: Alex Clark
Author-email: aclark@aclark.net
License: GPL
Description: Vanity
        ======
        
        Get package download statistics from PyPI [1]_
        
        .. 
            .. image:: https://travis-ci.org/aclark4life/vanity.svg
               :target: https://travis-ci.org/aclark4life/vanity
               :alt: Travis CI build status
        
            .. image:: https://pypip.in/v/vanity/badge.png
               :target: https://pypi.python.org/pypi/vanity/
               :alt: Latest PyPI version
        
            .. image:: https://pypip.in/d/vanity/badge.png
               :target: https://pypi.python.org/pypi/vanity/
               :alt: Number of PyPI downloads
        
            .. image:: https://coveralls.io/repos/aclark4life/vanity/badge.png?branch=travisci
               :target: https://coveralls.io/r/aclark4life/vanity?branch=travisci
               :alt: Code coverage
        
            .. image:: https://landscape.io/github/aclark4life/vanity/master/landscape.png
               :target: https://landscape.io/github/aclark4life/vanity/master
               :alt: Code health
        
        Installation
        ------------
        
        ::
        
            $ pip install vanity
        
        Usage
        -----
        
        Enter package name::
        
            $ vanity django
            Django-1.1.3.tar.gz    2010-12-23        4,938
            Django-1.1.4.tar.gz    2011-02-09       10,259
              Django-1.2.tar.gz    2010-05-17       24,011
            Django-1.2.1.tar.gz    2010-05-24       71,479
            Django-1.2.2.tar.gz    2010-09-09        4,388
            Django-1.2.3.tar.gz    2010-09-11       82,629
            Django-1.2.4.tar.gz    2010-12-23       66,223
            Django-1.2.5.tar.gz    2011-02-09       82,325
            Django-1.2.6.tar.gz    2011-09-10        2,559
            Django-1.2.7.tar.gz    2011-09-11       31,833
              Django-1.3.tar.gz    2011-03-23      363,202
            Django-1.3.1.tar.gz    2011-09-10      585,745
            Django-1.3.2.tar.gz    2012-07-30        7,649
            Django-1.3.3.tar.gz    2012-08-01       31,375
            Django-1.3.4.tar.gz    2013-03-05        1,974
            Django-1.3.5.tar.gz    2012-12-10       16,880
            Django-1.3.6.tar.gz    2013-02-19        2,292
            Django-1.3.7.tar.gz    2013-02-20       14,756
              Django-1.4.tar.gz    2012-03-23      437,635
            Django-1.4.1.tar.gz    2012-07-30      328,418
            Django-1.4.2.tar.gz    2012-10-17      326,088
            Django-1.4.3.tar.gz    2012-12-10      280,915
            Django-1.4.4.tar.gz    2013-02-19       12,453
            Django-1.4.5.tar.gz    2013-02-20      117,366
              Django-1.5.tar.gz    2013-02-26      124,429
            Django-1.5.1.tar.gz    2013-03-28      150,413
            ----------------------------------------------
            Django has been downloaded 3,182,234 times!
        
        Enter package name with version::
        
            $ vanity pillow==2.0.0
                            Pillow-2.0.0.zip    2013-03-15       61,022
                Pillow-2.0.0.win32-py3.3.exe    2013-03-15          593
                Pillow-2.0.0.win32-py3.2.exe    2013-03-15          379
                Pillow-2.0.0.win32-py2.7.exe    2013-03-15          703
                Pillow-2.0.0.win32-py2.6.exe    2013-03-15          308
            Pillow-2.0.0.win-amd64-py3.3.exe    2013-03-15          487
            Pillow-2.0.0.win-amd64-py3.2.exe    2013-03-15          328
            Pillow-2.0.0.win-amd64-py2.7.exe    2013-03-15          500
            Pillow-2.0.0.win-amd64-py2.6.exe    2013-03-15          311
                Pillow-2.0.0-py3.3-win32.egg    2013-03-15          421
            Pillow-2.0.0-py3.3-win-amd64.egg    2013-03-15          431
                Pillow-2.0.0-py3.2-win32.egg    2013-03-15          353
            Pillow-2.0.0-py3.2-win-amd64.egg    2013-03-15          357
                Pillow-2.0.0-py2.7-win32.egg    2013-03-15        1,160
            Pillow-2.0.0-py2.7-win-amd64.egg    2013-03-15          620
                Pillow-2.0.0-py2.6-win32.egg    2013-03-15          730
            Pillow-2.0.0-py2.6-win-amd64.egg    2013-03-15          395
            -----------------------------------------------------------
            Pillow 2.0.0 has been downloaded 69,098 times!
        
        Enter multiple package names::
        
            $ bin/vanity --quiet setuptools distribute
            setuptools has been downloaded 34,601,114 times!
            distribute has been downloaded 29,661,287 times!
            setuptools and distribute have been downloaded 64,262,401 times!
        
        Enter search pattern::
        
            C:\>vanity pillow -p "Pillow-3.0.0.*win32.*py3.2|Pillow-3.0.0.*cp32.*win32"
                Pillow-3.0.0.win32-py3.2.exe    2015-10-01          582
            Pillow-3.0.0-cp32-none-win32.whl    2015-10-01          591
            -----------------------------------------------------------
            Pillow has been downloaded 1173 times!
        
        .. [1] Based on https://github.com/collective/Products.PloneSoftwareCenter/commit/601558870175e35cfa4d05fb309859e580271a1f
        
        Changelog
        =========
        
        2.2.2 (2016-08-21)
        ------------------
        
        - Fix Python 3 JSON issue
          [mattjegan]
        
        2.2.1 (2016-04-27)
        ------------------
        
        - Add message *** Note: PyPI stats are broken again; we're now waiting for warehouse. https://github.com/aclark4life/vanity/issues/22 ***
        
        2.2.0 (2016-01-06)
        ------------------
        
        - Add ``--pattern`` option
          [hugovk]
        
        2.1.0 (2015-07-03)
        ------------------
        
        - Use PyPI JSON API via ``--json``
        - Replace print with logging
        
        2.0.4 (2014-09-02)
        ------------------
        
        - Query /pypi/ instead of /simple/, fixes https://github.com/aclark4life/vanity/issues/12
        
        2.0.3 (2013-05-27)
        ------------------
        
        - New life: http://mail.python.org/pipermail/distutils-sig/2013-June/021344.html
        
        2.0.2 (2013-05-27)
        ------------------
        
        - Fix typo
        
        2.0.1 (2013-05-27)
        ------------------
        
        - End of life: http://mail.python.org/pipermail/distutils-sig/2013-May/020855.html
        
        2.0.0 (2013-05-26)
        ------------------
        
        - Revert removal of ``--quiet`` option
        - Support multi-package entry e.g. ``$ vanity setuptools distribute``
        
        1.2.5 (2013-03-17)
        ------------------
        
        - Switch to argparse 
        - Support query by version spec e.g. ``$ vanity pillow==2.0.0``
        - Remove ``--quiet`` option
        - Officially add Python 3 support
        
        1.2.4 (2013-02-19)
        ------------------
        
        - Query PyPI via https
        - Return usage statement when no args passed
        
        1.2.3 (2012-08-08)
        ------------------
        
        - Use optparse for option and argument parsing
          [JNRowe]
        - Don't fail when the en_US locale isn't available
          [JNRowe]
        - Python 3 compatibility
          [JNRowe]
        
        1.2.2 (2012-07-31)
        ------------------
        
        - Remove blessings integration which breaks on Windows
        
        1.2.1 (2012-02-15)
        ------------------
        
        - Make verbose the default
        - Add blessings support to make output pretty
        - install_requires requests for future refactor
        - Enforce available command line options better
        
        1.2.0 (2012-01-30)
        ------------------
        
        - Add verbose option to display file name, upload date, and download count per release
        - Add locale to format downloads e.g. ``700,232 times`` instead of ``700232 times``
        
        1.1.2 (2011-10-28)
        ------------------
        
        - Fix regression: Re-fix download counts
          [JNRowe]
        
        1.1.1 (2011-10-27)
        ------------------
        
        - Refactor: create ``downloads_total`` function to make external use simpler
          [kennethreitz]
        
        1.1.0 (2011-10-25)
        ------------------
        
        - Bug fixes: support for case insensitive project names and support for counting all release files (e.g. binaries in addition to sdist) and correct number of release files
          [JNRowe]
        
        1.0 (04-13-2011)
        ----------------
        
        - Initial release based on code from `Products.PloneSoftwareCenter`_ by `David Glick`_
                                                                                                                                                   
        .. _`Products.PloneSoftwareCenter`: https://pypi.python.org/pypi/Products.PloneSoftwareCenter
        .. _`David Glick`: http://glicksoftware.com
        
Keywords: analytics python package index statistics
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
