{"id":25902533,"url":"https://github.com/justin-marian/python101-labs","last_synced_at":"2026-06-08T11:02:05.695Z","repository":{"id":277712668,"uuid":"771348107","full_name":"justin-marian/python101-labs","owner":"justin-marian","description":"Python101 Labs 🐍 – Exercises covering Python fundamentals, programming paradigms, OOP, modules, web dev with Flask, and version control with Git.","archived":false,"fork":false,"pushed_at":"2025-02-15T15:33:05.000Z","size":11605,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-03T03:16:38.029Z","etag":null,"topics":["fundamentals","labs","python101","simple"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/justin-marian.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-13T06:11:18.000Z","updated_at":"2025-02-15T15:34:27.000Z","dependencies_parsed_at":"2025-02-15T16:37:55.541Z","dependency_job_id":null,"html_url":"https://github.com/justin-marian/python101-labs","commit_stats":null,"previous_names":["justin-marian/python101-labs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/justin-marian/python101-labs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justin-marian%2Fpython101-labs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justin-marian%2Fpython101-labs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justin-marian%2Fpython101-labs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justin-marian%2Fpython101-labs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/justin-marian","download_url":"https://codeload.github.com/justin-marian/python101-labs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justin-marian%2Fpython101-labs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34059157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fundamentals","labs","python101","simple"],"created_at":"2025-03-03T03:16:40.964Z","updated_at":"2026-06-08T11:02:05.669Z","avatar_url":"https://github.com/justin-marian.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python101 Labs 🐍\n\nThis repository contains **lab exercises** for the **Python101** course. Each lab builds foundational programming concepts in Python, covering **syntax, programming paradigms, object-oriented programming, modules, web development, and version control** with **Git \u0026 GitHub**.\n\n---\n\n## 📌 Lab 1: Introduction to Python  \n\n📄 **Course Reference:** [Course1 - Intro to Python](docs/course1.pdf)  \n\nIn this lab, I learned the **basics of Python**, including:\n\n- Variables and data types  \n- Basic input/output operations  \n- Conditional statements (`if-else`)  \n- Loops (`for`, `while`)  \n- Functions and scope  \n- Error handling and debugging  \n\n---\n\n## 🔄 Lab 2: Programming Paradigms \u0026 Iterators  \n\n📄 **Course Reference:** [Course2 - Programming Paradigms + Iterators](docs/course2.pdf)  \n\nThis lab introduced different **programming paradigms** and **iteration techniques**:\n\n- Procedural vs. Functional vs. Object-Oriented Programming  \n- Iterators and Generators (`__iter__` and `__next__`)  \n- List comprehensions and lambda functions  \n- Built-in functions: `map()`, `filter()`, `reduce()`  \n- Using Python iterators efficiently  \n\n---\n\n## 🏗️ Lab 3: Object-Oriented Programming (OOP)  \n\n📄 **Course Reference:** [Course3 - OOP](docs/course3.pptx)  \n\nThis lab focused on **Object-Oriented Programming (OOP)** principles:\n\n- Defining **classes and objects**  \n- Understanding **encapsulation, inheritance, and polymorphism**  \n- Overriding methods and **magic methods** (`__str__`, `__add__`, etc.)  \n- Working with **class and instance attributes**  \n- Implementing **custom objects and behaviors**  \n\n---\n\n## 📦 Lab 4: Modules \u0026 Imports  \n\n📄 **Course Reference:** [Course4 - Modules](docs/course4.pdf)  \n\nThis lab covered how to **structure Python projects** using **modules**:\n\n- Importing built-in and custom **Python modules**  \n- Creating and organizing **packages**  \n- Understanding the role of `__init__.py` in packages  \n- Exploring the **Python Standard Library**  \n\n---\n\n## 🌐 Lab 5: Flask Framework \u0026 Postman  \n\n📄 **Course Reference:** [Course5 - Flask Framework + Postman](docs/course5.pdf)  \n\nThis lab introduced **web development with Flask**:\n\n- Understanding **Client-Server Architecture**  \n- Creating a **Flask API**  \n- Handling HTTP methods (`GET`, `POST`, `PUT`, `DELETE`)  \n- Using **Postman** to test API requests  \n- Parsing JSON responses with Python  \n\n---\n\n## 🛠️ Extra: Git Workshop  \n\n📄 **Course Reference:** [Course6 - Git Workshop](docs/course6.pptx)  \n\nA separate **Git workshop** was conducted to introduce **version control**:\n\n- **Git vs. GitHub** – Understanding repository management  \n- Setting up **SSH keys** for secure authentication  \n- **Basic Git commands** (`clone`, `commit`, `push`, `pull`)  \n- Working with **branches** and merging changes  \n- Using **GitHub for collaboration**  \n\n---\n\n## 📂 Documentation  \n\nAll course slides and notes are available in the **docs/** directory.  \n📌 The courses are in **Romanian** 🇷🇴.  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustin-marian%2Fpython101-labs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustin-marian%2Fpython101-labs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustin-marian%2Fpython101-labs/lists"}