Open your terminal.
In the root directory run the command:
sudo nano /etc/bluetooth/main.conf
WITH | |
preprocessed_orders AS ( | |
SELECT | |
* | |
FROM ( | |
SELECT | |
nozzle_customer_name, | |
customer_id, | |
amazon_order_id, | |
item_promotion_discount, |
#!/usr/bin/env python | |
from nozzle.spapi.client import MARKETPLACES, REGIONS, create_sigv4_session | |
NA_AUTH_URI = "https://api.amazon.com/auth/o2/token" | |
EU_AUTH_URI = "https://api.amazon.co.uk/auth/o2/token" | |
FE_AUTH_URI = "https://api.amazon.co.jp/auth/o2/token" | |
REGION = "NA" | |
ACCESS_KEY = "" | |
SECRET_KEY = "" |
import requests | |
from datetime import datetime | |
from requests_aws4auth import AWS4Auth | |
endpoint = "https://sellingpartnerapi-na.amazon.com" | |
TOKEN_URL = "https://sellingpartnerapi-na.amazon.com/authorization/v1/authorizationCode" | |
ACCESS_ID = "" | |
SECRET_ID = "" | |
if __name__ == "__main__": |
#!/usr/bin/env python | |
import os | |
from urllib.parse import urlencode | |
import requests | |
from nozzle.spapi.client import REGIONS, create_sigv4_session | |
NA_AUTH_URI = "https://api.amazon.com/auth/o2/token" | |
EU_AUTH_URI = "https://api.amazon.co.uk/auth/o2/token" | |
FE_AUTH_URI = "https://api.amazon.co.jp/auth/o2/token" |
#!/usr/bin/env python | |
# Author: [email protected] @2021 | |
import argparse | |
import urllib.request as request | |
import urllib.parse as parse | |
import json | |
import subprocess | |
ICON_MAP = { |
Gator is a convenient wrapper around procrastinate which provides a basic web UI through a starlette app which can be used to extend functionality, for instance adding endpoints to trigger tasks asynchronously.
Gator Tasks are basically a Python script file which lives into the task/
folder, they share the same Gator's namespace, therefore dependencies for new tasks will be installed as Gator dependencies, a nozzle_vendorised
folder is included on Gator's namespace so the python modules it contains can be shared between tasks, in the same way it could be added other folders to share common code between tasks.
Once a new task is added, Gator needs to be restarted in order to load it.
Add the following in .zshrc: | |
... | |
plugins=(osx git zsh-autosuggestions zsh-syntax-highlighting zsh-nvm docker kubectl) | |
... | |
### Fix slowness of pastes with zsh-syntax-highlighting.zsh | |
pasteinit() { | |
OLD_SELF_INSERT=${${(s.:.)widgets[self-insert]}[2,3]} | |
zle -N self-insert url-quote-magic # I wonder if you'd need `.url-quote-magic`? |
from __future__ import annotations | |
import functools | |
import gzip | |
import json | |
from time import sleep, time as now | |
from typing import List | |
import requests |