Skip to content

Instantly share code, notes, and snippets.

View philrice's full-sized avatar

Phil Rice philrice

  • Nottingham
View GitHub Profile
import urllib.request,sys,time
from bs4 import BeautifulSoup
import requests
import pandas as pd
pagesToGet= 1
upperframe=[]
for page in range(1,pagesToGet+1):
print('processing page :', page)
@philrice
philrice / magento-image-scraper
Last active April 11, 2019 22:18
Magento Image Scraper
# Import libraries
import requests
import urllib.request
import time
import os
from bs4 import BeautifulSoup
def get_product_url_list():
productlist = []