by doitwithcode | Jan 19, 2021 | Python
In this video tutorial, we covered how to scrape Instagram image and video posts. The JSON provided by Instagram for album/carousel posts is a little different. Let’s take a look at an Instagram album post such as https://www.instagram.com/p/CBIvNwGB2IX/. By...
by doitwithcode | Dec 21, 2020 | Python
In a previous tutorial, we built an Instagram Scraper with Python. This method scrapes meta tags from the post content and these tags had links to the image or video for the post. This method however no longer works. We can however get the same content ( image or...
by doitwithcode | Jul 4, 2020 | Mobile App Development, React Native
React Native is an open-source mobile application framework developed by Facebook. It allows you to develop applications for iOS, Android, and the Web using JavaScript ( specifically React ). Let’s get started with the famous “Hello World”. For...
by doitwithcode | Feb 21, 2020 | Blog, Python
Suppose I want to create a Selenium script that logs into Facebook, I would first have to log in to Facebook by instructing Selenium to fill out the login form below However, instead of spending time to write code for the login ( fill in the form and click on Log in...
by doitwithcode | Feb 19, 2020 | Blog, Python
A Python module is a file or group of files that contain function definitions and statements. A module can be created by creating a .py file. For instance, we can create a file hello.py with the following code: def say_hello(): print(“Hello World!”) We can...