Skip to content

Instantly share code, notes, and snippets.

View artrybalko's full-sized avatar

Art Rybalko artrybalko

  • Helsinki, Finland
View GitHub Profile
@artrybalko
artrybalko / ifttt_hello_world.py
Created December 23, 2021 17:18
ifttt_hello_world.py
from fastapi import FastAPI, status, Request
from fastapi.responses import JSONResponse
from pydantic import BaseModel
from typing import Optional
from datetime import datetime, timezone
import uuid
app = FastAPI()