python refresh/reload

后端 未结 7 1026
北海茫月
北海茫月 2020-11-27 17:58

This is a very basic question - but I haven\'t been able to find an answer by searching online.

I am using python to control ArcGIS, and I have a simple python scrip

7条回答
  •  爱一瞬间的悲伤
    2020-11-27 18:31

    I used the following when importing all objects from within a module to ensure web2py was using my current code:

    import buttons
    import table
    reload(buttons)
    reload(table)
    from buttons import *
    from table import *
    

提交回复
热议问题