Sorry for the strange question but it makes me curious. It is not related to Pythonista app, but maybe to any Python distribution.
The question: with only Python programming language and an online device can I (does a script exist to):
1. read the full content of a compressed folder named "A" where:
* the folder "A" is a compressed (zip, tar, gz, rar, ...) folder which contains python sources like a common library, like the ones you find here;
* the compressed folder "A" is saved in a cloud service, for example dropbox, and it has a valid shared link.
* for read full content I mean read all files (pure-python sources)
2. save the full content in the ram memory of the python environment.
3. interpret/execute the source files of the folder "A" as if they were saved in the local memory (for example in site-packages).
4. use in python console the definitions, functions, everything available with the library in the cloud in the same way I can import everything from a correctly locally installed library inside my python environment?
I expect you can ask me why? I don't know (but I know that in this way the speed for importing libraries will be decreased compared to have the libraries properly installed in the local memory/storage). I'm only curious to know if it is possibile by a theoretical point of view and with a full python 2.7.12 environment.
Thanks