Metadata-Version: 2.1
Name: glitter-sdk
Version: 0.1.1
Summary: Glitter Protocol is a blockchain based database and index engine for developing and hosting web3 applications in decentralized storage networks.
Home-page: https://docs.glitterprotocol.io/
Author: Glitter Protocol
Author-email: ted@glitterprotocol.io
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.5
Provides-Extra: test
Provides-Extra: dev
Provides-Extra: docs
License-File: LICENSE


:Info: See `our website`_  for more information. See `glitter-sdk-py`_ for the latest source.
:Documentation: Available at `glitter-sdk-py.readthedocs.io`_
:Author: Glitter Protocol

.. contents:: Table of Contents

=========================
 Installation
=========================

glitter sdk is in the `Python Package Index`_.
This tutorial walks you through how to set up glitter-sdk-py_ for local development.

The glitter Python Driver depends on:

1. Python 3.5+
2. A recent Python 3 version of pip
3. A recent Python 3 version of setuptools

Installing with pip
---------------------

We recommend using pip_ to install glitter_sdk on all platforms:

.. code-block:: bash

    $ python3 -m pip install glitter_sdk

To get a specific version of glitter:

.. code-block:: bash

    $ python3 -m pip install glitter_sdk==0.1.0

To upgrade using pip:

.. code-block:: bash

    $ python3 -m pip install --upgrade glitter_sdk

Dependencies
---------------------

You can install all dependencies automatically with the following command:

.. code-block:: bash

    $ python3 -m pip install glitter_sdk[requests]


Installing from source
----------------------------------

If you’d rather install directly from the source (i.e. to stay on the bleeding edge), install the C extension dependencies then check out the latest source from GitHub and install the driver from the resulting tree:

.. code-block:: bash

    $ git clone https://github.com/glitternetwork/glitter-sdk-py glitter-sdk-py
    $ cd glitter-sdk-py/
    $ python3 setup.py install


.. _our website: https://glitterprotocol.io
.. _glitter-sdk-py: https://github.com/glitternetwork/glitter-sdk-py
.. _glitter-sdk-py.readthedocs.io: https://glitter-sdk-py.readthedocs.io/en/latest/index.html
.. _pip: https://pypi.org/project/pip/
.. _Python Package Index: https://pypi.org/project/glitter_sdk/


Changelog
=========


0.0.1 (2022-04-04)
--------------------

* Planning release on PyPI.


