Blog

Python tutorials and tips on the Academify blog. Learn programming with examples, exercises, and projects from basic to advanced

Criação de hashes seguros para senhas usando Python
Best Practices
Foto de perfil de Leandro Hirt da Academify

Password Hashing with bcrypt in Python

Learn Python password hashing with bcrypt: generate secure hashes, verify passwords, understand salt, and build a complete authentication system.

Read more

Reading time: 4 minutes
June 3, 2026
Uso do módulo collections para estruturas avançadas em Python
Fundamentals
Foto de perfil de Leandro Hirt da Academify

Python collections: Counter, deque, defaultdict

Learn Python's collections module: namedtuple, Counter, defaultdict, and deque for better performance and readability than built-in lists and dicts.

Read more

Reading time: 4 minutes
June 3, 2026
Uso de dataclasses para simplificar classes em Python
Best Practices
Foto de perfil de Leandro Hirt da Academify

Python dataclasses: Build Cleaner Data Classes

Learn how Python dataclasses work: auto-generate __init__, __repr__, __eq__, use default values, field(), frozen=True, __post_init__, and asdict/astuple.

Read more

Reading time: 4 minutes
June 3, 2026
Como resolver problemas de caminhos de arquivos em scripts Python
Error Resolution
Foto de perfil de Leandro Hirt da Academify

FileNotFoundError: Fix Python Path Errors

Fix Python FileNotFoundError: understand absolute vs relative paths, use pathlib and os.getcwd(), handle errors with try/except, and build a reliable

Read more

Reading time: 3 minutes
June 3, 2026
Como resolver erros de codificação UTF-8 em Python
Error Resolution
Foto de perfil de Leandro Hirt da Academify

Python UTF-8: Fix Encoding Errors

Fix Python UTF-8 encoding errors: always specify encoding when opening files, handle UnicodeDecodeError, auto-detect with chardet, and write a safe

Read more

Reading time: 4 minutes
June 3, 2026
Entendendo como o GIL afeta performance em Python
Best Practices
Foto de perfil de Leandro Hirt da Academify

Python GIL: Threads, CPU, and Performance

Learn what Python's GIL is, why it exists, how it limits multithreading, and when to use multiprocessing to achieve true

Read more

Reading time: 6 minutes
June 3, 2026
Geração e edição de planilhas Excel usando Python
Data Science
Foto de perfil de Leandro Hirt da Academify

Excel with Python: Create and Edit with openpyxl

Learn how to generate and edit Excel files with Python using Pandas and Openpyxl: create spreadsheets, read data, add formulas,

Read more

Reading time: 4 minutes
June 3, 2026
Transformando script Python em executável EXE rapidamente
IDEs and Tools
Foto de perfil de Leandro Hirt da Academify

Convert Python to .exe with PyInstaller

Convert your Python script to .exe in 5 minutes using PyInstaller: virtual environment setup, single-file build, no-console flag, custom icon,

Read more

Reading time: 5 minutes
June 3, 2026