Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pawamoy/taskhub
[ALPHA] Task management tool, supporting import/export from/to different services, with multiple interfaces.
https://github.com/pawamoy/taskhub
bugs task-management tasks
Last synced: 3 months ago
JSON representation
[ALPHA] Task management tool, supporting import/export from/to different services, with multiple interfaces.
- Host: GitHub
- URL: https://github.com/pawamoy/taskhub
- Owner: pawamoy
- Created: 2018-12-13T21:53:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-19T16:19:19.000Z (about 2 years ago)
- Last Synced: 2024-05-02T05:57:04.137Z (8 months ago)
- Topics: bugs, task-management, tasks
- Language: Python
- Homepage:
- Size: 154 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [ALPHA] TaskHub
Task management tool, supporting import/export from/to different services, with multiple interfaces.## Requirements
`taskhub` requires Python 3.6. To install Python 3.6, I recommend [`pyenv`](https://github.com/pyenv/pyenv):
```bash
# install pyenv
git clone https://github.com/pyenv/pyenv ~/.pyenv# setup pyenv (you should also put these two lines in .bashrc or similar)
export PATH="${HOME}/.pyenv/bin:${PATH}"
eval "$(pyenv init -)"# install Python 3.6
pyenv install 3.6.7# make it available globally
pyenv global system 3.6.7
```## Installation
With `pip`:
```bash
python3.6 -m pip install taskhub
```With [`pipx`](https://github.com/cs01/pipx):
```bash
# install pipx with the recommended method
curl https://raw.githubusercontent.com/cs01/pipx/master/get-pipx.py | python3pipx install --python python3.6 taskhub
```