# pyspread
[![pypi version](https://img.shields.io/pypi/v/pyspread.svg)](https://pypi.python.org/pypi/pyspread)
[![CI pipeline](https://gitlab.com/pyspread/pyspread/badges/master/pipeline.svg)](https://gitlab.com/pyspread/pyspread/-/pipelines?page=1&scope=branches&ref=master)
[![pyspread community board](https://badges.gitter.im/pyspread/community.svg)](https://gitter.im/pyspread/community)
**pyspread** is a non-traditional spreadsheet that is
based on and written in the programming language Python.
It is released under the [GPL v3. LICENSE](LICENSE)
- Homepage: https://pyspread.gitlab.io/
- Repository: https://gitlab.com/pyspread/pyspread
- API Docs: https://pyspread.gitlab.io/pyspread/
# Installation
It is recommended to install pyspread as a package that is provided for your operating system. The table below shows for which operating systems, pyspread is available in which version.
![Packaged](https://repology.org/badge/vertical-allrepos/pyspread.svg?header&columns=4)
If pyspread is unavailable or outdated for your operating system, you can install it using one of the three methods below.
When using pip, a Python virtual environment (venv) is recommended. Some operating systems may nudge your towards this. pipx could be a solution if venv is no option for you.
Furthermore, note that the QtSvg extensions for PyQT are required. For some operating systems, they are packaged separately from PyQt. Please make sure QtSvg is installed on your system before using pip.
### With pip
```bash
pip install pyspread
```
### From git
It is assumed that python3 and git are installed.
**Get sources and enter dir**
```bash
git clone https://gitlab.com/pyspread/pyspread.git
# or
git clone git@gitlab.com:pyspread/pyspread.git
# then
cd pyspread
```
**Install dependencies and pyspread**
```bash
pip3 install -r requirements.txt
# or if pip3 is not present
pip install -r requirements.txt
# next
python3 setup.py install
```
## Getting the bleeding edge version from the code repository
Note that there may unfixed bugs if you use the latest repository version.
You may want to check the CI, which comprises unit tests at
`https://gitlab.com/pyspread/pyspread/pipelines`.
Get the latest tarball or zip at https://gitlab.com/pyspread/pyspread or
clone the git repo at `https://gitlab.com/pyspread/pyspread.git`
# Starting pyspread
With an installation via pip, distutils or your OS's installer, simply run
```
$ pyspread
```
from any directory.
In order to start pyspread without installation directly from the cloned
repository or the extracted tarball or zip, run
```
$ ./pyspread/pyspread.py
```
or
```
$ python -m pyspread
```
inside the top directory.
# Contribute
## Issues
Please submit issues in the gitlab issue tracker at
- https://gitlab.com/pyspread/pyspread/issues
## Code
Commit your changes, push them into your fork and send a pull request.
This page gives an overview how to do this:
- https://help.github.com/articles/fork-a-repo
You can find more more details about code organization at
- https://pyspread.gitlab.io/pyspread/
Raw data
{
"_id": null,
"home_page": "https://pyspread.gitlab.io",
"name": "pyspread",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "spreadsheet, pyspread",
"author": "Martin Manns",
"author_email": "mmanns@gmx.net",
"download_url": "https://files.pythonhosted.org/packages/25/9a/7b311e3e180f2f6bc0cfcc9b4451b773c4205a0be080091aa3a6dcea11f6/pyspread-2.3.1.tar.gz",
"platform": null,
"description": "# pyspread\n\n[![pypi version](https://img.shields.io/pypi/v/pyspread.svg)](https://pypi.python.org/pypi/pyspread)\n[![CI pipeline](https://gitlab.com/pyspread/pyspread/badges/master/pipeline.svg)](https://gitlab.com/pyspread/pyspread/-/pipelines?page=1&scope=branches&ref=master)\n[![pyspread community board](https://badges.gitter.im/pyspread/community.svg)](https://gitter.im/pyspread/community)\n\n**pyspread** is a non-traditional spreadsheet that is\nbased on and written in the programming language Python.\n\nIt is released under the [GPL v3. LICENSE](LICENSE)\n\n- Homepage: https://pyspread.gitlab.io/\n- Repository: https://gitlab.com/pyspread/pyspread\n- API Docs: https://pyspread.gitlab.io/pyspread/\n\n\n# Installation\n\nIt is recommended to install pyspread as a package that is provided for your operating system. The table below shows for which operating systems, pyspread is available in which version.\n\n![Packaged](https://repology.org/badge/vertical-allrepos/pyspread.svg?header&columns=4)\n\nIf pyspread is unavailable or outdated for your operating system, you can install it using one of the three methods below.\n\nWhen using pip, a Python virtual environment (venv) is recommended. Some operating systems may nudge your towards this. pipx could be a solution if venv is no option for you.\n\nFurthermore, note that the QtSvg extensions for PyQT are required. For some operating systems, they are packaged separately from PyQt. Please make sure QtSvg is installed on your system before using pip.\n\n### With pip\n\n```bash\npip install pyspread\n```\n\n### From git\n\nIt is assumed that python3 and git are installed.\n\n**Get sources and enter dir**\n```bash\ngit clone https://gitlab.com/pyspread/pyspread.git\n# or\ngit clone git@gitlab.com:pyspread/pyspread.git\n# then\ncd pyspread\n```\n\n**Install dependencies and pyspread**\n```bash\npip3 install -r requirements.txt\n# or if pip3 is not present\npip install -r requirements.txt\n# next\npython3 setup.py install\n```\n\n## Getting the bleeding edge version from the code repository\n\nNote that there may unfixed bugs if you use the latest repository version.\nYou may want to check the CI, which comprises unit tests at\n`https://gitlab.com/pyspread/pyspread/pipelines`.\n\nGet the latest tarball or zip at https://gitlab.com/pyspread/pyspread or\nclone the git repo at `https://gitlab.com/pyspread/pyspread.git`\n\n# Starting pyspread\n\nWith an installation via pip, distutils or your OS's installer, simply run\n```\n$ pyspread\n```\nfrom any directory.\n\nIn order to start pyspread without installation directly from the cloned\nrepository or the extracted tarball or zip, run\n```\n$ ./pyspread/pyspread.py\n```\nor\n```\n$ python -m pyspread\n```\ninside the top directory.\n\n# Contribute\n\n## Issues\n\nPlease submit issues in the gitlab issue tracker at\n- https://gitlab.com/pyspread/pyspread/issues\n\n## Code\n\nCommit your changes, push them into your fork and send a pull request.\n\nThis page gives an overview how to do this:\n- https://help.github.com/articles/fork-a-repo\n\nYou can find more more details about code organization at\n- https://pyspread.gitlab.io/pyspread/\n",
"bugtrack_url": null,
"license": "GPL v3 :: GNU General Public License",
"summary": "Pyspread is a non-traditional spreadsheet application that is based on and written in the programming language Python.",
"version": "2.3.1",
"project_urls": {
"Bug Tracker": "https://gitlab.com/pyspread/pyspread/issues",
"Documentation": "https://pyspread.gitlab.io/docs.html",
"Homepage": "https://pyspread.gitlab.io",
"Source Code": "https://gitlab.com/pyspread/pyspread"
},
"split_keywords": [
"spreadsheet",
" pyspread"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "b8c7d85bf94d526ff76ad425f0a73a8a48434c8e534516a9bdac7580bcdede28",
"md5": "3f5a8cc2b91daf9ef42bd94d4d6c517f",
"sha256": "edc76efef5a21bbd360bbe99a646642beb23fbb8085b8ece1c5da257d796d167"
},
"downloads": -1,
"filename": "pyspread-2.3.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3f5a8cc2b91daf9ef42bd94d4d6c517f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 1703947,
"upload_time": "2024-11-23T18:36:35",
"upload_time_iso_8601": "2024-11-23T18:36:35.374686Z",
"url": "https://files.pythonhosted.org/packages/b8/c7/d85bf94d526ff76ad425f0a73a8a48434c8e534516a9bdac7580bcdede28/pyspread-2.3.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "259a7b311e3e180f2f6bc0cfcc9b4451b773c4205a0be080091aa3a6dcea11f6",
"md5": "3f049eb573b421950fe5631dd1aa14d0",
"sha256": "97a6f4d82214a8f9d3d7acea39697a803740a1b9218aa04c16f4fe4750efb5e9"
},
"downloads": -1,
"filename": "pyspread-2.3.1.tar.gz",
"has_sig": false,
"md5_digest": "3f049eb573b421950fe5631dd1aa14d0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 2321944,
"upload_time": "2024-11-23T18:36:37",
"upload_time_iso_8601": "2024-11-23T18:36:37.617286Z",
"url": "https://files.pythonhosted.org/packages/25/9a/7b311e3e180f2f6bc0cfcc9b4451b773c4205a0be080091aa3a6dcea11f6/pyspread-2.3.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-23 18:36:37",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "pyspread",
"gitlab_project": "pyspread",
"lcname": "pyspread"
}