Metadata-Version: 2.1
Name: safelysaveonline
Version: 2.1.0
Summary: SafelySaveOnline is a libary making it easy to save encrypted dictionaries and store them in a git repository.
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/safelysaveonline
Project-URL: Issues, https://codeberg.org/VisualXYW/safelysaveonline/issues
Project-URL: Documentation, https://codeberg.org/VisualXYW/safelysaveonline/wiki
Keywords: encrypted,dictionary,git,save,saving
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.12
Classifier: Intended Audience :: Developers
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

SafelySaveOnline
===================================

SafelySaveOnline is a python libary making it easy to save encrypted dictionaries and store them in a git repository.

Installing
----------

You can install SafelySaveOnline with:

::

   pip install safelysaveonline

Usage
-----

Import SafelySaveOnline with:

::

   import safelysave

You can create a profile with: You can find the profile under safelysaveonline
in your appdata directory.

::

   safelysave.create_profile(git_repo_address)

Now add a dictionary with:

::

   safelysave.add_dict(profile_uuid, dictionary)

Push it to your repo with:

::

   safelysave.sync(profile_uuid)

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