Make42
Make42
Thank you already - super helpfull! I am also looking forward to @bmartinn 's answer. He can probably say something regarding your second paragraph as well. Ceph looks pretty bad-ass....
@bmartinn The OS of our development machine is Windows, while the servers are Ubuntu. What would we need to consider in this setup, regarding the mount points of the shared...
I looked into that, but I am a bit out of my depth here and there seems to be no tutorial how to approach this. Do you know any tutorial...
I read https://dev.to/dangerontheranger/dependency-injection-with-import-hooks-in-python-3-5hap but this does not solve the issue: Here the author build and import hook and "imports" a class that has been defined as code. > Ooh! I...
@lurch How can I donwload and install the original PyFilesystem - from the https://pypi.org/project/fs1/ repository? Afterall, PyFilesystem2 does not have this hook. **EDIT:** I think I got this part work:...
@dargueta Due to all my research I am aware of [pymemimporter}(https://github.com/n1nj4sec/pymemimporter), but it is only available for 32-bit Windows and Python 2. The final option that you mentioned [fancycode/MemoryModule] is...
@althonos I have tried something similar, which was [dev.to/dangerontheranger](https://dev.to/dangerontheranger/dependency-injection-with-import-hooks-in-python-3-5hap), but by reading the post you suggested, I think, I am getting a better grasp. A mistake I might have done...
> > A mistake I might have done is changing `exec(code in mod.__dict__)` into `exec(code)` > > I suspect the invalid `exec(code in mod.__dict__)` is probably a case of the...
I managed to get this running for the conventional case, which is to read modules from the PyFilesystem's in-memory file system using PyFilesystem's mechanics and then using `exec`. This enables...
@has2k1 A minimal example would be: ``` import pandas as pd measurements = pd.DataFrame({'time': [0,1], 'value': [2,3]}) import plotnine as p p.ggplot(p.aes('time', 'value'), measurements) + p.geom_line() ``` plotnine uses Qt....