Metadata-Version: 1.1
Name: pypicount
Version: 0.0dev
Summary: Count download pypi packages
Home-page: http://github.com/cleder/pypicount
Author: Christian Ledermann
Author-email: christian.ledermann@gmail.com
License: GPL
Description: Introduction
        ============
        
        Have you wondered how many times certain packages were downloaded from pypi
        during their lifetime? Or how well are your packages doing?
        
        You can use vanity_ but then you have to get every package name you
        want to check or you can use this package.
        
        Command line usage
        -------------------
        
        ::
        
            $ python counter.py name=kotti
            bobtemplates.kotti : 264 downloads last_month
            Kotti : 6324 downloads last_month
            kotti_accounts : 378 downloads last_month
            kotti_analytics : 93 downloads last_month
            kotti_blog : 373 downloads last_month
            kotti_calendar : 403 downloads last_month
            kotti_contactform : 575 downloads last_month
            kotti_contentpreview : 139 downloads last_month
            ...
        
        Valid keys for search are:
        
        - name
        
        - version
        
        - author
        
        - author_email
        
        - maintainer
        
        - maintainer_email
        
        - home_page
        
        - license
        
        - summary
        
        - description
        
        - keywords
        
        - platform
        
        - download_url
        
        Invalid keys are ignored.
        
        Python
        --------
        
        ::
        
            >>> from pypicount import count_search, count_user, save_csv
            >>> count_user('christian.ledermann')
            collective.geo.opensearch : 307 downloads last_month
            collective.geo.flexitopic : 345 downloads last_month
            ...
            >>> count_search(name='collective.geo')
            collective.geo.behaviour : 286 downloads last_month
            collective.geo.bundle : 491 downloads last_month
            ...
        
        
        .. image:: https://api.travis-ci.org/cleder/pypicount.png
            :target: https://travis-ci.org/cleder/pypicount
        
        .. image:: https://coveralls.io/repos/cleder/pypicount/badge.png?branch=master
            :target: https://coveralls.io/r/cleder/pypicount?branch=master
        
        .. _vanity: https://pypi.python.org/pypi/vanity
        
Keywords: pypi cheeseshop
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
