Metadata-Version: 1.1
Name: indexiterator
Version: 0.2.0
Summary: A library for iterating through a PyPI like index.
Home-page: https://github.com/logston/indexiterator
Author: Paul Logston
Author-email: code@logston.me
License: Copyright (C) 2016     Paul Logston

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.


Description: Index Iterator
        ==============
        
        A library for iterating through a PyPI like index
        
        ::
        
            from indexiterator import Index
        
            index = Index()  # defaults to using PyPI index
        
            for pacakge in index:
                # do something with package
        
        
Keywords: pypi,index,package
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet
