data-cliff


Namedata-cliff JSON
Version 0.1.3 PyPI version JSON
download
home_pagehttps://github.com/ruizdesotto/data_cliff
SummaryCLI tool to show differences on text data tracked by dvc.
upload_time2023-05-08 17:10:39
maintainer
docs_urlNone
authorMiguel Ruiz
requires_python>=3.6
licenseApache Software License 2.0
keywords data_cliff
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==========
Data Cliff
==========


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

.. image:: https://img.shields.io/pypi/pyversions/data_cliff
    :target: https://pypi.python.org/pypi/data_cliff
    :alt: Python Version

.. image:: https://img.shields.io/pypi/dm/data_cliff.svg
    :target: https://pypi.python.org/pypi/data_cliff/
    :alt: PyPI download month

.. image:: https://img.shields.io/pypi/l/data_cliff.svg
    :target: https://pypi.python.org/pypi/data_cliff/
    :alt: Licence

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

.. .. image:: https://pyup.io/repos/github/ruizdesotto/data_cliff/shield.svg
..     :target: https://pyup.io/repos/github/ruizdesotto/data_cliff/
..     :alt: Updates

.. image:: https://github.com/ruizdesotto/data_cliff/actions/workflows/pypi_release.yml/badge.svg
    :target: https://github.com/ruizdesotto/data_cliff/actions?query=branch%3Amain
    :alt: Build Status

.. image:: https://github.com/ruizdesotto/data_cliff/actions/workflows/github-actions-pr.yml/badge.svg
    :target: https://github.com/ruizdesotto/data_cliff/actions?query=branch%3Amain
    :alt: CI Status

.. image:: https://codecov.io/gh/ruizdesotto/data_cliff/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/ruizdesotto/data_cliff
    :alt: Coverage

.. image:: http://www.mypy-lang.org/static/mypy_badge.svg
    :target: http://mypy-lang.org/
    :alt: mypy

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black
    :alt: black


CLI tool to show differences on text data tracked by dvc.


* Free software: Apache Software License 2.0
* Documentation: https://data-cliff.readthedocs.io.


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

You can install the tool directly from ``pip``::

    pip install data_cliff


Quick start-guide
-----------------

``data_cliff`` is a tool that helps you visualize differences on text file you're
tracking on a ``dvc`` repo. Its CLI ``cliff`` aims to be as closed to ``git diff``
as possible::

    cliff [a_rev] [b_rev] [path/to/file]


``WARNING`` You must be in a `dvc` repository.



Credits
-------

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

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


=======
History
=======

0.0.1 (2023-02-17)
------------------

