https://github.com/datalad/datalad-tube
Helpers for establishing/managing DataLad datasets from YouTube channels/playlists
https://github.com/datalad/datalad-tube
Last synced: 4 months ago
JSON representation
Helpers for establishing/managing DataLad datasets from YouTube channels/playlists
- Host: GitHub
- URL: https://github.com/datalad/datalad-tube
- Owner: datalad
- License: other
- Created: 2022-08-25T17:46:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-25T17:46:14.000Z (almost 4 years ago)
- Last Synced: 2025-09-11T10:32:33.669Z (9 months ago)
- Language: Python
- Size: 28.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Zenodo: .zenodo.json
Awesome Lists containing this project
README
# DataLad extension template
[](https://ci.appveyor.com/project/mih/datalad-extension-template/branch/main) [](https://codecov.io/github/datalad/datalad-extension-template?branch=main) [](https://github.com/datalad/datalad-extension-template/actions?query=workflow%3Acrippled-filesystems) [](https://github.com/datalad/datalad-extension-template/actions?query=workflow%3Adocs)
This repository contains an extension template that can serve as a starting point
for implementing a [DataLad](http://datalad.org) extension. An extension can
provide any number of additional DataLad commands that are automatically
included in DataLad's command line and Python API.
For a demo, clone this repository and install the demo extension via
pip install -e .
DataLad will now expose a new command suite with a `hello...` command.
% datalad --help |grep -B2 -A2 hello
*Demo DataLad command suite*
hello-cmd
Short description of the command
To start implementing your own extension, [use this
template](https://github.com/datalad/datalad-extension-template/generate), and
adjust as necessary. A good approach is to
- Pick a name for the new extension.
- Look through the sources and replace `helloworld` with
`` (hint: `git grep helloworld` should find all
spots).
- Delete the example command implementation in `datalad_helloworld/hello_cmd.py`.
- Implement a new command, and adjust the `command_suite` in
`datalad_helloworld/__init__.py` to point to it.
- Replace `hello_cmd` with the name of the new command in
`datalad_helloworld/tests/test_register.py` to automatically test whether the
new extension installs correctly.
- Adjust the documentation in `docs/source/index.rst`. Refer to [`docs/README.md`](docs/README.md) for more information on documentation building, testing and publishing.
- Replace this README, and/or update the links in the badges at the top.
- Update `setup.cfg` with appropriate metadata on the new extension.
You can consider filling in the provided [.zenodo.json](.zenodo.json) file with
contributor information and [meta data](https://developers.zenodo.org/#representation)
to acknowledge contributors and describe the publication record that is created when
[you make your code citeable](https://guides.github.com/activities/citable-code/)
by archiving it using [zenodo.org](https://zenodo.org/). You may also want to
consider acknowledging contributors with the
[allcontributors bot](https://allcontributors.org/docs/en/bot/overview).