biplist

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

  • Owner: wooster/biplist
  • Platform: iOS, Mac
  • License:: BSD 3-Clause "New" or "Revised" License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

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

Main metrics

Overview
Name With Ownerwooster/biplist
Primary LanguagePython
Program languagePython (Language Count: 1)
PlatformiOS, Mac
License:BSD 3-Clause "New" or "Revised" License
所有者活动
Created At2010-08-19 02:08:41
Pushed At2018-02-25 01:12:12
Last Commit At2018-02-24 17:11:18
Release Count9
Last Release Namev1.0.2 (Posted on )
First Release Namev0.5 (Posted on )
用户参与
Stargazers Count161
Watchers Count14
Fork Count35
Commits Count104
Has Issues Enabled
Issues Count9
Issue Open Count3
Pull Requests Count4
Pull Requests Open Count0
Pull Requests Close Count1
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private