{"id":15024921,"url":"https://github.com/tecladocode/rest-apis-flask-python","last_synced_at":"2025-05-14T01:10:47.573Z","repository":{"id":36952049,"uuid":"75435712","full_name":"tecladocode/rest-apis-flask-python","owner":"tecladocode","description":"Projects and e-book for our course, REST APIs with Flask and Python","archived":false,"fork":false,"pushed_at":"2024-12-16T10:39:58.000Z","size":56326,"stargazers_count":1440,"open_issues_count":6,"forks_count":1517,"subscribers_count":93,"default_branch":"develop","last_synced_at":"2025-04-03T16:02:08.811Z","etag":null,"topics":["course","education","flask","python","udemy"],"latest_commit_sha":null,"homepage":"https://rest-apis-flask.teclado.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/tecladocode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2016-12-02T22:26:17.000Z","updated_at":"2025-04-03T13:35:45.000Z","dependencies_parsed_at":"2023-02-18T18:15:40.682Z","dependency_job_id":"f8776c56-ae2d-4b84-8887-64ce87f8ee93","html_url":"https://github.com/tecladocode/rest-apis-flask-python","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tecladocode%2Frest-apis-flask-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tecladocode%2Frest-apis-flask-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tecladocode%2Frest-apis-flask-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tecladocode%2Frest-apis-flask-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tecladocode","download_url":"https://codeload.github.com/tecladocode/rest-apis-flask-python/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248281388,"owners_count":21077423,"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":["course","education","flask","python","udemy"],"created_at":"2024-09-24T20:01:12.439Z","updated_at":"2025-04-10T19:25:35.352Z","avatar_url":"https://github.com/tecladocode.png","language":"Python","readme":"# REST APIs with Flask and Python\n\n\u003cp align=\"center\"\u003e\n \u003cimg src=\"assets/course-image.png\" alt=\"REST APIs with Flask and Python (Udemy banner image)\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n[![Udemy rating 4.6/5](https://img.shields.io/badge/udemy-4.6%2F5-brightgreen)](https://go.tecla.do/rest-apis-ebook) ![GitHub last commit](https://img.shields.io/github/last-commit/tecladocode/rest-apis-flask-python/develop) ![Python 3.10](https://img.shields.io/badge/python-3.10-yellow) [![Discord](https://img.shields.io/discord/614395983807250433)](https://discord.gg/78Nvd3p) [![Twitter Follow](https://img.shields.io/twitter/follow/jslvtr?style=social) ](https://twitter.com/jslvtr)\n\n\u003c/div\u003e\n\n---\n\n\u003cp align = \"center\"\u003e💡 A full course to teach you how to use Flask and Python to make REST APIs using multiple Flask extensions and PostgreSQL.\u003c/p\u003e\n\n## Getting started\n\nEnrol in the course by going to [this link](https://go.tecla.do/rest-apis-ebook).\n\nThen you can come back here to download the repository. This repository contains the code that we develop in each section of the course.\n\nIf you are familiar with Git, you can use Git to download it. Otherwise, you can download it as a zip file:\n\n![Download repo as a zip file](assets/download-repo-zip.png)\n\nNext, start taking the course at the beginning! You can use the downloaded code files to support you while you go through the course.\n\nI also **strongly recommend** you code while you take the course. A good strategy is:\n\n1. Watch the video intently, optionally while taking notes.\n2. Watch again, more quickly, while typing the code together with me.\n3. Once you're done with the video, play about with the code. Make changes, break things, then fix them, and try to thoroughly understand everything the code does.\n\nIf you do this for the entire course, I guarantee you will learn how to make REST APIs using Flask and Python well and quickly. You'll still be using Google and searching for stuff every day, but so does everyone else!\n\n## Section 2: A Full Python Refresher\n\nThis section (only available on Udemy) helps programmers who are new to Python get acquainted with the language. It is not a complete-beginner Python course!\n\n## Section 3: Your first REST API\n\nThe code in this section includes a simple Flask app that accepts and returns JSON data.\n\n## Section 4: Docker\n\nIntroduction to Docker to run your REST APIs. We talk about images, containers, and how to run applications.\n\n## Section 5: Flask-Smorest\n\nWe introduce the Flask-Smorest extension, a library that greatly simplifies writing REST APIs using Flask. It also provides things like automated documentation generation.\n\n## Section 6: Flask-SQLAlchemy\n\nThe code in this section extends the previous section by replacing the data storage in Python lists with SQLAlchemy, an ORM (Object-Relational Mapping which simplifies connecting to and interacting with a database.\n\n## Section 7: Many-to-many relationships\n\nIn this section we talk about many-to-many relationships using SQLAlchemy.\n\n## Section 8: Authentication with Flask-JWT-Extended\n\nLearn how to perform user authentication using JWTs and the Flask-JWT-Extended library. Here we talk about access token JWTs, as well as refresh tokens, JWT claims, blocklists, password hashing, and more.\n\n## Section 9: Flask-Migrate\n\nAfter deploying your apps, making changes to the database can be really tricky because you have to log in to the database server and manually update the database tables using SQL commands.\n\nFlask-Migrate and the Alembic libraries simplify this job by creating migration scripts.\n\n## Section 10: Git Crash Course\n\nA quick and intense course on Git and GitHub for code sharing.\n\n## Section 11: Deploying to Render.com\n\nLearn how to get your code running in the cloud and make it publicly accessible. In this section we use Render.com for deployments and we also deploy a PostgreSQL database.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftecladocode%2Frest-apis-flask-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftecladocode%2Frest-apis-flask-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftecladocode%2Frest-apis-flask-python/lists"}