Skip to content

Instantly share code, notes, and snippets.

View tbensonwest's full-sized avatar

Tarran Benson-West tbensonwest

View GitHub Profile
import boto3
s3 = boto3.client("s3")
bucket_name = "annageller"
s3_object = "sales/customers.csv"
local_file_path = f"/Users/annageller/Desktop/datasets/{s3_object}"
# Uploading without specifying content type
s3.upload_file(
local_file_path,
import boto3
s3_resource = boto3.resource("s3")
list(i for i in s3_resource.Bucket("annageller").objects.all()
if i.get()["ContentType"] == "text/csv")
import boto3
s3 = boto3.client("s3")
response = s3.put_bucket_accelerate_configuration(
Bucket="annageller", AccelerateConfiguration={"Status": "Enabled"},
)
import boto3
from botocore.config import Config
ta_config = Config(s3={"use_accelerate_endpoint": True})
s3 = boto3.client("s3", config=ta_config)
@ruvnet
ruvnet / *claude.md
Last active November 13, 2025 06:52
The Claude-SPARC Automated Development System is a comprehensive, agentic workflow for automated software development using the SPARC methodology with the Claude Code CLI

Claude-SPARC Automated Development System For Claude Code

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Overview

The SPARC Automated Development System (claude-sparc.sh) is a comprehensive, agentic workflow for automated software development using the SPARC methodology (Specification, Pseudocode, Architecture, Refinement, Completion). This system leverages Claude Code's built-in tools for parallel task orchestration, comprehensive research, and Test-Driven Development.

Features