Skip to content

Instantly share code, notes, and snippets.

View myzie's full-sized avatar

Curtis Myzie myzie

View GitHub Profile
@myzie
myzie / crawler.go
Created February 20, 2024 01:44
Risor Web Crawler
package main
import (
"fmt"
"github.com/risor-io/risor/object"
"github.com/risor-io/risor/op"
)
const CrawlerType object.Type = "crawler.crawler"
@myzie
myzie / s3_put_object.py
Last active May 20, 2023 18:35
S3 Put Object Example
import boto3
s3 = boto3.client("s3")
s3.put_object(
Bucket="example-bucket",
Key="texts/placeholder.txt",
Body="Lorem Ipsum",
)