Skip to content

Commit

Permalink
Version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Basti Tee committed Aug 20, 2023
1 parent f5faa63 commit 7cf381e
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 33 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## 0.1.0

- Updated README and added CHANGELOG
- Updated pyproject.toml

## 0.0.1

- Initial version
34 changes: 26 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,33 @@ How to get the file?

## Install and use

Install using pip / poetry or similar from PyPi.
Install using pip / poetry or similar [from PyPi](https://pypi.org/project/tolino-notes/).

```shell
python -m pip install tolino_notes
$ python -m pip install tolino-notes
```

In a new shell run:

```shell
$ tolino-notes --help
Usage: tolino-notes [OPTIONS]

Convert Tolino notes into useful formats

Options:
-i, --input-file FILE Original Tolino notes file [required]
-o, --output-dir DIRECTORY Folder for output files [required]
-f, --format [md|json] Output format [required]
-v, --verbose Verbose output
--help Show this message and exit.
```

For example to convert all your notes to markdown run:

```shell
$ mkdir output-dir
$ tolino-notes -i notes.txt -o output-dir -f md
```

## Status
Expand All @@ -25,15 +48,10 @@ python -m pip install tolino_notes
- Support for DE, EN and ES language settings
- Supported output formats are Markdown and JSON

## Limitation

Tolino stores all your highlights and notes in a file called notes.txt. That's cool, but they're sorted chronologically. It can be quite puzzling if you read several books in parallel. Notulator pulls the text snippets from each other and moves them to separate files: one per book. To convert your notes.txt:

Connect your tolino with USB to your computer. Navigate with the file manager of your computer (Finder or Explorer) to the root directory of your tolino. Drag the file 'notes' or 'notes.txt' to Notulator.

## Development

- Run `make` to create a new virtual environment
- Use the [issue tracker](https://github.com/BastiTee/tolino-notes/issues) to let me know about ideas and issues

## License and attribution

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tolino_notes"
version = "0.0.1"
version = "0.1.0"
description = ""
license = "Apache 2.0"
authors = ["Basti Tee <[email protected]>"]
Expand Down
24 changes: 0 additions & 24 deletions run.sh

This file was deleted.

0 comments on commit 7cf381e

Please sign in to comment.