[tutorial] Using Mailgun + Python to send email

๐Ÿ“Œ Introduction

This tutorial covers how to send emails using Mailgun and Python. Youโ€™ll learn how to set up Mailgun, generate an API key, and write Python code to send emails with or without attachments.

Read more

[note] MarkItDown: A tool for smoothly converting docx and pptx into markdown

๐Ÿ“Œ Introduction

This article discusses MarkItDown, a tool specifically designed to effortlessly convert docx and pptx files into markdown format. It highlights various Python libraries that serve as dependencies for this conversion process, enabling users to handle documents and multimedia content effectively.

Read more

[note] Enhancing Code Clarity with TypedDict

๐Ÿ“Œ Introduction

This article discusses the benefits of using TypedDict in Python for enhancing code clarity when storing complex data. It highlights how TypedDict helps developers by providing suggestions through their IDE, while also noting its limitations regarding strict type enforcement.

Read more

[tutorial] How to use psutil to monitor CPU and memory usage in python

๐Ÿ“Œ Introduction

This article introduces psutil, an open-source Python package that provides system information about CPU, memory, disks, and networks. It covers the installation of psutil and demonstrates useful functions for monitoring CPU and memory usage, as well as how to integrate it into Python code using decorators.

Read more

[tutorial] Build your own python package

๐Ÿ“Œ Introduction

Building your own Python package is beneficial for maintaining large projects, as it helps manage code that is otherwise scattered across directories.

Read more

[tutorial] Setting up Miniconda on Ubuntu

๐Ÿ“Œ Introduction

This article details the steps required to install Miniconda on Ubuntu, including downloading the installer and setting up the initial environment.

Read more