Metadata-Version: 2.0
Name: zprint
Version: 0.0.2
Summary: print out the time and function trees
Home-page: http://www.zhaomingming.cn
Author: zhaomingming
Author-email: 13271929138@163.com
License: MIT
Description-Content-Type: text/markdown
Platform: any

Info
====
`zprint 2018-08-20`

`Author: Zhao Mingming <471106585@qq.com>`

`Copyright: This module has been placed in the public domain.`

`version:0.0.1`
- `add func zprint, print out the function list and time into stdout`
- `add func eprint, print out the function list and time into stderr`

Functions:

- `add func zprint, print out the function list and time into stdout`
- `add func eprint, print out the function list and time into stderr`

How To Use This Module
======================
.. image:: funny.gif
   :height: 100px
   :width: 100px
   :alt: funny cat picture
   :align: center

1. example code:


.. code:: python

from  zprint  import *   

def fun2():
    zprint(" I am in fun2",0)

def fun1():
    zprint(" I am in fun1")
    fun2()



if __name__=="__main__":
   print 1
   fun1()



Refresh
========
20180820


