This repository has been archived by the owner on Jul 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from PraxTube/instructions-to-readme
Add instructions for the project to the README.md
- Loading branch information
Showing
3 changed files
with
105 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,105 @@ | ||
# Assignment Manager | ||
|
||
A terminal based assignment-manager written in python. | ||
It can handle both one-time tasks and recurring | ||
assignments. Also allows you to track your progress. | ||
|
||
<p align="center"> | ||
<img src="docs/demo/showcase.gif" alt="animated" /> | ||
</p> | ||
|
||
## Features | ||
|
||
The following features are present in the current version | ||
|
||
- Reoccuring assignments | ||
- Track progress on each assignment | ||
- Display assignments in sorted table | ||
- Make back up of assignment data | ||
- Edit existing assignments | ||
|
||
And these features still need to be implemented | ||
|
||
- [ ] Special class of one-time assignments | ||
- [ ] Undo last action taken | ||
|
||
## Prerequisites | ||
|
||
All you need in order to use this repo is `python>=3.8`. | ||
Note that there are some python dependencies, however | ||
most of them should be available for all OS's. | ||
|
||
## Installation | ||
|
||
If you have [pipx](https://pypa.github.io/pipx/), run | ||
|
||
``` | ||
pipx install assignment-manager | ||
``` | ||
|
||
otherwise you can just run | ||
|
||
``` | ||
pip install assignment-manager | ||
``` | ||
|
||
Note that if you are using `pip`, you may want to | ||
[setup a venv](https://docs.python.org/3/library/venv.html). | ||
|
||
## Usage | ||
|
||
You use the following two keywords as entry points | ||
|
||
``` | ||
assman | ||
assignment-manager | ||
``` | ||
|
||
To view the help panel, write | ||
|
||
``` | ||
$ assman --help | ||
Usage: assman [OPTIONS] COMMAND [ARGS]... | ||
╭─ Options ────────────────────────────────────────────────────────────────────────────────────────╮ | ||
│ --install-completion [bash|zsh|fish|powershell|pwsh] Install completion for the │ | ||
│ specified shell. │ | ||
│ [default: None] │ | ||
│ --show-completion [bash|zsh|fish|powershell|pwsh] Show completion for the specified │ | ||
│ shell, to copy it or customize the │ | ||
│ installation. │ | ||
│ [default: None] │ | ||
│ --help Show this message and exit. │ | ||
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯ | ||
╭─ Commands ───────────────────────────────────────────────────────────────────────────────────────╮ | ||
│ add │ | ||
│ backup │ | ||
│ remove │ | ||
│ rename │ | ||
│ show │ | ||
│ update │ | ||
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯ | ||
``` | ||
|
||
Note that some commands have some subcommands | ||
|
||
``` | ||
$ assman backup --help | ||
╭─ Commands ───────────────────────────────────────────────────────────────────╮ | ||
│ copy Copy the data file. This will OVERWRITE the BACKUP file │ | ||
│ paste Paste the backup file. This will OVERWRITE the DATA file │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ | ||
$ assman show --help | ||
╭─ Options ────────────────────────────────────────────────────────────────────╮ | ||
│ --one --no-one [default: no-one] │ | ||
│ --sort --no-sort [default: no-sort] │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ | ||
``` | ||
|
||
## Contributing | ||
|
||
Contributions of any kind to this project are very welcome! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters