feat: add python OOP course to catalog (#66343)

Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com>
This commit is contained in:
Jessica Wilkins
2026-03-16 13:40:03 -07:00
committed by GitHub
parent f37ad74cec
commit 17143a4821
20 changed files with 422 additions and 0 deletions
+6
View File
@@ -257,6 +257,12 @@ export const catalog: Catalog[] = [
hours: 1,
topic: Topic.AI
},
{
superBlock: SuperBlocks.LearnOOPWithPython,
level: Levels.Intermediate,
hours: 3,
topic: Topic.Python
},
{
superBlock: SuperBlocks.IntroductionToPythonBasics,
level: Levels.Intermediate,
@@ -368,6 +368,7 @@ export const superBlockToCertMap: {
[SuperBlocks.CssAnimations]: null,
[SuperBlocks.LearnPythonForBeginners]: null,
[SuperBlocks.IntroductionToAlgorithmsAndDataStructures]: null,
[SuperBlocks.LearnOOPWithPython]: null,
[SuperBlocks.LearnRAGAndMCPFundamentals]: null,
[SuperBlocks.IntroductionToPrecalculus]: null,
[SuperBlocks.IntroductionToBash]: null,
+2
View File
@@ -67,6 +67,7 @@ export enum SuperBlocks {
CssAnimations = 'css-animations',
LearnPythonForBeginners = 'learn-python-for-beginners',
IntroductionToAlgorithmsAndDataStructures = 'introduction-to-algorithms-and-data-structures',
LearnOOPWithPython = 'learn-oop-with-python',
LearnRAGAndMCPFundamentals = 'learn-rag-mcp-fundamentals',
IntroductionToPrecalculus = 'introduction-to-precalculus',
IntroductionToBash = 'introduction-to-bash',
@@ -238,6 +239,7 @@ export const superBlockStages: StageMap = {
SuperBlocks.CssAnimations,
SuperBlocks.LearnPythonForBeginners,
SuperBlocks.IntroductionToAlgorithmsAndDataStructures,
SuperBlocks.LearnOOPWithPython,
SuperBlocks.LearnRAGAndMCPFundamentals,
SuperBlocks.IntroductionToPrecalculus,
SuperBlocks.IntroductionToBash,