generated from mwc/lab_riddles
Office Hours last week. 1. I use Steam regularly when I play games. I would think that there are many webs of POST and GET requests within that enable online connections, downloading and saving game data etc. I think the Steam client probably communicates with the game servers with the POST and GET requests to accompolish this. 2. Yeah I would say so! I didn't know about either type of the requests before so I think I learned about how things work. Very vaguely I knew that anything we do on the Internetis basically an endless transmission of data but I never considered the technicality of transmissions that take place.
19 lines
371 B
TOML
19 lines
371 B
TOML
[project]
|
|
name = "lab-riddles"
|
|
version = "5.0.0"
|
|
description = ""
|
|
authors = [{ name = "Chris Proctor", email = "chris@chrisproctor.net" }]
|
|
requires-python = ">=3.10,<4.0"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
dependencies = [
|
|
"requests>=2.32.3,<3.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.uv]
|
|
package = false
|