This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime, timedelta | |
import shopify | |
ACCESS_TOKEN = 'YOUR ADMIN TOKEN' | |
def shopify_orders(): | |
shop_url = "YOURSTORE.myshopify.com" | |
api_version = '2022-07' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am mfwarren on github. | |
* I am matt_warren (https://keybase.io/matt_warren) on keybase. | |
* I have a public key ASC1qUfJxHAPnsdOf6mtMOH2NVBURl9pl4fXDOFwVJwzcgo | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scrapy | |
from twx.botapi import TelegramBot | |
class LCBOSpider(scrapy.Spider): | |
name = 'lcbospider' | |
start_urls = ['http://www.lcbo.com/lcbo/search/filter?showAll=LTO#contentBeginIndex=0&productBeginIndex=0&beginIndex=0&orderBy=&categoryPath=%2F%2F&pageView=&resultType=products&orderByContent=&searchTerm=&facet=&storeId=10151&catalogId=10001&langId=-1&fromPage=&showAll=LTO&objectId=&requesttype=ajax'] | |
custom_settings = { | |
'CONCURRENT_REQUESTS': 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<title>Vogogo Sample Form</title> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.min.js"></script> | |
<script type="text/javascript" src="https://api.vogogo.com/vogogo.js/"></script> | |
<script type="text/javascript"> |