Skip to content

dbcls/ldflow

Repository files navigation

Ldflow

Prerequisites

  • ruby 3.2+

Installation

  1. Clone the repository

    Clone the repository and submodules at once by

    git clone --recurse-submodules https://github.com/dbcls/ldflow.git

    or step by step

    git clone https://github.com/dbcls/ldflow.git
    cd ldflow
    git submodule update --init --recursive
  2. Install executable

    cd ldflow
    rake install
  3. Setup runtime environment

    ldflow setup
    ldflow compose up -d

Usage

convert table

Convert table format data to RDF with RDF Config

Usage:
  ldflow convert table <FILE> -c, --config-dir=CONFIG_DIR

Options:
  -c, --config-dir=CONFIG_DIR  # Path to config directory
  -f, [--format=FORMAT]        # Output format
                               # Default: jsonl
                               # Possible values: jsonld, json-ld, json_ld, jsonl, rdf
  -L, [--header-lines=N]       # Number of header lines
                               # Default: 1
  -l, [--lines=N]              # Number of lines per batch
                               # Default: 100
  -p, [--max-proc=N]           # Maximum number of processes
                               # Default: 1
  -o, [--output=OUTPUT]        # Path to the output
                               # Default: -

convert jsonl

Convert JSON-LD lines to other RDF formats

Usage:
  ldflow convert jsonl <FILE>

Options:
  -f, [--format=FORMAT]    # Output format
                           # Default: ntriples
                           # Possible values: ntriples
  -l, [--lines=N]          # Number of lines per batch
                           # Default: 10000
  -p, [--max-proc=N]       # Maximum number of processes
                           # Default: 1
  -o, [--output=OUTPUT]    # Path to the output
                           # Default: -
      [--preload=PRELOAD]  # Path to a context file to preload

Update rdf-config submodule

  1. With an account that can push to GitHub

    cd path/to/ldflow
    git pull origin main
    cd vendor/rdf-config
    git pull origin master
    cd ../..
    git add vendor/rdf-config
    git commit -m 'update rdf-config'
    git push origin main
  2. On the server in the execution environment

    cd path/to/ldflow
    git pull origin main
    git submodule update

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/dbcls/ldflow. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Ldflow project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published