frictionless


Namefrictionless JSON
Version 5.17.0 PyPI version JSON
download
home_pageNone
SummaryData management framework for Python that provides functionality to describe, extract, validate, and transform tabular data
upload_time2024-04-29 13:31:59
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords data package data validation frictionless data json schema json table schema open data tabular data package
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # frictionless-py

[![Build](https://img.shields.io/github/actions/workflow/status/frictionlessdata/frictionless-py/general.yaml?branch=main)](https://github.com/frictionlessdata/frictionless-py/actions)
[![Coverage](https://img.shields.io/codecov/c/github/frictionlessdata/frictionless-py/main)](https://codecov.io/gh/frictionlessdata/frictionless-py)
[![Release](https://img.shields.io/pypi/v/frictionless.svg)](https://pypi.python.org/pypi/frictionless)
[![Citation](https://zenodo.org/badge/28409905.svg)](https://zenodo.org/badge/latestdoi/28409905)
[![Codebase](https://img.shields.io/badge/codebase-github-brightgreen)](https://github.com/frictionlessdata/frictionless-py)
[![Support](https://img.shields.io/badge/support-slack-brightgreen)](https://join.slack.com/t/frictionlessdata/shared_invite/zt-17kpbffnm-tRfDW_wJgOw8tJVLvZTrBg)

```markdown remark type=primary
Migrating from an older version? Please read **[v5](blog/2022/08-22-frictionless-framework-v5.html)** announcement and migration guide.
```

Data management framework for Python that provides functionality to describe, extract, validate, and transform tabular data (DEVT Framework). It supports a great deal of data sources and formats, as well as provides popular platforms integrations. The framework is powered by the lightweight yet comprehensive [Frictionless Standards](https://specs.frictionlessdata.io/).

## Purpose

- **Describe your data**: You can infer, edit and save metadata of your data tables. It's a first step for ensuring data quality and usability. Frictionless metadata includes general information about your data like textual description, as well as, field types and other tabular data details.
- **Extract your data**: You can read your data using a unified tabular interface. Data quality and consistency are guaranteed by a schema. Frictionless supports various file schemes like HTTP, FTP, and S3 and data formats like CSV, XLS, JSON, SQL, and others.
- **Validate your data**: You can validate data tables, resources, and datasets. Frictionless generates a unified validation report, as well as supports a lot of options to customize the validation process.
- **Transform your data**: You can clean, reshape, and transfer your data tables and datasets. Frictionless provides a pipeline capability and a lower-level interface to work with the data.

## Features

- Open Source (MIT)
- Powerful Python framework
- Convenient command-line interface
- Low memory consumption for data of any size
- Reasonable performance on big data
- Support for compressed files
- Custom checks and formats
- Fully pluggable architecture
- The included API server
- More than 1000+ tests

## Installation

```bash
$ pip install frictionless
```

## Example

```bash
$ frictionless validate data/invalid.csv
[invalid] data/invalid.csv

  row    field  code              message
-----  -------  ----------------  --------------------------------------------
             3  blank-header      Header in field at position "3" is blank
             4  duplicate-header  Header "name" in field "4" is duplicated
    2        3  missing-cell      Row "2" has a missing cell in field "field3"
    2        4  missing-cell      Row "2" has a missing cell in field "name2"
    3        3  missing-cell      Row "3" has a missing cell in field "field3"
    3        4  missing-cell      Row "3" has a missing cell in field "name2"
    4           blank-row         Row "4" is completely blank
    5        5  extra-cell        Row "5" has an extra value in field  "5"
```

## Documentation

Please visit our documentation portal:
- https://framework.frictionlessdata.io

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "frictionless",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "data package, data validation, frictionless data, json schema, json table schema, open data, tabular data package",
    "author": null,
    "author_email": "Open Knowledge Foundation <info@okfn.org>",
    "download_url": "https://files.pythonhosted.org/packages/18/bd/7aa22fb2003c8cba4f049f5964533201a5b9c1fab0714e552f71c8c0d8e5/frictionless-5.17.0.tar.gz",
    "platform": null,
    "description": "# frictionless-py\n\n[![Build](https://img.shields.io/github/actions/workflow/status/frictionlessdata/frictionless-py/general.yaml?branch=main)](https://github.com/frictionlessdata/frictionless-py/actions)\n[![Coverage](https://img.shields.io/codecov/c/github/frictionlessdata/frictionless-py/main)](https://codecov.io/gh/frictionlessdata/frictionless-py)\n[![Release](https://img.shields.io/pypi/v/frictionless.svg)](https://pypi.python.org/pypi/frictionless)\n[![Citation](https://zenodo.org/badge/28409905.svg)](https://zenodo.org/badge/latestdoi/28409905)\n[![Codebase](https://img.shields.io/badge/codebase-github-brightgreen)](https://github.com/frictionlessdata/frictionless-py)\n[![Support](https://img.shields.io/badge/support-slack-brightgreen)](https://join.slack.com/t/frictionlessdata/shared_invite/zt-17kpbffnm-tRfDW_wJgOw8tJVLvZTrBg)\n\n```markdown remark type=primary\nMigrating from an older version? Please read **[v5](blog/2022/08-22-frictionless-framework-v5.html)** announcement and migration guide.\n```\n\nData management framework for Python that provides functionality to describe, extract, validate, and transform tabular data (DEVT Framework). It supports a great deal of data sources and formats, as well as provides popular platforms integrations. The framework is powered by the lightweight yet comprehensive [Frictionless Standards](https://specs.frictionlessdata.io/).\n\n## Purpose\n\n- **Describe your data**: You can infer, edit and save metadata of your data tables. It's a first step for ensuring data quality and usability. Frictionless metadata includes general information about your data like textual description, as well as, field types and other tabular data details.\n- **Extract your data**: You can read your data using a unified tabular interface. Data quality and consistency are guaranteed by a schema. Frictionless supports various file schemes like HTTP, FTP, and S3 and data formats like CSV, XLS, JSON, SQL, and others.\n- **Validate your data**: You can validate data tables, resources, and datasets. Frictionless generates a unified validation report, as well as supports a lot of options to customize the validation process.\n- **Transform your data**: You can clean, reshape, and transfer your data tables and datasets. Frictionless provides a pipeline capability and a lower-level interface to work with the data.\n\n## Features\n\n- Open Source (MIT)\n- Powerful Python framework\n- Convenient command-line interface\n- Low memory consumption for data of any size\n- Reasonable performance on big data\n- Support for compressed files\n- Custom checks and formats\n- Fully pluggable architecture\n- The included API server\n- More than 1000+ tests\n\n## Installation\n\n```bash\n$ pip install frictionless\n```\n\n## Example\n\n```bash\n$ frictionless validate data/invalid.csv\n[invalid] data/invalid.csv\n\n  row    field  code              message\n-----  -------  ----------------  --------------------------------------------\n             3  blank-header      Header in field at position \"3\" is blank\n             4  duplicate-header  Header \"name\" in field \"4\" is duplicated\n    2        3  missing-cell      Row \"2\" has a missing cell in field \"field3\"\n    2        4  missing-cell      Row \"2\" has a missing cell in field \"name2\"\n    3        3  missing-cell      Row \"3\" has a missing cell in field \"field3\"\n    3        4  missing-cell      Row \"3\" has a missing cell in field \"name2\"\n    4           blank-row         Row \"4\" is completely blank\n    5        5  extra-cell        Row \"5\" has an extra value in field  \"5\"\n```\n\n## Documentation\n\nPlease visit our documentation portal:\n- https://framework.frictionlessdata.io\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Data management framework for Python that provides functionality to describe, extract, validate, and transform tabular data",
    "version": "5.17.0",
    "project_urls": {
        "changelog": "https://github.com/frictionlessdata/framework/blob/main/CHANGELOG.md",
        "homepage": "https://github.com/frictionlessdata/frictionless-py"
    },
    "split_keywords": [
        "data package",
        " data validation",
        " frictionless data",
        " json schema",
        " json table schema",
        " open data",
        " tabular data package"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c63118c33075869c293c8c1dbf87493d37752f0699b2b9ad9d78fb80d0bcd1c",
                "md5": "754712b33a99138210dcef27eeee28b4",
                "sha256": "c7ceaf69f9430449971bd47d330f741d3d5d9513716308a2b05c56c25bdeb22d"
            },
            "downloads": -1,
            "filename": "frictionless-5.17.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "754712b33a99138210dcef27eeee28b4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 532371,
            "upload_time": "2024-04-29T13:31:54",
            "upload_time_iso_8601": "2024-04-29T13:31:54.180167Z",
            "url": "https://files.pythonhosted.org/packages/5c/63/118c33075869c293c8c1dbf87493d37752f0699b2b9ad9d78fb80d0bcd1c/frictionless-5.17.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18bd7aa22fb2003c8cba4f049f5964533201a5b9c1fab0714e552f71c8c0d8e5",
                "md5": "5a7c36ae62116867ba648a366036d2c1",
                "sha256": "bee4a9f076fab15e462772d09d3a496b50d73ec5ecb927d97b9307eeaefc6d3c"
            },
            "downloads": -1,
            "filename": "frictionless-5.17.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5a7c36ae62116867ba648a366036d2c1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 74368982,
            "upload_time": "2024-04-29T13:31:59",
            "upload_time_iso_8601": "2024-04-29T13:31:59.746123Z",
            "url": "https://files.pythonhosted.org/packages/18/bd/7aa22fb2003c8cba4f049f5964533201a5b9c1fab0714e552f71c8c0d8e5/frictionless-5.17.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-29 13:31:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "frictionlessdata",
    "github_project": "framework",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "frictionless"
}
        
Elapsed time: 0.25667s