From 6c77b4436959bcde2cc8094144de49c0e3f4305b Mon Sep 17 00:00:00 2001 From: Sergey Date: Tue, 4 Apr 2023 01:06:12 +0500 Subject: [PATCH] update README.md --- README.md | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 275fda5..bb32d25 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,10 @@ # gkeepapi-java Unofficial Java client library for the Android Google Keep API -***If you have an Enterprise account, you can use official [Google Keep API](https://developers.google.com/keep)*** +***If you have an Enterprise account, it is an option to use official [Google Keep API](https://developers.google.com/keep)*** ## Table of content - [General info](#general-info) -- [Next improvements](#next-improvements) - [Documentation](#documentation) - [Download](#download) - [Similar libraries](#similar-libraries) @@ -19,12 +18,11 @@ The library can be used to access data from Google Keep as an Android device ```java import io.github.rukins.gkeepapi.GKeepAPI; import io.github.rukins.gkeepapi.NodeRequestBuilder; -import io.github.rukins.gkeepapi.model.NodeRequest; -import io.github.rukins.gkeepapi.model.NodeResponse; -import io.github.rukins.gkeepapi.model.node.Color; -import io.github.rukins.gkeepapi.model.node.nodeobject.ListItemNode; -import io.github.rukins.gkeepapi.model.node.nodeobject.NoteNode; -import io.github.rukins.gkeepapi.model.userinfo.Label; +import io.github.rukins.gkeepapi.model.gkeep.NodeResponse; +import io.github.rukins.gkeepapi.model.gkeep.node.Color; +import io.github.rukins.gkeepapi.model.gkeep.node.nodeobject.ListItemNode; +import io.github.rukins.gkeepapi.model.gkeep.node.nodeobject.NoteNode; +import io.github.rukins.gkeepapi.model.gkeep.userinfo.Label; import io.github.rukins.gkeepapi.utils.NodeUtils; import io.github.rukins.gpsoauth.exception.AuthError; @@ -74,12 +72,6 @@ public class App { } ``` -## Next improvements -In the current version of the library, basic manipulations with nodes and labels are available, -but later uploading and downloading blobs will be also added. - -*You can report any issues with improvements or modifications* - ## Documentation ### *Available [here](DOCS.md)*