Is there a way to import a python helper library from a deployed Google Cloud Function, outside the function?
We are developing an application on Google Cloud that makes use of Cloud Functions in Python. We're looking at developing a generic helper library that many of our functions will import.
The problem with this is if the helper library is changed in any way, all our functions will need to be redeployed.
I'm trying to find a way to host (for want of a better word) our helper library (for example in Google Cloud Storage), and somehow import it into the main.py
files, such that any changes to the helper library can be made without having to redeploy the functions. Is this possible at all?
python python-3.x google-cloud-platform google-cloud-functions
add a comment |
We are developing an application on Google Cloud that makes use of Cloud Functions in Python. We're looking at developing a generic helper library that many of our functions will import.
The problem with this is if the helper library is changed in any way, all our functions will need to be redeployed.
I'm trying to find a way to host (for want of a better word) our helper library (for example in Google Cloud Storage), and somehow import it into the main.py
files, such that any changes to the helper library can be made without having to redeploy the functions. Is this possible at all?
python python-3.x google-cloud-platform google-cloud-functions
add a comment |
We are developing an application on Google Cloud that makes use of Cloud Functions in Python. We're looking at developing a generic helper library that many of our functions will import.
The problem with this is if the helper library is changed in any way, all our functions will need to be redeployed.
I'm trying to find a way to host (for want of a better word) our helper library (for example in Google Cloud Storage), and somehow import it into the main.py
files, such that any changes to the helper library can be made without having to redeploy the functions. Is this possible at all?
python python-3.x google-cloud-platform google-cloud-functions
We are developing an application on Google Cloud that makes use of Cloud Functions in Python. We're looking at developing a generic helper library that many of our functions will import.
The problem with this is if the helper library is changed in any way, all our functions will need to be redeployed.
I'm trying to find a way to host (for want of a better word) our helper library (for example in Google Cloud Storage), and somehow import it into the main.py
files, such that any changes to the helper library can be made without having to redeploy the functions. Is this possible at all?
python python-3.x google-cloud-platform google-cloud-functions
python python-3.x google-cloud-platform google-cloud-functions
edited Nov 24 '18 at 4:59
K F
33628
33628
asked Nov 23 '18 at 14:52
CamCam
1427
1427
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This is not supported with the provided tools. You can only invoke code that was deployed with the function. There is no "dynamic" loading of code over the internet.
Also, in my opinion, this is a pretty bad idea, because your functions could break in a very profound way if there's a problem during loading of the remote code, or you accidentally (or someone maliciously) push something wrong. You're going to be better off getting all your code and libraries together at once, test it all at once, and deploy it all at once.
You're free to try to implement something yourself, but I strongly advise against it.
Thanks for your response. Makes perfect sense.
– Cam
Nov 23 '18 at 15:26
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53448833%2fis-there-a-way-to-import-a-python-helper-library-from-a-deployed-google-cloud-fu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is not supported with the provided tools. You can only invoke code that was deployed with the function. There is no "dynamic" loading of code over the internet.
Also, in my opinion, this is a pretty bad idea, because your functions could break in a very profound way if there's a problem during loading of the remote code, or you accidentally (or someone maliciously) push something wrong. You're going to be better off getting all your code and libraries together at once, test it all at once, and deploy it all at once.
You're free to try to implement something yourself, but I strongly advise against it.
Thanks for your response. Makes perfect sense.
– Cam
Nov 23 '18 at 15:26
add a comment |
This is not supported with the provided tools. You can only invoke code that was deployed with the function. There is no "dynamic" loading of code over the internet.
Also, in my opinion, this is a pretty bad idea, because your functions could break in a very profound way if there's a problem during loading of the remote code, or you accidentally (or someone maliciously) push something wrong. You're going to be better off getting all your code and libraries together at once, test it all at once, and deploy it all at once.
You're free to try to implement something yourself, but I strongly advise against it.
Thanks for your response. Makes perfect sense.
– Cam
Nov 23 '18 at 15:26
add a comment |
This is not supported with the provided tools. You can only invoke code that was deployed with the function. There is no "dynamic" loading of code over the internet.
Also, in my opinion, this is a pretty bad idea, because your functions could break in a very profound way if there's a problem during loading of the remote code, or you accidentally (or someone maliciously) push something wrong. You're going to be better off getting all your code and libraries together at once, test it all at once, and deploy it all at once.
You're free to try to implement something yourself, but I strongly advise against it.
This is not supported with the provided tools. You can only invoke code that was deployed with the function. There is no "dynamic" loading of code over the internet.
Also, in my opinion, this is a pretty bad idea, because your functions could break in a very profound way if there's a problem during loading of the remote code, or you accidentally (or someone maliciously) push something wrong. You're going to be better off getting all your code and libraries together at once, test it all at once, and deploy it all at once.
You're free to try to implement something yourself, but I strongly advise against it.
answered Nov 23 '18 at 15:18
Doug StevensonDoug Stevenson
76.8k990111
76.8k990111
Thanks for your response. Makes perfect sense.
– Cam
Nov 23 '18 at 15:26
add a comment |
Thanks for your response. Makes perfect sense.
– Cam
Nov 23 '18 at 15:26
Thanks for your response. Makes perfect sense.
– Cam
Nov 23 '18 at 15:26
Thanks for your response. Makes perfect sense.
– Cam
Nov 23 '18 at 15:26
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53448833%2fis-there-a-way-to-import-a-python-helper-library-from-a-deployed-google-cloud-fu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown