Python IDE:测试脚本

发布于 2024-11-07 14:34:59 字数 198 浏览 1 评论 0原文

是否有任何 IDE 允许在测试模式下运行脚本,允许在运行时替换某些值,例如文件夹或其他值? 我有一个程序必须在网络上运行,我无法访问我开发的地方。由于它将使用一些特定的文件夹来获取文件,我想知道我是否可以使用一个 IDE,使用一些参数将 \corporate\disk-c\myfolder 等所有内容转换为 ac:\myfolder。

谢谢!

中号

Is there any IDE that allows to run a script in testing mode, allowing to replace at runtime, some values, like a folder or else?
I have a program that will have to run on a network i have no access to where I develop. Since it will use some specific folders to pick up files, I was wondering if i.e. I could use an IDE that using some parameters will translate all that is like \corporate\disk-c\myfolder into a c:\myfolder.

Thanks!

M

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心安伴我暖 2024-11-14 14:34:59

在没有其他基于文件的配置的情况下,您可以将变量定义保留在主脚本中导入的文件中(例如,config.py),然后拥有该文件的两个不同版本具有适当设置的“打开”和“关闭”网络(或“开发”和“生产”等)。无需 IDE。

In absence of some other file based config, you could just keep the variable definitions in a a file that you import in the main script (e.g, config.py), then have two different versions of that file for 'on' and 'off' network, (or ' development' and 'production', whatever) with the appropriate settings. No IDE needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文