| > I can see why data science types who use / produce a lot of (typically throwaway) Python code might be enamored with this I think that's honestly its killer app. I don't do data science, but I often use jupyter to write short prototypes, and make plots and such. I've been looking for something that lets me: 1. Set up a jupyter notebook. 2. Run some tests or experiments, pulling in libraries as needed. 3. Ignore it for a few years. 4. Come back and run the same notebook without everything breaking. If this could patch into Python's native import mechanism and let me specify the repo version as todays date, it'd be great. import functorflow
functorflow.repo("2019-08-04")
from ff.package_name.whatever import foo
If that gets you a replicable set of versions, it'd be pretty great. |