Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 24, 2019
1 parent 4bc79ca commit 12902d8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ ProgIter documentation
.. automodule:: progiter.__init__
:show-inheritance:


.. automodule:: progiter.progiter
:show-inheritance:

.. commented out
.. :members:
.. :undoc-members:
Expand Down
12 changes: 12 additions & 0 deletions progiter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# -*- coding: utf-8 -*-
"""
ProgIter is a simple way to indicate progress of an iterative process.
Its basic usage is simple and intuitive. Just wrap a python iterable.
Example:
>>> from progiter import ProgIter
>>> for item in ProgIter(range(1000000000)):
>>> item # Do Work
"""
from __future__ import unicode_literals
from .progiter import (ProgIter,)

__version__ = '0.1.1'
Expand Down

0 comments on commit 12902d8

Please sign in to comment.