py icon indicating copy to clipboard operation
py copied to clipboard

Repository to store sample python programs for python learning

Results 232 py issues
Sort by recently updated
recently updated
newest added

import requests import socket server_url = "http://YOUR_SERVER_IP:5000/login" hostname = socket.gethostname() ip = socket.gethostbyname(hostname) data = { "device": hostname, "ip": ip } res = requests.post(server_url, data=data) print("Server response:", res.text)

This commit adds a complete local scholarship management system with the following features: - Database layer with SQLite for persistent storage - Models for Scholarships, Students, and Applications with full...

/* style.css */ :root { --bg: #0f0f12; --bg-2: #14141a; --text: #e9e9ec; --muted: #b6b6c2; --accent: #d0a15e; --accent-2: #b8894f; --card: #1a1a22; --border: #292931; --shadow: 0 10px 30px rgba(0,0,0,0.35); } * { box-sizing:...

/* style.css */ :root { --bg: #0f0f12; --bg-2: #14141a; --text: #e9e9ec; --muted: #b6b6c2; --accent: #d0a15e; --accent-2: #b8894f; --card: #1a1a22; --border: #292931; --shadow: 0 10px 30px rgba(0,0,0,0.35); } * { box-sizing:...

/* style.css */ :root { --bg: #0f0f12; --bg-2: #14141a; --text: #e9e9ec; --muted: #b6b6c2; --accent: #d0a15e; --accent-2: #b8894f; --card: #1a1a22; --border: #292931; --shadow: 0 10px 30px rgba(0,0,0,0.35); } * { box-sizing:...