atlas news
    
Real Python
27  mars     14h00
Reading and Writing WAV Files in Python
   In this tutorial, you x ;ll learn how to work with WAV audio files in Python using the standard library wave module. Along the way, you x ;ll synthesize sounds from scratch, visualize waveforms in the time domain, animate real time spectrograms, and apply special effects to widen the stereo...
26  mars     14h00
Finding Python Easter Eggs
   Python has its fair share of hidden surprises, commonly known as Easter eggs. From clever jokes to secret messages, these little mysteries are often meant to be discovered by curious geeks like you
25  mars     14h00
Prompt Engineering: A Practical Example
   Learn prompt engineering techniques with a practical, real world project to get better results from large language models. This tutorial covers zero shot and few shot prompting, delimiters, numbered steps, role prompts, chain of thought prompting, and more. Improve your LLM assisted projects today.
22  mars     12h00
The Real Python Podcast - Episode #197: Using Python in Bioinformatics and the Laboratory
   How is Python being used to automate processes in the laboratory How can it speed up scientific work with DNA sequencing This week on the show, Chemical Engineering PhD Student Parsa Ghadermazi is here to discuss Python in bioinformatics.
20  mars     14h00
Build a Python Turtle Game: Space Invaders Clone
   In this step by step tutorial, you x ;ll use Python x ;s turtle module to write a Space Invaders clone. You x ;ll learn about techniques used in animations and games, and consolidate your knowledge of key Python topics.
19  mars     14h00
SQLite and SQLAlchemy in Python: Move Your Data Beyond Flat Files
   In this video course, you x ;ll learn how to store and retrieve data using Python, SQLite, and SQLAlchemy as well as with flat files. Using SQLite with Python brings with it the additional benefit of accessing data with SQL. By adding SQLAlchemy, you can work with data in terms of objects and...
18  mars     14h00
Model-View-Controller (MVC) in Python Web Apps: Explained With Lego
   This tutorial conceptually explains the Model View Controller MVC pattern in Python web apps using Lego bricks. Finally understand this important architecture to streamline your web development process.
15  mars     12h00
The Real Python Podcast - Episode #196: Exploring Duck Typing in Python & Dynamics of Monkey Patching
   What are the advantages of determining the type of an object by how it behaves What coding circumstances are not a good fit for duck typing Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
13  mars     14h00
Visualizing Data in Python With Seaborn
   In this tutorial, you x ;ll learn how to use the Python seaborn library to produce statistical data analysis plots to allow you to better visualize your data. You x ;ll learn how to use both its traditional classic interface and more modern objects interface.
12  mars     14h00
Python Basics Exercises: Dictionaries
   One of the most useful data structures in Python is the dictionary. In this video course, you’ll practice working with Python dictionaries, see how dictionaries differ from lists and tuples, and define and use dictionaries in your own code.
11  mars     14h00
Python News: What's New From February 2024
   February sees Python security updates and the introduction of a Rust based tool for packaging, while the Python community gears up for PyCon US and the PSF enhances support with Grants Program Office Hours.
08  mars     12h00
The Real Python Podcast - Episode #195: Building a Healthy Developer Mindset While Learning Python
   How do you get yourself unstuck when facing a programming problem How do you develop a positive developer mindset while learning Python This week on the show, Bob Belderbos from Pybites is here to talk about learning Python and building healthy developer habits.
06  mars     14h00
Build an LLM RAG Chatbot With LangChain
   Large language models LLMs have taken the world by storm, demonstrating unprecedented capabilities in natural language tasks. In this step by step tutorial, you x ;ll leverage LLMs to build your own retrieval augmented generation RAG chatbot using synthetic data with LangChain and Neo j.
05  mars     14h00
Creating Asynchronous Tasks With Celery and Django
   In this video course, you x ;ll learn how to integrate Celery and Django using Redis as a message broker. You x ;ll refactor the synchronous email sending functionality of an existing Django app into an asynchronous task that you x ;ll run with Celery instead.
04  mars     14h00
Python's all : Packages, Modules, and Wildcard Imports
   In this tutorial, you x ;ll learn about wildcard imports and the all variable in Python. With all, you can prepare your packages and modules for wildcard imports, which are a quick way to import everything.
