framework icon indicating copy to clipboard operation
framework copied to clipboard

Data management framework for Python that provides functionality to describe, extract, validate, and transform tabular data

Results 245 framework issues
Sort by recently updated
recently updated
newest added

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":...

bug

When running: ```python from frictionless import Resource, formats resource = Resource( { "name": "reprex", "data": [ ["name", "continent"], ["germany", "europe"], ["france", "europe"], ["spain", "europe"], ], "schema": { "fields": [ {"name":...

bug

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...

general
help wanted

# 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...

bug
good first issue

# 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...

feature

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...

bug

# 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...

feature

# 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....

feature

# 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...

bug

# 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...

bug