Récupérer dns depuis python cgi
Fermé
Utilisateur anonyme
-
9 juin 2012 à 17:25
jisisv Messages postés 3645 Date d'inscription dimanche 18 mars 2001 Statut Modérateur Dernière intervention 15 janvier 2017 - 10 juin 2012 à 07:00
jisisv Messages postés 3645 Date d'inscription dimanche 18 mars 2001 Statut Modérateur Dernière intervention 15 janvier 2017 - 10 juin 2012 à 07:00
A voir également:
- Récupérer dns depuis python cgi
- Changer dns - Guide
- Recuperer message whatsapp supprimé - Guide
- Recuperer video youtube - Guide
- Comment récupérer un compte facebook piraté - Guide
- Dns gratuit - Guide
1 réponse
jisisv
Messages postés
3645
Date d'inscription
dimanche 18 mars 2001
Statut
Modérateur
Dernière intervention
15 janvier 2017
934
Modifié par jisisv le 10/06/2012 à 07:02
Modifié par jisisv le 10/06/2012 à 07:02
Inspire-toi de ceci:
Pour Python 2.7, tu pourrais utiloiser le module cgi pour Python 2.7
Pour Python 3 : cgi pour Python 3
Gates gave ^H sold you the windows.
GNU gave us the whole house.(Alexandrin)
johand@osiris: ~/www/cgi-bin $ cat ../data/python/testenv.html <html> <body> <form action="/cgi-bin/get_env.py" type="GET"> <input type="submit" name="Say Hello" value="Say Hello" /> </form> </body> </html> johand@osiris: ~/www/cgi-bin $ cat get_env.py #! /usr/bin/python3 import os print ("Content-type: text/html") print print print(""" <html> <body> """) #print (sorted(os.environ.keys())) try: print("Hello %s\n" %( os.environ['REMOTE_ADDR'] )) except: print("Hello unknown\n") pass print("<br />") print (""" </body> </html> """)
Pour Python 2.7, tu pourrais utiloiser le module cgi pour Python 2.7
Pour Python 3 : cgi pour Python 3
Gates gave ^H sold you the windows.
GNU gave us the whole house.(Alexandrin)