added python script

This commit is contained in:
Bart Koolen 2025-10-20 00:05:12 +02:00
parent 46c75005c7
commit bee87531e2
2 changed files with 5 additions and 1 deletions

View file

@ -34,7 +34,7 @@
pip pip
virtualenv virtualenv
requests requests
paho-mqtt
# Optional: Add other helpful dev tools outside of the python-pkgs set if needed # Optional: Add other helpful dev tools outside of the python-pkgs set if needed
# (e.g., git, pre-commit, bash-completion) # (e.g., git, pre-commit, bash-completion)
])) ]))

4
src/app.py Normal file
View file

@ -0,0 +1,4 @@
import requests
response = requests.get("https://git.gjkoolen.com")
print(response.status_code)