Working with Markdown Files in Python

This article will show you how to create and work with markdown files using Python. πŸ’‘ Markdown is an excellent tool with many features to spice up a flat-text file, such as changing text colors, adding bullet points, tables, and much more. A terrific way to add pizzazz to an otherwise dull file. To make … Read more

How to Open a URL in Your Browser From a Python Script?

To open a URL in your standard browser (Win, macOS, Linux) from your Python script, e.g., call webbrowser.open(‘https://google.com’) to open Google. Don’t forget to run import webbrowser first. But you don’t have to install the module because it’s already in Python’s standard library. Example Here’s an example Python script that opens the URL ‘https://finxter.com’: A … Read more

PyTrends – Google Trends API for Python

Keeping Up With Market Changes By Using Google Trends API In this fast-moving world, people’s needs are constantly changing. To know about shifting behaviors, you can use Google Trends.Β Β  This free tool provides data through search requests across Google Search, YouTube, Shopping, and Images. By entering a keyword or a topic, you can explore what … Read more

Plotly Dash Button Component – A Simple Illustrated Guide

Welcome to the bonus content of “The Book of Dash”. πŸ€— Here you will find additional examples of Plotly Dash components, layouts and style. To learn more about making dashboards with Plotly Dash, and how to buy your copy of “The Book of Dash”, please see the reference section at the bottom of this article. … Read more

Plotly Dash Slider Component — Ultimate Guide

Welcome to the bonus content of “The Book of Dash“. πŸ€— Here you will find additional examples of Plotly Dash components, layouts and style. To learn more about making dashboards with Plotly Dash, and how to buy your copy of “The Book of Dash”, please see the reference section at the bottom of this article. … Read more

How to Check If a List of ENS (.eth) Domains are Available? (Python)

You can check programmatically in Python whether a certain ENS ‘.eth‘ domain name is available by using the urlopen() function from urllib.request module to access the URL ‘https://etherscan.io/enslookup-search?search=example.eth’, replacing the URL suffix ‘example.eth’ with your desired domain. In the following example code snippet, I show how you could check a list of names, one domain … Read more

How to Scrape the Details of 250 Top Rated Movies in Python

This article indicates a way to scrape imdb.com/chart/top/, a website that contains 250 numbers of top-rated Movies. This article is solely for educational purposes. πŸ‘‰ Recommended Tutorial: Web Scraping – Is It Legal? The tool used to extract data from a website is Scrapy, and the software system is UNIX operating system. Virtual Environment Set … Read more

How to Extract Google Featured Snippets Using Python?

The article begins by formulating a problem relating to website click-through rate and gives you an overview of solutions about how to extract Google Featured Snippets using Python. And the article goes into great detail about the solution for beginners. At the end of this article, you will see the results of extracting featured snippets … Read more