* First release on PyPI.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ruizdesotto/data_cliff",
    "name": "data-cliff",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "data_cliff",
    "author": "Miguel Ruiz",
    "author_email": "miguel.ruizdesotto@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8f/39/d4a112f8b175a55b149ff2c2e886a45883c72cb2d31e57ec5ebd66cb552b/data_cliff-0.1.3.tar.gz",
    "platform": null,
    "description": "==========\nData Cliff\n==========\n\n\n.. image:: https://img.shields.io/pypi/v/data_cliff.svg\n    :target: https://pypi.python.org/pypi/data_cliff\n\n.. image:: https://img.shields.io/pypi/pyversions/data_cliff\n    :target: https://pypi.python.org/pypi/data_cliff\n    :alt: Python Version\n\n.. image:: https://img.shields.io/pypi/dm/data_cliff.svg\n    :target: https://pypi.python.org/pypi/data_cliff/\n    :alt: PyPI download month\n\n.. image:: https://img.shields.io/pypi/l/data_cliff.svg\n    :target: https://pypi.python.org/pypi/data_cliff/\n    :alt: Licence\n\n.. image:: https://readthedocs.org/projects/data-cliff/badge/?version=latest\n    :target: https://data-cliff.readthedocs.io/en/latest/?version=latest\n    :alt: Documentation Status\n\n.. .. image:: https://pyup.io/repos/github/ruizdesotto/data_cliff/shield.svg\n..     :target: https://pyup.io/repos/github/ruizdesotto/data_cliff/\n..     :alt: Updates\n\n.. image:: https://github.com/ruizdesotto/data_cliff/actions/workflows/pypi_release.yml/badge.svg\n    :target: https://github.com/ruizdesotto/data_cliff/actions?query=branch%3Amain\n    :alt: Build Status\n\n.. image:: https://github.com/ruizdesotto/data_cliff/actions/workflows/github-actions-pr.yml/badge.svg\n    :target: https://github.com/ruizdesotto/data_cliff/actions?query=branch%3Amain\n    :alt: CI Status\n\n.. image:: https://codecov.io/gh/ruizdesotto/data_cliff/branch/main/graph/badge.svg\n    :target: https://codecov.io/gh/ruizdesotto/data_cliff\n    :alt: Coverage\n\n.. image:: http://www.mypy-lang.org/static/mypy_badge.svg\n    :target: http://mypy-lang.org/\n    :alt: mypy\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n    :alt: black\n\n\nCLI tool to show differences on text data tracked by dvc.\n\n\n* Free software: Apache Software License 2.0\n* Documentation: https://data-cliff.readthedocs.io.\n\n\nInstallation\n------------\n\nYou can install the tool directly from ``pip``::\n\n    pip install data_cliff\n\n\nQuick start-guide\n-----------------\n\n``data_cliff`` is a tool that helps you visualize differences on text file you're\ntracking on a ``dvc`` repo. Its CLI ``cliff`` aims to be as closed to ``git diff``\nas possible::\n\n    cliff [a_rev] [b_rev] [path/to/file]\n\n\n``WARNING`` You must be in a `dvc` repository.\n\n\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n\n\n=======\nHistory\n=======\n\n0.0.1 (2023-02-17)\n------------------\n\n* First release on PyPI.\n",
    "bugtrack_url": null,
    "license": "Apache Software License 2.0",
    "summary": "CLI tool to show differences on text data tracked by dvc.",
    "version": "0.1.3",
    "project_urls": {
        "Homepage": "https://github.com/ruizdesotto/data_cliff"
    },
    "split_keywords": [
        "data_cliff"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcbe0609fc146679ecee2877ec5664146bcafa18044f56b8b7ad2a044dd5bd0d",
                "md5": "32f69f9a75f658bf4afb140d1de6371a",
                "sha256": "38ae1acdd984498d5a0558c5a7e6a7c0c79d70ac05babe8a4c4a0f26443df96b"
            },
            "downloads": -1,
            "filename": "data_cliff-0.1.3-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "32f69f9a75f658bf4afb140d1de6371a",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 6783,
            "upload_time": "2023-05-08T17:10:38",
            "upload_time_iso_8601": "2023-05-08T17:10:38.210174Z",
            "url": "https://files.pythonhosted.org/packages/dc/be/0609fc146679ecee2877ec5664146bcafa18044f56b8b7ad2a044dd5bd0d/data_cliff-0.1.3-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f39d4a112f8b175a55b149ff2c2e886a45883c72cb2d31e57ec5ebd66cb552b",
                "md5": "805e9d971282bc1a3cc793417ac15b9b",
                "sha256": "97ea64d20b0c4aa8dafd62260077a0b1af468dc8fb024365d080b96de92cd299"
            },
            "downloads": -1,
            "filename": "data_cliff-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "805e9d971282bc1a3cc793417ac15b9b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 14766,
            "upload_time": "2023-05-08T17:10:39",
            "upload_time_iso_8601": "2023-05-08T17:10:39.692302Z",
            "url": "https://files.pythonhosted.org/packages/8f/39/d4a112f8b175a55b149ff2c2e886a45883c72cb2d31e57ec5ebd66cb552b/data_cliff-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-08 17:10:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ruizdesotto",
    "github_project": "data_cliff",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "data-cliff"
}
        
Elapsed time: 0.06647s