PKG-INFO 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. Metadata-Version: 1.1
  2. Name: openpyxl
  3. Version: 2.3.0-b2
  4. Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
  5. Home-page: http://openpyxl.readthedocs.org
  6. Author: See AUTHORS
  7. Author-email: eric.gazoni@gmail.com
  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 is based on PHPExcel
  15. http://www.phpexcel.net/
  16. Mailing List
  17. ============
  18. Official user list can be found on
  19. http://groups.google.com/group/openpyxl-users
  20. Sample code::
  21. from openpyxl import Workbook
  22. wb = Workbook()
  23. # grab the active worksheet
  24. ws = wb.active
  25. # Data can be assigned directly to cells
  26. ws['A1'] = 42
  27. # Rows can also be appended
  28. ws.append([1, 2, 3])
  29. # Python types will automatically be converted
  30. import datetime
  31. ws['A2'] = datetime.datetime.now()
  32. # Save the file
  33. wb.save("sample.xlsx")
  34. Official documentation
  35. ======================
  36. The documentation is at: http://openpyxl.readthedocs.org
  37. * installation methods
  38. * code examples
  39. * instructions for contributing
  40. Release notes: http://openpyxl.readthedocs.org/en/latest/changes.html
  41. Platform: UNKNOWN
  42. Classifier: Development Status :: 5 - Production/Stable
  43. Classifier: Operating System :: MacOS :: MacOS X
  44. Classifier: Operating System :: Microsoft :: Windows
  45. Classifier: Operating System :: POSIX
  46. Classifier: License :: OSI Approved :: MIT License
  47. Classifier: Programming Language :: Python
  48. Classifier: Programming Language :: Python :: 2.6
  49. Classifier: Programming Language :: Python :: 2.7
  50. Classifier: Programming Language :: Python :: 3.3
  51. Classifier: Programming Language :: Python :: 3.4
  52. Requires: python (>=2.6.0)