datasets-br / sql-unifier

Try all datasets in a single SQL table, plug-and-play!
3 stars 0 forks source link

incluir rotina para a carga de todos os repositórios-dataset de um projeto #17

Open ppKrauss opened 6 years ago

ppKrauss commented 6 years ago

No Github é oferecida a API de acesso. Por exemplo para todos em https://github.com/datasets , basta usar o nome do projeto, datasets na URL da API (https://api.github.com/users/datasets/repos), ou seja, https://api.github.com/users/datasets/repos

Fazer primeiro testes com https://github.com/datasets-br


Outros exemplos

curl -s https://api.github.com/orgs/twitter/repos?per_page=200 \
  | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}'

Ver código Python em https://stackoverflow.com/a/8713716/287948