Skip to content

Python

Créer un serveur HTTP en Python

Avec Python 2 :

python -m SimpleHTTPServer port 

Avec Python 3 :

python -m http.server port 

Credit : Matt http://doc.callmematthi.eu

Ecrire dans un fichier

#!/usr/bin/python

text_file = open("/tmp/send.txt", "w")
text_file.write(strMsg)
text_file.close()