framework
framework copied to clipboard
Data management framework for Python that provides functionality to describe, extract, validate, and transform tabular data
When running: ```python import sqlalchemy as sa from frictionless import Resource, formats resource = Resource( { "name": "reprex", "data": [ ["name", "continent"], ["germany", "europe"], ["france", "europe"], ["spain", "europe"], ], "schema":...
When running: ```python from frictionless import Resource, formats resource = Resource( { "name": "reprex", "data": [ ["name", "continent"], ["germany", "europe"], ["france", "europe"], ["spain", "europe"], ], "schema": { "fields": [ {"name":...
Hello Guys ! Our team are working to generate an executable with Pyinstaller or Nuitka with `Frictionless version 4.40.11` ( version from `pip show frictionless` ). Frictionless works great when...
# Overview I want to use Frictionless datapackages to provide metadata about some collections hosted on s3, but I'm encountering issues when trying to read these files. I can load...
# Overview Looking at https://framework.frictionlessdata.io/docs/formats/sql.html I noticed that SQL Server is not supported, yet SQLAlchemy lists SQL Server CI supports [version 2017](https://docs.sqlalchemy.org/en/20/dialects/mssql.html). Transitively, does this mean frictionless does indeed support...
The data package property [image](https://specs.frictionlessdata.io/data-package/#image) is defined as a [url-or-path](https://specs.frictionlessdata.io/data-resource/#url-or-path), where: > Absolute paths (/) and relative parent paths (…/) MUST NOT be used, and implementations SHOULD NOT support these...
# Overview [GTFS](https://en.wikipedia.org/wiki/GTFS)(General Transit Feed Specification) is not supported because the csv files are in '.txt' format. `frictionless extract *` As a user, I want to be able to use/apply...
# Overview A common format in which geo-related public sector data is provided is ESRI shape (shp). Those are ZIP files that contain the geometry and an additional attribute table....
# Overview A resource consisting of multiple compressed csv-files results in an error when trying to `validate` or `query` with Frictionless Framework. It works fine when `path` is a single...
# Overview For the schema ```yaml schema: fields: - name: a type: string ``` if the data is stored in excel and field `a` has only numbers, a validation error...