Is there a way to import a python helper library from a deployed Google Cloud Function, outside the function?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















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?










share|improve this question































    1















    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?










    share|improve this question



























      1












      1








      1








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 24 '18 at 4:59









      K F

      36629




      36629










      asked Nov 23 '18 at 14:52









      CamCam

      309110




      309110
























          1 Answer
          1






          active

          oldest

          votes


















          3














          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.






          share|improve this answer
























          • Thanks for your response. Makes perfect sense.

            – Cam
            Nov 23 '18 at 15:26












          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          3














          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.






          share|improve this answer
























          • Thanks for your response. Makes perfect sense.

            – Cam
            Nov 23 '18 at 15:26
















          3














          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.






          share|improve this answer
























          • Thanks for your response. Makes perfect sense.

            – Cam
            Nov 23 '18 at 15:26














          3












          3








          3







          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 23 '18 at 15:18









          Doug StevensonDoug Stevenson

          83.6k10100118




          83.6k10100118













          • 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





          Thanks for your response. Makes perfect sense.

          – Cam
          Nov 23 '18 at 15:26




















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          這個網誌中的熱門文章

          Hercules Kyvelos

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud