Skip to content

Instantly share code, notes, and snippets.

@spjoshis
spjoshis / amazon-scraping-mobiles.py
Created June 21, 2020 06:50
Scrape script to get latest mobile phones from Amazon
""" Scrape latest mobile phones from Amazon """
# virtualenv -p /usr/bin/python3 100DaysofCode
import requests
from lxml import html
from bs4 import BeautifulSoup
import json
session_requests = requests.session()
@JofArnold
JofArnold / BoredApeYachtClub.sol
Last active April 9, 2023 12:44
The Bored Ape Yacht Club (BAYC) Solidity Smart Contract GitHub
/**
*Submitted for verification at Etherscan.io on 2021-04-22
*/
// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;