{"id":16547182,"url":"https://github.com/rg3915/fastapi-do-zero-exercicios","last_synced_at":"2026-05-18T04:33:35.974Z","repository":{"id":243960978,"uuid":"813896396","full_name":"rg3915/fastapi-do-zero-exercicios","owner":"rg3915","description":"Implementação do curso de FastAPI do Eduardo Mendes e os exercícios propostos.","archived":false,"fork":false,"pushed_at":"2025-05-20T02:51:06.000Z","size":69,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-20T03:32:47.613Z","etag":null,"topics":["fastapi","python"],"latest_commit_sha":null,"homepage":"https://fastapidozero.dunossauro.com","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/rg3915.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":"2024-06-12T00:34:40.000Z","updated_at":"2025-05-20T02:51:09.000Z","dependencies_parsed_at":"2024-11-14T19:46:28.881Z","dependency_job_id":null,"html_url":"https://github.com/rg3915/fastapi-do-zero-exercicios","commit_stats":null,"previous_names":["rg3915/fastapi-do-zero-exercicios"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rg3915/fastapi-do-zero-exercicios","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rg3915%2Ffastapi-do-zero-exercicios","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rg3915%2Ffastapi-do-zero-exercicios/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rg3915%2Ffastapi-do-zero-exercicios/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rg3915%2Ffastapi-do-zero-exercicios/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rg3915","download_url":"https://codeload.github.com/rg3915/fastapi-do-zero-exercicios/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rg3915%2Ffastapi-do-zero-exercicios/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278510914,"owners_count":25998996,"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","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"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":["fastapi","python"],"created_at":"2024-10-11T19:13:47.009Z","updated_at":"2025-10-05T19:49:26.091Z","avatar_url":"https://github.com/rg3915.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fastapi-do-zero-exercicios\n\nImplementação do [curso de FastAPI](https://fastapidozero.dunossauro.com/estavel/) do [Eduardo Mendes](https://github.com/dunossauro/fastapi-do-zero) do canal [Live de Python](https://www.youtube.com/@Dunossauro) e os **exercícios propostos**.\n\nPlaylist completa\n\n\u003ca href=\"https://www.youtube.com/watch?v=ImhYlISeWPQ\u0026list=PLOQgLBuj2-3KT9ZWvPmaGFQ0KjIez0403\"\u003e\n    \u003cimg src=\"img/youtube.png\"\u003e\n\u003c/a\u003e\n\n\n\n## Descrição do Projeto\n\nEste projeto contém implementações e exercícios do [curso de FastAPI](https://fastapidozero.dunossauro.com/estavel/) ministrado por [Eduardo Mendes](https://github.com/dunossauro/fastapi-do-zero) do canal [Live de Python](https://www.youtube.com/@Dunossauro). O objetivo é praticar os conceitos aprendidos no curso e construir APIs robustas utilizando [FastAPI](https://fastapi.tiangolo.com/).\n\n## Estrutura do Projeto\n\nO repositório está organizado da seguinte maneira:\n\nTODO\n\n## Requisitos\n\nPara executar este projeto, você precisará ter instalado:\n\n- Python 3.13+\n- [Poetry](https://python-poetry.org/) (gerenciador de pacotes do Python)\n\n## Instalação\n\n1. Clone o repositório:\n\n```bash\ngit clone https://github.com/rg3915/fastapi-do-zero-exercicios.git\ncd fastapi-do-zero-exercicios/fast_zero\n```\n\n2. Instale o pipx\n\nCaso já tenha feito isso antes, então pule para a etapa 5.\n\n```bash\npip install --user pipx\npipx ensurepath\n```\n\n3. Instale o poetry\n\nCaso já tenha feito isso antes, então pule para a etapa 5.\n\n```bash\npipx install poetry\npipx inject poetry poetry-plugin-shell\n```\n\n4. Instalando uma versão do Python\n\nCaso já tenha feito isso antes, então pule para a etapa 5.\n\n```bash\npoetry python install 3.13.3\n```\n\n5. Instale as dependências:\n\n```bash\npoetry install --no-root\n```\n\n## Uso\n\nPara iniciar o servidor FastAPI, execute:\n\n```bash\nfastapi dev fast_zero/app.py\n```\n\nA aplicação estará disponível em `http://127.0.0.1:8000`.\n\n\n## Passo a passo de como começar um projeto do zero\n\n```bash\npoetry new --flat fast_zero\ncd fast_zero\n```\n\n\n### Rodando a aplicação\n\n```bash\nfastapi dev fast_zero/app.py\n```\n\nou\n\n```bash\nuvicorn fast_zero.app:app\n```\n\n[SQLAlchemy: conceitos básicos, uma introdução a versão 2 | Live de Python #258](https://www.youtube.com/watch?v=t4C1c62Z4Ag)\n\n[Migrações, bancos de dados evolutivos (Alembic e SQLAlchemy) | Live de Python #211](https://www.youtube.com/watch?v=yQtqkq9UkDA)\n\n\n\n\n## Agradecimentos\n\n- [Eduardo Mendes](https://github.com/dunossauro/fastapi-do-zero), pelo excelente [curso de FastAPI](https://fastapidozero.dunossauro.com/estavel/).\n- Comunidade [FastAPI](https://fastapi.tiangolo.com/), pelas contribuições e suporte.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frg3915%2Ffastapi-do-zero-exercicios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frg3915%2Ffastapi-do-zero-exercicios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frg3915%2Ffastapi-do-zero-exercicios/lists"}