This document has now been incorporated into the uWSGI documentation:
http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html
Steps with explanations to set up a server using:
# it's very easy to remove white spaces from strings | |
# it can be done using many methods but here we will disscuss some efficient one | |
# 1. Using replace() | |
s = " h a c k you r co de " # this function doesn't modify original string | |
new_s = s.replace(" ","") # here new_s holds new string with no blank spaces at all. | |
print(new_s) | |
# the output will be "hackyourcode" | |
# 2. Using join() and split() |