Skip to content

Instantly share code, notes, and snippets.

View Zulux91's full-sized avatar

Zulux91 Zulux91

  • Mexico
View GitHub Profile
@ZenulAbidin
ZenulAbidin / instagram_scraper.py
Last active May 28, 2020 22:59
Rudimentary instagram scraper that dumps the links of images in a text file, and saves the images in their own folder. pip install beautifulsoup4 selenium urllib3 requests pandas numpy
from selenium import webdriver
from bs4 import BeautifulSoup as bs
import time
import re
from urllib.request import urlopen
import json
from pandas.io.json import json_normalize
import pandas as pd, numpy as np
import argparse
import requests