Metadata-Version: 2.1
Name: aletheia
Version: 3.3.2
Summary: A Python implementation of Aletheia
Home-page: https://danielquinn.github.io/aletheia
Author: Daniel Quinn
Author-email: code@danielquinn.org
Maintainer: Daniel Quinn
Maintainer-email: code@danielquinn.org
License: AGPLv3
Download-URL: https://gitlab.com/danielquinn/aletheia-python
Keywords: command Line,verification,fake news
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Internet :: WWW/HTTP
License-File: LICENSE
Requires-Dist: cryptography (>=2.1.3)
Requires-Dist: file-magic (>=0.3.0)
Requires-Dist: requests (>=2.18.4)
Requires-Dist: termcolor (>=1.1.0)
Requires-Dist: dnspython (>=1.15.0)
Provides-Extra: doc
Requires-Dist: sphinx ; extra == 'doc'
Requires-Dist: sphinx-rtd-theme ; extra == 'doc'

Aletheia for Python
===================
|PyPi| |Pipeline Status| |Test Coverage| |License| |Documentation| |StackShare| |Thanks!|

A Python 3 implementation of `Aletheia`_.

.. _Aletheia: https://github.com/danielquinn/aletheia
.. |PyPi| image:: https://img.shields.io/pypi/pyversions/aletheia.svg
   :target: https://pypi.org/project/aletheia/
.. |Pipeline Status| image:: https://gitlab.com/danielquinn/aletheia-python/badges/master/pipeline.svg
   :target: https://gitlab.com/danielquinn/aletheia-python/commits/master
.. |Test Coverage| image:: https://gitlab.com/danielquinn/aletheia-python/badges/master/coverage.svg
   :target: https://gitlab.com/danielquinn/aletheia-python/commits/master
.. |License| image:: https://img.shields.io/pypi/l/aletheia.svg?style=flat
   :target: https://gitlab.com/danielquinn/aletheia-python/blob/master/LICENSE
.. |Documentation| image:: https://readthedocs.org/projects/aletheia-project/badge/?version=latest
   :target: https://aletheia-project.readthedocs.io/en/latest/
.. |StackShare| image:: http://img.shields.io/badge/tech-stack-0690fa.svg?style=flat
   :target: https://stackshare.io/danielquinn/aletheia
.. |Thanks!| image:: https://img.shields.io/badge/THANKS-md-ff69b4.svg
   :target: https://gitlab.com/danielquinn/aletheia-python/master/THANKS.md

This is how we get from

    I read it on the Internet, so it must be true.

to

    Yesterday, the Guardian had a story about a prominent politician doing
    something they weren't supposed to be doing.  The video footage was
    certified authentic, and the author of the article stands by her work.

Aletheia is a little program you run to attach your name -- and reputation --
to the files you create: audio, video, and documentation, all of it can carry
authorship, guaranteed to be tamper proof.

Once you use Aletheia to sign your files, you can share them all over the web,
and all someone has to do to verify the file's author is run Aletheia against
the file they just received.  The complication of fetching public keys and
verifying signatures is all done for you.

If this sounds interesting to you, have a look at `the documentation`_ or even
install it and try it out yourself.

.. _the documentation: https://aletheia-project.readthedocs.io/en/latest/


The Goal
--------

I want to live in a world where journalism means something again.  Where "some
guy on the internet" making unsubstantiated claims can be fact-checked by
organisations who have a reputation for doing the work of accurate reporting.
More importantly though, I think we need a way to be able to trust what we see
again.

New technologies are evolving every day that allow better and better fakes to
be created.  Now more than ever we need a way to figure out whether we trust
the source of something we're seeing.  This is an attempt to do that.


How to Use it
-------------

The process is pretty straight forward.  Install the system dependencies as
described in the `setup documentation`_ and then:

.. code-block:: bash

    $ pip install aletheia

Once it's installed, you can verify a file to try it out.  Use `this one`_ as a
starting example.

.. _this one: https://danielquinn.org/media/cache/thumbnails/gallery/2014/11/3/139743.jpg.800x534_q85_crop-smart.jpg
.. _setup documentation: https://aletheia-project.readthedocs.io/en/latest/setup.html


Command Line API
................

.. code-block:: bash

    $ aletheia verify path/to/test.jpg


Python API
..........

.. code-block:: python

    from aletheia.utils import verify

    verify("path/to/test.jpg")


More details can be found in the `command line API`_ and `Python API`_ documentation.

.. _command line API: https://aletheia-project.readthedocs.io/en/latest/commandline-api.html
.. _Python API: https://aletheia-project.readthedocs.io/en/latest/python-api.html


How to Run the Tests
--------------------

Aletheia uses `pytest`_, so assuming you've got a working environment (with
libmagic, exiftool, and ffmpeg installed and working) you can just run it from
the project root:

.. code-block:: bash

    $ pytest

The reality of this project however is that getting a working environment setup
perfectly can be a pain, especially when all you want to do is run the tests.
So to that end, we've got some Docker containers setup for you.

To run your tests in a lightweight `Alpine Linux`_ container, just run this:

.. code-block:: bash

    $ docker run --rm -v $(pwd):/app -it registry.gitlab.com/danielquinn/aletheia-python:alpine-python3.7 bash -c 'cd /app && pytest'

That'll run the entire battery of tests in an environment containing all the
tools Aletheia needs to do its thing.  Alternatively, you can just jump into
an instance of the container and use it as a sort of virtualenv:

.. code-block:: bash

    $ docker run --rm -v $(pwd):/app -it registry.gitlab.com/danielquinn/aletheia-python:alpine-python3.7 /bin/bash
    $ cd /app
    $ pytest

.. _pytest: https://docs.pytest.org/en/latest/
.. _Alpine Linux: https://www.alpinelinux.org/


Testing for Multiple Environments
.................................

GitLab will automatically run the tests in a multitude of environments
(Alpine:py3.6, Arch, Debian:py3.5, Debian:py3.7, etc.), but if you want to do
that locally *before* it goes up to GitLab, there's a handy test script for you
that does all the work:

.. code-block:: bash

    $ ./tests/cross-platform

Just note that this script will download all of the required Docker containers
from GitLab to do its thing, so you're looking at a few hundred MB of disk
space consumed by this process.


Colophon & Disambiguation
-------------------------

This project is named for the Greek goddess of truth & verity -- a reasonable
name for a project that's trying to restore truth and verified origins to the
web.  It also doesn't hurt that the lead developer's wife is Greek ;-)

It's been noted that there's `another project out there with the same name`_.
The two projects are totally unrelated, despite the identical name *and* the
fact that both lead developers are named "Daniel".

.. _another project out there with the same name: https://github.com/daniellerch/aletheia


