示例#1
0
文件: __init__.py 项目: MSylvia/KSP
def sidecar(book, requested_guid = None, annotations_list = None):
	if not annotations_list:
		annotations_list = annotations.get_all(book.asin)
	if book.content_type == _CONTENT_TYPE_MOBI:
		return mbp.assemble_sidecar(book, requested_guid, annotations_list)
	if book.content_type == _CONTENT_TYPE_MOBI8:
		return han.assemble_sidecar(book, requested_guid, annotations_list)
示例#2
0
def sidecar(book, requested_guid=None, annotations_list=None):
    if not annotations_list:
        annotations_list = annotations.get_all(book.asin)
    if book.content_type == _CONTENT_TYPE_MOBI:
        return mbp.assemble_sidecar(book, requested_guid, annotations_list)
    if book.content_type == _CONTENT_TYPE_MOBI8:
        return han.assemble_sidecar(book, requested_guid, annotations_list)
示例#3
0
文件: mbp_test.py 项目: akleiw/KSP
# testing
import sys, os.path, time
from collections import namedtuple

import mbp

ppath = os.path.join(__file__, '../../..')
sys.path += [ os.path.join(ppath, 'src'), os.path.join(ppath, 'etc') ]
import config
config.database_path = os.path.join(ppath, 'captures/mbp')
import annotations


ASIN = '34436c3a-8233-41f9-aed2-4cd4b019cb3e'

sidecar_list = annotations.get_all(ASIN)
for s in sidecar_list:
	print(*s)
book = namedtuple('_Book', 'file_path added_to_library')(os.path.join(config.database_path, 'test.mobi'), int(time.time()))

print()

content_type, b = mbp.assemble_sidecar(book, sidecar_list)
l = 0
print("Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F\n")
while l < len(b):
	line = b[l:min(len(b), l+32)]
	count = len(line)

	fmt = "%08x  " + ("%02x " * count) + ("   " * (32 - count)) + "  " # + ("%c" * count)
	s = fmt % tuple([l, ] + [c for c in line]) # * 2)
示例#4
0
文件: mbp_test.py 项目: nomada2/KSP
# testing
import sys, os.path, time
from collections import namedtuple

import mbp

ppath = os.path.join(__file__, '../../..')
sys.path += [ os.path.join(ppath, 'src'), os.path.join(ppath, 'etc') ]
import config
config.database_path = os.path.join(ppath, 'captures/mbp')
import annotations


ASIN = '34436c3a-8233-41f9-aed2-4cd4b019cb3e'

sidecar_list = annotations.get_all(ASIN)
for s in sidecar_list:
	print(*s)
book = namedtuple('_Book', 'file_path added_to_library')(os.path.join(config.database_path, 'test.mobi'), int(time.time()))

print()

content_type, b = mbp.assemble_sidecar(book, None, sidecar_list)
l = 0
print("Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F\n")
while l < len(b):
	line = b[l:min(len(b), l+32)]
	count = len(line)

	fmt = "%08x  " + ("%02x " * count) + ("   " * (32 - count)) + "  " # + ("%c" * count)
	s = fmt % tuple([l, ] + [c for c in line]) # * 2)
示例#5
0
文件: __init__.py 项目: akleiw/KSP
def sidecar(book, annotations_list = None):
	if book.content_type == CONTENT_TYPE_MOBIPOCKET:
		if not annotations_list:
			annotations_list = annotations.get_all(book.asin)
		return mbp.assemble_sidecar(book, annotations_list)