Install Python Application Component in EasyPHP

This article focuses on installing the Python application component in EasyPHP. This article also assumes you have an IDE installed and have completed the following articles: Setup EasyPHP DevServer on My Local Windows PC Setup the EasyPHP Dashboard CSV to MySQL Table [EasyPHP + PHPMyAdmin] and the following steps: Started EasyPHP Opened the Dashboard Started … Read more

Display a Web Page using EasyPHP, Python and PHP

This article focuses on configuring Python to work with MySQL. This article also assumes you have an IDE installed and have completed the following articles: Setup EasyPHP DevServer on My Local Windows PC Setup the EasyPHP Dashboard CSV to MySQL Table [EasyPHP + PHPMyAdmin] and the following steps: Started EasyPHP Opened the Dashboard Started the … Read more

Polygon for Developers – A Simple Guide with Video

What are Polygon and MATIC all about and why is another blockchain needed? You will find answers to these questions in this article. The article starts with problems plaguing Ethereum, workable solutions to the problem, and then dives into more details of the Polygon network, its history, tokenomics, and an overview of the Polygon SDK. … Read more

np.gradient() — A Simple Illustrated Guide

In Python, the numpy.gradient() function approximates the gradient of an N-dimensional array. It uses the second-order accurate central differences in the interior points and either first or second-order accurate one-sided differences at the boundaries for gradient approximation. The returned gradient hence has the same shape as the input array.Β  Here is the argument table of … Read more

Setup the EasyPHP Dashboard

This article assumes you have installed the EasyPHP Devserver in your Local Environment. Please click here to complete these steps before moving forward if you have not done so. Start EasyPHP Navigate to the Taskbar and right-mouse-click over the EasyPHP Devserver icon to display a pop-up similar to below. Next, click the Devserver 17 menu … Read more

CSV to MySQL Table [EasyPHP + PHPMyAdmin]

This article assumes you have installed and set up the EasyPHP Devserver in your Local Environment. Please click here to complete these steps before moving forward if you have not done so. Ensure the following steps are completed before moving forward: Start EasyPHP Open the Dashboard Start the HTTP and Database servers As a precursor … Read more

Python – Convert CSV to List of Lists

Problem Formulation Given a CSV file (e.g., stored in the file with name ‘my_file.csv’). INPUT: file ‘my_file.csv’ 9,8,7 6,5,4 3,2,1 Challenge: How to convert it to a list of lists (=nested list), i.e., putting the row values into the inner lists? OUTPUT: Python list of lists [[9, 8, 7], [6, 5, 4], [3, 2, 1]] … Read more