diff --git a/README.md b/README.md
index dd76b6e..d2e1fa8 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,28 @@
 django-request-provider
 =======================
 
-A middle to get the request from anywhere.
\ No newline at end of file
+A middle to get the request from anywhere.
+
+
+It is inspired on the: django-contrib-requestprovider-1.0.1
+
+
+Usage
+-----
+
+
+Add the following middleware to *setings.py*:
+
+    MIDDLEWARE_CLASSES=( 
+        ...
+        'request_provider.middleware.RequestProvider',
+        ...
+        )
+
+
+And when you require the request, just do:
+
+    from request_provider.signals import get_request 
+    http_request = get_request()
+
+