storefact
storefact copied to clipboard
A factory for simplekv-Store-based storage classes.
The simpleKV PR is still pending https://github.com/mbr/simplekv/pull/110 This adds GCloud Storage via `google-cloud-storage` which works with Python3 unlike the existing `boto` implementation.
From personal communication, I know that one can get stores allowing key names containing '/' also for azure ('hazure://'-urls) This feature is currently undocumented, though.
Here https://github.com/blue-yonder/storefact/blob/f0a75afb8e8b4d633c5c2f2e8ed059bd667eaecf/storefact/_store_creation.py#L23 the code uses `type in ('memory')` which is identical to `type in 'memory'` which isn't a "look for string in list of strings" check but a "look for...