{ "info": { "author": "dan", "author_email": "dan@talentpair.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Office/Business :: Office Suites", "Topic :: Software Development :: Libraries" ], "description": ".. image:: https://travis-ci.org/python-openxml/python-docx.svg?branch=master\n :target: https://travis-ci.org/python-openxml/python-docx\n\n*python-docx* is a Python library for creating and updating Microsoft Word\n(.docx) files.\n\nMore information is available in the `python-docx documentation`_.\n\n.. _`python-docx documentation`:\n https://python-docx.readthedocs.org/en/latest/\n\n\n.. :changelog:\n\nRelease History\n---------------\n\n0.8.5 (2015-02-21)\n++++++++++++++++++\n\n- Fix #149: KeyError on Document.add_table()\n- Fix #78: feature: add_table() sets cell widths\n- Add #106: feature: Table.direction (i.e. right-to-left)\n- Add #102: feature: add CT_Row.trPr\n\n\n0.8.4 (2015-02-20)\n++++++++++++++++++\n\n- Fix #151: tests won't run on PyPI distribution\n- Fix #124: default to inches on no TIFF resolution unit\n\n\n0.8.3 (2015-02-19)\n++++++++++++++++++\n\n- Add #121, #135, #139: feature: Font.color\n\n\n0.8.2 (2015-02-16)\n++++++++++++++++++\n\n- Fix #94: picture prints at wrong size when scaled\n- Extract `docx.document.Document` object from `DocumentPart`\n\n Refactor `docx.Document` from an object into a factory function for new\n `docx.document.Document object`. Extract methods from prior `docx.Document`\n and `docx.parts.document.DocumentPart` to form the new API class and retire\n `docx.Document` class.\n\n- Migrate `Document.numbering_part` to `DocumentPart.numbering_part`. The\n `numbering_part` property is not part of the published API and is an\n interim internal feature to be replaced in a future release, perhaps with\n something like `Document.numbering_definitions`. In the meantime, it can\n now be accessed using ``Document.part.numbering_part``.\n\n\n0.8.1 (2015-02-10)\n++++++++++++++++++\n\n- Fix #140: Warning triggered on Document.add_heading/table()\n\n\n0.8.0 (2015-02-08)\n++++++++++++++++++\n\n- Add styles. Provides general capability to access and manipulate paragraph,\n character, and table styles.\n\n- Add ParagraphFormat object, accessible on Paragraph.paragraph_format, and\n providing the following paragraph formatting properties:\n\n + paragraph alignment (justfification)\n + space before and after paragraph\n + line spacing\n + indentation\n + keep together, keep with next, page break before, and widow control\n\n- Add Font object, accessible on Run.font, providing character-level\n formatting including:\n\n + typeface (e.g. 'Arial')\n + point size\n + underline\n + italic\n + bold\n + superscript and subscript\n\nThe following issues were retired:\n\n- Add feature #56: superscript/subscript\n- Add feature #67: lookup style by UI name\n- Add feature #98: Paragraph indentation\n- Add feature #120: Document.styles\n\n**Backward incompatibilities**\n\nParagraph.style now returns a Style object. Previously it returned the style\nname as a string. The name can now be retrieved using the Style.name\nproperty, for example, `paragraph.style.name`.\n\n\n0.7.6 (2014-12-14)\n++++++++++++++++++\n\n- Add feature #69: Table.alignment\n- Add feature #29: Document.core_properties\n\n\n0.7.5 (2014-11-29)\n++++++++++++++++++\n\n- Add feature #65: _Cell.merge()\n\n\n0.7.4 (2014-07-18)\n++++++++++++++++++\n\n- Add feature #45: _Cell.add_table()\n- Add feature #76: _Cell.add_paragraph()\n- Add _Cell.tables property (read-only)\n\n\n0.7.3 (2014-07-14)\n++++++++++++++++++\n\n- Add Table.autofit\n- Add feature #46: _Cell.width\n\n\n0.7.2 (2014-07-13)\n++++++++++++++++++\n\n- Fix: Word does not interpret as line feed\n\n\n0.7.1 (2014-07-11)\n++++++++++++++++++\n\n- Add feature #14: Run.add_picture()\n\n\n0.7.0 (2014-06-27)\n++++++++++++++++++\n\n- Add feature #68: Paragraph.insert_paragraph_before()\n- Add feature #51: Paragraph.alignment (read/write)\n- Add feature #61: Paragraph.text setter\n- Add feature #58: Run.add_tab()\n- Add feature #70: Run.clear()\n- Add feature #60: Run.text setter\n- Add feature #39: Run.text and Paragraph.text interpret '\\n' and '\\t' chars\n\n\n0.6.0 (2014-06-22)\n++++++++++++++++++\n\n- Add feature #15: section page size\n- Add feature #66: add section\n- Add page margins and page orientation properties on Section\n- Major refactoring of oxml layer\n\n\n0.5.3 (2014-05-10)\n++++++++++++++++++\n\n- Add feature #19: Run.underline property\n\n\n0.5.2 (2014-05-06)\n++++++++++++++++++\n\n- Add feature #17: character style\n\n\n0.5.1 (2014-04-02)\n++++++++++++++++++\n\n- Fix issue #23, `Document.add_picture()` raises ValueError when document\n contains VML drawing.\n\n\n0.5.0 (2014-03-02)\n++++++++++++++++++\n\n- Add 20 tri-state properties on Run, including all-caps, double-strike,\n hidden, shadow, small-caps, and 15 others.\n\n\n0.4.0 (2014-03-01)\n++++++++++++++++++\n\n- Advance from alpha to beta status.\n- Add pure-python image header parsing; drop Pillow dependency\n\n\n0.3.0a5 (2014-01-10)\n++++++++++++++++++++++\n\n- Hotfix: issue #4, Document.add_picture() fails on second and subsequent\n images.\n\n\n0.3.0a4 (2014-01-07)\n++++++++++++++++++++++\n\n- Complete Python 3 support, tested on Python 3.3\n\n\n0.3.0a3 (2014-01-06)\n++++++++++++++++++++++\n\n- Fix setup.py error on some Windows installs\n\n\n0.3.0a1 (2014-01-05)\n++++++++++++++++++++++\n\n- Full object-oriented rewrite\n- Feature-parity with prior version\n- text: add paragraph, run, text, bold, italic\n- table: add table, add row, add column\n- styles: specify style for paragraph, table\n- picture: add inline picture, auto-scaling\n- breaks: add page break\n- tests: full pytest and behave-based 2-layer test suite\n\n\n0.3.0dev1 (2013-12-14)\n++++++++++++++++++++++\n\n- Round-trip .docx file, preserving all parts and relationships\n- Load default \"template\" .docx on open with no filename\n- Open from stream and save to stream (file-like object)\n- Add paragraph at and of document", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/python-openxml/python-docx", "keywords": "docx office openxml word", "license": "The MIT License (MIT)\nCopyright (c) 2013 Steve Canny, https://github.com/scanny\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", "maintainer": null, "maintainer_email": null, "name": "tp-python-docx", "package_url": "https://pypi.org/project/tp-python-docx/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/tp-python-docx/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/python-openxml/python-docx" }, "release_url": "https://pypi.org/project/tp-python-docx/0.8.5/", "requires_dist": null, "requires_python": null, "summary": "hacky talentpair fork of python-docx", "version": "0.8.5" }, "last_serial": 2347222, "releases": { "0.8.5": [ { "comment_text": "", "digests": { "md5": "437a717da356371e8ffcb7f4e3267747", "sha256": "7241fc5d84c3386a22bed2284207d1e19faec01347f08a630231243e1ed10496" }, "downloads": -1, "filename": "tp-python-docx-0.8.5.tar.gz", "has_sig": false, "md5_digest": "437a717da356371e8ffcb7f4e3267747", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5169771, "upload_time": "2016-09-16T22:21:49", "url": "https://files.pythonhosted.org/packages/43/c8/7079e77aa11a3b0e389c1231ad2b056df4e8f3185b24115504b10fd393b2/tp-python-docx-0.8.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "437a717da356371e8ffcb7f4e3267747", "sha256": "7241fc5d84c3386a22bed2284207d1e19faec01347f08a630231243e1ed10496" }, "downloads": -1, "filename": "tp-python-docx-0.8.5.tar.gz", "has_sig": false, "md5_digest": "437a717da356371e8ffcb7f4e3267747", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5169771, "upload_time": "2016-09-16T22:21:49", "url": "https://files.pythonhosted.org/packages/43/c8/7079e77aa11a3b0e389c1231ad2b056df4e8f3185b24115504b10fd393b2/tp-python-docx-0.8.5.tar.gz" } ] }