Metadata-Version: 2.0
Name: refreshit
Version: 0.1
Summary: A print to always print in the same line, refreshing the content
Home-page: https://github.com/estevaofon/refreshit
Author: Estevao Fonseca
Author-email: estevaopfon@gmail.com
License: MIT
Keywords: print,refreshit,terminal
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

refreshit
===========
A print to always print in the same line, refreshing the content

Setup
-----

.. code-block:: bash

    $ pip install refreshit

Code sample
-----

.. code-block:: python

    from refreshit import uprint
    from time import sleep

    uprint("Beautiful is better than ugly.")
    sleep(1)
    uprint("Explicit is better than implicit.\n")
    sleep(1)


