{"id":22087828,"url":"https://github.com/kasir-barati/python","last_synced_at":"2026-02-23T04:31:29.858Z","repository":{"id":40279458,"uuid":"507421075","full_name":"kasir-barati/python","owner":"kasir-barati","description":"A comprehensive course for Python","archived":false,"fork":false,"pushed_at":"2026-01-21T18:56:35.000Z","size":43836,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-22T07:12:11.392Z","etag":null,"topics":["python","python3","software-engineering","tutorial"],"latest_commit_sha":null,"homepage":"https://kasir-barati.github.io/python/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kasir-barati.png","metadata":{"files":{"readme":".github/README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"docs/roadmaps/AI.emergency.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-25T21:31:56.000Z","updated_at":"2026-01-21T18:56:39.000Z","dependencies_parsed_at":"2024-11-01T11:21:14.362Z","dependency_job_id":"c943b00e-5990-4ac1-9134-e42c0ab55d4b","html_url":"https://github.com/kasir-barati/python","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kasir-barati/python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fpython","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fpython/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fpython/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fpython/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kasir-barati","download_url":"https://codeload.github.com/kasir-barati/python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fpython/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29738079,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T02:24:00.660Z","status":"ssl_error","status_checked_at":"2026-02-23T02:22:56.087Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["python","python3","software-engineering","tutorial"],"created_at":"2024-12-01T02:06:45.083Z","updated_at":"2026-02-23T04:31:29.848Z","avatar_url":"https://github.com/kasir-barati.png","language":"Python","readme":"\u003e [!CAUTION]\n\u003e\n\u003e Keep this file in sync with [`index.md`](../index.md).\n\n# Tutorial\n\n1. [Intro](../01-intro/README.md).\n2. [Getting started](../02-getting-started/index.md).\n   1. [Whetting your appetite \u0026 some very basic concepts](../02-getting-started/whetting-your-appetite-and-basic-concepts.md).\n   2. [Conditions, loops and more](../02-getting-started/most-common-statements.md).\n   3. [Functions](../02-getting-started/functions.md).\n   4. [Better developer experience in writing/using functions](../02-getting-started/better-dev-exp.md).\n      - [Type annotation in Python](../02-getting-started/better-dev-exp.md#function-annotation).\n      - [Useful VSCode extensions for developing in Python](../02-getting-started/better-dev-exp.md#vscode-extensions).\n   5. [Questions and fixing some mistakes](../02-getting-started/questions-fixing-some-mistakes.md).\n   6. [Lambda expressions](../02-getting-started/lambda-expressions.md).\n   7. [List data structure](../02-getting-started/list-data-structure.md).\n   8. [Tuples, and sets](../02-getting-started/tuples-sets.md).\n   9. [Dictionaries](../02-getting-started/dictionaries.md).\n   10. [Looping, conditions, and comparing](../02-getting-started/looping-compraing-and-conditions.md).\n   11. [Zen of Python](../02-getting-started/zen-of-python.md).\n3. [Modularity](../03-modularity/README.md).\n   1. [Modules in Python](../03-modularity/modules.md).\n   2. [Packages in Python](../03-modularity/packages.md).\n4. [String formatting](../04-string-formatting/README.md)\n5. [Errors and Exceptions](../05-errors-and-exceptions/README.md):\n   - [Syntax errors](../05-errors-and-exceptions/syntax-errors.md).\n   - [Errors or exceptions](../05-errors-and-exceptions/errors.md).\n   - [`try ... except ... finally`](../05-errors-and-exceptions/try-except-finally.md)\n6. [Files](../06-files/README.md).\n7. [Classes](../07-classes/README.md).\n   1. [Decorators](../07-classes/decorators.md) in Python.\n   2. [An introduction to classes](../07-classes/introduction-to-classes.md).\n   3. [Getter \u0026 setter](../07-classes/getter-setter.md).\n   4. [Dunder methods](../07-classes/dunder-methods.md) in Python.\n   5. [OOP principles](../07-classes/oop-principles.md).\n   6. [More about OOP](../07-classes/more-about-oop.md).\n8. [Date \u0026 time in Python](../08-date/README.md)\n9. [Generators](../09-generators/README.md).\n\n# [Docs](../docs/README.md)\n\n# [Tips](../tips/README.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkasir-barati%2Fpython","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkasir-barati%2Fpython","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkasir-barati%2Fpython/lists"}