Skip to content

Instantly share code, notes, and snippets.

View drearondov's full-sized avatar
🏗️
Madly refactoring

Andrea Rondón drearondov

🏗️
Madly refactoring
View GitHub Profile
@sminot
sminot / read_feather_from_s3.py
Created September 2, 2018 16:36
Read feather file directly from AWS S3
import io
import boto3
import pandas as pd
def read_feather_file_from_s3(s3_url):
assert s3_url.startswith("s3://")
bucket_name, key_name = s3_url[5:].split("/", 1)
s3 = boto3.client('s3')
retr = s3.get_object(Bucket=bucket_name, Key=key_name)
@omaraboumrad
omaraboumrad / wiki.md
Last active May 11, 2024 07:20
How to contribute to a GitHub Project's Wiki

Setup

Assuming project is SOME/PROJECT And you are FOO

You will need to do the following one time only: