본문 바로가기
반응형

Python61

[Python]Python GUI PyQt UI 생성 및 연결(Python GUI) https://realpython.com/lessons/pyqt-layouts-overview/ Creating PyQt Layouts for GUI Applications (Overview) – Real PythonHello there! In this course, we are going to create flexible GUIs in PyQt5. Specifically, here’s what we are going to make. We are going to create some GUIs that scale in the horizontal axis, some that scale on the vertical axis, some that scale on…realpython.com .. 2024. 4. 24.
ESP32 cam Person Detection https://eloquentarduino.com/posts/esp32-cam-person-detection ESP32 cam Person Detection Detect people in realtime with your ESP32 camera eloquentarduino.com Person detection running on our cheap ESP32 cam has become a common task nowadays. Only a few years ago this would have been simply impossible because of lack of both hardware (Arduino boards used to feature a mediocre 16 kb RAM) and softwar.. 2024. 4. 19.
Raspberry Pi NTP Server 1. ntpd 설치 sudo apt update sudo apt install ntp 2. 구성 파일 수정(sudo nano /etc/ntp.conf) # /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help driftfile /var/lib/ntp/ntp.drift # Leap seconds definition provided by tzdata leapfile /usr/share/zoneinfo/leap-seconds.list # Enable this if you want statistics to be logged. #statsdir /var/log/ntpstats/ statistics loopstats peerstats clockstats .. 2024. 4. 16.
Pickle In Python https://www.c-sharpcorner.com/article/pickle-in-python/ Pickle In Python The article explains Serialization / Deserialization process of object in Python www.c-sharpcorner.com Introduction The Pickle Module of Python is used for serializing and deserializing Python Object structures. Through Pickle functions the Python Object Hierarchy can be serialized (pickling) into a byte stream and through .. 2024. 4. 15.
반응형