Skip to content

Instantly share code, notes, and snippets.

View sun0225SUN's full-sized avatar
🧠
Learning

Guoqi Sun sun0225SUN

🧠
Learning
View GitHub Profile
@sun0225SUN
sun0225SUN / download_cf_bucket_files.py
Last active August 31, 2025 12:37
Download all files from the CloudFlare bucket.
import boto3
import os
# 显式设置R2的访问凭证和配置
s3_client = boto3.client(
's3',
aws_access_key_id='YOUR_ACCESS_KEY',
aws_secret_access_key='YOUR_SECRET_KEY',
endpoint_url='https://YOUR_ACCOUNT_ID.r2.cloudflarestorage.com',
region_name='auto'
@sun0225SUN
sun0225SUN / Hello World !
Last active April 9, 2023 23:10
你好,世界!
console.log("Hello World")
print("Hello World")