Metadata-Version: 2.1
Name: est_notes
Version: 1.1
Summary: EST (Encrypted, synchronised todos) is a python libary making it easy to create an encrypted, git-synced todo/notes application.
Author: VisualXYW
License: MIT License
        
        Copyright (c) 2024 Visuality
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Project-URL: Homepage, https://codeberg.org/VisualXYW/est-notes
Project-URL: Issues, https://codeberg.org/VisualXYW/est-notes/issues
Project-URL: Documentation, https://codeberg.org/VisualXYW/est-notes/wiki
Keywords: todo,notes,git
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.12
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: cryptography
Requires-Dist: gitpython
Requires-Dist: platformdirs

Encrypted, synchronised todos (WIP)
===================================

EST (Encrypted, synchronised todos) is a python libary making it easy to
create an encrypted, git-synced todo/notes application.

! EST is an hobby project, issues are exspected. Use at your own risk!

Installing
----------

You can install EST with:

::

   pip install est-notes

Usage
-----

Import EST with:

::

   import est_notes

You can create a profile with: You can find the profile under est-notes
in your appdata directory.

::

   est_notes.create_profile(git_repo_address, '')

Now add a todo/note with:

::

   est_notes.create_profile(profile_uuid, content)

Push it to your repo with:

::

   est_notes.sync(profile_uuid)

You can find out more at https://codeberg.org/VisualXYW/est-notes/wiki
(WIP).
