generated from mwc/lab_riddles
1. One service I use regularly is spotify to listen to music. One feature is creating playlists with different amount of songs in them. One thing behind the scenes with HTTP requests could be with trying to add a song that already exists in a playlist, this would result in some message saying the song is already in the playlist. If the song is not in the playlist it gets added. 2. I will definitly say that I was thinking too much about the lab and ended up trying complicated things but in reality it was a simple fix. This makes me think more about my tech interactions as simpler than I would have expected. However with the errors I recieved it shows how much more there is behind that I didn't see. I was able to see what actually goes into coding an application.
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
|