Skip to content
Snippets Groups Projects
Commit f1745bd5 authored by Pranavan RAJENDIRAN's avatar Pranavan RAJENDIRAN
Browse files

Merge branch 'master' into pranavan_hamming

parents f5670007 efc847f1
No related branches found
No related tags found
1 merge request!5Pranavan hamming
......@@ -2,4 +2,7 @@ Le répertoire server contient le code source du serveur web
Le répertoire html contient les fichiers html du site
Le répertoire css contient les fichiers css du site
Le répertoire js contient les fichiers Javascript du site
\ No newline at end of file
Le répertoire js contient les fichiers Javascript du site
<!DOCTYPE html>
<html>
<head><title>Moteur de recherche</title></head>
<body>
<h1>Bienvenue dans notre serveur web fonctionel!!!!!</h1>
<h2>Il faut que ça soit trés jolie </h2>
</body>
</html>
\ No newline at end of file
import http.server
import socketserver
PORT = 8080
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as http:
print("Serving at port", PORT)
http.serve_forever()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment