Python


How to Create a Console UI in Python Using the Rich Library

How to Create a Console UI in Python Using the Rich Library

Trading websocket ticker using EOD Historical Data (EODHD APIs)

PythonEodhdWebsocket
How to Parse Data Tables from a PDF Bank Statement with Python

How to Parse Data Tables from a PDF Bank Statement with Python

The image above shows a snapshot of my student life, the flying home during breaks and Uber trips about four years back. We see that the PDF contains a date, a relatively long transaction…

Data SciencePythonData Visualization
How to Validate Your DataFrames with Pytest

How to Validate Your DataFrames with Pytest

A guide to validating DataFrames with Pytest.

DataframePythonPytest
25 Interesting Python Codes to Solve Complex Tasks

25 Interesting Python Codes to Solve Complex Tasks

Part 1: A list of Python codes for solving complex tasks.

PythonProgrammingCoding
How to Implement a Maximum Likelihood Estimation Code for Any Distribution

How to Implement a Maximum Likelihood Estimation Code for Any Distribution

A guide for writing MLE code for any distribution under 5 minutes in case SciPy fails.

ScipyMle
How to Create a Simple Webform Using Streamlit

How to Create a Simple Webform Using Streamlit

A guide to creating a simple form using Streamlit.

StreamlitFormsPython
How to Specify Data Types in Python

How to Specify Data Types in Python

CodingPython3Python
6 Amazing Algorithms to Get the Square Root (and Any Root) of any Number in Python

6 Amazing Algorithms to Get the Square Root (and Any Root) of any Number in Python

PythonMathAlgorithms
Multithreading vs Asyncio in Python

Multithreading vs Asyncio in Python

Event Loop

PythonMultithreadingAsyncio
How to Use Glob and Pandas to Read Multiple Filenames

How to Use Glob and Pandas to Read Multiple Filenames

Sometimes we need to work with multiple files. Glob is a handy Python package to read in multiple file names without having to manually write out the names of files. Of course, you could perform the…

PandasData ScienceCode