v.0.8.0 DEV CONTAINER
This commit is contained in:
34
.devcontainer/Dockerfile
Normal file
34
.devcontainer/Dockerfile
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
#Moin from VSCode
|
||||||
|
|
||||||
|
# FROM python:3.13-slim
|
||||||
|
# RUN apt-get update && apt-get install -y \
|
||||||
|
# git \
|
||||||
|
# curl \
|
||||||
|
# wget \
|
||||||
|
# && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
||||||
|
FROM python:3.13-alpine
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
git \
|
||||||
|
curl \
|
||||||
|
wget \
|
||||||
|
bash \
|
||||||
|
build-base \
|
||||||
|
linux-headers \
|
||||||
|
# Fish Shell hinzufügen
|
||||||
|
fish
|
||||||
|
|
||||||
|
# mpremote Symlink in postCreateCommand erstellen
|
||||||
|
# Oder direkt in der Dockerfile:
|
||||||
|
RUN pip install mpremote && \
|
||||||
|
ln -sf /usr/local/bin/mpremote /usr/bin/mpremote || true
|
||||||
|
|
||||||
|
# # Optional: Benutzer erstellen
|
||||||
|
RUN adduser -D -s /bin/bash vscode
|
||||||
|
USER vscode
|
||||||
|
|
||||||
|
WORKDIR /workspace
|
||||||
|
|
||||||
|
# Standard Shell auf Fish setzen (optional)
|
||||||
|
SHELL ["/usr/bin/fish", "-c"]
|
||||||
45
.devcontainer/devcontainer.json
Normal file
45
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
||||||
|
// README at: https://github.com/devcontainers/templates/tree/main/src/python
|
||||||
|
{
|
||||||
|
"name": "Python 3",
|
||||||
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
||||||
|
"build": {
|
||||||
|
"dockerfile": "Dockerfile"
|
||||||
|
},
|
||||||
|
// "image": "mcr.microsoft.com/devcontainers/python:1-3.12",
|
||||||
|
// "image": "python:latest",
|
||||||
|
//"image": "python:3.13-slim",
|
||||||
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
||||||
|
// "features": {},
|
||||||
|
// Configure tool-specific properties.
|
||||||
|
"customizations": {
|
||||||
|
// Configure properties specific to VS Code.
|
||||||
|
"vscode": {
|
||||||
|
"settings": {},
|
||||||
|
"extensions": [
|
||||||
|
"streetsidesoftware.code-spell-checker",
|
||||||
|
"ms-python.python",
|
||||||
|
"frhtylcn.pythonsnippets",
|
||||||
|
"kevinrose.vsc-python-indent",
|
||||||
|
"wayou.vscode-todo-highlight",
|
||||||
|
"charliermarsh.ruff",
|
||||||
|
"wokwi.wokwi-vscode"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
|
// "forwardPorts": [9000],
|
||||||
|
// Use 'portsAttributes' to set default properties for specific forwarded ports.
|
||||||
|
// More info: https://containers.dev/implementors/json_reference/#port-attributes
|
||||||
|
"portsAttributes": {
|
||||||
|
"9000": {
|
||||||
|
"label": "Flask Application",
|
||||||
|
"onAutoForward": "notify"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Use 'postCreateCommand' to run commands after the container is created.
|
||||||
|
"postCreateCommand": "pip3 install -r requirements.txt"
|
||||||
|
// "postCreateCommand": "apt-get update && apt-get install -y git && pip3 install -r requirements.txt"
|
||||||
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
||||||
|
// "remoteUser": "root"
|
||||||
|
}
|
||||||
@@ -1,20 +1,22 @@
|
|||||||
import time
|
import time
|
||||||
import network # type: ignore
|
import network # type: ignore
|
||||||
|
|
||||||
API_KEY = '3545ce42d0ba436e8dc164532250410'
|
API_KEY = "3545ce42d0ba436e8dc164532250410"
|
||||||
ACTUAL_WEATHER_URL = 'http://api.weatherapi.com/v1/current.json?key={API_KEY}&q={city}&aqi=yes&lang={lang}'
|
ACTUAL_WEATHER_URL = "http://api.weatherapi.com/v1/current.json?key={API_KEY}&q={city}&aqi=yes&lang={lang}"
|
||||||
|
|
||||||
|
|
||||||
class Wlan:
|
class Wlan:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
print("Wlan::__init__")
|
print("Wlan::__init__")
|
||||||
self.wlan = network.WLAN(network.STA_IF)
|
self.wlan = network.WLAN(network.STA_IF)
|
||||||
|
|
||||||
def connect(self, ssid:str, password:str):
|
def connect(self, ssid: str, password: str):
|
||||||
|
|
||||||
self.wlan.active(True)
|
self.wlan.active(True)
|
||||||
self.wlan.connect(ssid, password)
|
self.wlan.connect(ssid, password)
|
||||||
|
|
||||||
while not self.wlan.isconnected:
|
while not self.wlan.isconnected:
|
||||||
print('connecting, please wait ...')
|
print("connecting, please wait ...")
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
print('connected! IP=', self.wlan.ifconfig()[0])
|
time.sleep(0.25)
|
||||||
|
print("connected! IP=", self.wlan.ifconfig()[0])
|
||||||
|
|||||||
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
flask
|
||||||
Reference in New Issue
Block a user