githubFetch

Download file from GitHub with MATLAB
227 descargas
Actualizado 11 Aug 2021

There are many solutions for automatically downloading files from GitHub. However, they work easily mainly under Linux, needing the libraries wget or curl. If someone works with Windows or directly wants to use MATLAB, this program is useful.
The syntax is
filestr = githubFetch(user, repository, downloadType, name)

with the inputs

user: name of the user or the organization
repository: name of the repository
downloadType: 'branch' or 'release'
name: if downloadType is 'branch': branch name (default: 'master')
if downloadType is 'release': release version (default: 'latest')

and the output

filestr: path to the downloaded file (empty if the downloading failed)

Examples:

1) githubFetch('GLVis', 'glvis', 'branch')
% same as githubFetch('GLVis', 'glvis', 'branch', 'master')
2) githubFetch('matlab2tikz', 'matlab2tikz', 'branch', 'develop')
3) githubFetch('matlab2tikz', 'matlab2tikz', 'release', '1.1.0')
4) githubFetch('matlab2tikz', 'matlab2tikz', 'release')
% same as githubFetch('matlab2tikz', 'matlab2tikz', 'release', 'latest')

Citar como

Zoltán Csáti (2024). githubFetch (https://github.com/CsatiZoltan/githubFetch), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2015b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Etiquetas Añadir etiquetas
Agradecimientos

Inspiración para: human body parts detection

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

No se pueden descargar versiones que utilicen la rama predeterminada de GitHub

Versión Publicado Notas de la versión
1.1.0.0

Title corrected.

1.0.0.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.