Skip to main content

A small package for working with FB2 files

Project description

FB2

PyPI

Python package for working with FictionBook2

Usage example

from FB2 import FictionBook2, Author
from urllib import request


book = FictionBook2()
book.titleInfo.title = "Example book"
book.titleInfo.annotation = "Small test book. Shows basics of FB2 library"
book.titleInfo.authors = [Author(firstName="Alex",
                                    middleName="Unknown",
                                    nickname="Ae_Mc",
                                    emails=["ae_mc@mail.ru"],
                                    homePages=["ae-mc.ru"])]
book.titleInfo.genres = ["sf", "sf_fantasy", "shortstory"]
book.titleInfo.coverPageImages = [
    request.urlopen("https://picsum.photos/1080/1920").read()]
book.titleInfo.sequences = [("Example books", 2)]
book.documentInfo.authors = ["Ae Mc"]
book.documentInfo.version = "1.1"
book.chapters = [
    ("Introduction", [
        "Introduction chapter first paragraph",
        "Introduction chapter second paragraph"]),
    ("1. Chapter one. FB2 format history", [
        "Introduction chapter first paragraph",
        "Introduction chapter second paragraph"])]
book.chapters.append(("2. Chapter two. Empty", []))
book.write("ExampleBook.fb2")

Requirements

  • iso-639 package

Installation

  • From pip: pip install fb2

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

FB2-0.1.7.tar.gz (7.2 kB view hashes)

Uploaded Source

Built Distribution

FB2-0.1.7-py3-none-any.whl (15.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page