
Join a supportive learning community that keeps self-learners motivated through discord and website channels, with learning buddies, goal setting, and active course discussions to finish strong.
Learn the basic concepts of programming values and types, including strings, integers, floats, and booleans, and how encoding and Python's type function reveal data types.
Learn how variables name and store values in Python, how assignment assigns data to names, and how naming rules prevent syntax errors and reserved words.
Learn how to read user input in Python with the input function, use prompts and variables, and print custom messages with newline characters.
Learn how Python comments, starting with the hash symbol, explain code, mark notes, and prevent execution for testing, making complex programs easier to read and maintain.
Explore how boolean expressions drive conditional execution in Python, covering true/false booleans, comparison operators (==, !=, >, <, >=, <=), and common pitfalls with assignment versus equality.
Learn conditional execution in Python by using if and else statements, indentation, and comparison operators to decide mortgage eligibility and weather-based actions, with input conversion and placeholder pass.
Compare multiple if statements with chained if-elif-else in Python, using a mortgage calculator example. Apply an independent disability discount to the interest rate via extra conditions and user input.
Explore how to use Python logical operators and, or, not to combine multiple conditions on one line, with practical examples like burger orders and a mortgage calculator.
Master Python error handling with try and except, including else and finally, using a mortgage calculator example to gracefully manage invalid input and prevent crashes.
Explore Python functions, including built-in, user-defined, and lambda forms, and learn how to call them with examples using input, print, len, max/min, and type conversion.
Learn to use the Python math module, import it, and access functions and constants like sqrt and pi, with dot notation, to perform numerical calculations in programs.
Explore how Python's random module provides pseudo random number generators, using randint and random to create unpredictable numbers for games and simulations, including a love score example.
Learn to create and call functions with inputs in python. Understand def keyword, parameters vs arguments, and how inputs customize function outputs.
Explore how to define a Python function with two parameters and compare positional versus keyword arguments, using a greet example that prints a name and city weather.
Explore functions with outputs in Python, using def, inputs, and the return keyword to produce values, plus how void functions differ.
Explore Python lists as a key data structure and use them to understand iteration. Learn list indexing, zero-based and negative indices, printing, and basic operations like append.
Master how Python for loops enable you to automate repetitive tasks by iterating over lists, using indentation and the for-in syntax to print each item.
Learn how to use the range function with loops in Python to generate numbers and sum them efficiently, using an accumulator to compute totals from 1 to 100.
Learn how continue and break control flow in loops. Use continue to skip to the next iteration and break to terminate the loop in for and while constructs.
Explore how strings in Python are sequences of characters, learned through indexing from zero, length, and slicing, with practical examples of accessing and printing substrings.
Master Python string operations, from concatenating with plus to checking substrings with in and comparing strings. Learn string immutability and how to craft new strings using slicing and concatenation.
Explore how to use Python string methods, inspect string objects with type and dir, and apply methods like capitalize, upper, lower, find, and strip.
Explore Python string quoting and escape sequences, including single, double, and triple quotes, backslashes, and raw strings, with practical print examples.
Explore three Python string formatting methods—old style with percent, new style with str.format, and f-strings—using name and hex error numbers, including mapping options.
Install PyCharm on macOS, set up a new Python project with the correct Python version, and run a hello world program to verify the IDE is ready.
Learn to interpret api response codes from 1xx to 5xx, handle exceptions with raise_for_status, and extract json data using response.json() to access keys like setup and punchline.
Learn how to authenticate with api providers using an api key, navigate free and paid tiers, obtain and use keys, and call endpoints with parameters to access valuable data.
Learn how to use environment variables to securely manage the OpenWeatherMap API key, export variables in the shell, and access them with os.environ.get in Python projects.
explore put, patch, and delete requests and how they update external data, with put sending all fields, patch sending only changed fields, and delete using an id parameter.
Learn what REST means and how to design a RESTful API with HTTP verbs and routes, mapping get, post, put, patch, and delete to CRUD and resource endpoints.
Modify the Flask API to return JSON instead of plain text, using key-value pairs like message or text, restart the server, and verify JSON output in Postman.
Return JSON responses with proper http status codes in Flask, such as 200, 201, and 404. Create routes that emit a JSON message and set the status code explicitly.
Learn how to pass URL parameters to a Flask API using request.args, access name and age, convert age to int, and return dynamic JSON messages based on the age condition.
Utilize Flask route variables to create clean, dynamic URLs by declaring path parameters like /api/variables/<name>/<int:age>, and access them as function arguments.
Learn how to install and use the SQLite browser to create and open a SQLite database, define tables, browse data, and run SQL statements.
Explore SQLAlchemy, a popular Python ORM for relational databases, including SQLAlchemy Core and ORM, the SQL expression language, and how they let you query and manipulate data with Python.
Explore the SQLAlchemy ORM mapping of Python classes to database tables. Set up the engine, define the declarative base, and create an employees table in SQLite.
Learn to insert data into a database with SQLAlchemy ORM by creating an employees object, binding an engine to a session maker, then add to the session and commit.
Explore how to use SQLAlchemy ORM filter methods with operators like =, !=, like, in, and, or to query employees by id and name, including starts with patterns.
Create a projects table linked to employees with a foreign key and SQLAlchemy relationship. Demonstrates bidirectional mapping via back_populates and inserts sample data with session.add and commit.
Learn how to join employees and projects using SQLAlchemy ORM, build relationship-based queries with filter and join methods, and retrieve and display related data.
Learn how to integrate a Flask API with a database using SQLite and SQLAlchemy ORM. Configure Flask-SQLAlchemy and initialize models to support create, read, update, and delete operations.
Learn how to use the flask command line interface to manage a SQLAlchemy database by creating, dropping, and seeding data with CLI commands, including USA, Germany, and a test user.
Learn to create a Flask GET route to fetch countries from a database, handle JSON serialization with marshmallow, and convert SQLAlchemy objects to JSON to avoid serialization errors.
Use Flask marshmallow to serialize SQLAlchemy objects into JSON, solving type errors, by defining user and country schemas and returning marshalled data in a Flask-RESTful route.
Learn to implement a get method for a single country by id, using a country details route, SQLAlchemy filter by id, and marshmallow serialization, with 404 not found handling.
Define a patch route in Flask to update a country by id with json data, update only provided fields, commit changes, and return 200 or 404.
Learn to declare Flask routes using conventional app.route or direct method names like app.get and app.post, test with postman, and return dict or json, with country examples.
Structure a scalable Flask API by organizing code into app, controllers, models, and schemas, and by modularizing with init, run, and CLI commands using SQLAlchemy and Marshmallow.
Learn to implement basic authentication in a Flask API, enabling user registration and login, hash passwords with sha-256 using werkzeug, and protect routes with HTTP basic auth and SQLAlchemy.
Explore implementing JSON web tokens (JWT) in Flask API: create a login route, issue tokens with a secret key, store on the client, and protect routes with Flask JWT Extended.
Secure Flask APIs with Flask-JWT by obtaining a login token in Postman and protecting routes with a bearer token in the authorization header.
Are you ready to become a master in Flask API development? Whether you’re a beginner looking to kickstart your programming journey or a seasoned developer aiming to expand your backend expertise, this course is designed for YOU!
In this comprehensive Flask API Mastery course, you’ll learn how to build powerful, scalable APIs from scratch while mastering the most in-demand tools and technologies, including SQLAlchemy, Docker, Git, and AWS. With hands-on projects and real-world applications, you’ll gain the confidence to tackle any API challenge.
What You’ll Learn:
The fundamentals of Flask and RESTful API development.
How to set up and manage databases using SQLAlchemy ORM.
Authentication and authorization techniques to secure your APIs.
Deploying APIs with Docker and managing your code with Git.
Cloud deployment using AWS to scale your applications.
Advanced Flask features like middleware, error handling, and more!
Why This Course?
Beginner-Friendly: Start with the basics of Python and Flask, even if you have no prior experience in web development.
Hands-On Learning: Build a portfolio-ready Capstone Blog Project, a fully functional API you can showcase to employers or clients.
Comprehensive Tools: Go beyond Flask—learn to integrate SQLAlchemy, use Docker containers, manage code with Git, and deploy apps on AWS.
Real-World Skills: Develop APIs with industry best practices, ready for use in real-world applications.
Who Should Enroll?
Beginners eager to learn Python and backend development.
Web developers wanting to expand their skill set with API development.
Backend developers ready to integrate advanced tools and deploy apps to the cloud.
Entrepreneurs and freelancers who want to create API-powered applications.
What’s Included in the Course?
Step-by-step video tutorials with easy-to-follow instructions.
Practical exercises and coding challenges to solidify your learning.
Full capstone project: Build a blog API with all the features you’ve learned.
Guidance on deploying your Flask API using AWS and Docker.
By the end of this course, you’ll have the confidence and skills to build professional-grade Flask APIs and deploy them like a pro!
Enroll now and start your Flask API journey today!