Metadata-Version: 2.1
Name: xestore
Version: 0.1.0
Summary: Top-level package for xestore.
Home-page: https://github.com/jmosbacher/xestore
License: MIT
Author: Yossi Mosbacher
Author-email: joe.mosbacher@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: click
Requires-Dist: eve-jwt (>=0.1.3,<0.2.0)
Requires-Dist: httpx (>=0.16.1,<0.17.0)
Requires-Dist: panel (>=0.10.2,<0.11.0)
Description-Content-Type: text/x-rst

=======
xestore
=======


.. image:: https://img.shields.io/pypi/v/xestore.svg
        :target: https://pypi.python.org/pypi/xestore

.. image:: https://img.shields.io/travis/jmosbacher/xestore.svg
        :target: https://travis-ci.com/jmosbacher/xestore

.. image:: https://readthedocs.org/projects/xestore/badge/?version=latest
        :target: https://xestore.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status




A simple file and document storage utility for XENONnT

Usage
-----

.. code-block:: python

    import xestore

    xestore.login()

    xestore.publish_file(path, metadata={}, private=False)

    xestore.download_file("filename.npy", savedir="./", private=False)

    doc = {"list": [1,2,3]}
    xestore.publish_document(doc, name="new document", metadata={}, private=False)
    




* Free software: MIT
* Documentation: https://xestore.readthedocs.io.


Features
--------

* TODO

Credits
-------

This package was created with Cookiecutter_ and the `briggySmalls/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`briggySmalls/cookiecutter-pypackage`: https://github.com/briggySmalls/cookiecutter-pypackage

