atlas des actus
    
PyBloggers
11  avril     14h00
Python String Formatting Tips & Best Practices
Real Python    Learn the four main approaches to string formatting in Python as well as their strengths and weaknesses You ll also get a simple rule of thumb for how to pick the best general purpose string formatting approach in your own programs Improve Your Python With Python Tricks Get a short
10  avril     14h00
How to Create an Index in Django Without Downtime
Real Python    Managing database migrations is a great challenge in any software project Luckily as of version Django comes with a built in migration framework The framework is very powerful and useful in managing change in databases But the flexibility provided by the framework required some compromises
09  avril     14h00
Running Python Scripts
Real Python    One of the most important skills you need to build as a Python developer is to be able to run Python scripts and code This is going to be the only way for you to know if your code works as you planned It s even the only way of knowing if your code works at
08  avril     14h00
Python REST APIs With Flask, Connexion, and SQLAlchemy - Part 3
Real Python    In Part of this series you added the ability to save changes made through the REST API to a database using SQLAlchemy and learned how to serialize that data for the REST API using Marshmallow Connecting the REST API to a database so that the application can make changes to existing data and
04  avril     14h00
Python Development in Visual Studio Code (Setup Guide)
Real Python    In this course you ll learn how to use Visual Studio Code for Python development By following examples you ll cover everything from how to install and configure Visual Studio Code for Python development to how to run tests and debug application so you can use this powerful tool Improve Your
03  avril     14h00
What Is Pip? A Guide for New Pythonistas
Real Python    What is pip pip is the standard package manager for Pyhon It allows you to install and manage additional packages that are not part of the Python standard library This tutorial is an introduction to pip for new Pythonistas In this tutorial you ll learn about Installing additional packages not
02  avril     14h00
Idiomatic Pandas: Tricks & Features You May Not Know
Real Python    Pandas is a foundational library for analytics data processing and data science It s a huge project with tons of optionality and depth In this course you ll see how to use some lesser used but idiomatic Pandas capabilities that lend your code better readability versatility and speed
01  avril     14h00
Get Started With Django Part 1: Build a Portfolio App
Real Python    Django is a fully featured Python web framework that can be used to build complex web applications In this tutorial you ll jump in and learn Django by example You ll follow the steps to create a fully functioning web application and along the way learn some of the most important features of
27  mars     14h00
How to Stand Out in a Python Coding Interview
Real Python    You ve made it past the phone call with the recruiter and now it s time to show that you know how to solve problems with actual code Whether it s a HackerRank exercise a take home assignment or an onsite whiteboard interview this is your moment to prove your coding interview skills But
26  mars     14h00
Django Migrations 101
Real Python    Since version Django has come with built in support for database migrations In Django database migrations usually go hand in hand with models whenever you code up a new model you also generate a migration to create the necessary table in the database However migrations can do much more