01  mars     12h00
The Real Python Podcast - Episode #194: Automate Tasks With Python & Building a Small Search Engine
   What are the typical computer tasks you do manually every week Could you automate those tasks with a Python script Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
28  février     14h00
Python's Requests Library (Guide)
   In this tutorial on Python x ;s Requests library, you x ;ll see some of the most useful features that Requests has to offer as well as ways to customize and optimize those features. You x ;ll learn how to use requests efficiently and stop requests to external services from slowing down your...
27  février     14h00
Python Basics Exercises: Installing Packages With pip
   In this Python Basics Exercises video course, you x ;ll practice installing packages with pip. You x ;ll also practice creating virtual environments, making lists of requirements, and recreating a development environment.
26  février     14h00
Duck Typing in Python: Writing Flexible and Decoupled Code
   In this tutorial, you x ;ll learn about duck typing in Python. It x ;s a typing system based on objects x ; behaviors rather than on inheritance. By taking advantage of duck typing, you can create flexible and decoupled sets of Python classes that you can use together or individually.
23  février     12h00
The Real Python Podcast - Episode #193: Wes McKinney on Improving the Data Stack & Composable Systems
   How do you avoid the bottlenecks of data processing systems Is it possible to build tools that decouple storage and computation This week on the show, creator of the pandas library Wes McKinney is here to discuss Apache Arrow, composable data systems, and community collaboration.
20  février     14h00
Unleashing the Power of the Console With Rich
   Rich is a powerful library for creating text based user interfaces TUIs in Python. It enhances code readability by pretty printing complex data structures and adds visual appeal with colored text, tables, animations, and more.
16  février     12h00
The Real Python Podcast - Episode #192: Practical Python Decorator Uses & Avoiding datetime Pitfalls
   What are real life examples of using Python decorators How can you harness their power in your code Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
13  février     14h00
Create Conway's Game of Life With Python
   In this video course, you x ;ll use Python to build Conway x ;s Game of Life. You x ;ll implement a user friendly command line interface CLI with several options that will allow you to run the game using different life patterns and configurations.
09  février     12h00
The Real Python Podcast - Episode #191: Focusing on Data Science & Less on Engineering and Dependencies
   How do you manage the dependencies of a large scale data science project How do you migrate that project from a laptop to cloud infrastructure or utilize GPUs and multiple instances in parallel This week on the show, Savin Goyal returns to discuss the updates to the open source framework Metaflow.
06  février     14h00
Python Basics Exercises: Lists and Tuples
   In this Python Basics Exercises video course, you x ;ll practice defining and manipulating Python lists and tuples in your code. By reinforcing your skills, you x ;ll gain confidence in using lists and tuples in your programming projects.
02  février     12h00
The Real Python Podcast - Episode #190: Great Starting Points for Contributing to Open Source
   What x ;s it like to sit down for your first developer sprint at a conference How do you find an appropriate issue to work on as a new open source contributor This week on the show, author and software engineer Stefanie Molin is here to discuss starting to contribute to open source projects.
30  janvier     14h00
Building Enumerations With Python's enum
   In this video course, you x ;ll discover the art of creating and using enumerations of logically connected constants in Python. To accomplish this, you x ;ll explore the Enum class and other associated tools and types from the enum module from the Python standard library.
26  janvier     12h34
The Real Python Podcast - Episode #189: Building a Python Debugger & Preparing for NumPy 2.0
   How does a debugger work What can you learn about Python by building one from scratch Christopher Trudeau is back on the show this week, bringing another batch of PyCoder x ;s Weekly articles and projects.
23  janvier     14h00
Python Basics: Lists and Tuples
   In this video course, you x ;ll learn about Python lists and tuples, including how to define and manipulate them in your code. By the end of the course, you x ;ll be ready to effectively use lists and tuples in your programming projects.
19  janvier     12h00
The Real Python Podcast - Episode #188: Measuring Bias, Toxicity, and Truthfulness in LLMs With Python
   How can you measure the quality of a large language model What tools can measure bias, toxicity, and truthfulness levels in a model using Python This week on the show, Jodie Burchell, developer advocate for data science at JetBrains, returns to discuss techniques and tools for evaluating LLMs...