Browsing Tag
python
193 posts
Using Blueprint to Organize Flask Apps
Introduction Large applications can become complex and difficult to manage due to the presence of numerous components and…
Ferramentas que você pode usar para praticar Python online
Em determinado momento dos seus estudos, pode fazer mais sentido você instalar e configurar a linguagem Python no…
Build Your First Django App: Beginner’s Guide
Django is a Python framework that has been here for quite a while. Due to its robust nature…
My Weather App Journey with Pyramid Framework ☁️🌦️
Hey friends, this is Amir from Bek Brace YT channel yet again with another DEV blogpost, and today…
[Python] How to get full url from shortened url
Sometimes when you scrape a website, you may have encountered the fact that the website returns shortened URLs…
generate-sitemap 1.10.0 Released
TL;DR I just released generate-sitemap 1.10.0, a GitHub Action for generating XML sitemaps for static websites. The generate-sitemap…
Python Asyncio: A Guide to Asynchronous Programming and Concurrency
Table of Contents What is Concurrency? Writing Concurrent Code in Python Libraries for Asynchronous Programming Getting Started with…
Entendendo @decorators no Python em 6 passos
Decorators: um resumo Quando falamos de decorators no Python, nos referimos à seguinte sintaxe: @meu_decorator def minha_funcao(param): ...…
Master Decorators and Generators in Python
Introduction Decorators and generators, two powerful concepts from Python’s functional programming, allow for the modification and enhancement of…
Automating your API tests using Python and Pytest
Did you ever thought how you can tests your APIs using python? In the article we will learn…