Metadata-Version: 2.1
Name: cancelchain
Version: 1.0.1
Summary: A Blockchain of Accountability, Support, and Forgiveness
Project-URL: Homepage, https://cancelchain.org
Project-URL: Documentation, https://docs.cancelchain.org
Project-URL: Source, https://github.com/cancelchain/cancelchain
Project-URL: Tracker, https://github.com/cancelchain/cancelchain/issues
Author-email: Thomas Bohmbach Jr <tom@cancelchain.org>
License-Expression: MIT
License-File: LICENSE
Keywords: blockchain,flask
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Flask
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Sociology
Requires-Python: >=3.9
Requires-Dist: base58check>=1.0
Requires-Dist: blinker>=1.5
Requires-Dist: celery>=5.2
Requires-Dist: click>=8.1
Requires-Dist: flask-caching>=2.0
Requires-Dist: flask-sqlalchemy>=3.0
Requires-Dist: flask>=2.2
Requires-Dist: gunicorn>=20.1
Requires-Dist: humanfriendly>=10.0
Requires-Dist: marshmallow>=3.19
Requires-Dist: millify>=0.1
Requires-Dist: passlib[argon2]>=1.7
Requires-Dist: pg8000>=1.29
Requires-Dist: progress>=1.6
Requires-Dist: pycryptodome>=3.16
Requires-Dist: pyjwt>=2.6
Requires-Dist: pymerkle>=4.0
Requires-Dist: python-dotenv>=0.21.1
Requires-Dist: requests>=2.28
Requires-Dist: sqlalchemy<2.0
Description-Content-Type: text/x-rst

CancelChain is an open-source python project that implements a custom blockchain ledger. The ledger protocol allows for the assigning of tokens to subjects (utf-8 strings of less than 80 characters) as indications of either opposition or support. Opposition entries are allowed to be rescinded later. Support is forever.

* `Project Home Page`_
* `Documentation`_


Installation
------------

Install using pip:

.. code-block:: console

    $ pip install cancelchain


Usage
-----

.. code-block::

    $ cancelchain --help
    Usage: cancelchain [OPTIONS] COMMAND [ARGS]...

    Options:
      -e, --env-file FILE   Load environment variables from this file. python-
                            dotenv must be installed.
      --version  Show the version and exit.
      --help     Show this message and exit.

    Commands:
      export    Export the block chain to file.
      import    Import the block chain from file.
      init      Initialize the database.
      mill      Start a milling process.
      routes    Show the routes for the app.
      run       Run a development server.
      shell     Run a shell in the app context.
      subject   Command group to work with subjects.
      sync      Synchronize the node's block chain to that of its peers.
      txn       Command group to create transactions.
      validate  Validate the node's block chain.
      wallet    Command group to work with wallets.


.. _Project Home Page: https://cancelchain.org
.. _Documentation: https://docs.cancelchain.org
