π
Python Essential Training
π Author: Ryan Mitchell
πΈ Date: 2023-01-25
β° Duration: 4h 22m
π
π Topics: Python
π· Join @python_trainings for more courses
π Author: Ryan Mitchell
πΈ Date: 2023-01-25
β° Duration: 4h 22m
π
Get a comprehensive overview of the Python programming language and gain enough command of Python 3 to create well-designed scripts and maintain existing projects.
π Topics: Python
π· Join @python_trainings for more courses
π6β€1
πΈ Full description πΈ
Python is one of the most commonly used dynamic languages for many large organizations, including Google, Yahoo and IBM. Supported on all major operating systems, it comes pre-installed on Macs, as well as most Linux and Unix-based systems. In this course, senior software engineer Ryan Mitchell guides you through all the essentials of learning and using Python. Learn how computers think, as well as how to install Python, pip, and Jupyter Notebook and the basics of writing a program. Explore variables and types, operators, functions, classes, objects, and more. Go over basic data types like ints and floats, Booleans, and strings. Deep dive into basic data structures, control flow, functions, classes, and objects. Find out how to handle errors and exceptions, as well as threads and processes. Plus, discover how to work with different types of files in Python, pass command-line arguments to your Python script, and create modules and packages.
Python is one of the most commonly used dynamic languages for many large organizations, including Google, Yahoo and IBM. Supported on all major operating systems, it comes pre-installed on Macs, as well as most Linux and Unix-based systems. In this course, senior software engineer Ryan Mitchell guides you through all the essentials of learning and using Python. Learn how computers think, as well as how to install Python, pip, and Jupyter Notebook and the basics of writing a program. Explore variables and types, operators, functions, classes, objects, and more. Go over basic data types like ints and floats, Booleans, and strings. Deep dive into basic data structures, control flow, functions, classes, and objects. Find out how to handle errors and exceptions, as well as threads and processes. Plus, discover how to work with different types of files in Python, pass command-line arguments to your Python script, and create modules and packages.
π15β€4π₯°1
Python Essential Training - Part 02.zip
312.7 MB
β€22π5π₯2
π
Building RESTful Web APIs with Django
π Author: Rudolf Olah
πΈ Date: 2019-03-27
β° Duration: 1h 9m
π
π Topics: REST APIs, Django
π· Join @python_trainings for more courses
π Author: Rudolf Olah
πΈ Date: 2019-03-27
β° Duration: 1h 9m
π
Learn how to build a RESTful web API using the Django REST framework.
π Topics: REST APIs, Django
π· Join @python_trainings for more courses
π9β€4
πΈ Full description πΈ
APIs are a crucial technology for delivering data to applicationsβfrom front-end ecommerce sites to iOS and Android apps. The Django REST framework is the natural choice for Python and Django developers who want to create their own RESTful back-end APIs. In addition to its rapid prototyping tools, the framework includes authentication schemes, serialization for parsing complex data into Python-friendly types, and automatic URL routing. This course shows how to use the Django Rest framework to create a simple RESTful web API. Instructor Rudolf Olah explains how to create serializers, renderers, filtering and pagination, and routers with viewsets that consumers can use to access the API. He also shows how to unit test your code to ensure your API works as expected. By the end of the course, youll know how to use this powerful and flexible toolkit to build you own data-driven web experiences.
APIs are a crucial technology for delivering data to applicationsβfrom front-end ecommerce sites to iOS and Android apps. The Django REST framework is the natural choice for Python and Django developers who want to create their own RESTful back-end APIs. In addition to its rapid prototyping tools, the framework includes authentication schemes, serialization for parsing complex data into Python-friendly types, and automatic URL routing. This course shows how to use the Django Rest framework to create a simple RESTful web API. Instructor Rudolf Olah explains how to create serializers, renderers, filtering and pagination, and routers with viewsets that consumers can use to access the API. He also shows how to unit test your code to ensure your API works as expected. By the end of the course, youll know how to use this powerful and flexible toolkit to build you own data-driven web experiences.
π13β€3
Building RESTful Web APIs with Django.zip
172.4 MB
β€18π7π₯5
π
Python for Students
π Author: Julie Nisbet
πΈ Date: 2019-11-01
β° Duration: 1h 8m
π
π Topics: Python
π· Join @python_trainings for more courses
π Author: Julie Nisbet
πΈ Date: 2019-11-01
β° Duration: 1h 8m
π
Learn programming with Python in this fun and easy-to-follow course designed for high-school and college-age students.
π Topics: Python
π· Join @python_trainings for more courses
π11β€2
πΈ Full description πΈ
There is no better time to learn Python than when you are young. Python is a powerful language for automation, game development, and web programming, and a great choice if youre just starting to learn how to write code. The skills you learn in Python can translate C++, Ruby, and JavaScript. In this courseβdesigned specifically for high-school and college-age studentsβyou can learn how to use Python at an introductory level. Explore variables and functions, calculations, if-else statements, loops, and lists, and then build a complete Python project. Plus, find out where to go to learn more and how to join the Python community.
This course was created by Madecraft. We are pleased to host this content in our library.
There is no better time to learn Python than when you are young. Python is a powerful language for automation, game development, and web programming, and a great choice if youre just starting to learn how to write code. The skills you learn in Python can translate C++, Ruby, and JavaScript. In this courseβdesigned specifically for high-school and college-age studentsβyou can learn how to use Python at an introductory level. Explore variables and functions, calculations, if-else statements, loops, and lists, and then build a complete Python project. Plus, find out where to go to learn more and how to join the Python community.
This course was created by Madecraft. We are pleased to host this content in our library.
π22β€9π₯5
Python for Students.zip
206.2 MB
π19β€4
π
Building the Classic Snake Game with Python
π Author: Robin Andrews
πΈ Date: 2021-10-21
β° Duration: 1h 3m
π Topics: Game Programming, Python
π· Join @python_trainings for more courses
π Author: Robin Andrews
πΈ Date: 2021-10-21
β° Duration: 1h 3m
π Learn how to integrate and deepen your existing knowledge of Python by programming a Snake game.
π Topics: Game Programming, Python
π· Join @python_trainings for more courses
π15β€4
πΈ Full description πΈ
Are you looking for a fun, meaningful way to level up your Python programming skills? In this course, instructor Robin Andrews shows you how to put together what you need to know to build the Python version of a classic Snake game. Robin introduces you to turtle graphics and how you can use and control animation using Python turtle graphics. He explains global variables and shows you how to draw with turtle graphics by using stamps. With these pieces in place, its time to work on the game itself! Robin walks you through how to represent the snake, move it around the screen, and control the snakes direction. He discusses the game loop that is used to control the game and also goes over how to add snake food to the game, implement a scoring system, and reset the game. Robin finishes up with advice on how to use Lambda expressions to avoid repetition in your game and some fun ways to personalize your game.
Are you looking for a fun, meaningful way to level up your Python programming skills? In this course, instructor Robin Andrews shows you how to put together what you need to know to build the Python version of a classic Snake game. Robin introduces you to turtle graphics and how you can use and control animation using Python turtle graphics. He explains global variables and shows you how to draw with turtle graphics by using stamps. With these pieces in place, its time to work on the game itself! Robin walks you through how to represent the snake, move it around the screen, and control the snakes direction. He discusses the game loop that is used to control the game and also goes over how to add snake food to the game, implement a scoring system, and reset the game. Robin finishes up with advice on how to use Lambda expressions to avoid repetition in your game and some fun ways to personalize your game.
π19β€5
Building the Classic Snake Game with Python.zip
197.8 MB
π22β€9π₯5