Skip to content

Instantly share code, notes, and snippets.

View mfdeux's full-sized avatar
🙂
What's up?

Marc Ford mfdeux

🙂
What's up?
View GitHub Profile
@mfdeux
mfdeux / on_disk_collection.py
Created February 13, 2018 16:15
On disk list/collection
import collections
import json
import os
import pathlib
import functools
class StoreDoesNotExistError(Exception):
"""
Exception raised when specified store does not exist
"""
@mfdeux
mfdeux / on_disk_mapping.py
Created February 13, 2018 16:13
On disk dict/mapping
import collections
import json
import os
import pathlib
import functools
class StoreDoesNotExistError(Exception):
"""
Exception raised when specified store does not exist
"""