
Python
Django Crash Course for Beginners
Django is a high-level web framework built with Python that encourages rapid development and clean, pragmatic design.
Create a SQL REPL for JSON Files in Python
By combining Pandas for data handling, DuckDB for SQL querying, and a few Python modules to help make our lives a little easier, we can create an effective SQL REPL (Read–Eval–Print Loop) for JSON in 5 coding steps, and with relative ease.
A Practical Guide to Writing a Python Command Line Script
A well-structured Python script will clearly separate logic into functions, handle user input robustly, and provide meaningful feedback in case of errors.
A Practical Guide to Concurrency and Parallelism in Python
This article will walk you step-by-step through everything you need to know to leverage concurrency and parallelism in Python effectively.
Advanced File Handling in Python: Working with CSV, JSON, and XML
Learn some advanced Python file handling tips, and stay equipped with best practices for CSV, JSON and XML data.