# ignore all keys files, denoted using .apikeys filetype
# sending private API keys to github is a really bad idea
*/*.apikeys

# ignore all __pycache__ files
*/__pycache__/*
*/*/__pycache__/*
__pycache__/*

#ignore wheel files since they can be gotten through pip
dist/*