Some time ago, I have received the book of Stephen Wolfram – Adventures of Computational Explorer for a review. Stephen is the guy behind WolframAlpha – https://www.wolframalpha.com/, a PhD in physics before his 21. birthday, considered a prodigy by some …

Book Review – Stephen Wolfram – Adventures of Computational Explorer Read more →

Although there are plenty of other tools for extracting data from a website (take a look at Beautiful Soup), VBA is somehow good, because … well, because it is somehow challenging to do it every time. Yesterday, I answered a …

VBA – Extracting financial data from a website in table format Read more →

Working with Pandas is like working with Excel on steroids – it can really do a lot of things fast, but somehow doing the easy things get complicated. In this video and article tutorial I am presenting loading data to …

Python – Plotting DataFrame and Working with Pandas – Video Read more →

AlessandroMolina

After writing about hashing passwords in Python, I have decided to publish the other parts of the chapter, “Cryptography” from the “Modern Python Standard Library Cookbook“, written by Alessandro Molina and and kindly provided to me by PacktPublishing.In the article, …

Cryptography in Python Read more →

About 4 years ago, I wrote an article about prime numbers in Excel and their visualisation with VBA – vba-function-in-excel-to-check-prime-numbers. Pretty much, it displays the prime numbers in a 10 x N matrix, starting from 1 and finishing at N: …

Prime numbers matrix and coloring with Python and xlsxwriter Read more →

Writing to a file in Python is usually a simple 2-liner, which is easy to be written: with io.open(“soup.txt”, “w”) as file:     file.write(soup_written) However, problems with the encoding may cause some research needed. Concerning the encoding this is …

Writing to a text file in Python from a variable, ignoring encoding problems Read more →

Showing all links from a website with Python and BeautifulSoup is actually 6 lines of code – 2 to define the used libraries and 4 to do the job: import urllib.request from bs4 import BeautifulSoup resp = urllib.request.urlopen(“https://www.vitoshacademy.com”) soup = …

Show all links from a website with Python and BeautifulSoup – Video Read more →