To prevent over and over download of bulky install files: is it possible to write an update Python script which:
- one can run within Jupyter notebook.
- Which fetchs updated Python Labcontrol scripts
This script should be able to download a set of relevant source code, directly from GitHub. A possible way to do so, is making use of the requests library.
See:
- https://requests.readthedocs.io/en/latest/user/quickstart/#make-a-request
- https://stackoverflow.com/questions/26000336/execute-curl-command-within-a-python-script
To prevent over and over download of bulky install files: is it possible to write an update Python script which:
This script should be able to download a set of relevant source code, directly from GitHub. A possible way to do so, is making use of the requests library.
See: