In order to make it so you don't have to modify the library directory, it would be nice to change:
In the keys.py file line 5:
from . import flickr_keys
If I change it to:
import flickr_keys
It then works.
Then the flickr_keys file can live in the project directory (but of course not synced in git)
In order to make it so you don't have to modify the library directory, it would be nice to change:
In the keys.py file line 5:
from . import flickr_keysIf I change it to:
import flickr_keysIt then works.
Then the flickr_keys file can live in the project directory (but of course not synced in git)