{"id":28648006,"url":"https://github.com/raveriss/python-0-starting","last_synced_at":"2025-06-13T03:11:35.913Z","repository":{"id":297194785,"uuid":"985649838","full_name":"raveriss/Python-0-Starting","owner":"raveriss","description":"Exercices ex00–ex09 du dépôt Python-0-Starting (Piscine Python for Data Science, Python 3.10) : scripts, list comprehensions, package \u0026 tests.","archived":false,"fork":false,"pushed_at":"2025-06-04T08:51:08.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-04T16:00:52.751Z","etag":null,"topics":["data-science","flake8","lambda","list-comprehension","package-creation","python","python3","scripts","tests","tqdm"],"latest_commit_sha":null,"homepage":"https://www.linkedin.com/in/verissimo-rafael/","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/raveriss.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,"zenodo":null}},"created_at":"2025-05-18T08:23:05.000Z","updated_at":"2025-06-04T08:51:10.000Z","dependencies_parsed_at":"2025-06-04T16:00:57.581Z","dependency_job_id":"7070ab99-5fb7-49b0-9c69-9c2242d3c319","html_url":"https://github.com/raveriss/Python-0-Starting","commit_stats":null,"previous_names":["raveriss/python-0-starting"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raveriss/Python-0-Starting","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2FPython-0-Starting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2FPython-0-Starting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2FPython-0-Starting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2FPython-0-Starting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raveriss","download_url":"https://codeload.github.com/raveriss/Python-0-Starting/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2FPython-0-Starting/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259571881,"owners_count":22878200,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["data-science","flake8","lambda","list-comprehension","package-creation","python","python3","scripts","tests","tqdm"],"created_at":"2025-06-13T03:11:34.469Z","updated_at":"2025-06-13T03:11:35.888Z","avatar_url":"https://github.com/raveriss.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"**Projet Piscine Python for Data Science**\n**Aperçu du projet**\n\nCe dépôt regroupe mes exercices **00** à **09** de la Piscine Python for Data Science de l’école 42. Il a pour objectif de renforcer mes compétences en Python et de m’habituer aux bonnes pratiques de développement (modularité, style, tests). Tous les modules sont conçus pour fonctionner avec Python 3.10.\n\n**Prérequis**\n- **Python 3.10** installé et configuré\n- **pip** pour installer les dépendances\n- **flake8** (alias `norminette`) pour vérifier la conformité du code aux standards PEP 8 et aux consignes du projet\n\n- Pour l’exercice **08**, j’utilise la bibliothèque **tqdm** :\n```bash\npip install tqdm\n```\n**Structure du dépôt**\n```bash\n├── ex00/  # Exercice 00 : script Hello.py\n├── ex01/  # Exercice 01 : format_ft_time.py\n├── ex02/  # Exercice 02 : find_ft_type.py\n├── ex03/  # Exercice 03 : NULL_not_found.py\n├── ex04/  # Exercice 04 : whatis.py\n├── ex05/  # Exercice 05 : building.py\n├── ex06/  # Exercice 06 : ft_filter.py et filterstring.py\n├── ex07/  # Exercice 07 : sos.py\n├── ex08/  # Exercice 08 : Loading.py\n├── ex09/  # Exercice 09 : package ft_package\n└── README.md\n```\n**Comment j’exécute les exercices**\nChaque exercice se trouve dans son répertoire `exNN`. Pour lancer le script principal :\n```bash\ncd ex00\npython Hello.py\n```\n**Exemples d’utilisation**\n- **Exercice 00** (greetings) :\n```bash\npython ex00/Hello.py\n```\n- **Exercice 04** (pair/impair) :\n```bash\npython ex04/whatis.py 14   # \"I'm Even.\"\npython ex04/whatis.py Hi!  # AssertionError\n```\nPour chaque exercice, je me réfère aux énoncés détaillés fournis dans le PDF de la Piscine.\n\n**Mes règles générales de développement**\n1. **Modularité** : je n’écris pas de code dans la portée globale. J’utilise une fonction `main()` avec le bloc :\n```py\nif __name__ == \"__main__\":\n    main()\n```\n2. **Documentation** : chaque fonction comporte une docstring explicative\n3. **Gestion des erreurs** : je capture toutes les exceptions ; toute exception non gérée invalide l’exercice\n4. **Style** : je respecte les normes PEP 8 via `flake8`/`norminette`\n\n**Licence**\nMIT\n\n**Contact**\nPour toute question, j’invite à ouvrir une issue ou à me contacter directement.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraveriss%2Fpython-0-starting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraveriss%2Fpython-0-starting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraveriss%2Fpython-0-starting/lists"}