PKG-INFO 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. Metadata-Version: 1.2
  2. Name: openpyxl
  3. Version: 2.5.3
  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. Description: openpyxl
  10. ========
  11. openpyxl is a Python library to read/write Excel 2010 xlsx/xlsm/xltx/xltm files.
  12. It was born from lack of existing library to read/write natively from Python
  13. the Office Open XML format.
  14. All kudos to the PHPExcel team as openpyxl was initially based on PHPExcel.
  15. Mailing List
  16. ============
  17. Official user list can be found on
  18. http://groups.google.com/group/openpyxl-users
  19. Sample code::
  20. from openpyxl import Workbook
  21. wb = Workbook()
  22. # grab the active worksheet
  23. ws = wb.active
  24. # Data can be assigned directly to cells
  25. ws['A1'] = 42
  26. # Rows can also be appended
  27. ws.append([1, 2, 3])
  28. # Python types will automatically be converted
  29. import datetime
  30. ws['A2'] = datetime.datetime.now()
  31. # Save the file
  32. wb.save("sample.xlsx")
  33. Official documentation
  34. ======================
  35. The documentation is at: https://openpyxl.readthedocs.io
  36. * installation methods
  37. * code examples
  38. * instructions for contributing
  39. Release notes: https://openpyxl.readthedocs.io/en/latest/changes.html
  40. Platform: UNKNOWN
  41. Classifier: Development Status :: 5 - Production/Stable
  42. Classifier: Operating System :: MacOS :: MacOS X
  43. Classifier: Operating System :: Microsoft :: Windows
  44. Classifier: Operating System :: POSIX
  45. Classifier: License :: OSI Approved :: MIT License
  46. Classifier: Programming Language :: Python
  47. Classifier: Programming Language :: Python :: 2.7
  48. Classifier: Programming Language :: Python :: 3.4
  49. Classifier: Programming Language :: Python :: 3.5
  50. Classifier: Programming Language :: Python :: 3.6
  51. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*