1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-03 06:12:53 +02:00

chore: update roadmap content json (#6684)

Co-authored-by: kamranahmedse <kamranahmedse@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-08-19 09:55:35 +01:00
committed by GitHub
parent 7269227dc2
commit 3c3a92835d
9 changed files with 305 additions and 47 deletions

View File

@@ -808,8 +808,19 @@
},
"KAXF2kUAOvtBZhY8G9rkI": {
"title": "Context Manager",
"description": "",
"links": []
"description": "Context managers are a contruct in Python that allows you to set up context for a block of code, and then automatically clean up or relase resources when the block is exited. It is most commonly used with the `with` statement.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Context managers in Python",
"url": "https://www.freecodecamp.org/news/context-managers-in-python/",
"type": "article"
},
{
"title": "Context managers",
"url": "https://book.pythontips.com/en/latest/context_managers.html",
"type": "article"
}
]
},
"0-ShORjGnQlAdcwjtxdEB": {
"title": "Learn a Framework",