在命令行和 GUI 程序之间共享首选项

发布于 2024-10-28 01:59:45 字数 242 浏览 2 评论 0原文

我被一个看似简单的问题所困扰。我想从 Cocoa 应用程序和命令行 python 脚本访问几个首选项。首选项主要是磁盘上内容的位置。由于位置是相互构建的(例如 $LOCA=$LOCB/stuff),因此使用环境变量和 .bash_rc 等内容将是理想的选择。问题是只有命令行程序从 .bash_rc 继承变量,Cocoa 应用程序则不然。

存储这些内容以便 python 脚本和 Cocoa 应用程序可以访问它们的最佳机制是什么?

谢谢。

I am stymied by a seemingly simple problem. I have several preferences that I would like to access from a Cocoa app and a commandline python script. The preferences are mostly locations to things on disk. Since the locations build of each other ( $LOCA=$LOCB/stuff for example), using environment variables and something like .bash_rc would be ideal. The problem is that only commandline programs inherit variables from .bash_rc, Cocoa apps do not.

What is the best mechanism to store this stuff so that python scripts and Cocoa apps can access them alike?

thanks.

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

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

发布评论

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

评论(1

冬天的雪花 2024-11-04 01:59:45

从 Python 2.6 开始,plistlib 模块在标准中可用Python。您可以使用它来读取和写入 .plist 文件(并使用 NSPropertyListSerialization 来自 Obj-C)。 NSPropertyListSerialization 和 plistlib 都不会执行您想要的各种替换,因此您必须将其构建到脚本和 OS X 程序中。

编辑: plistlib 仅读取和写入 XML 序列化的 .plist 文件,而不是二进制格式 - 使用 NSPropertyListXMLFormat_v1_0.plist 时 Obj-C 代码中的 code> 常量。

As of Python 2.6, the plistlib module is available in standard Python. You can use this to read and write .plist files (and use NSPropertyListSerialization from Obj-C). Neither the NSPropertyListSerialization nor plistlib will perform the sorts of substitutions you want, so you will have to build this in to both the script and the OS X program.

EDIT: plistlib only reads and writes the XML-serialized .plist files, not the binary format -- use the NSPropertyListXMLFormat_v1_0 constant in your Obj-C code when saving the .plist.

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