Skip to content

Commit abe2674

Browse files
committed
Update Readme
1 parent 5940936 commit abe2674

4 files changed

Lines changed: 12 additions & 2 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.md
22
*.txt
3+
cover/*

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# keepcli
1+
# keepcli <a href="https://github.com/mgckind/keepcli/releases/tag/1.0.1"> <img src="https://img.shields.io/badge/release-v1.0.1-blue.svg" alt="latest release" /></a> <a href="https://github.com/mgckind/keepcli/blob/master/LICENSE.txt"><img src="https://img.shields.io/badge/license-NCSA%20License-blue.svg" alt="License" /> </a> <a href="https://pypi.python.org/pypi/keepcli/1.0.1"><img src="https://img.shields.io/badge/pypi-v1.0.1-orange.svg" alt="pypi version"/></a>
22

33
A simple and unofficial interactive command line interpreter client for [Google Keep](https://keep.google.com/).
44

55
It uses the nice unofficial API client [gkeepapi](https://github.com/kiwiz/gkeepapi)
66

77
As described also in that repository, *keepcli* is not supported nor endorsed by Google.
88

9+
![simple_demo](cover/simple_demo.gif)
10+
11+
912

1013
## Development
1114

@@ -16,8 +19,14 @@ As a very active [Google Keep](https://keep.google.com/) user (among other Notes
1619
Some offline features have not tested in too much detail and there might be some hidden issues, this is note a production-grade tool and is distributed 'as is'.
1720

1821

22+
## Current version
23+
24+
**keepcli 1.0.1**
25+
1926
## Installation
2027

28+
Uses `python3`
29+
2130
For development version:
2231

2332
pip install git+https://github.com/mgckind/keepcli.git

cover/simple_demo.gif

636 KB
Loading

keepcli/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
commit = '0478909'
44

55
dev = 'dev-{}'.format(commit)
6-
version_tag = (1, 0, 1, dev)
6+
version_tag = (1, 0, 1)
77
__version__ = '.'.join(map(str, version_tag[:3]))
88

99
if len(version_tag) > 3:

0 commit comments

Comments
 (0)