Coder Social home page Coder Social logo

dg-packager's Introduction

DG-Packager

RO-Crate Generate tools

Installation

  • Python : >= 3.8
  1. install dg-packager

    # Install from PyPI [TODO: not available yet]
    $ pip install dg-packager
    
    OR
    
    # install from source [TODO: not available yet]
    $ mkdir {dir to clone dg-packager repository}
    $ cd {dir to clone dg-packager repository}
    $ git clone <this repo>
    $ cd dg-packager
    $ python3 -m pip install .
  2. install nii-dg(SDK library)

    $ mkdir {dir to clone nii-dg repository}
    $ cd {dir to clone nii-dg repository}
    
    $ git clone https://github.com/NII-DG/nii-dg.git
    $ cd nii-dg
    $ python3 -m pip install .

Usage

Getting RO-Crate from Raw metadata derived from some Data Storage Platform

  1. For Gin-Fork

    Step 1. Getting Raw Metadata from Gin-fork API

    1. Access [GET] https://ginfork.sample.domain/api/v1/repos/{repo_id}/{branch_name}/metadata

      โ€ปGIN-fork API for getting metadta

    Step 2. Getting Ro-Crate from Raw Metadata derived from Gin-Fork

    from from dg_packager.ro_generator.gin_ro_generator import GinRoGenerator
    from dg_packager.error.error import JsonValidationError, RoPkgError
    
    try:
        # Raw Metadata(Json; dict) acquired from Gin-fork API(by  1 step) give Generate Function.
        ro_crete = GinRoGenerator.Generate(raw_metadata)
        # you are able to obtain Ro-Crate(JSOn; dict).
    except JsonValidationError as e:
        # If given Raw Metadata to Function is invalid format, exception occurs.(derived dg-packager)
        print(e)
        # e.g.: {'required_key': ['invalid_key_name', /....................], 'invalid_value_type': ['error_msg', ......], 'invalid_value' :['error_msg', ......]}
    
    
        # (Do something.....)
    
    except RoPkgError as e:
        # If each value of metadata is invalid on checking property, exception occurs.(derived SDK Library)
        print(e)
        # {'results': [{'<ginfork.File Dockerfile>': {'name': 'This property is required, but not found.', 'sdDatePublished': 'The value is invalid format.'}}, {'<ginfork.File LICENSE>': {'name': 'This property is required, but not found.'}}]}
    
        # (Do something.....)
  2. For AAAAA

Branch and Release Info

dg-packager's People

Contributors

ivis-akaike avatar ivis-tsukioka avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.