summaryrefslogtreecommitdiff
path: root/webClient.py
diff options
context:
space:
mode:
authorjerome <jerome@xlinfo.fr>2025-10-12 17:41:22 +0200
committerjerome <jerome@xlinfo.fr>2025-10-12 17:41:22 +0200
commitba41fa46e69dbb264dfbed1b9fca5daab44a07c7 (patch)
treed9c6eeee3a32b0d5a004f2846882868c29ba531c /webClient.py
parentec7b5913698416b775665a871a0d4102b47c680c (diff)
downloadpython-ba41fa46e69dbb264dfbed1b9fca5daab44a07c7.tar.gz
python-ba41fa46e69dbb264dfbed1b9fca5daab44a07c7.zip
organisation
Diffstat (limited to 'webClient.py')
-rw-r--r--webClient.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/webClient.py b/webClient.py
deleted file mode 100644
index 4bd6ac2..0000000
--- a/webClient.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python
-
-import requests
-
-def webClient(url,username,os):
- response = requests.get(url,params={
- "username": username,
- "os": os
- })
- print(response.text)
-
-webClient("http://10.20.236.161:4444/page.php","jerome","Linux")
-
-
-
-