I hereby claim:
- I am dhruvkar on github.
- I am dhruvkar (https://keybase.io/dhruvkar) on keybase.
- I have a public key whose fingerprint is 4567 DD8B 3255 4C43 0B2F 6A0F 4FDC 3E91 57A4 50A2
To claim this, I am signing this object:
import os | |
import requests | |
from bs4 import BeautifulSoup as bs | |
USERNAME = "" # for instacart | |
PASSWORD = "" # for instacart | |
EMAIL = "" # where to send alert |
I hereby claim:
To claim this, I am signing this object:
""" | |
If you use Chrome, get Chromedriver and put in your PATH: | |
http://chromedriver.chromium.org/downloads | |
If you use Firefox, get Geckodriver and put in your PATH: | |
https://github.com/mozilla/geckodriver/releases | |
Also install: | |
pip install requests |
#!/usr/bin/env python | |
from __future__ import print_function | |
import json | |
import re | |
import requests # pip install requests | |
from yelpapi import YelpAPI # pip install yelpapi. Not a very mature library, use at your own risk. | |
from requests.compat import urljoin, quote_plus |
def mkdir(dir_path) | |
try: | |
os.makedirs(dir_path) | |
except OSError as e: | |
if e.errno != errno.EEXIST: | |
raise |
// # Ghost Configuration | |
// Setup your Ghost install for various environments | |
var path = require('path'), | |
config; | |
config = { | |
// ### Development **(default)** | |
development: { | |
// The url to use when providing links to the site, E.g. in RSS and email. |