{ "info": { "author": "Gregor von Laszewski", "author_email": "laszewski@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: MacOS X", "Environment :: OpenStack", "Environment :: Other Environment", "Environment :: Plugins", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows :: Windows 10", "Operating System :: OS Independent", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Topic :: Internet", "Topic :: Scientific/Engineering", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: User Interfaces", "Topic :: System", "Topic :: System :: Distributed Computing", "Topic :: System :: Shells", "Topic :: Utilities" ], "description": "\n# Bookmanager\n\n[![DOI](https://zenodo.org/badge/180580449.svg)](https://zenodo.org/badge/latestdoi/180580449)\n[![Version](https://img.shields.io/pypi/v/cyberaide-bookmanager.svg)](https://pypi.python.org/pypi/cyberaide-bookmanager)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/cyberaide/bookmanager/blob/master/LICENSE)\n[![Python](https://img.shields.io/pypi/pyversions/cyberaide-bookmanager.svg)](https://pypi.python.org/pypi/cyberaide-bookmanager)\n[![Format](https://img.shields.io/pypi/format/cyberaide-bookmanager.svg)](https://pypi.python.org/pypi/cyberaide-bookmanager)\n[![Status](https://img.shields.io/pypi/status/cyberaide-bookmanager.svg)](https://pypi.python.org/pypi/cyberaide-bookmanager)\n[![Travis](https://travis-ci.org/cyberaide/bookmanager.svg?branch=master)](https://travis-ci.org/cyberaide/bookmanager)\n\n\n\n\nBookmanager is a tool to create a publication from a number of sources on the\ninternet. It is especially useful to create customized books, lecture notes, or\nhandouts. Content is best integrated in markdown format as it is very fast to\nproduce the output. At present we only produce epubs, but it will be easy to\nalso create pdf, html, work, odt and others. As we use pandoc we can support the\nformats supported by it.\n\nImplemented Features:\n\n* Table of contents with indentation levels can be specified via yaml\n* Special variable substitution of elements defined in the yaml file\n* Documents are fetched from github \n* The documents will be inspected and the images found in them are fetched \n (we assume the images are relative to the document, http links will not be modified)\n* Automatic generation of a cover page\n* Output is generated in a dest directory\n\nPlaned enhancements:\n\n* integration of References via pandoc citeref\n* integration of Section, Table, Image references via pandoc crossref\n\nIf you like to help get in contact with Gregor von Laszewski\n\n\n```bash\n$ pip install cyberaide-bookmanager\n```\n\n## Usage\n\n\n```\nbookmanager -- a helper to create books from markdown files in a yaml TOC.\n\nUsage:\n bookmanager version\n bookmanager YAML cover\n bookmanager YAML get [--format=FORMAT] [--force]\n bookmanager YAML download\n bookmanager YAML level\n bookmanager YAML epub [--force]\n bookmanager YAML pdf\n bookmanager YAML html\n bookmanager YAML docx\n bookmanager YAML check [--format=FORMAT]\n bookmanager YAML urls [--format=FORMAT]\n bookmanager YAML list [--format=FORMAT] [--details]\n\n\nArguments:\n YAML the yaml file\n\nOptions:\n -h --help\n -f, --format=FORMAT [default: markdown]\n -d, --details [default: False]\n\nDescription:\n\n In principal you only need one command at this time. All other commands are\n available for test purposes.\n\n You can create an epub with\n\n bookmanager YAML get [--format=FORMAT]\n\n The command searches for all images within the markdown document and fetches\n them so the document can be created locally with the images. We assume all\n images in the md document are for now not specified via http locations but\n via relative locations.\n\n To view the document use your favourite ePub Reader\n\n Other commands include:\n\n bookmanager YAML download [--format=FORMAT]\n\n downloads the urls into the ./dest directory for local processing\n\n bookmanager YAML check [--format=FORMAT]\n\n checks if the urls in the yaml file exist\n\n bookmanager YAML urls [--format=FORMAT]\n\n lists all urls of the yaml file\n\n bookmanager YAML list [--format=FORMAT]\n\n lists the yaml file\n\n\n Not implemented are the following features:\n\n 1) pdf: bookmanager pdf book.yml\n\n YAML Table of Contents format:\n\n The table of contents for the book can be controlled with a simple yaml\n file that has some specific contextual enhancements. THis include the\n creation of a BOOK section that has the sections outlined in hierarchical\n form, and contains chapter and section headers without links that are\n automatically generated.\n\n Here is an example of a simple TOC yaml file:\n\n * https://github.com/cyberaide/bookmanager/blob/master/tests/python.yml\n\n Bugs and enhancement suggestions:\n\n * https://github.com/cyberaide/bookmanager/issues\n```\n\n## Cover Page \n\nBook manager can create a simple cover page for you.\n\nand example is given at \n\n\n* \n\n![Cover Page](https://github.com/cyberaide/bookmanager/raw/master/tests/example/cover-thumb.png)\n\n\n## Example creation\n\n```bash\n$ git clone https://github.com/cyberaide/bookmanager.git\n$ cd bookmanager\n$ pip install -e .\n$ bookmanager tests/python.yaml get\n$ open dest/book.epub\n```\n\n## References\n\n* Example Yamle file: \n* Home page: \n\n## Requirements\n\nBook manager requires the existence of some cloudmesh yaml files, In future releases we intend to remove them.\nSimply do \n\n```bash\n$ mkdir -p ~/.cloudmesh\n$ wget -P ~/.cloudmesh https://raw.githubusercontent.com/cloudmesh/cloudmesh-configuration/master/cloudmesh/configuration/etc/cloudmesh.yaml\n```\n\nIn addition we require an up to date version of pandoc. Please consult with the\npandoc documentation on how to do this. Unfortunately the versions distributed\nwith ubuntu are outdated. On ubuntu you can say:\n\n```bash\nwget -q https://github.com/jgm/pandoc/releases/download/2.7.2/pandoc-2.7.2-1-amd64.deb\nsudo dpkg -i pandoc-2.7.2-1-amd64.deb\npandoc --version\n```\nWe recommend pandoc version 2.7.2.\n\n## Example Yaml file\n\nThe following is an example for a table of contents yaml file that can be used\nto pull together content from different repositories.\n\n```\n---\nmetadata:\n image: \"cover.png\"\n title: \"Introduction to Python\"\n subtitle: \"for Cloud Computing\"\n author: 'Gregor von Laszewski'\n subauthor: \"Editor\"\n email: \"laszewski@gmail.com\"\n url: \"https://github.com/cyberaide/bookmanager\"\n description: \"Book creator\"\n abstract: \"my abstract\"\n keywords: \"pandoc\"\n stylesheet: \"epub.css\"\n dest: \"./dest/book\"\n filename: \"vonLaszewski-python.epub\"\ngit:\n \"book\": \"https://raw.githubusercontent.com/cloudmesh-community/book/master/chapters\"\n \"credit\": \"https://raw.githubusercontent.com/cyberaide/bookmanager/master/bookmanager/template\"\nBOOK:\n - PREFACE:\n - \"{git.credit}/disclaimer.md\"\n - INTRODUCTION:\n - \"{git.book}/prg/SECTION-PYTHON.md\"\n - \"{git.book}/prg/python/python-intro.md\"\n - \"{git.book}/prg/python/python-install.md\"\n - \"{git.book}/prg/python/python-interactive.md\"\n - \"{git.book}/prg/python/python-editor.md\"\n - \"{git.book}/prg/python/python.md\"\n - LIBRARIES:\n - \"{git.book}/prg/python/python-libraries.md\"\n - \"{git.book}/prg/python/python-data.md\"\n - \"{git.book}/prg/python/python-matplotlib.md\"\n - \"{git.book}/prg/python/python-docopts.md\"\n - \"{git.book}/prg/python/python-cmd5.md\"\n - \"{git.book}/prg/python/python-cmd.md\"\n - \"{git.book}/prg/python/opencv/opencv.md\"\n - \"{git.book}/prg/python/opencv/secchi.md\"\n - DATA:\n - \"{git.book}/SECTION/SECTION-DATA.md\"\n - \"{git.book}/data/formats.md\"\n - MONGO:\n - \"{git.book}/data/mongodb.md\"\n - \"{git.book}/data/mongoengine.md\"\n - OTHER:\n - \"{git.book}/prg/python/python-wordcount.md\"\n - \"{git.book}/prg/python/numpy/numpy.md\"\n - \"{git.book}/prg/python/scipy/scipy.md\"\n - \"{git.book}/prg/python/scikit-learn/scikit-learn.md\"\n - \"{git.book}/prg/python/random-forest/random-forest.md\"\n - \"{git.book}/prg/python/python-parallel.md\"\n - \"{git.book}/prg/python/dask/dask.md\"\n - APPLICATIONS:\n - \"{git.book}/prg/python/fingerprint/fingerprint.md\"\n - \"{git.book}/prg/python/facedetection/facedetection.md\"\n```\n\nIn case you have local files, you can add them with `file://`.\n\nLet us assume you have the files all stored in a chapters directory, than\nyou could use the following yaml file.\n\n```\n---\nmetadata:\n image: \"cover.png\"\n title: \"Introduction to Python\"\n subtitle: \"for Cloud Computing\"\n author: 'Gregor von Laszewski'\n subauthor: \"Editor\"\n email: \"laszewski@gmail.com\"\n url: \"https://github.com/cyberaide/bookmanager\"\n description: \"Book creator\"\n abstract: \"my abstract\"\n keywords: \"pandoc\"\n stylesheet: \"epub.css\"\n dest: \"./dest/book\"\n filename: \"vonLaszewski-python.epub\"\ngit:\n \"book\": \"https://raw.githubusercontent.com/cloudmesh-community/book/master/chapters\"\n \"book\": \"https://raw.githubusercontent.com/cloudmesh-community/book/master/chapters\"\n \"credit\": \"https://raw.githubusercontent.com/cyberaide/bookmanager/master/bookmanager/template\"\nfile:\n \"chapter\": \"file://../chapters\"\nBOOK:\n - PREFACE:\n - \"{git.credit}/disclaimer.md\"\n - INTRODUCTION:\n - \"{file.chapter}/prg/SECTION-PYTHON.md\"\n - \"{file.chapter}/prg/python/python-intro.md\"\n - \"{file.chapter}/prg/python/python-install.md\"\n - \"{file.chapter}/prg/python/python-interactive.md\"\n - \"{file.chapter}/prg/python/python-editor.md\"\n - \"{file.chapter}/prg/python/python.md\"\n - LIBRARIES:\n - \"{file.chapter}/prg/python/python-libraries.md\"\n - \"{file.chapter}/prg/python/python-data.md\"\n - \"{file.chapter}/prg/python/python-matplotlib.md\"\n - \"{file.chapter}/prg/python/python-docopts.md\"\n - \"{file.chapter}/prg/python/python-cmd5.md\"\n - \"{file.chapter}/prg/python/python-cmd.md\"\n - \"{file.chapter}/prg/python/opencv/opencv.md\"\n - \"{file.chapter}/prg/python/opencv/secchi.md\"\n - DATA:\n - \"{file.chapter}/SECTION/SECTION-DATA.md\"\n - \"{file.chapter}/data/formats.md\"\n - MONGO:\n - \"{file.chapter}/data/mongodb.md\"\n - \"{file.chapter}/data/mongoengine.md\"\n - OTHER:\n - \"{file.chapter}/prg/python/python-wordcount.md\"\n - \"{file.chapter}/prg/python/numpy/numpy.md\"\n - \"{file.chapter}/prg/python/scipy/scipy.md\"\n - \"{file.chapter}/prg/python/scikit-learn/scikit-learn.md\"\n - \"{file.chapter}/prg/python/random-forest/random-forest.md\"\n - \"{file.chapter}/prg/python/python-parallel.md\"\n - \"{file.chapter}/prg/python/dask/dask.md\"\n - APPLICATIONS:\n - \"{file.chapter}/prg/python/fingerprint/fingerprint.md\"\n - \"{file.chapter}/prg/python/facedetection/facedetection.md\"\n```\n\n## Automated github links\n\nIt is possible to replace the local link that will be added to the\nfiles with a link to a github repository. At this time this is only\nsupported for documents that are in the same repository.\n\nSimply add the following in case your local files are in\n`../chapter`. While specifying it in the `base`. This variable\nspecifies the link to the source. The variable github, will be used to\nreplace the base with a link to the github repository.\n\n```\nfile:\n \"github\": \"https://github.com/cloudmesh-community/book/blob/master/chapters\"\n \"base\": \"../chapters\"\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/cyberaide/bookmanager", "keywords": "pandoc book proceedings markdown epub", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "cyberaide-bookmanager", "package_url": "https://pypi.org/project/cyberaide-bookmanager/", "platform": "", "project_url": "https://pypi.org/project/cyberaide-bookmanager/", "project_urls": { "Homepage": "https://github.com/cyberaide/bookmanager" }, "release_url": "https://pypi.org/project/cyberaide-bookmanager/0.2.24/", "requires_dist": [ "oyaml", "docopt", "requests", "colorama", "tabulate", "munch", "pillow", "markdown", "cloudmesh-common" ], "requires_python": "", "summary": "Creating Books from content in different git and other cloud services.", "version": "0.2.24" }, "last_serial": 5915692, "releases": { "0.1.3": [ { "comment_text": "", "digests": { "md5": "d2db131d58e0b1249caec54fbd6aed89", "sha256": "ac35fd41d4bf589fefe2cbcd5d99d82b6b3ce3a20183aba65db1b81d951b24fa" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d2db131d58e0b1249caec54fbd6aed89", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4194399, "upload_time": "2019-04-15T23:07:50", "url": "https://files.pythonhosted.org/packages/91/f7/f56dba25845b77d85f097bbb422ac8386ffa05e3ef99f0941e7b6ac42af8/cyberaide_bookmanager-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12fc77069822a25e34677a6f1b9bd4af", "sha256": "2fc0f2ab6215a83407edda195f87cf3ace64ee14880da233994b67ed5f056612" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.1.3.tar.gz", "has_sig": false, "md5_digest": "12fc77069822a25e34677a6f1b9bd4af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4201452, "upload_time": "2019-04-15T23:07:55", "url": "https://files.pythonhosted.org/packages/6a/4d/9546a694fe22171929e28d583279596deccf37d19cc242e18c066dec0645/cyberaide-bookmanager-0.1.3.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "58febd648b2fedab1ad78703e8f78956", "sha256": "1bdb18237f48f954dc70659865efb1857ad37491d2aaf289975ed4466896852c" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "58febd648b2fedab1ad78703e8f78956", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4195677, "upload_time": "2019-04-17T17:50:29", "url": "https://files.pythonhosted.org/packages/e9/c8/fa8e3967449296576fb8c39de7e5222a5c44f272ef5e92ee894a570f8c32/cyberaide_bookmanager-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "db563da5a23f1853206ed5e75778434d", "sha256": "54c1bfada539ecc62bad8020dd1dab3735a50df5b463689ba141c38a1966bf4c" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.1.7.tar.gz", "has_sig": false, "md5_digest": "db563da5a23f1853206ed5e75778434d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4202554, "upload_time": "2019-04-17T17:50:32", "url": "https://files.pythonhosted.org/packages/d3/9b/44e5e165ab915dd9a8c6520d4d84fd537e6474a0c5462943e8b11aad080b/cyberaide-bookmanager-0.1.7.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "5f8484917fdd96631d5d99f2a504b1e9", "sha256": "1782aaee41aa7383aaf0b7ab5656f66f2b8c40fe25907d97820c53cce90fdb74" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f8484917fdd96631d5d99f2a504b1e9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4197471, "upload_time": "2019-04-18T11:57:17", "url": "https://files.pythonhosted.org/packages/22/9b/3f0d99b87629081d46fecc1bacac29087a124f7fb04510a0270aff06236f/cyberaide_bookmanager-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3a56caa45a481c22bc7b3dcb12333d7", "sha256": "f63f50a21f42db36938b6c320fafe0cf8d39f6b7325583f9a754af3cced617e9" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.1.tar.gz", "has_sig": false, "md5_digest": "a3a56caa45a481c22bc7b3dcb12333d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4203902, "upload_time": "2019-04-18T11:57:19", "url": "https://files.pythonhosted.org/packages/de/81/23109a512f63ea616c8c78142ccad23777515e1920590a79678283a14fb6/cyberaide-bookmanager-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "8717d8e9ff9733d218dfcd81ddb37aef", "sha256": "177d44163cc7eec0a298b286c8dc2f08605c238ff1b065d4bbbe62db92fbd7cb" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8717d8e9ff9733d218dfcd81ddb37aef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4200393, "upload_time": "2019-05-01T15:42:30", "url": "https://files.pythonhosted.org/packages/23/6f/3a519e47ca5b63b207beebacb9f0c890c25bfc459a3776c0b3e8b6bc1c17/cyberaide_bookmanager-0.2.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6807045180b7664aeaf2691ae95f8d8", "sha256": "defa4ec5fc16d04cc13599cdad8e9d70133231f8a691d7575ccaaf311ee8dcb6" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.10.tar.gz", "has_sig": false, "md5_digest": "f6807045180b7664aeaf2691ae95f8d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4206178, "upload_time": "2019-05-01T15:42:32", "url": "https://files.pythonhosted.org/packages/42/0c/1b7c9175aa0af818d528cdf6b850509b13ea212d50bbafa640f34c5c7e45/cyberaide-bookmanager-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "34beb16396ab95c88004ae3a8f4f82ec", "sha256": "9581dc82ebe492222f6f5aeaa0d2dd1bdc4300e9fffda3fa19382cb97fe27927" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "34beb16396ab95c88004ae3a8f4f82ec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4200453, "upload_time": "2019-08-09T11:26:43", "url": "https://files.pythonhosted.org/packages/4c/49/27b195f7fd705c800b91f7b2530615197a56ae4114749279212b707672c9/cyberaide_bookmanager-0.2.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9db2ff61758bdbd44bcc7ea6cf09dfe1", "sha256": "d858d978ac29e0692a2e17646e83c1776003bd45dd1f1624983fdf6203128fac" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.11.tar.gz", "has_sig": false, "md5_digest": "9db2ff61758bdbd44bcc7ea6cf09dfe1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4206360, "upload_time": "2019-08-09T11:26:46", "url": "https://files.pythonhosted.org/packages/bf/55/49ba73e1f413d4f335cc2ca03c49b734e81a9aee6181d461798397cc53d7/cyberaide-bookmanager-0.2.11.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "078722b2621bdb3598e7d89964c4cc1f", "sha256": "91df4e18ce5ab0683feb6e38e471d0275b38be030199004ddf5dbbcdb56a9b45" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "078722b2621bdb3598e7d89964c4cc1f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4201801, "upload_time": "2019-08-09T16:40:35", "url": "https://files.pythonhosted.org/packages/2a/b2/68ec89dd26e93c043bb8565ebed3c3d4b034572177de431649820bf880e6/cyberaide_bookmanager-0.2.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e599a379fbe2b6e722b05d529855cf2", "sha256": "31ca202384243f01135ffa2759e63776de6d027fb651252acd24da40eb7bb4e4" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.12.tar.gz", "has_sig": false, "md5_digest": "3e599a379fbe2b6e722b05d529855cf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4207469, "upload_time": "2019-08-09T16:40:38", "url": "https://files.pythonhosted.org/packages/14/5f/fc1af074b1152ecf97ddb85e89c47a47850c07faa020ec12dc6ef34ec3eb/cyberaide-bookmanager-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "9e4ba2643fee405152d7d5520be69823", "sha256": "afd057e3ccb818957a2c7948f32f20d1c9682670e3b8295b367614663e1d85f0" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9e4ba2643fee405152d7d5520be69823", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4201799, "upload_time": "2019-08-09T16:51:28", "url": "https://files.pythonhosted.org/packages/39/cb/4b7f0819c44cb8728708edaf4739818bd5d4ee13d96a0b5e8b125e62fc69/cyberaide_bookmanager-0.2.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "892316cb23c2800fc45da242eed76f9c", "sha256": "3abfe3cb97e7f6ccd1cb4dfb0faddbaf00eb0295e96cc397e95a551505a7cb90" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.13.tar.gz", "has_sig": false, "md5_digest": "892316cb23c2800fc45da242eed76f9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4207492, "upload_time": "2019-08-09T16:51:30", "url": "https://files.pythonhosted.org/packages/f1/bb/407121de2095f961db61e6a68882631e66077166a396a07dfb7fd91ba93d/cyberaide-bookmanager-0.2.13.tar.gz" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "d2a652ab915cfeda45060a4fa0dc5946", "sha256": "92ef0136b89b8378a8d2ac7989aed510a45b1698aa2b397a5eb061fb550331d5" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d2a652ab915cfeda45060a4fa0dc5946", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4202324, "upload_time": "2019-08-10T01:20:29", "url": "https://files.pythonhosted.org/packages/e8/f8/c6528f3480d4f1b1b5d10d39baa3fe2ba483e5c41c60bef4bb4b114ca10c/cyberaide_bookmanager-0.2.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25e037456be929e8ee86c776cb8fc994", "sha256": "d3b15415a3470cb0f9c58972ef0728bd1871d3ad240c7f1e455c9aa62f91ad24" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.14.tar.gz", "has_sig": false, "md5_digest": "25e037456be929e8ee86c776cb8fc994", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208230, "upload_time": "2019-08-10T01:20:34", "url": "https://files.pythonhosted.org/packages/4e/1a/eb5344e6162e8cd39abc2498798967f774e7d85cfab555db804bdcb7791b/cyberaide-bookmanager-0.2.14.tar.gz" } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "b0ef6ccf0b35a2497cfc8cb4a920ca33", "sha256": "307db9df31ee15e76e8e99fcd53a4eb17267c4f8a6e5d8241198c81f802272e1" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0ef6ccf0b35a2497cfc8cb4a920ca33", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4202315, "upload_time": "2019-08-10T02:09:11", "url": "https://files.pythonhosted.org/packages/24/9c/d9853350eb48c744421954f1404e1133dc09fe75dae44430fac9799905e6/cyberaide_bookmanager-0.2.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "242227a6e393b2c5ae7f1a3d47a0453a", "sha256": "a728c38a0b89801b98e985ce60261bee2c246855ba0ec553fec2aaa1cccb678f" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.15.tar.gz", "has_sig": false, "md5_digest": "242227a6e393b2c5ae7f1a3d47a0453a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208201, "upload_time": "2019-08-10T02:09:17", "url": "https://files.pythonhosted.org/packages/aa/f3/c2a1ee0f51fcc9f19279df595799dbcad8a37c7e7e8e713d1f8f313217e1/cyberaide-bookmanager-0.2.15.tar.gz" } ], "0.2.16": [ { "comment_text": "", "digests": { "md5": "b771f1035cc6738f1f21a0eee96f86d2", "sha256": "e3dd7753a7572b89ad324e79901e5243d9e59dfe4987aabe90f38e03eee1648d" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b771f1035cc6738f1f21a0eee96f86d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4202316, "upload_time": "2019-08-10T02:11:38", "url": "https://files.pythonhosted.org/packages/d3/e5/0fbecd356de543113c69f6fc26b436b664014486734bbbf08ffd9fb6f6dd/cyberaide_bookmanager-0.2.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92ad81960b03231e0273bbe89e587f5c", "sha256": "a1825c9c4b248e303d824b3a6ac73844b1c97ff243443efda876dfd1b472bd7c" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.16.tar.gz", "has_sig": false, "md5_digest": "92ad81960b03231e0273bbe89e587f5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208205, "upload_time": "2019-08-10T02:11:42", "url": "https://files.pythonhosted.org/packages/de/6a/30f84a75dfda3d4f4954ec23f2693f882148b1fc5119e90be4d37beb430e/cyberaide-bookmanager-0.2.16.tar.gz" } ], "0.2.17": [ { "comment_text": "", "digests": { "md5": "a9a484f5811a1b62b26863960ccc04d4", "sha256": "b7ba7f06ab7d4edf8dd41d8ffc5ab97bd1db1fd33e9df304f2490ba99462eb3b" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a9a484f5811a1b62b26863960ccc04d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4202378, "upload_time": "2019-08-21T12:59:00", "url": "https://files.pythonhosted.org/packages/0d/57/2eeca635dbec6e7218c0f4d0599ecc065127e165a79792d57454af55cd66/cyberaide_bookmanager-0.2.17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e6430ec402e521716729d8ca9dbeadd", "sha256": "0f58714b68c5caf10ac5c567ebc6b4d1f390a1bb56a40a3ac8da791fd7eb6ef6" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.17.tar.gz", "has_sig": false, "md5_digest": "3e6430ec402e521716729d8ca9dbeadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208300, "upload_time": "2019-08-21T12:59:03", "url": "https://files.pythonhosted.org/packages/41/08/dbf677e3fe062863a32d274c56be93d6b9526ce635884c776c0a80060849/cyberaide-bookmanager-0.2.17.tar.gz" } ], "0.2.18": [ { "comment_text": "", "digests": { "md5": "cd6904eedc6114baefcbe3491833a19a", "sha256": "55bcf1e34f57b17a8a45e4d9ab936bc4590a14813fffde2c52ce2a6da025f244" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd6904eedc6114baefcbe3491833a19a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4202444, "upload_time": "2019-08-21T13:54:26", "url": "https://files.pythonhosted.org/packages/6a/7a/a13a6ec6aa042ae06597e7b4bbe2da9071174299d420788e78d4ca96c8b1/cyberaide_bookmanager-0.2.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17f9bf1526584c7724afca1b1a6df405", "sha256": "21a6b85ccd9af66a34e37413efbcb4c6ca8604984536432a0f3e7fafe645af65" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.18.tar.gz", "has_sig": false, "md5_digest": "17f9bf1526584c7724afca1b1a6df405", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208384, "upload_time": "2019-08-21T13:54:30", "url": "https://files.pythonhosted.org/packages/47/ed/86c61ddd39f4995c9da48e8e5f36667afe241b6a0a94dc3312c25a3be86a/cyberaide-bookmanager-0.2.18.tar.gz" } ], "0.2.19": [ { "comment_text": "", "digests": { "md5": "fa6bf22a149baedf24d7574e27502664", "sha256": "e4a3d7b10ea31474e95063485231e8ebc5abb9d1e69f82a48f14c22867e790a8" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa6bf22a149baedf24d7574e27502664", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4202504, "upload_time": "2019-08-21T17:26:45", "url": "https://files.pythonhosted.org/packages/e4/47/19508f9f62aaba0bfa23f400c3868e2ef1d8a5600d94fcab82f4cfa43d0a/cyberaide_bookmanager-0.2.19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e7565dfc107d1025caffee03182fa891", "sha256": "ae7a8b768de05bce396c102812c427550f95605509491769029f1bad03af43b9" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.19.tar.gz", "has_sig": false, "md5_digest": "e7565dfc107d1025caffee03182fa891", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208408, "upload_time": "2019-08-21T17:26:49", "url": "https://files.pythonhosted.org/packages/47/88/d6867fdf9b0feb86cc8fab4606c427680c8bfac0edd2013497afcf9f9728/cyberaide-bookmanager-0.2.19.tar.gz" } ], "0.2.20": [ { "comment_text": "", "digests": { "md5": "424cff14043fff5a4fe4068092d840cb", "sha256": "f66720342de8cf7a52326ae28b17b94f161e7654c0067bc426a611dbfabe47ec" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "424cff14043fff5a4fe4068092d840cb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4205992, "upload_time": "2019-08-24T11:04:46", "url": "https://files.pythonhosted.org/packages/75/0f/a3b4735600964a1cfa469cbc56f6fa3f683ca2a7a1de9cc16e3ca3340034/cyberaide_bookmanager-0.2.20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c07729741c22497326dce9cddc1a0c44", "sha256": "278860b6c071aafe618caefe86a3a409c945bae08825072a8e93e04e19cbb955" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.20.tar.gz", "has_sig": false, "md5_digest": "c07729741c22497326dce9cddc1a0c44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208862, "upload_time": "2019-08-24T11:04:49", "url": "https://files.pythonhosted.org/packages/4c/fc/b5949196785703d38b52ce70cbd017c4032cb259e5e03421f41de942436f/cyberaide-bookmanager-0.2.20.tar.gz" } ], "0.2.21": [ { "comment_text": "", "digests": { "md5": "ebe26d010a2ccf0d97abc28c655f0f7f", "sha256": "3a795901ed100511d1d7eebd67ada26accd9de38744743f4eef3f726c32952b9" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ebe26d010a2ccf0d97abc28c655f0f7f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4205980, "upload_time": "2019-09-03T23:38:45", "url": "https://files.pythonhosted.org/packages/f7/25/57a149de263b043f2006dc7b4bbf5d3f57793f8b18e1dc6187f72fcdd817/cyberaide_bookmanager-0.2.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2d2ab3d0a38598c30d7eca89fa83f04", "sha256": "021445d338986330473cdbeae0524f9098bb8409c552232f822cf8dcec8ad734" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.21.tar.gz", "has_sig": false, "md5_digest": "f2d2ab3d0a38598c30d7eca89fa83f04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208893, "upload_time": "2019-09-03T23:38:49", "url": "https://files.pythonhosted.org/packages/8a/ef/f82e5f8efa7d7691fc758f15f32dc53976c11fcdb5fedbdbf2a5860014f2/cyberaide-bookmanager-0.2.21.tar.gz" } ], "0.2.22": [ { "comment_text": "", "digests": { "md5": "ae4123d6ecfaed5d2d8f2f8047f087e8", "sha256": "1f6488229fd320b9cc3333327600087e41168332a5834c43ea7c88d8cae2daf4" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.22-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ae4123d6ecfaed5d2d8f2f8047f087e8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4206059, "upload_time": "2019-10-01T16:27:01", "url": "https://files.pythonhosted.org/packages/99/7b/cf622a5e640200410dee988f488cd6dadb88678e974758d04209da480717/cyberaide_bookmanager-0.2.22-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40af84a0d67acd6cb8180fb66aa93eca", "sha256": "37aa90fc8cc03feb0c57b98b47c77c82e81964eb878e271588a3899d3725ef5a" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.22.tar.gz", "has_sig": false, "md5_digest": "40af84a0d67acd6cb8180fb66aa93eca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208948, "upload_time": "2019-10-01T16:27:10", "url": "https://files.pythonhosted.org/packages/39/ca/446551b09daabc1abd5af9de7a00d2273e5ff7b76427dab9d13122fa4959/cyberaide-bookmanager-0.2.22.tar.gz" } ], "0.2.23": [ { "comment_text": "", "digests": { "md5": "0bad044cfb802fd614308c11ef83bbb9", "sha256": "4613879472d2e523eb3759d0fde810395018344c654fa9362988f6300030a464" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.23-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0bad044cfb802fd614308c11ef83bbb9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4206061, "upload_time": "2019-10-01T17:31:24", "url": "https://files.pythonhosted.org/packages/1f/b5/c45015908faae3b3a65bb2b5792b3c7f71dc08c673d3e5c1b2b3897ba446/cyberaide_bookmanager-0.2.23-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "731b7b21aa912b692732e2caeb7f909b", "sha256": "a7373c515de9b5b6d673f0dc728c1a83a6bdaf53e9d35e764360e8d6394d91f6" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.23.tar.gz", "has_sig": false, "md5_digest": "731b7b21aa912b692732e2caeb7f909b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208941, "upload_time": "2019-10-01T17:31:29", "url": "https://files.pythonhosted.org/packages/52/c8/5426b77ca79942832baf1646fff8b17fd6931cea4ea9bc2d9a12dd2c114c/cyberaide-bookmanager-0.2.23.tar.gz" } ], "0.2.24": [ { "comment_text": "", "digests": { "md5": "24836e1d0004f25ff92a01920335e9e1", "sha256": "9ac9fa4e5b675a7655c1dc0c39f9c0ebf744f4b54ff53a502977523904e16b01" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24836e1d0004f25ff92a01920335e9e1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4206060, "upload_time": "2019-10-02T01:42:32", "url": "https://files.pythonhosted.org/packages/77/66/16b63f748fe003a6cc3e4328105f597c06c7b0369fa1362a5c65f4ab478c/cyberaide_bookmanager-0.2.24-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92d601bc87a8383c7b37e992d99c8e70", "sha256": "9f5fd5fc1c31958b3d0a366666997645923e9f4fd2dab6d49a69222a1e913d5a" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.24.tar.gz", "has_sig": false, "md5_digest": "92d601bc87a8383c7b37e992d99c8e70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208945, "upload_time": "2019-10-02T01:42:38", "url": "https://files.pythonhosted.org/packages/0a/5b/0b67873c97804c35765772e329da904acb8966c75304e67dbd7f1abb749e/cyberaide-bookmanager-0.2.24.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "783fb21d144b89e0b497c47d0f6d52cd", "sha256": "e9d6ea73a0ee4c87cc97cb3803d43cbf40743bf41e55eea0039c34e87b26f5a7" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "783fb21d144b89e0b497c47d0f6d52cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4199995, "upload_time": "2019-04-19T22:26:26", "url": "https://files.pythonhosted.org/packages/00/66/aac4c4c10c447a1f8715716ef495bb173fbfa42904193dbe585d232aab1e/cyberaide_bookmanager-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "771ac3747de8ce079573a1811513cc70", "sha256": "8b179649f1bfb05ff85440488f4d677a7e7ff4f13a56d0a344f4a638d7ba3ffa" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.3.tar.gz", "has_sig": false, "md5_digest": "771ac3747de8ce079573a1811513cc70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4205674, "upload_time": "2019-04-19T22:27:04", "url": "https://files.pythonhosted.org/packages/f8/a1/babec2ba2f9da8dde6aed02dd9f6aa3c8ddd5c8f4e5ef149fc11279f7a83/cyberaide-bookmanager-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "5824f1ef9c1f70e3d0a6e865e6d36237", "sha256": "1c5f63dd62a137692a62b90cb4889123363a52ec1fdcb4af5cc2d29d0155e7ec" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5824f1ef9c1f70e3d0a6e865e6d36237", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4200017, "upload_time": "2019-04-25T19:47:59", "url": "https://files.pythonhosted.org/packages/a4/5e/b6e0750cac91a61ef6d21c823c40884adefff00f643c8381ca3ac580bd5c/cyberaide_bookmanager-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ecb66ba86b3416714ecb687d7b9738b", "sha256": "e9fe19375ff06a293e3e1fbd969585be3cc656f7aaf9b12c0146d919d087676e" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.4.tar.gz", "has_sig": false, "md5_digest": "2ecb66ba86b3416714ecb687d7b9738b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4205703, "upload_time": "2019-04-25T19:48:02", "url": "https://files.pythonhosted.org/packages/11/6e/bf239794b22c042c827fb7eacd69f5708ecd0408fec89e221086905a7374/cyberaide-bookmanager-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "76f21dcca5031b21f29610826844af0d", "sha256": "3f920aa6a68c66f234e1fd30928aec88f2ab6801b49ad035634589000bb03695" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "76f21dcca5031b21f29610826844af0d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4200228, "upload_time": "2019-04-29T18:04:03", "url": "https://files.pythonhosted.org/packages/a2/80/37559f91d5ff7295a385da0adf5b1b1a33605351e639aa21977c8d7844f5/cyberaide_bookmanager-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33fb0d86616e63946be2f353d606522d", "sha256": "063676648e3cc9ae403b0fe2f2aee19f12bb9d3fdc4d675939ebc46d1da98cef" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.5.tar.gz", "has_sig": false, "md5_digest": "33fb0d86616e63946be2f353d606522d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4205957, "upload_time": "2019-04-29T18:04:09", "url": "https://files.pythonhosted.org/packages/f2/fd/dba38b24da6baf69d8b43661d4232916ee0ec9f135d4bb94ca9becb612a3/cyberaide-bookmanager-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "1c66fac93832d0d50eb62ee386d4dde7", "sha256": "d03969fe49649b632000b2da15368015e21b7889b273d44b2dc08fbdf8c278b6" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1c66fac93832d0d50eb62ee386d4dde7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4200278, "upload_time": "2019-04-29T18:32:32", "url": "https://files.pythonhosted.org/packages/b8/1c/d87e03f224457b80f4d5f4a86218a4c767a2fa2170fd214e965592ad6e2a/cyberaide_bookmanager-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ede6319f4d6a2244980837469d6ecb07", "sha256": "9b6e9a67ef4cd5cb742b063cf9fddde6883cc3a9a6bddad9abff8edeeeb6b897" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.6.tar.gz", "has_sig": false, "md5_digest": "ede6319f4d6a2244980837469d6ecb07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4206020, "upload_time": "2019-04-29T18:32:38", "url": "https://files.pythonhosted.org/packages/e7/30/9c594b7833955d17f5f9869332e46d48d573187121eeb536f8f6ed6ec1d6/cyberaide-bookmanager-0.2.6.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "0430ee368aa254af2d93e91b888b5084", "sha256": "44488e9babaa200eee0d0b85ccec3280325625deaa3286b0d2516a523bf687ba" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0430ee368aa254af2d93e91b888b5084", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4200344, "upload_time": "2019-05-01T15:14:23", "url": "https://files.pythonhosted.org/packages/93/2e/2879c9b21aba8d6d86113c38b5ee9825bc59c6c98c91f447307e89491df1/cyberaide_bookmanager-0.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bac1a73555653d3ba96a35b765298b1c", "sha256": "44a34af78b4ac048ba25b96e5590721aba9aee068abcb72b529a2a02914c171c" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.8.tar.gz", "has_sig": false, "md5_digest": "bac1a73555653d3ba96a35b765298b1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4206144, "upload_time": "2019-05-01T15:14:26", "url": "https://files.pythonhosted.org/packages/7a/53/c4965f8e0caec4e60bd35dbd2bee0d7fb13db38208c0138df8b8e9ed3073/cyberaide-bookmanager-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "50d3a7b6f8aca5925637044f713f4539", "sha256": "6524b0311a9bb20ed9cc347ce56a2601c340614795b8d6e26d1cf385564feb1f" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "50d3a7b6f8aca5925637044f713f4539", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4200364, "upload_time": "2019-05-01T15:20:56", "url": "https://files.pythonhosted.org/packages/c1/2c/c93b66e4aed08fd706e7751cbdf43e5f6ece19c9b079da19841a62c28f51/cyberaide_bookmanager-0.2.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54887d1f82f25aebdae2e02a16246926", "sha256": "fa317521a84d2cd6050d9030f240a01ef929b5e707d62a29c9062fcac7ba5bce" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.9.tar.gz", "has_sig": false, "md5_digest": "54887d1f82f25aebdae2e02a16246926", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4206114, "upload_time": "2019-05-01T15:20:59", "url": "https://files.pythonhosted.org/packages/4b/d9/55fb5548cc2652463ddc97a177d6b9ae5aafa5912d0e62409a01e06b75ff/cyberaide-bookmanager-0.2.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "24836e1d0004f25ff92a01920335e9e1", "sha256": "9ac9fa4e5b675a7655c1dc0c39f9c0ebf744f4b54ff53a502977523904e16b01" }, "downloads": -1, "filename": "cyberaide_bookmanager-0.2.24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24836e1d0004f25ff92a01920335e9e1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4206060, "upload_time": "2019-10-02T01:42:32", "url": "https://files.pythonhosted.org/packages/77/66/16b63f748fe003a6cc3e4328105f597c06c7b0369fa1362a5c65f4ab478c/cyberaide_bookmanager-0.2.24-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92d601bc87a8383c7b37e992d99c8e70", "sha256": "9f5fd5fc1c31958b3d0a366666997645923e9f4fd2dab6d49a69222a1e913d5a" }, "downloads": -1, "filename": "cyberaide-bookmanager-0.2.24.tar.gz", "has_sig": false, "md5_digest": "92d601bc87a8383c7b37e992d99c8e70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4208945, "upload_time": "2019-10-02T01:42:38", "url": "https://files.pythonhosted.org/packages/0a/5b/0b67873c97804c35765772e329da904acb8966c75304e67dbd7f1abb749e/cyberaide-bookmanager-0.2.24.tar.gz" } ] }