README 1.1 KB

12345678910111213141516171819202122232425262728
  1. Pyspread is a non-traditional spreadsheet application that is based on
  2. and written in the programming language Python.
  3. The goal of pyspread is to be the most pythonic spreadsheet. Pyspread
  4. expects Python expressions in its grid cells, which makes a
  5. spreadsheet specific language obsolete. Each cell returns a Python
  6. object that can be accessed from other cells. These objects can
  7. represent anything including lists or matrices.
  8. Pyspread is free software. It is released under the GPL v3.
  9. - CSV import and export
  10. - Chart creation dialog based on matplotlib
  11. - Python objects as cell results
  12. - Python macros
  13. - GPG based save file signatures for preventing foreign code execution
  14. - Access to all Python modules from within cells. These modules allow
  15. for example matrix operations via numpy or fixed point decimal
  16. numbers for business calculations via decimal.
  17. Optional Dependencies:
  18. - python-xlrd (optional for opening Excel files)
  19. - python-xlwt (for saving Excel files)
  20. - python-gnupg (for opening own files without approval)
  21. - jedi (for tab completion and context help in the entry line)
  22. - basemap (for the weather example pys file)