scikit-hep-testdata


Namescikit-hep-testdata JSON
Version 0.4.43 PyPI version JSON
download
home_pagehttps://github.com/scikit-hep/scikit-hep-testdata
SummaryExample HEP files for testing and demonstrating
upload_time2024-03-25 17:17:37
maintainerThe Scikit-HEP admins
docs_urlNone
authorBen Krikler
requires_python>=3.8
licenseBSD-3-Clause
keywords root hep testing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # scikit-hep-testdata

[![Scikit-HEP][sk-badge]](https://scikit-hep.org/)
[![PyPI version](https://img.shields.io/pypi/v/scikit-hep-testdata.svg?longCache=true)](https://pypi.org/project/scikit-hep-testdata/)
[![Conda latest release](https://img.shields.io/conda/vn/conda-forge/scikit-hep-testdata.svg)](https://github.com/conda-forge/scikit-hep-testdata-feedstock)

[![Github Actions badge](https://github.com/scikit-hep/scikit-hep-testdata/workflows/CI/badge.svg)](https://github.com/scikit-hep/scikit-hep-testdata/actions)
[![Code Coverage](https://codecov.io/gh/scikit-hep/scikit-hep-testdata/graph/badge.svg?branch=main)](https://codecov.io/gh/scikit-hep/scikit-hep-testdata?branch=main)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/scikit-hep/scikit-hep-testdata/main.svg)](https://results.pre-commit.ci/latest/github/scikit-hep/scikit-hep-testdata/main)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

[sk-badge]: https://scikit-hep.org/assets/images/Scikit--HEP-Project-blue.svg

A common package to provide example files (*e.g*. ROOT) for testing and developing packages against.
The sample of files is representative of typical files found "in the wild".

In addition to including some root files directly, this package adds some simple helper methods to
get larger files from common open-access data repositories.

## Installing and usage
To install:

```bash
python -m pip install scikit-hep-testdata
```

Once installed, absolute file paths can be resolved using the helper methods:

``` python
from skhep_testdata import data_path

filename = data_path("some_file.root")
```

By default, if an unknown file is requested an exception is raised but this can be skipped by passing the above method `raise_missing=False`:

```python
filename = data_path("unknown_file.root", raise_missing=False)
```

The files are not stored on PyPI, so if installed from SDist/wheel, the "local"
files will not be present, but will be downloaded from GitHub and cached in the
`~/.local/skhepdata` directory. If you make an editable install from the Git repo,
or if you set `SKHEP_DATA=1` when building/installing from the Git repo, you will
have the data files locally.

You can see all "local" files with `skhep_testdata.known_files`, and you can
download all files at once with `skhep_testdata.download_all()`, optionally selecting
the download cache directory.

### Remote vs. Local files
Some files, particularly large ones, for example, are not stored within this
package and instead live on a remote server; we call these "remote files".  To
obtain these use the same `data_path` method as above, however this will
trigger the code to download and configure the remote file.  This might be slow
the first time round but will subsequently be as fast as for a local file.
WARNING: the local file caching system has not yet been applied to remote
files.

### Command-line invocation
You can also interact with this package from the command-line:

```bash
# Print a path (download if needed)
python -m skhep_testdata cms_hep_2012_tutorial/data.root

# Show all "local" files
python -m skhep_testdata --list

# Download all files to an existing directory
python -m skhep_testdata --all --dir local
```

You can also use `pipx run scikit-hep-testdata` to access the above CLI without installing.


## Adding new files
We're on the look out for new, interesting files!

- *Large files*: If the file is particularly large, for example > 25 MB, it might be worth adding to an external open access data repository and adding a configuration here so that the internal helper methods can pull this down.
- *Experiment data policies*: Please make sure you have permissions to add the file to this collection, and that any private or sensitive data has been appropriately masked, salted, or scrambled.

## List of files
The following lists describe the files known by this package.

### Files stored in this package
- [Listed here](src/skhep_testdata/data)

### Known remote files
- [CMS HEP public tutorial from 2012](http://opendata.cern.ch/record/50)

## Contributors

We hereby acknowledge the contributors that made this project possible ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
  <tbody>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="http://benkrikler.github.io"><img src="https://avatars.githubusercontent.com/u/4083697?v=4?s=100" width="100px;" alt="benkrikler"/><br /><sub><b>benkrikler</b></sub></a><br /><a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=benkrikler" title="Code">💻</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=benkrikler" title="Documentation">📖</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/jpivarski"><img src="https://avatars.githubusercontent.com/u/1852447?v=4?s=100" width="100px;" alt="Jim Pivarski"/><br /><sub><b>Jim Pivarski</b></sub></a><br /><a href="#maintenance-jpivarski" title="Maintenance">🚧</a> <a href="#data-jpivarski" title="Data">🔣</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=jpivarski" title="Documentation">📖</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://iscinumpy.dev"><img src="https://avatars.githubusercontent.com/u/4616906?v=4?s=100" width="100px;" alt="Henry Schreiner"/><br /><sub><b>Henry Schreiner</b></sub></a><br /><a href="#maintenance-henryiii" title="Maintenance">🚧</a> <a href="#data-henryiii" title="Data">🔣</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=henryiii" title="Code">💻</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=henryiii" title="Documentation">📖</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://cern.ch/eduardo.rodrigues"><img src="https://avatars.githubusercontent.com/u/5013581?v=4?s=100" width="100px;" alt="Eduardo Rodrigues"/><br /><sub><b>Eduardo Rodrigues</b></sub></a><br /><a href="#maintenance-eduardo-rodrigues" title="Maintenance">🚧</a> <a href="#data-eduardo-rodrigues" title="Data">🔣</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=eduardo-rodrigues" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://www.matthewfeickert.com/"><img src="https://avatars.githubusercontent.com/u/5142394?v=4?s=100" width="100px;" alt="Matthew Feickert"/><br /><sub><b>Matthew Feickert</b></sub></a><br /><a href="#data-matthewfeickert" title="Data">🔣</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=matthewfeickert" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://cs.purdue.edu/homes/das160"><img src="https://avatars.githubusercontent.com/u/11775615?v=4?s=100" width="100px;" alt="Pratyush Das"/><br /><sub><b>Pratyush Das</b></sub></a><br /><a href="#data-reikdas" title="Data">🔣</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=reikdas" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://blog.jling.dev"><img src="https://avatars.githubusercontent.com/u/5306213?v=4?s=100" width="100px;" alt="Jerry Ling"/><br /><sub><b>Jerry Ling</b></sub></a><br /><a href="#data-Moelf" title="Data">🔣</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=Moelf" title="Code">💻</a></td>
    </tr>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/jonas-eschle"><img src="https://avatars.githubusercontent.com/u/17454848?v=4?s=100" width="100px;" alt="Jonas Eschle"/><br /><sub><b>Jonas Eschle</b></sub></a><br /><a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=jonas-eschle" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://giordonstark.com/"><img src="https://avatars.githubusercontent.com/u/761483?v=4?s=100" width="100px;" alt="Giordon Stark"/><br /><sub><b>Giordon Stark</b></sub></a><br /><a href="#data-kratsg" title="Data">🔣</a> <a href="https://github.com/scikit-hep/scikit-hep-testdata/commits?author=kratsg" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/veprbl"><img src="https://avatars.githubusercontent.com/u/245573?v=4?s=100" width="100px;" alt="Dmitry Kalinkin"/><br /><sub><b>Dmitry Kalinkin</b></sub></a><br /><a href="#data-veprbl" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://www.df.unito.it/do/docenti.pl/Show?_id=mperesan#tab-profilo"><img src="https://avatars.githubusercontent.com/u/17836610?v=4?s=100" width="100px;" alt="Michele Peresano"/><br /><sub><b>Michele Peresano</b></sub></a><br /><a href="#data-HealthyPear" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/lobis"><img src="https://avatars.githubusercontent.com/u/35803280?v=4?s=100" width="100px;" alt="Luis Antonio Obis Aparicio"/><br /><sub><b>Luis Antonio Obis Aparicio</b></sub></a><br /><a href="#data-lobis" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/oshadura"><img src="https://avatars.githubusercontent.com/u/7012420?v=4?s=100" width="100px;" alt="Oksana Shadura"/><br /><sub><b>Oksana Shadura</b></sub></a><br /><a href="#data-oshadura" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/nsmith-"><img src="https://avatars.githubusercontent.com/u/6587412?v=4?s=100" width="100px;" alt="Nicholas Smith"/><br /><sub><b>Nicholas Smith</b></sub></a><br /><a href="#data-nsmith-" title="Data">🔣</a></td>
    </tr>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/beojan"><img src="https://avatars.githubusercontent.com/u/3727925?v=4?s=100" width="100px;" alt="Beojan Stanislaus"/><br /><sub><b>Beojan Stanislaus</b></sub></a><br /><a href="#data-beojan" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://www.lukasheinrich.com"><img src="https://avatars.githubusercontent.com/u/2318083?v=4?s=100" width="100px;" alt="Lukas"/><br /><sub><b>Lukas</b></sub></a><br /><a href="#data-lukasheinrich" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/8me"><img src="https://avatars.githubusercontent.com/u/17862090?v=4?s=100" width="100px;" alt="Johannes Schumann"/><br /><sub><b>Johannes Schumann</b></sub></a><br /><a href="#data-8me" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/ekauffma"><img src="https://avatars.githubusercontent.com/u/65742271?v=4?s=100" width="100px;" alt="Elliott Kauffman"/><br /><sub><b>Elliott Kauffman</b></sub></a><br /><a href="#data-ekauffma" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/tomeichlersmith"><img src="https://avatars.githubusercontent.com/u/31970302?v=4?s=100" width="100px;" alt="Tom Eichlersmith"/><br /><sub><b>Tom Eichlersmith</b></sub></a><br /><a href="#data-tomeichlersmith" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/APN-Pucky"><img src="https://avatars.githubusercontent.com/u/4533248?v=4?s=100" width="100px;" alt="Alexander Puck Neuwirth"/><br /><sub><b>Alexander Puck Neuwirth</b></sub></a><br /><a href="#data-APN-Pucky" title="Data">🔣</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/ioanaif"><img src="https://avatars.githubusercontent.com/u/9751871?v=4?s=100" width="100px;" alt="ioanaif"/><br /><sub><b>ioanaif</b></sub></a><br /><a href="#data-ioanaif" title="Data">🔣</a></td>
    </tr>
  </tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification.

## Acknowledgements
- Many of the files collected directly within this package were collated originally by Jim Pivarski for [uproot](https://github.com/scikit-hep/uproot)

## Running the tests
This package uses `pytest` to run the unit tests. Install with `pip install scikit-hep-testdata[test]` or `pip install -e .[test]` (dev) to get the testing requirements.
then run:

```bash
pytest
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/scikit-hep/scikit-hep-testdata",
    "name": "scikit-hep-testdata",
    "maintainer": "The Scikit-HEP admins",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "scikit-hep-admins@googlegroups.com",
    "keywords": "ROOT, HEP, testing",
    "author": "Ben Krikler",
    "author_email": "b.krikler@cern.ch",
    "download_url": "https://files.pythonhosted.org/packages/24/4c/7f696d1d6d5ae7163f25d1ceeb61e86a53371b2b52fce43a0be00f6884d5/scikit_hep_testdata-0.4.43.tar.gz",
    "platform": null,
    "description": "# scikit-hep-testdata\n\n[![Scikit-HEP][sk-badge]](https://scikit-hep.org/)\n[![PyPI version](https://img.shields.io/pypi/v/scikit-hep-testdata.svg?longCache=true)](https://pypi.org/project/scikit-hep-testdata/)\n[![Conda latest release](https://img.shields.io/conda/vn/conda-forge/scikit-hep-testdata.svg)](https://github.com/conda-forge/scikit-hep-testdata-feedstock)\n\n[![Github Actions badge](https://github.com/scikit-hep/scikit-hep-testdata/workflows/CI/badge.svg)](https://github.com/scikit-hep/scikit-hep-testdata/actions)\n[![Code Coverage](https://codecov.io/gh/scikit-hep/scikit-hep-testdata/graph/badge.svg?branch=main)](https://codecov.io/gh/scikit-hep/scikit-hep-testdata?branch=main)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/scikit-hep/scikit-hep-testdata/main.svg)](https://results.pre-commit.ci/latest/github/scikit-hep/scikit-hep-testdata/main)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n[sk-badge]: https://scikit-hep.org/assets/images/Scikit--HEP-Project-blue.svg\n\nA common package to provide example files (*e.g*. ROOT) for testing and developing packages against.\nThe sample of files is representative of typical files found \"in the wild\".\n\nIn addition to including some root files directly, this package adds some simple helper methods to\nget larger files from common open-access data repositories.\n\n## Installing and usage\nTo install:\n\n```bash\npython -m pip install scikit-hep-testdata\n```\n\nOnce installed, absolute file paths can be resolved using the helper methods:\n\n``` python\nfrom skhep_testdata import data_path\n\nfilename = data_path(\"some_file.root\")\n```\n\nBy default, if an unknown file is requested an exception is raised but this can be skipped by passing the above method `raise_missing=False`:\n\n```python\nfilename = data_path(\"unknown_file.root\", raise_missing=False)\n```\n\nThe files are not stored on PyPI, so if installed from SDist/wheel, the \"local\"\nfiles will not be present, but will be downloaded from GitHub and cached in the\n`~/.local/skhepdata` directory. If you make an editable install from the Git repo,\nor if you set `SKHEP_DATA=1` when building/installing from the Git repo, you will\nhave the data files locally.\n\nYou can see all \"local\" files with `skhep_testdata.known_files`, and you can\ndownload all files at once with `skhep_testdata.download_all()`, optionally selecting\nthe download cache directory.\n\n### Remote vs. Local files\nSome files, particularly large ones, for example, are not stored within this\npackage and instead live on a remote server; we call these \"remote files\".  To\nobtain these use the same `data_path` method as above, however this will\ntrigger the code to download and configure the remote file.  This might be slow\nthe first time round but will subsequently be as fast as for a local file.\nWARNING: the local file caching system has not yet been applied to remote\nfiles.\n\n### Command-line invocation\nYou can also interact with this package from the command-line:\n\n```bash\n# Print a path (download if needed)\npython -m skhep_testdata cms_hep_2012_tutorial/data.root\n\n# Show all \"local\" files\npython -m skhep_testdata --list\n\n# Download all files to an existing directory\npython -m skhep_testdata --all --dir local\n```\n\nYou can also use `pipx run scikit-hep-testdata` to access the above CLI without installing.\n\n\n## Adding new files\nWe're on the look out for new, interesting files!\n\n- *Large files*: If the file is particularly large, for example > 25 MB, it might be worth adding to an external open access data repository and adding a configuration here so that the internal helper methods can pull this down.\n- *Experiment data policies*: Please make sure you have permissions to add the file to this collection, and that any private or sensitive data has been appropriately masked, salted, or scrambled.\n\n## List of files\nThe following lists describe the files known by this package.\n\n### Files stored in this package\n- [Listed here](src/skhep_testdata/data)\n\n### Known remote files\n- [CMS HEP public tutorial from 2012](http://opendata.cern.ch/record/50)\n\n## Contributors\n\nWe hereby acknowledge the contributors that made this project possible ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n  <tbody>\n    <tr>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"http://benkrikler.github.io\"><img src=\"https://avatars.githubusercontent.com/u/4083697?v=4?s=100\" width=\"100px;\" alt=\"benkrikler\"/><br /><sub><b>benkrikler</b></sub></a><br /><a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=benkrikler\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=benkrikler\" title=\"Documentation\">\ud83d\udcd6</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/jpivarski\"><img src=\"https://avatars.githubusercontent.com/u/1852447?v=4?s=100\" width=\"100px;\" alt=\"Jim Pivarski\"/><br /><sub><b>Jim Pivarski</b></sub></a><br /><a href=\"#maintenance-jpivarski\" title=\"Maintenance\">\ud83d\udea7</a> <a href=\"#data-jpivarski\" title=\"Data\">\ud83d\udd23</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=jpivarski\" title=\"Documentation\">\ud83d\udcd6</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"http://iscinumpy.dev\"><img src=\"https://avatars.githubusercontent.com/u/4616906?v=4?s=100\" width=\"100px;\" alt=\"Henry Schreiner\"/><br /><sub><b>Henry Schreiner</b></sub></a><br /><a href=\"#maintenance-henryiii\" title=\"Maintenance\">\ud83d\udea7</a> <a href=\"#data-henryiii\" title=\"Data\">\ud83d\udd23</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=henryiii\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=henryiii\" title=\"Documentation\">\ud83d\udcd6</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"http://cern.ch/eduardo.rodrigues\"><img src=\"https://avatars.githubusercontent.com/u/5013581?v=4?s=100\" width=\"100px;\" alt=\"Eduardo Rodrigues\"/><br /><sub><b>Eduardo Rodrigues</b></sub></a><br /><a href=\"#maintenance-eduardo-rodrigues\" title=\"Maintenance\">\ud83d\udea7</a> <a href=\"#data-eduardo-rodrigues\" title=\"Data\">\ud83d\udd23</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=eduardo-rodrigues\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"http://www.matthewfeickert.com/\"><img src=\"https://avatars.githubusercontent.com/u/5142394?v=4?s=100\" width=\"100px;\" alt=\"Matthew Feickert\"/><br /><sub><b>Matthew Feickert</b></sub></a><br /><a href=\"#data-matthewfeickert\" title=\"Data\">\ud83d\udd23</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=matthewfeickert\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://cs.purdue.edu/homes/das160\"><img src=\"https://avatars.githubusercontent.com/u/11775615?v=4?s=100\" width=\"100px;\" alt=\"Pratyush Das\"/><br /><sub><b>Pratyush Das</b></sub></a><br /><a href=\"#data-reikdas\" title=\"Data\">\ud83d\udd23</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=reikdas\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"http://blog.jling.dev\"><img src=\"https://avatars.githubusercontent.com/u/5306213?v=4?s=100\" width=\"100px;\" alt=\"Jerry Ling\"/><br /><sub><b>Jerry Ling</b></sub></a><br /><a href=\"#data-Moelf\" title=\"Data\">\ud83d\udd23</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=Moelf\" title=\"Code\">\ud83d\udcbb</a></td>\n    </tr>\n    <tr>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/jonas-eschle\"><img src=\"https://avatars.githubusercontent.com/u/17454848?v=4?s=100\" width=\"100px;\" alt=\"Jonas Eschle\"/><br /><sub><b>Jonas Eschle</b></sub></a><br /><a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=jonas-eschle\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://giordonstark.com/\"><img src=\"https://avatars.githubusercontent.com/u/761483?v=4?s=100\" width=\"100px;\" alt=\"Giordon Stark\"/><br /><sub><b>Giordon Stark</b></sub></a><br /><a href=\"#data-kratsg\" title=\"Data\">\ud83d\udd23</a> <a href=\"https://github.com/scikit-hep/scikit-hep-testdata/commits?author=kratsg\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/veprbl\"><img src=\"https://avatars.githubusercontent.com/u/245573?v=4?s=100\" width=\"100px;\" alt=\"Dmitry Kalinkin\"/><br /><sub><b>Dmitry Kalinkin</b></sub></a><br /><a href=\"#data-veprbl\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://www.df.unito.it/do/docenti.pl/Show?_id=mperesan#tab-profilo\"><img src=\"https://avatars.githubusercontent.com/u/17836610?v=4?s=100\" width=\"100px;\" alt=\"Michele Peresano\"/><br /><sub><b>Michele Peresano</b></sub></a><br /><a href=\"#data-HealthyPear\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/lobis\"><img src=\"https://avatars.githubusercontent.com/u/35803280?v=4?s=100\" width=\"100px;\" alt=\"Luis Antonio Obis Aparicio\"/><br /><sub><b>Luis Antonio Obis Aparicio</b></sub></a><br /><a href=\"#data-lobis\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/oshadura\"><img src=\"https://avatars.githubusercontent.com/u/7012420?v=4?s=100\" width=\"100px;\" alt=\"Oksana Shadura\"/><br /><sub><b>Oksana Shadura</b></sub></a><br /><a href=\"#data-oshadura\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/nsmith-\"><img src=\"https://avatars.githubusercontent.com/u/6587412?v=4?s=100\" width=\"100px;\" alt=\"Nicholas Smith\"/><br /><sub><b>Nicholas Smith</b></sub></a><br /><a href=\"#data-nsmith-\" title=\"Data\">\ud83d\udd23</a></td>\n    </tr>\n    <tr>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/beojan\"><img src=\"https://avatars.githubusercontent.com/u/3727925?v=4?s=100\" width=\"100px;\" alt=\"Beojan Stanislaus\"/><br /><sub><b>Beojan Stanislaus</b></sub></a><br /><a href=\"#data-beojan\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"http://www.lukasheinrich.com\"><img src=\"https://avatars.githubusercontent.com/u/2318083?v=4?s=100\" width=\"100px;\" alt=\"Lukas\"/><br /><sub><b>Lukas</b></sub></a><br /><a href=\"#data-lukasheinrich\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/8me\"><img src=\"https://avatars.githubusercontent.com/u/17862090?v=4?s=100\" width=\"100px;\" alt=\"Johannes Schumann\"/><br /><sub><b>Johannes Schumann</b></sub></a><br /><a href=\"#data-8me\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/ekauffma\"><img src=\"https://avatars.githubusercontent.com/u/65742271?v=4?s=100\" width=\"100px;\" alt=\"Elliott Kauffman\"/><br /><sub><b>Elliott Kauffman</b></sub></a><br /><a href=\"#data-ekauffma\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/tomeichlersmith\"><img src=\"https://avatars.githubusercontent.com/u/31970302?v=4?s=100\" width=\"100px;\" alt=\"Tom Eichlersmith\"/><br /><sub><b>Tom Eichlersmith</b></sub></a><br /><a href=\"#data-tomeichlersmith\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/APN-Pucky\"><img src=\"https://avatars.githubusercontent.com/u/4533248?v=4?s=100\" width=\"100px;\" alt=\"Alexander Puck Neuwirth\"/><br /><sub><b>Alexander Puck Neuwirth</b></sub></a><br /><a href=\"#data-APN-Pucky\" title=\"Data\">\ud83d\udd23</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/ioanaif\"><img src=\"https://avatars.githubusercontent.com/u/9751871?v=4?s=100\" width=\"100px;\" alt=\"ioanaif\"/><br /><sub><b>ioanaif</b></sub></a><br /><a href=\"#data-ioanaif\" title=\"Data\">\ud83d\udd23</a></td>\n    </tr>\n  </tbody>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification.\n\n## Acknowledgements\n- Many of the files collected directly within this package were collated originally by Jim Pivarski for [uproot](https://github.com/scikit-hep/uproot)\n\n## Running the tests\nThis package uses `pytest` to run the unit tests. Install with `pip install scikit-hep-testdata[test]` or `pip install -e .[test]` (dev) to get the testing requirements.\nthen run:\n\n```bash\npytest\n```\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Example HEP files for testing and demonstrating",
    "version": "0.4.43",
    "project_urls": {
        "Homepage": "https://github.com/scikit-hep/scikit-hep-testdata"
    },
    "split_keywords": [
        "root",
        " hep",
        " testing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59cc6c3976cc0355d4dc82627fbf29b8995f8a6caa5e03eaefe9c5094616aa3e",
                "md5": "5cf61cbf47ecfd9d5cd775809aae5469",
                "sha256": "87621e3e0d5c140da307b3e4158286845c3a9bfb277de1ca64e8d2bcd5cdfc1e"
            },
            "downloads": -1,
            "filename": "scikit_hep_testdata-0.4.43-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5cf61cbf47ecfd9d5cd775809aae5469",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 12698,
            "upload_time": "2024-03-25T17:17:34",
            "upload_time_iso_8601": "2024-03-25T17:17:34.898575Z",
            "url": "https://files.pythonhosted.org/packages/59/cc/6c3976cc0355d4dc82627fbf29b8995f8a6caa5e03eaefe9c5094616aa3e/scikit_hep_testdata-0.4.43-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "244c7f696d1d6d5ae7163f25d1ceeb61e86a53371b2b52fce43a0be00f6884d5",
                "md5": "3fd9480008dd5ca3071e4de6489a7eb1",
                "sha256": "4b51bdcccc8edbe09382e6656a3b6f6e1ba08e9e844ece33f085bc5b0f9c71ea"
            },
            "downloads": -1,
            "filename": "scikit_hep_testdata-0.4.43.tar.gz",
            "has_sig": false,
            "md5_digest": "3fd9480008dd5ca3071e4de6489a7eb1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 28212,
            "upload_time": "2024-03-25T17:17:37",
            "upload_time_iso_8601": "2024-03-25T17:17:37.239472Z",
            "url": "https://files.pythonhosted.org/packages/24/4c/7f696d1d6d5ae7163f25d1ceeb61e86a53371b2b52fce43a0be00f6884d5/scikit_hep_testdata-0.4.43.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 17:17:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scikit-hep",
    "github_project": "scikit-hep-testdata",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "scikit-hep-testdata"
}
        
Elapsed time: 0.23711s