-
Sample code to reproduce the issue:
```perl
use Catmandu;
use Catmandu::Sane;
use File::Temp;
my $exporter = Catmandu->exporter('TSV', fh => File::Temp->new());
$exporter->add({foo => 'bar'}…
-
When running Catmandu, it complained about a missing Catmandu::Store::DBI package. I installed this one manually on my virtual machine using the following command:
`plenv exec cpanm -n Catmandu::Stor…
-
Relations like "=" doesn't work for numbers/number strings:
catmandu.yml:
```yaml
---
store:
cql:
package: MongoDB
options:
database_name: camel
bags:
data:…
jorol updated
5 years ago
-
Dist::Milla allows generation of README.md based on a pod document. See how Catmandu does it.
-
I am working with a dataset that contains some poorly encoded strings, i.e.:
```
=001 TR1311
=245 10$aÀ la Albéniz$h[electronic resource]
```
I am passing these records through a lookup with va…
-
With this [pull request](https://github.com/thedatahub/Datahub-Factory/pull/2) in the works, we can now flesh out / isolate different functions in separate command classes.
Question: what should do…
-
Something like the first example in https://verbundwiki.gbv.de/pages/viewpage.action?pageId=40009828 is called a non-normalized PICA+. It uses '\n' (Byte 10) as field marker and '$' as subfield-mark…
-
Hi,
In conversion from XML to CSV, it is converted to a one field which is an ARRAY. Actually, as most of the XML file, it has a node which represents a single record. But it sees this as an ARRAY an…
-
I'm confronted with an OAI-PMH endpoint that publishes records that don't have an OAI 2 compliant identifier:
```bash
$ catmandu convert OAI --url http://example.org/oai --metadataPrefix oai_dc --…
-
The `sort` in the code needs to be a blessed reference. But I would like to be able to specify:
```
$ catmandu export mydatabase --query '{"foo":"bar"}' --sort '{"timestamp":1}'
```