Francisco Júnior
Francisco Júnior
Here is the message when we connect to a CKAN site with DataStore enabled and perform a query with a `dplyr::collect` call at the end: ``` r library("ckanr"); library("dplyr") ckan...
Here is the message when we connect to a CKAN site with DataStore enabled: ``` r library("ckanr"); library("dplyr") ckan url: https://dados.mg.gov.br/ resource Warning: uses an old dbplyr interface #> ℹ...
# Overview This is a feature request for support of the [Foreign Keys to Data Packages](https://specs.frictionlessdata.io/patterns/#table-schema-foreign-keys-to-data-packages) pattern. Here is a [reprex](https://github.com/dados-mg/datapackage-reprex/tree/foreign-key-data-package) that could be used for eventual testing: ```python from...
# Overview I have a [datapackage](https://github.com/dados-mg/letters-datapackage) that makes use of the [data in multiple files](https://specs.frictionlessdata.io/data-resource/#data-in-multiple-files) feature where a single resource data is split across multiple files. From the spec >...
The [`activity_diff`](https://docs.ckan.org/en/2.9/api/index.html#ckan.logic.action.get.activity_diff) endpoint was introduced in CKAN 2.9.
The following variables are defined as secrets in Github Actions making it inconvenient to troubleshoot CI issues that could be related to their values: - `CKANR_DEFAULT_URL` - `CKANR_TEST_BEHAVIOUR` - `CKANR_TEST_DID`...
- fixes #1560 This PR fixes two more edge cases when `steps.field_update` is updating either primary or foreign keys: - update of a non-primary key field name when the table...
Here's a reprex: ```python from frictionless import validate descriptor = { 'resources': [ { 'name': 'name', 'data': [ ['id1', 'id2'], ['a', '1'], ['a', None], ], 'schema': { 'fields': [ {'name':...
When running: ```python from frictionless import Resource, formats resource = Resource( { "name": "reprex", "data": [ ["account_code", "account_description"], ["10000000000000", "Assets"], ["20000000000000", "Liabilities"], ["90000000000000", "Equity"], ], "schema": { "fields": [ {"name":...
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":...