Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Latest commit

 

History

History
38 lines (33 loc) · 1.44 KB

index.md

File metadata and controls

38 lines (33 loc) · 1.44 KB

Data Packages

Introduction

Data Package is a simple container format for describing a coherent collection of data in a single package. We have collected and sorted by the stars count all the data packages available as repositories on Github. Read more about Data Packages and Frictionless Data. If you are interested in contributing to this livemark please follow this guide.

type: primary
text: Currently, some datasets might be missing. See this <a href="https://github.com/frictionlessdata/data-packages/issues/1">issue</a> for more information.

Datasets

{% for row in frictionless.extract('data/packages.csv') %}
<div class="item">
  <div class="item-content">
    <h3>
      <a href="#card={{ row.code }}" style="color: black">
        {{ row.title or row.code }}
      </a>
    </h3>
    <p>{{ row.description or 'Description is not provided'}}</p>
    <p>
      <a class="item-content-link" href="https://github.com/{{ row.user}}/{{row.repo }}" target="_blank">
        Github <span class="fa fa-external-link-alt"></span>
      </a>
    </p>
  </div>
  <div class="item-stars">
    <span class="fa-stack fa-2x">
      <i class="fas fa-stack-2x fa-star fa-inverse item-stars-icon"></i>
      <i class="fas fa-stack-1x item-stars-count">{{ row.stars }}</i>
    </span>
  </div>
</div>
{% endfor %}