{"id":28379532,"url":"https://github.com/elijahondiek/fastapi-series","last_synced_at":"2025-10-08T05:18:44.049Z","repository":{"id":136042542,"uuid":"452817456","full_name":"elijahondiek/FastAPI-Series","owner":"elijahondiek","description":"A repository containing the scripts for a Microsoft Learn Student Ambassadors-hosted webinar on Effective Python Testing with Pytest and FastAPI.","archived":false,"fork":false,"pushed_at":"2022-02-11T08:05:49.000Z","size":54,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-23T10:50:24.162Z","etag":null,"topics":["fastapi","pytest"],"latest_commit_sha":null,"homepage":"","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/elijahondiek.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":"2022-01-27T19:31:46.000Z","updated_at":"2025-03-16T14:12:46.000Z","dependencies_parsed_at":"2023-07-17T11:15:23.052Z","dependency_job_id":null,"html_url":"https://github.com/elijahondiek/FastAPI-Series","commit_stats":null,"previous_names":["elijahondiek/fastapi-series"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/elijahondiek/FastAPI-Series","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elijahondiek%2FFastAPI-Series","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elijahondiek%2FFastAPI-Series/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elijahondiek%2FFastAPI-Series/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elijahondiek%2FFastAPI-Series/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elijahondiek","download_url":"https://codeload.github.com/elijahondiek/FastAPI-Series/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elijahondiek%2FFastAPI-Series/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278891753,"owners_count":26063858,"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-08T02:00:06.501Z","response_time":56,"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","pytest"],"created_at":"2025-05-30T02:38:36.380Z","updated_at":"2025-10-08T05:18:44.045Z","avatar_url":"https://github.com/elijahondiek.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastAPI Series\n[![Build and test code](https://github.com/Dev-Elie/FastAPI-Series/actions/workflows/github-actions.yml/badge.svg)](https://github.com/Dev-Elie/FastAPI-Series/actions/workflows/github-actions.yml)\n### Video recordings \u0026 Presentation slides\n\n1. [Introduction to building APIs](https://stdntpartners-my.sharepoint.com/:v:/g/personal/felix_orinda_studentambassadors_com/ET7sE6SxRZ5Pha-S2Cn8THUBNte7kt87FR0IsoRCbSUvFw?e=ix0YgM)\n2. [Effective testing with Python and Pytest](https://stdntpartners-my.sharepoint.com/personal/felix_orinda_studentambassadors_com/_layouts/15/onedrive.aspx?id=%2Fpersonal%2Ffelix%5Forinda%5Fstudentambassadors%5Fcom%2FDocuments%2FRecordings%2FREST%20API%20Testing%20Using%20Python%2D20220204%5F200410%2DMeeting%20Recording%2Emp4\u0026parent=%2Fpersonal%2Ffelix%5Forinda%5Fstudentambassadors%5Fcom%2FDocuments%2FRecordings)\n- [Canva Slides](https://www.canva.com/design/DAE3G9Cc6C0/view?utm_content=DAE3G9Cc6C0\u0026utm_campaign=designshare\u0026utm_medium=link\u0026utm_source=publishsharelink)\n3. [Introduction to CI/CD with GitHub Actions](https://stdntpartners-my.sharepoint.com/:v:/g/personal/ondiek_ochieng_studentambassadors_com/EcPFpKoFIjdBk2z6LPl0cl4BunBtYRxTd5DASGMSvgMdow?e=g0gycZ)\n- [Canva Slides](https://www.canva.com/design/DAE33Yc4y9s/Ghyh11R-Fm6obZUhqwr4Vw/view?utm_content=DAE33Yc4y9s\u0026utm_campaign=designshare\u0026utm_medium=link\u0026utm_source=publishsharelink)\n\n\n### Set up \u0026 Installation\n\n1. Navigate into your desired folder, then clone this repo as shown, remember the dot (.) so as to avoid duplicating this repo's name again.\n\n   `git clone https://github.com/Dev-Elie/FastAPI-Series.git .`\n\n2. Change to that specific directory\n\n   `cd directory path`\n\n3. Create a virtual environment \u0026 activate it\n\n   **Windows**\n          \n   ```bash\n   #create a venv\n   py -3 -m venv venv\n   # activate venv\n   venv\\Scripts\\activate\n   ```\n          \n   **macOS/Linux**\n          \n   ```bash\n   #create a venv\n   python3 -m venv venv\n   # activate venv\n   source venv/bin/activate\n   ```\n      \n4. Install the requirements from the requirements.txt file.\n\n   `pip install -r requirements.txt`\n\n\n5. Start the server\n\n   `uvicorn app.main:app --reload`\n   \n   \n   \n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felijahondiek%2Ffastapi-series","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felijahondiek%2Ffastapi-series","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felijahondiek%2Ffastapi-series/lists"}