I hereby claim:
- I am ajawu on github.
- I am ajawu (https://keybase.io/ajawu) on keybase.
- I have a public key ASD4mki98IlXOj-g0zzZh84UdYYZj1a_V-A5bGKCNYsTfgo
To claim this, I am signing this object:
class SendchampService(BaseService): | |
def __init__(self): | |
self.base_url = "https://api.sendchamp.com/api/v1" | |
self.headers = { | |
"Content-Type": "application/json", | |
"Accept": "application/json", | |
"Authorization": f"Bearer {settings.SENDCHAMP_PUBLIC_KEY}", | |
} | |
self.sender_id = settings.SENDCHAMP_SENDER_ID |
name: DEPLOY TO PRODUCTION | |
# Enable Buildkit and let compose use it to speed up image building | |
env: | |
DOCKER_BUILDKIT: 1 | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
on: | |
push: | |
branches: ["main"] |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Omnifood</title> | |
</head> | |
<body> | |
<form method="post" enctype="multipart/form-data" action=""> | |
<input type="text" | |
id="id_name" name="name"> |
import requests | |
from bs4 import BeautifulSoup | |
import datetime | |
from decimal import Decimal | |
from store.models import DollarRate | |
def format_today(): | |
"""Return date formatted as day/month/year - 20/01/2021""" |
from selenium import webdriver | |
import secrets | |
import time | |
import base64 | |
import uuid | |
import os | |
import requests | |
wd = webdriver.Firefox() |