| script |
|
|---|
Let's get started with Frictionless! We will learn how to install and use the framework. The simple example below will showcase the framework's basic functionality.
The framework requires Python3.10+. Versioning follows the SemVer Standard.
pip install frictionless
pip install frictionless[sql] # to install a core plugin (optional)
pip install 'frictionless[sql]' # for zsh shellThe framework supports CSV, Excel, and JSON formats by default. The second command above installs a plugin for SQL support. There are plugins for SQL, Pandas, HTML, and others (all supported plugins are listed in the "File Formats" and schemes in "File Schemes" menu). Usually, you don't need to think about it in advance–frictionless will display a useful error message about a missing plugin with installation instructions.
Did you have an error installing Frictionless? Here are some dependencies and common errors:
pip: command not found. Please see the pip docs for help installing pip.- Installing Python help (Mac)
- Installing Python help (Windows)
Still having a problem? Ask us for help on our Discord chat or open an issue. We're happy to help!
The framework can be used:
- as a Python library
- as a command-line interface
For instance, both examples below do the same thing:
frictionless extract data/table.csvfrom frictionless import extract
rows = extract('data/table.csv')The interfaces are as much alike as possible regarding naming conventions and the way you interact with them. Usually, it's straightforward to translate, for instance, Python code to a command-line call. Frictionless provides code completion for Python and the command-line, which should help to get useful hints in real time.
Arguments conform to the following naming convention:
- for Python interfaces, they are snake_cased, e.g.
missing_values - within dictionaries or JSON objects, they are camelCased, e.g.
missingValues - in the command line, they use dashes, e.g.
--missing-values
To get the documentation for a command-line interface just use the --help flag:
frictionless --help
frictionless describe --help
frictionless extract --help
frictionless validate --help
frictionless transform --helpDownload
invalid.csvto reproduce the examples (right-click and "Save link as"). For more examples, please take a look at the Basic Examples article.
We will take a very messy data file:
cat invalid.csvwith open('invalid.csv') as file:
print(file.read())First of all, let's use describe to infer the metadata directly from the tabular data. We can then edit and save it to provide others with useful information about the data:
The CLI output is in YAML, it is a default Frictionless output format.
frictionless describe invalid.csvfrom pprint import pprint
from frictionless import describe
resource = describe('invalid.csv')
pprint(resource)Now that we have inferred a table schema from the data file (e.g., expected format of the table, expected type of each value in a column, etc.), we can use extract to read the normalized tabular data from the source CSV file:
frictionless extract invalid.csvfrom pprint import pprint
from frictionless import extract
rows = extract('invalid.csv')
pprint(rows)Last but not least, let's get a validation report. This report will help us to identify and fix all the errors present in the tabular data, as comprehensive information is provided for every problem:
frictionless validate invalid.csvfrom pprint import pprint
from frictionless import validate
report = validate('invalid.csv')
pprint(report.flatten(["rowNumber", "fieldNumber", "type"]))Now that we have all this information:
- we can clean up the table to ensure the data quality
- we can use the metadata to describe and share the dataset
- we can include the validation into our workflow to guarantee the validity
- and much more: don't hesitate and read the following sections of the documentation!