blob: a8bed45b2cf6eeb123f56b8c9e42948a721513f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Manage your notes with pnote!
## About
*pnote* is a text file, format agnostic, note manager.
It allows to keep a consistant hierarchy of note files that you can work with.
## Getting started
Installation:
```
> pip install pnote
```
Create a new project:
```
> pnote ~/mynotes
> # See configuration in ~/mynotes/config.json
```
Open and edit today's note file:
```
> pnote ~/mynotes -t
```
## Features
Search for files:
```
> pnote ~/mynotes search -h
```
Tag files:
```
> pnote ~/mynotes tag -h
```
Manage your project:
```
> pnote ~/mynotes admin -h
```
Export your notes:
```
> pnote ~/mynotes search --subpath | pnote ~/mynotes export --json
> pnote ~/mynotes search --subpath | pnote ~/mynotes export --template template.txt
```
For more information on *pnote*:
```
> pnote -h
```
|