Skip to main content

Implementation of the Apple’s Binary Plist and the NSKeyedArchiver format

Usage

Binary Plists

Generating bplist is easy, and similar to the plistlib module in Python’s Standard Library

from bpylist import bplist

bpylist.generate(my_object)

Reading is easy as well. The generate function takes a bytes object and returns the top-level object of the binary plist.

from bpylist import bplist

with open('myplist.plist', 'rb') as f:
    bpylist.parse(f.read())

KeyedArchives

NSKeyedArchiver is an Apple proprietary serialization format for Cocoa objects. bpylist supports reading and writing NSKeyedArchiver compatible archives. The API is similar to the binary plist API.

Unarchiving an object

from bpylist import archiver

with open('my_archived_object', 'rb') as f:
    archiver.unarchive(f.read())

Archiving an object

from bpylist import archiver

my_object = { 'foo':'bar', 'some_array': [1,2,3,4] }
archiver.archive(my_object)

Custom objects

If you archive includes classes that are not “standard” Cocoa classes (NSString, NSNumber, NSDate, NSNull, NSDictionary or NSArray), you register a Python class that the Cocoa class maps to. The Python class needs to implement the encode_archive and decode_archive methods.

## Define a Python Class

from bpylist import archiver

class MyClass:
    first_property = None
    second_property = None

    def __init__(self, first_property, second_property):
        self.first_property = first_property
        self.second_property = second_property

    def encode_archive(self, archive):
        archive.encode('first_property', self.first_property)
        archive.encode('second_property', self.second_property)

    def decode_archive(archive):
        first = archive.decode('first_property')
        second = archive.decode('second_property')
        return MyClass(first, second)

## Register the class for the Cocoa class 'MyCocoaClass'

archiver.update_class_map({ 'MyCocoaClass': FooArchive })

License

MIT License

Copyright (c) 2017 Marketcircle Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Release files for bpylist 0.1.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bpylist 0.1.4
File Size Uploaded
bpylist-0.1.4.tar.gz 15.8 kB Details

Release files / bpylist-0.1.4.tar.gz

Download URL bpylist-0.1.4.tar.gz
Size 15.8 kB
Tags Source
SHA-256 checksum
How to use checksums
ac065c9f7b804a201999ebbc31b02df18e0fc29e03bcb1eac3e63696599b88ce
BLAKE2b-256 checksum
How to use checksums
74b8d7f422d514c0a3ed714614477063bbc2bd9bdda2d6b86df0172d77ff9e95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.4 This release

1 release file

0.1.3

1 release file

0.1.2

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page