在命令行和 GUI 程序之间共享首选项
我被一个看似简单的问题所困扰。我想从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 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 useNSPropertyListSerialization
from Obj-C). Neither theNSPropertyListSerialization
norplistlib
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 theNSPropertyListXMLFormat_v1_0
constant in your Obj-C code when saving the.plist
.