aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
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.