A Nextcloud Notes app API wrapper.
from nextcloud_notes_api import NotesApi, Note
api = NotesApi('username', 'password', 'example.org')
note = Note('Shopping List', 'Spam', favorite=True)
api.create_note(note)
nextcloud-notes-api is not supported nor endorsed by Nextcloud.
pip install nextcloud-notes-api
The docs are available on Github Pages.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests and documentation as appropriate.
- Lazy note list with fuzzy searching through all notes
- Maintain reference to api inside note object to be able to sync, delete, ... through it