Improve pnote API
This commit is contained in:
parent
ab5c2a08c7
commit
fd45b61198
3 changed files with 17 additions and 10 deletions
15
README.md
15
README.md
|
@ -13,36 +13,37 @@ Installation:
|
||||||
|
|
||||||
Create a new project:
|
Create a new project:
|
||||||
```
|
```
|
||||||
> pnote ~/mynotes
|
> pnote -d ~/mynotes
|
||||||
> # See configuration in ~/mynotes/config.json
|
> # See configuration in ~/mynotes/config.json
|
||||||
|
> # If -d not specified, ${HOME}/.pnote will be used
|
||||||
```
|
```
|
||||||
|
|
||||||
Open and edit today's note file:
|
Open and edit today's note file:
|
||||||
```
|
```
|
||||||
> pnote ~/mynotes -t
|
> pnote -d ~/mynotes -t
|
||||||
```
|
```
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
Search for files:
|
Search for files:
|
||||||
```
|
```
|
||||||
> pnote ~/mynotes search -h
|
> pnote -d ~/mynotes search -h
|
||||||
```
|
```
|
||||||
|
|
||||||
Tag files:
|
Tag files:
|
||||||
```
|
```
|
||||||
> pnote ~/mynotes tag -h
|
> pnote -d ~/mynotes tag -h
|
||||||
```
|
```
|
||||||
|
|
||||||
Manage your project:
|
Manage your project:
|
||||||
```
|
```
|
||||||
> pnote ~/mynotes admin -h
|
> pnote -d ~/mynotes admin -h
|
||||||
```
|
```
|
||||||
|
|
||||||
Export your notes:
|
Export your notes:
|
||||||
```
|
```
|
||||||
> pnote ~/mynotes search --subpath | pnote ~/mynotes export --json
|
> pnote -d ~/mynotes search --subpath | pnote -d ~/mynotes export --json
|
||||||
> pnote ~/mynotes search --subpath | pnote ~/mynotes export --template template.txt
|
> pnote -d ~/mynotes search --subpath | pnote -d ~/mynotes export --template template.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
For more information on *pnote*:
|
For more information on *pnote*:
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
__version__ = "0.0.26"
|
__version__ = "0.0.27"
|
||||||
|
|
||||||
from pnote.__main__ import main
|
from pnote.__main__ import main
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import os, argparse
|
import os, argparse
|
||||||
|
from pathlib import Path
|
||||||
from pnote.project import *
|
from pnote.project import *
|
||||||
from pnote.tools import *
|
from pnote.tools import *
|
||||||
from pnote import __version__
|
from pnote import __version__
|
||||||
|
@ -11,9 +12,9 @@ def main():
|
||||||
prog='PNote',
|
prog='PNote',
|
||||||
description='Note management tool',
|
description='Note management tool',
|
||||||
epilog='pnote v'+__version__)
|
epilog='pnote v'+__version__)
|
||||||
parser.add_argument('path', help="Path to a pnote project")
|
|
||||||
parser.add_argument('-t', '--today', help="Open today's note file", action="store_true")
|
parser.add_argument('-t', '--today', help="Open today's note file", action="store_true")
|
||||||
parser.add_argument('-o', '--open', help="Open specific note file")
|
parser.add_argument('-o', '--open', help="Open specific note file")
|
||||||
|
parser.add_argument('-d', '--dir', help="Project directory")
|
||||||
subparsers = parser.add_subparsers(dest="tool", help='Tool to use')
|
subparsers = parser.add_subparsers(dest="tool", help='Tool to use')
|
||||||
|
|
||||||
# Tools
|
# Tools
|
||||||
|
@ -30,7 +31,12 @@ def main():
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
## Load project
|
## Load project
|
||||||
project=Project(args.path)
|
if args.dir:
|
||||||
|
project=Project(args.dir)
|
||||||
|
else:
|
||||||
|
pdir=Path.home()/".pnote/"
|
||||||
|
pdir.mkdir(parents=True, exist_ok=True)
|
||||||
|
project=Project(pdir)
|
||||||
|
|
||||||
## Run tool
|
## Run tool
|
||||||
if args.tool == "search":
|
if args.tool == "search":
|
||||||
|
|
Loading…
Add table
Reference in a new issue