aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorPatrick Ng <pnpnpn@users.noreply.github.com>2014-10-16 13:15:49 -0400
committerPatrick Ng <pnpnpn@users.noreply.github.com>2014-10-16 13:15:49 -0400
commit9368a6f3f72e491ab75fe7f6027227138d645c30 (patch)
tree2c553c3b7917caaa3a06e6020eccfd83c9287a28 /README.rst
parente54bea9ff92e100f67f75caa03a59d47fa245ee5 (diff)
downloadtimeout-decorator-9368a6f3f72e491ab75fe7f6027227138d645c30.tar.gz
Update and rename README.rst to README.md
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst38
1 files changed, 0 insertions, 38 deletions
diff --git a/README.rst b/README.rst
deleted file mode 100644
index 9b92022..0000000
--- a/README.rst
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-Installation
-------------
-From source code: ::
-
- python setup.py install
-
-From pypi: ::
-
- pip install timeout-decorator
-
-Usage
------
-::
-
- import time
- import timeout_decorator
-
- @timeout_decorator.timeout(5)
- def mytest():
- print "Start"
- for i in range(1,10):
- time.sleep(1)
- print "%d seconds have passed" % i
-
- if __name__ == '__main__':
- mytest()
-
-
-Acknowledgement
---------------------
-Derived from http://www.saltycrane.com/blog/2010/04/using-python-timeout-decorator-uploading-s3/
-
-Contribute
-------------
-I would love for you to fork and send me pull request for this project. Please contribute.