PKG-INFO 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. Metadata-Version: 1.2
  2. Name: openpyxl
  3. Version: 2.6.4
  4. Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
  5. Home-page: https://openpyxl.readthedocs.io
  6. Author: See AUTHORS
  7. Author-email: charlie.clark@clark-consulting.eu
  8. License: MIT/Expat
  9. Project-URL: Documentation, https://openpyxl.readthedocs.io/en/stable/
  10. Project-URL: Source, https://bitbucket.org/openpyxl/openpyxl
  11. Project-URL: Tracker, https://bitbucket.org/openpyxl/openpyxl/issues
  12. Description: .. image:: https://coveralls.io/repos/bitbucket/openpyxl/openpyxl/badge.svg?branch=default
  13. :target: https://coveralls.io/bitbucket/openpyxl/openpyxl?branch=default
  14. :alt: coverage status
  15. Introduction
  16. ------------
  17. openpyxl is a Python library to read/write Excel 2010 xlsx/xlsm/xltx/xltm files.
  18. It was born from lack of existing library to read/write natively from Python
  19. the Office Open XML format.
  20. All kudos to the PHPExcel team as openpyxl was initially based on PHPExcel.
  21. Security
  22. --------
  23. By default openpyxl does not guard against quadratic blowup or billion laughs
  24. xml attacks. To guard against these attacks install defusedxml.
  25. Mailing List
  26. ------------
  27. The user list can be found on http://groups.google.com/group/openpyxl-users
  28. Sample code::
  29. from openpyxl import Workbook
  30. wb = Workbook()
  31. # grab the active worksheet
  32. ws = wb.active
  33. # Data can be assigned directly to cells
  34. ws['A1'] = 42
  35. # Rows can also be appended
  36. ws.append([1, 2, 3])
  37. # Python types will automatically be converted
  38. import datetime
  39. ws['A2'] = datetime.datetime.now()
  40. # Save the file
  41. wb.save("sample.xlsx")
  42. Documentation
  43. -------------
  44. The documentation is at: https://openpyxl.readthedocs.io
  45. * installation methods
  46. * code examples
  47. * instructions for contributing
  48. Release notes: https://openpyxl.readthedocs.io/en/stable/changes.html
  49. Platform: UNKNOWN
  50. Classifier: Development Status :: 5 - Production/Stable
  51. Classifier: Operating System :: MacOS :: MacOS X
  52. Classifier: Operating System :: Microsoft :: Windows
  53. Classifier: Operating System :: POSIX
  54. Classifier: License :: OSI Approved :: MIT License
  55. Classifier: Programming Language :: Python
  56. Classifier: Programming Language :: Python :: 2.7
  57. Classifier: Programming Language :: Python :: 3.5
  58. Classifier: Programming Language :: Python :: 3.6
  59. Classifier: Programming Language :: Python :: 3.7
  60. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*