{ "info": { "author": "John McNamara", "author_email": "jmcnamara@cpan.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5" ], "description": "XlsxWriter\n==========\n\n**XlsxWriter** is a Python module for writing files in the Excel 2007+ XLSX\nfile format.\n\nXlsxWriter can be used to write text, numbers, formulas and hyperlinks to\nmultiple worksheets and it supports features such as formatting and many more,\nincluding:\n\n* 100% compatible Excel XLSX files.\n* Full formatting.\n* Merged cells.\n* Defined names.\n* Charts.\n* Autofilters.\n* Data validation and drop down lists.\n* Conditional formatting.\n* Worksheet PNG/JPEG images.\n* Rich multi-format strings.\n* Cell comments.\n* Integration with Pandas.\n* Textboxes.\n* Memory optimization mode for writing large files.\n\nIt supports Python 2.5, 2.6, 2.7, 3.1, 3.2, 3.3, 3.4, 3.5, Jython and PyPy and\nuses standard libraries only.\n\nHere is a simple example:\n\n.. code-block:: python\n\n import xlsxwriter\n\n\n # Create an new Excel file and add a worksheet.\n workbook = xlsxwriter.Workbook('demo.xlsx')\n worksheet = workbook.add_worksheet()\n\n # Widen the first column to make the text clearer.\n worksheet.set_column('A:A', 20)\n\n # Add a bold format to use to highlight cells.\n bold = workbook.add_format({'bold': True})\n\n # Write some simple text.\n worksheet.write('A1', 'Hello')\n\n # Text with formatting.\n worksheet.write('A2', 'World', bold)\n\n # Write some numbers, with row/column notation.\n worksheet.write(2, 0, 123)\n worksheet.write(3, 0, 123.456)\n\n # Insert an image.\n worksheet.insert_image('B5', 'logo.png')\n\n workbook.close()\n\n.. image:: https://raw.github.com/jmcnamara/XlsxWriter/master/dev/docs/source/_images/demo.png\n\nSee the full documentation at: http://xlsxwriter.readthedocs.org\n\nRelease notes: http://xlsxwriter.readthedocs.org/changes.html", "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/jmcnamara/XlsxWriter", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "XlsxWriterChan", "package_url": "https://pypi.org/project/XlsxWriterChan/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/XlsxWriterChan/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/jmcnamara/XlsxWriter" }, "release_url": "https://pypi.org/project/XlsxWriterChan/0.9.3/", "requires_dist": null, "requires_python": null, "summary": "A Python module for creating Excel XLSX files.", "version": "0.9.3" }, "last_serial": 2367961, "releases": { "0.9.3": [] }, "urls": [] }