atlas news
    
Real Python
11  octobre     12h00
The Real Python Podcast - Episode #223: Exploring the New Features of Python 3.13
   Python . is here Our regular guests, Geir Arne Hjelle and Christopher Trudeau, return to discuss the new version. This year, Geir Arne coordinated a series of preview articles with members of the Real Python team and a showcase tutorial, Python . : Cool New Features for You to Try. ...
10  octobre     12h00
Quiz: Structural Pattern Matching
   In this quiz, you x ;ll test your understanding of structural pattern matching in Python. This powerful control flow construct, introduced in Python ., offers concise and readable syntax while promoting a declarative code style.
09  octobre     14h00
Build a Contact Book App With Python, Textual, and SQLite
   In this tutorial, you x ;ll be guided step by step through the process of building a basic contact book application. You x ;ll use Python and Textual to build the application x ;s text based user interface TUI , and then use SQLite to manage the database.
08  octobre     14h00
What's New in Python 3.13
   In this video course, you x ;ll learn about the new features in Python . . You x ;ll take a tour of the new REPL and error messages and see how you can try out the experimental free threading and JIT versions of Python . yourself.
    12h00
Quiz: Python Closures: Common Use Cases and Examples
   In this quiz, you x ;ll test your understanding of Python closures. Closures are a common feature in functional programming languages and are particularly popular in Python because they allow you to create function based decorators.
07  octobre     14h00
Python News Roundup: October 2024
   This month, Python . is being released. The new release brings exciting features like a new REPL and a version of Python without the global interpreter lock GIL . In the community, DjangoCon US just wrapped up after a week of interesting tutorials and talks.
04  octobre     12h00
Quiz: Iterators and Iterables in Python: Run Efficient Iterations
   In this quiz, you x ;ll test your understanding of Python x ;s iterators and iterables. By working through this quiz, you x ;ll revisit how to create and work with iterators and iterables, the differences between them, and review how to use generator functions.
03  octobre     12h00
Quiz: Python import: Advanced Techniques and Tips
   In this quiz, you x ;ll test your understanding of Python x ;s import statement and how it works. You x ;ll revisit your understanding of how to use modules and how to import modules dynamically at runtime.
02  octobre     14h00
A Guide to Modern Python String Formatting Tools
   In this tutorial, you x ;ll explore Python x ;s modern string formatting tools. You x ;ll learn how to harness the power of Python x ;s f strings and the .format method for string interpolation and formatting.
    12h00
Quiz: A Guide to Modern Python String Formatting Tools
   You can take this quiz to test your understanding of modern tools for string formatting in Python. These tools include f strings and the .format method.
01  octobre     14h00
Differences Between Python's Mutable and Immutable Types
   In this video course, you x ;ll learn how Python mutable and immutable data types work internally and how you can take advantage of mutability or immutability to power your code.
    12h00
Quiz: When to Use a List Comprehension in Python
   In this quiz, you x ;ll test your understanding of Python list comprehensions. You x ;ll revisit how to rewrite loops as list comprehensions, how to choose between comprehensions and loops, and how to use conditional logic in your comprehensions.
30  septembre     14h00
Python 3.13: Cool New Features for You to Try
   In this tutorial, you x ;ll learn about the new features in Python . . You x ;ll take a tour of the new REPL and error messages and see how you can try out the experimental free threading and JIT versions of Python . yourself.
28  septembre     12h00
Quiz: Python 3.13: Cool New Features for You to Try
   In this quiz, you x ;ll test your understanding of the new features introduced in Python . . By working through this quiz, you x ;ll review the key updates and improvements in this version of Python.
    12h00
Quiz: Syntactic Sugar: Why Python Is Sweet and Pythonic
   You can take this quiz to test your understanding of Python x ;s most common pieces of syntactic sugar and how they make your code more Pythonic and readable.
27  septembre     12h00
The Real Python Podcast - Episode #222: Using Virtual Environments in Docker & Comparing Python Dev Tools
   Should you use a Python virtual environment in a Docker container What are the advantages of using the same development practices locally and inside a container Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
25  septembre     14h00
Python 3.13 Preview: A Modern REPL
   Python . will be released in October . In this tutorial, you x ;ll explore one of its new features: a new and modern interactive interpreter, also known as a REPL.
24  septembre     14h00
Advanced Python import Techniques
   The Python import system is as powerful as it is useful. In this in depth video course, you x ;ll learn how to harness this power to improve the structure and maintainability of your code.
23  septembre     14h00
Python Virtual Environments: A Primer
   In this tutorial, you x ;ll learn how to use a Python virtual environment to manage your Python projects. You x ;ll also gain a deep understanding of the structure of virtual environments created with the venv module, as well as the rationale behind using virtual environments.
20  septembre     12h00
The Real Python Podcast - Episode #221: Thriving as a Developer With ADHD
   What are strategies for being a productive developer with ADHD How can you help your team members with ADHD to succeed and complete projects This week on the show, we speak with Chris Ferdinandi about his website and podcast ADHD For the Win
18  septembre     14h00
Python 3.13 Preview: Free Threading and a JIT Compiler
   Get a sneak peek at the upcoming features in Python . aimed at enhancing performance. In this tutorial, you x ;ll make a custom Python build with Docker to enable free threading and an experimental JIT compiler. Along the way, you x ;ll learn how these features affect the language x ;s...
