{"id":18348079,"url":"https://github.com/fer-aguirre/learn-python","last_synced_at":"2026-05-15T13:05:07.274Z","repository":{"id":104193157,"uuid":"430015799","full_name":"fer-aguirre/learn-python","owner":"fer-aguirre","description":"Collection of Python scripts organized by topics 🐍","archived":false,"fork":false,"pushed_at":"2023-07-25T19:33:25.000Z","size":4045,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T13:34:11.336Z","etag":null,"topics":["learning-exercise","learning-python","python","tutorial-code"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","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/fer-aguirre.png","metadata":{"files":{"readme":"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":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-20T05:19:01.000Z","updated_at":"2023-01-27T01:45:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"e16e0b7b-1e93-4f7f-bb22-b3603f82aa0f","html_url":"https://github.com/fer-aguirre/learn-python","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fer-aguirre/learn-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fer-aguirre%2Flearn-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fer-aguirre%2Flearn-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fer-aguirre%2Flearn-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fer-aguirre%2Flearn-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fer-aguirre","download_url":"https://codeload.github.com/fer-aguirre/learn-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fer-aguirre%2Flearn-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33067488,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["learning-exercise","learning-python","python","tutorial-code"],"created_at":"2024-11-05T21:16:16.444Z","updated_at":"2026-05-15T13:05:07.259Z","avatar_url":"https://github.com/fer-aguirre.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Learn Python 🐍\nCollection of Python scripts organized by topics with code examples.\n\n## Contents\n#### Comprehension, Lambdas and High-order Functions\n- [List Comprehension](https://github.com/fer-aguirre/learn-python/blob/master/comprehensions/list_comprehensions.ipynb)\n- [Dictionary Comprehension](https://github.com/fer-aguirre/learn-python/blob/master/comprehensions/dict_comprehensions.ipynb)\n- [Anonymous Function](https://github.com/fer-aguirre/learn-python/blob/master/functions/anonymous_functions.ipynb)\n- [High-Order Functions](https://github.com/fer-aguirre/learn-python/blob/master/functions/high_order_functions.ipynb)\n- [Data Filter Function](https://github.com/fer-aguirre/learn-python/blob/master/functions/data_filter.ipynb)\n\n#### Error Handling\n- [Exceptions](https://github.com/fer-aguirre/learn-python/blob/master/handle_errors/exceptions.ipynb)\n  - [Debugging with Exceptions](https://github.com/fer-aguirre/learn-python/blob/master/handle_errors/debugging_exceptions.py)\n- [Assert Statements](https://github.com/fer-aguirre/learn-python/blob/master/handle_errors/assert_statements.ipynb)\n  - [Debugging with Assert Statements](https://github.com/fer-aguirre/learn-python/blob/master/handle_errors/debugging_assert.py)\n- [Hangman Game](https://github.com/fer-aguirre/learn-python/blob/master/handle_errors/hangman_game.py)\n\n#### Static Typing\n  - [Static Typing with Primitive Data Types](https://github.com/fer-aguirre/learn-python/blob/master/static_typing/st_data_types.ipynb)\n  - [Static Typing with Data Structures](https://github.com/fer-aguirre/learn-python/blob/master/static_typing/st_data_structures.ipynb)\n    - [Palindrome Function](https://github.com/fer-aguirre/learn-python/blob/master/static_typing/palindrome.py)\n    - [Prime Number Function](https://github.com/fer-aguirre/learn-python/blob/master/static_typing/prime_number.py)\n    - [Testing Methods](https://github.com/fer-aguirre/learn-python/blob/master/static_typing/test.py)\n\n#### Object-Oriented Programming\n- [Classes](https://github.com/fer-aguirre/learn-python/blob/master/object-oriented_programming/classes.ipynb)\n- [Decomposition](https://github.com/fer-aguirre/learn-python/blob/master/object-oriented_programming/decomposition.ipynb)\n- [Abstraction](https://github.com/fer-aguirre/learn-python/blob/master/object-oriented_programming/abstraction.ipynb)\n- [Encapsulation](https://github.com/fer-aguirre/learn-python/blob/master/object-oriented_programming/encapsulation.ipynb)\n\n#### Advanced Functions Concepts\n  - [Scopes](https://github.com/fer-aguirre/learn-python/blob/master/functions_concepts/scopes.ipynb)\n  - [Closures](https://github.com/fer-aguirre/learn-python/blob/master/functions_concepts/closures.ipynb)\n  - [Decorators](https://github.com/fer-aguirre/learn-python/blob/master/functions_concepts/decorators.ipynb)\n    - [Time Execution](https://github.com/fer-aguirre/learn-python/blob/master/functions_concepts/time_execution.py)\n    - [Custom Message](https://github.com/fer-aguirre/learn-python/blob/master/functions_concepts/custom_message.py)\n    - [Date Message](https://github.com/fer-aguirre/learn-python/blob/master/functions_concepts/date_message.py)\n\n#### Advanced Data Structures\n  - [Iterators](https://github.com/fer-aguirre/learn-python/blob/master/iterators/iterators.ipynb)\n    - [Fibonacci](https://github.com/fer-aguirre/learn-python/blob/master/iterators/fibonacci.py)\n  - [Generators](https://github.com/fer-aguirre/learn-python/blob/master/generators/generators.ipynb)\n    - [Fibonacci](https://github.com/fer-aguirre/learn-python/blob/master/generators/fibonacci.py)\n    - [Fibonacci Limit](https://github.com/fer-aguirre/learn-python/blob/master/generators/fibonacci_limit.py)\n  - [Sets](https://github.com/fer-aguirre/learn-python/blob/master/sets/sets.ipynb)\n    - [Sets Operations](https://github.com/fer-aguirre/learn-python/blob/master/sets/sets_operations.ipynb)\n    - [Remove Duplicates](https://github.com/fer-aguirre/learn-python/blob/master/sets/remove_duplicates.py)\n\n\n#### Modules\n- [datetime](https://github.com/fer-aguirre/learn-python/blob/master/modules/datetime.ipynb)\n- [pytz](https://github.com/fer-aguirre/learn-python/blob/master/modules/pytz.ipynb)\n- [os](https://github.com/fer-aguirre/learn-python/blob/master/modules/os.ipynb)\n- [pathlib](https://github.com/fer-aguirre/learn-python/blob/master/modules/pathlib.ipynb)\n- [pyfilesystem2](https://github.com/fer-aguirre/learn-python/blob/master/modules/pyfilesystem2.ipynb)\n- [pyhere](https://github.com/fer-aguirre/learn-python/blob/master/modules/pyhere.ipynb)\n- [numpy](https://github.com/fer-aguirre/learn-python/blob/master/modules/numpy.ipynb)\n- [pandas](https://github.com/fer-aguirre/learn-python/tree/master/modules/pandas)\n  - [Series, Indexing](https://github.com/fer-aguirre/learn-python/blob/master/modules/pandas/series_indexing.ipynb)\n  - [Pivot Table](https://github.com/fer-aguirre/learn-python/blob/master/modules/pandas/pivot_table.ipynb)\n  - [Select Data](https://github.com/fer-aguirre/learn-python/blob/master/modules/pandas/select_data.ipynb)\n  - [Data Types](https://github.com/fer-aguirre/learn-python/blob/master/modules/pandas/datatypes.ipynb)\n  - [Math Functions](https://github.com/fer-aguirre/learn-python/blob/master/modules/pandas/math_functions.ipynb)\n\n#### Natural Language Processing\n- [Introduction](https://github.com/fer-aguirre/learn-python/blob/master/nlp/introduction.ipynb)\n- [Lexical Diversity](https://github.com/fer-aguirre/learn-python/blob/master/nlp/lexical_diversity.ipynb)\n- [Language Statistics](https://github.com/fer-aguirre/learn-python/blob/master/nlp/language_statistics.ipynb)\n- [N-grams](https://github.com/fer-aguirre/learn-python/blob/master/nlp/n-grams.ipynb)\n- [Collocations](https://github.com/fer-aguirre/learn-python/blob/master/nlp/collocations.ipynb)\n- [Lexical Resources](https://github.com/fer-aguirre/learn-python/blob/master/nlp/lexical_resources.ipynb)\n- [WordNet](https://github.com/fer-aguirre/learn-python/blob/master/nlp/wordnet.ipynb)\n- [Semantic Similarity](https://github.com/fer-aguirre/learn-python/blob/master/nlp/semantic_similarity.ipynb)\n- [Processing Plain Text](https://github.com/fer-aguirre/learn-python/blob/master/nlp/process_plain_text.ipynb)\n- [Part of Speech (POS) Tagging](https://github.com/fer-aguirre/learn-python/blob/master/nlp/pos_tagging.ipynb)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffer-aguirre%2Flearn-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffer-aguirre%2Flearn-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffer-aguirre%2Flearn-python/lists"}