This file contains hidden or 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
#!/usr/bin/env -S scala | |
// Brian Schlining. 2024-12-22 | |
//> using dep "io.circe::circe-core:0.14.10" | |
//> using dep "io.circe::circe-generic:0.14.10" | |
//> using dep "io.circe::circe-parser:0.14.10" | |
import io.circe.Decoder | |
import io.circe.generic.semiauto.deriveDecoder | |
import io.circe.parser.decode |
This file contains hidden or 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
#!/usr/bin/env python | |
import requests | |
import argparse | |
import uuid | |
import json | |
from io import BytesIO | |
from typing import Dict | |
from datetime import datetime, timezone |
OlderNewer