framework
framework copied to clipboard
Data management framework for Python that provides functionality to describe, extract, validate, and transform tabular data
# Overview Currently, some update steps like `steps.resource_udpate` use a free dict `descriptor` property. We need to consider migrating to well-defined and typed standalone properties like `name`, `title`, etc instead...
# Overview Historically, the inferring process in Frictionless was based on passing data values to different field type parsers and checking if they can parse a value. It's the most...
I am working on automating the releases of my team's project, and have been unable to deal with paths, base_paths, and trusted paths. I am using version 4.40.8 and I...
Currently because of how row_filter is written: ``` evalclass = simpleeval.EvalWithCompoundTypes function = lambda row: evalclass(names=row).eval(self.formula) ``` https://github.com/frictionlessdata/framework/blob/79c902b6bc7d6798f6e23bce1bdfd929a3998861/frictionless/steps/row/row_filter.py#L41 it's possible to refer to the fields names from a Resource in...
# Overview Discussion: - https://frictionlessdata.slack.com/archives/C0369HZ2SLT/p1684233265505699 - https://github.com/frictionlessdata/frictionless-r/issues/102
As far as I understand, it is not possible to validate a csv file via cli command directly with a json schema. It looks like we need first to convert...
# Overview When I try to read "languages" table only from postgres database, it seems to ignore control params: ``` control = formats.SqlControl(table="languages", basepath="data") package = Package(pg_database_url, control=control) assert len(package.resources)...
# Overview I would like the functionality to connect and read/validate data from a Google cloud storage bucket. This functionality would be very similar to what exists in your s3...
# Overview From https://app.slack.com/client/T0362UCGH70/C0369HZ2SLT/thread/C0369HZ2SLT-1680012396.569999?cdn_fallback=2 > I'd love to have a way to do something like frictionless pull [example.com/datapackage.yaml](http://example.com/datapackage.yaml) and have that command download the resources into the current folder or...
If you use CkanControl to access a private package in a CKAN instance it fetch the package successfully: ``` from frictionless.portals import CkanControl from frictionless import Package api = 'SECRET_KEY'...