Skip to content

Instantly share code, notes, and snippets.

View jhconning's full-sized avatar

Jonathan Conning jhconning

View GitHub Profile
@jaiamo
jaiamo / kindle.py
Created January 22, 2021 20:37
Generate markdown notes from Kindle highlights
"""
kindle.py: Generate markdown notes from Kindle highlights
"""
import os
import sys
import re
import argparse
import requests
from bs4 import BeautifulSoup
@bsweger
bsweger / useful_pandas_snippets.md
Last active April 19, 2024 18:04
Useful Pandas Snippets

Useful Pandas Snippets

A personal diary of DataFrame munging over the years.

Data Types and Conversion

Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)