17  septembre     14h00
Customizing VS Code Through Color Themes
   A well designed coding environment enhances your focus and productivity and makes coding sessions more enjoyable. In this Code Conversation, your instructor Philipp Acsany will guide you step by step through the process of finding, installing, and adjusting color themes in VS Code.
    12h00
Quiz: Using Python's pip to Manage Your Projects' Dependencies
   In this quiz, you x ;ll test your understanding of Python x ;s standard package manager, pip. You x ;ll revisit the ideas behind pip, important commands, and how to install packages.
16  septembre     14h00
Using Python's pip to Manage Your Projects' Dependencies
   What is pip In this beginner friendly tutorial, you x ;ll learn how to use pip, the standard package manager for Python, so that you can install and manage packages that aren x ;t part of the Python standard library.
13  septembre     12h00
The Real Python Podcast - Episode #220: Configuring Git Pre-Commit Hooks & Estimating Software Projects
   How do you take advantage of Git pre commit hooks How do you build custom software checks and rules that run every time you commit your code Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
12  septembre     12h00
Quiz: Python 3.13: Free Threading and a JIT Compiler
   In this quiz, you x ;ll test your understanding of the new features in Python . . You x ;ll revisit how to compile a custom Python build, disable the Global Interpreter Lock GIL , enable the Just In Time JIT compiler, and more.
11  septembre     14h00
How to Use Conditional Expressions With NumPy where()
   This tutorial teaches you how to use the where function to select elements from your NumPy arrays based on a condition. You x ;ll learn how to perform various operations on those elements and even replace them with elements from a separate array or arrays.
10  septembre     14h00
When to Use . repr () vs . str () in Python
   In this video course, you x ;ll learn the difference between the string representations returned by . repr vs . str and understand how to use them effectively in classes that you define.
09  septembre     14h00
Python News Roundup: September 2024
   In September , Python . . was released, improving stability and security. Python ranked first again in IEEE Spectrum x ;s language rankings. The Python Developers Survey unveiled key trends, and PEP suggested tag strings for Python . . EuroSciPy also concluded in...
06  septembre     12h00
The Real Python Podcast - Episode #219: Astrophysics and Astronomy With Python & PyCon Africa 2024
   Are you interested in practicing your Python skills while learning how to solve astrophysics and astronomy problems Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
03  septembre     14h00
Using Pydantic to Simplify Python Data Validation
   Discover the power of Pydantic, Python x ;s most popular data parsing, validation, and serialization library. In this hands on video course, you x ;ll learn how to make your code more robust, trustworthy, and easier to debug with Pydantic.
27  août     14h00
Using Astropy for Astronomy With Python
   This course covers two problems from introductory astronomy to help you play with some Python libraries. You x ;ll use NumPy, Matplotlib, and pandas to find planet conjunctions, and graph the best viewing times for a star.
23  août     12h00
The Real Python Podcast - Episode #218: Exploring Robotics and Python Through Electronic Projects
   Are you interested in learning robotics with Python Can physical electronics based projects grow a child’s interest in coding This week on the show, we speak with author Marwan Alsabbagh about his book Build Your Own Robot Using Python, CRICKIT, and Raspberry Pi.
20  août     14h00
Exploring Astrophysics in Python With pandas and Matplotlib
   This course uses three problems often covered in introductory astro physics courses to play in Python. Along the way you x ;ll learn some astronomy and how to use a variety of datascience libraries like NumPy, Matplotlib, pandas, and pint.
16  août     12h00
The Real Python Podcast - Episode #217: Packaging Data Analyses & Using pandas GroupBy
   What are the best practices for organizing data analysis projects in Python What are the advantages of a more package centric approach to data science Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
13  août     14h00
Sorting Dictionaries in Python: Keys, Values, and More
   In this video course, you x ;ll learn how to sort Python dictionaries. By the end, you x ;ll be able to sort by key, value, or even nested attributes. But you won x ;t stop there you x ;ll also measure the performance of variations when sorting and compare different key value data...
09  août     12h00
The Real Python Podcast - Episode #216: Learning Through Building the Black Python Devs Community
   What hurdles must be cleared when starting an international organization How do you empower others in a community by sharing responsibilities This week on the show, we speak with Jay Miller about Black Python Devs.
06  août     14h00
Interacting With REST APIs and Python
   In this video course, you x ;ll learn how to use Python to communicate with REST APIs. You x ;ll learn about REST architecture and how to use the requests library to get data from a REST API. You x ;ll also explore different Python tools you can use to build REST APIs.
02  août     12h00
The Real Python Podcast - Episode #215: Using GraphQL in Django With Strawberry & Prototype Purgatory
   How do you integrate GraphQL into your Python web development How about quickly building graph based APIs inside Django x ;s battery included framework Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
26  juillet     12h00
The Real Python Podcast - Episode #214: Build Captivating Display Tables in Python With Great Tables
   Do you need help making data tables in Python look interesting and attractive How can you create beautiful display ready tables as easily as charts and graphs in Python This week on the show, we speak with Richard Iannone and Michael Chow from Posit about the Great Tables Python library.