Twitter Bots can be super useful to help automate some of the interactions on social media in order to build and grow engagement but also automate some tasks. There has been many changes on the...
How To Build a Discord Bot Using Python
Discord is a popular collaboration platform that initially was targeted at gamers that has more than 300million users. Within Discord, there's an ability to create 'bots'. These are computer users...
How To Extract Table Data From Webpages With Example Code – Python 3
There are some rich data sets that are available on web pages which are in table formats. Extracting this data can be very useful in order to do further analysis or even to save to your own...
How To Scrape Websites With Login Using Selenium and Python3
Web scraping sites in python can save you a lot of time and can be fairly straightforward when the site structure is consistent. However, what do you do when the information you need to scrape is...
How To Scrape Javascript Websites With Selenium Using Python 3
Web scraping is a very useful mechanism to either extract data, or automate actions on websites. Normally we would use urllib or requests to do this, but things start to fail when websites use...
How To Automate Testing With pytest In Python 3
Testing is an extremely important part of having good reliable python code. However, the challenge is that it can be very tiring to manually test your code again and again, and it's also very easy...
How To Send Emails From Gmail Using Python 3
Automating emails and integrating to gmail can be done fairly easily with Python 3 giving you a range of things that can make your applications richer. This will enable you to link email to one of...
How To Access Your Gmail with Python 3
Have you ever wonder how to read and send an email, manage drafts and attachments, search threads and messages, work with labels, set up push notifications, and manage Gmail settings... Well you...