biplist

`biplist`是Python的二进制plist解析器/生成器。这个项目现在存在于BitBucket上。(`biplist` is a binary plist parser/generator for Python. This project now lives on BitBucket.)

  • 所有者: wooster/biplist
  • 平台: iOS, Mac
  • 许可证: BSD 3-Clause "New" or "Revised" License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

biplist

biplist is a binary plist parser/generator for Python.

About

Binary Property List (plist) files provide a faster and smaller serialization
format for property lists on OS X. This is a library for generating binary
plists which can be read by OS X, iOS, or other clients.

API

The API models the plistlib API, and will call through to plistlib when
XML serialization or deserialization is required.

To generate plists with UID values, wrap the values with the Uid object. The
value must be an int.

To generate plists with NSData/CFData values, wrap the values with the
Data object. The value must be a string.

Date values can only be datetime.datetime objects.

The exceptions InvalidPlistException and NotBinaryPlistException may be
thrown to indicate that the data cannot be serialized or deserialized as
a binary plist.

Installation

To install the latest release version:

sudo easy_install biplist

Examples

Plist generation example:

from biplist import *
from datetime import datetime
plist = {'aKey':'aValue',
         '0':1.322,
         'now':datetime.now(),
         'list':[1,2,3],
         'tuple':('a','b','c')
         }
try:
    writePlist(plist, "example.plist")
except (InvalidPlistException, NotBinaryPlistException), e:
    print "Something bad happened:", e

Plist parsing example:

from biplist import *
try:
    plist = readPlist("example.plist")
    print plist
except (InvalidPlistException, NotBinaryPlistException), e:
    print "Not a plist:", e

主要指标

概览
名称与所有者wooster/biplist
主编程语言Python
编程语言Python (语言数: 1)
平台iOS, Mac
许可证BSD 3-Clause "New" or "Revised" License
所有者活动
创建于2010-08-19 02:08:41
推送于2018-02-25 01:12:12
最后一次提交2018-02-24 17:11:18
发布数9
最新版本名称v1.0.2 (发布于 )
第一版名称v0.5 (发布于 )
用户参与
星数161
关注者数14
派生数35
提交数104
已启用问题?
问题数9
打开的问题数3
拉请求数4
打开的拉请求数0
关闭的拉请求数1
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?