Metadata-Version: 2.1
Name: nnotes
Version: 0.0.3
Summary: A cli notetaking tool
Home-page: https://github.com/wbwqq/nnotes
Author: wbwqq
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/wbwqq/nnotes/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# nnotes

nnotes is a command line note taking tool. The goal is to be able to add, view and manipulate notes quickly and easily.

[![asciicast](https://asciinema.org/a/EqqVnBPGQZgDo2PTTBg5Z6ynS.svg)](https://asciinema.org/a/EqqVnBPGQZgDo2PTTBg5Z6ynS)

## Installation

```bash
pip install nnotes
```

## Main commands help

Features:
- multiple notebooks
- add notes
- delete notes (single, multiple, range)
- create notebook
- delete notebook
- custom notebooks directory


```
Usage (nnotes can be launched by typing 'n' or 'nnotes'):
    n [command]
    nnotes [command]

Available commands:
    add [note]                                  add note to active notebook
    ls                                          list / view notes from active notebook
    rm 2 3                                      delete note(s) 2 and 3
    rm range 3 7                                delete notes 3 to 7 (included)
    
    add @[notebook] [note]                      add note [note] to notebook [notebook]
    ls @[notebook]                              show notes from [notebook]
    rm @[notebook] 4                            delete note 4 from [notebook]
    rm range @[notebook] 3 7                    delete notes 3 to 7 (included) from [notebook]

    add @[notebook]                             create notebook [notebook]
    ls @                                        list all notebooks
    ls @ path                                   list notebooks with their path
    rm @[notebook]                              delete notebook

    set active [notebook]                       set active notebook [notebook]
    get active                                  show active notebook

    get notebooks path                          show notebooks directory
    set notebooks path [notebooks path]         set notebooks directory
```

### Note for Windows users:

Windows users must wrap arguments starting with @ with single or double quotes (ex. windows users should type `n ls '@'` instead of `n ls @` ), or escape commands starting with @ with a backtick (ex. ``n ls `@`` instead of `n ls @` )

 `n add '@school' new note` would be the way to add 'new note' to the 'school' notebook. Or alternatively:
 ``n add `@school new note`` would also work.

## Example usage

`n` and `nnotes` can both be used:
```bash
$ n add new note
```
is the same as:
```bash
$ nnotes add new note
```

Other example commands:

```bash
$ n ls
```

```bash
$ n add @main another note
```

```bash
$ n ls @
```
etc.

