pnote/README.md

52 lines
879 B
Markdown
Raw Permalink Normal View History

2024-02-20 21:26:58 +01:00
# Manage your notes with pnote!
2024-02-10 10:51:06 +00:00
2024-02-20 21:26:58 +01:00
## About
2024-02-10 10:51:06 +00:00
2024-02-20 21:26:58 +01:00
*pnote* is a text file, format agnostic, note manager.
It allows to keep a consistant hierarchy of note files that you can work with.
2024-02-10 10:51:06 +00:00
## Getting started
2024-02-20 21:26:58 +01:00
Installation:
2024-02-10 10:51:06 +00:00
```
2024-02-20 21:26:58 +01:00
> pip install pnote
2024-02-10 10:51:06 +00:00
```
2024-02-20 21:26:58 +01:00
Create a new project:
```
2024-04-19 14:26:58 +02:00
> pnote -d ~/mynotes
2024-02-20 21:26:58 +01:00
> # See configuration in ~/mynotes/config.json
2024-04-19 14:26:58 +02:00
> # If -d not specified, ${HOME}/.pnote will be used
2024-02-20 21:26:58 +01:00
```
2024-02-10 10:51:06 +00:00
2024-02-20 21:26:58 +01:00
Open and edit today's note file:
```
2024-04-19 14:26:58 +02:00
> pnote -d ~/mynotes -t
2024-02-20 21:26:58 +01:00
```
2024-02-10 10:51:06 +00:00
2024-02-20 21:26:58 +01:00
## Features
2024-02-10 10:51:06 +00:00
2024-02-20 21:26:58 +01:00
Search for files:
```
2024-04-19 14:26:58 +02:00
> pnote -d ~/mynotes search -h
2024-02-20 21:26:58 +01:00
```
2024-02-10 10:51:06 +00:00
2024-02-20 21:26:58 +01:00
Tag files:
```
2024-04-19 14:26:58 +02:00
> pnote -d ~/mynotes tag -h
2024-02-20 21:26:58 +01:00
```
2024-02-10 10:51:06 +00:00
2024-04-19 11:38:50 +02:00
Manage your project:
2024-02-20 21:26:58 +01:00
```
2024-04-19 14:26:58 +02:00
> pnote -d ~/mynotes admin -h
2024-02-20 21:26:58 +01:00
```
2024-02-10 10:51:06 +00:00
2024-04-19 11:38:50 +02:00
Export your notes:
```
2024-04-19 14:26:58 +02:00
> pnote -d ~/mynotes search --subpath | pnote -d ~/mynotes export --json
> pnote -d ~/mynotes search --subpath | pnote -d ~/mynotes export --template template.txt
2024-04-19 11:38:50 +02:00
```
2024-02-20 21:26:58 +01:00
For more information on *pnote*:
```
> pnote -h
```