Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iris-hep/analysis-community-summary
Summary report on community interactions and contributions with IRIS-HEP Analysis Systems related tools
https://github.com/iris-hep/analysis-community-summary
git-scraping iris-hep
Last synced: 2 months ago
JSON representation
Summary report on community interactions and contributions with IRIS-HEP Analysis Systems related tools
- Host: GitHub
- URL: https://github.com/iris-hep/analysis-community-summary
- Owner: iris-hep
- License: mit
- Created: 2021-09-12T22:08:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T00:34:33.000Z (3 months ago)
- Last Synced: 2024-10-30T02:51:13.666Z (3 months ago)
- Topics: git-scraping, iris-hep
- Language: Python
- Homepage: https://iris-hep.org/analysis-community-summary/
- Size: 1.77 MB
- Stars: 5
- Watchers: 7
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IRIS-HEP Analysis Systems Community Summary
[Summary report][report_url] on community interactions and contributions with [IRIS-HEP Analysis Systems](https://iris-hep.org/as.html) related tools.
[![download](https://img.shields.io/badge/Download-CSV-blue.svg)](https://iris-hep.org/analysis-community-summary/summary.csv)
The report is autogenerated daily, so it should always be up to date.
[report_url]: https://iris-hep.org/analysis-community-summary/
[![GitHub Project](https://img.shields.io/badge/GitHub--blue?style=social&logo=GitHub)](https://github.com/iris-hep/analysis-community-summary)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/iris-hep/analysis-community-summary/main.svg)](https://results.pre-commit.ci/latest/github/iris-hep/analysis-community-summary/main)## Run locally
First, create a Python virtual environment and install the dependencies in `requirements.txt`.
The code will require a [GitHub personal access token](https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token) (PAT) to use, so you'll need to make one for this application.
Once you have one, you'll need to pass it in at the command line to `query.py`.
This is probably best done by setting an environment variable in a shell script and then passing it throughExample:
```bash
#!/bin/bashAPI_TOKEN=''
python query.py "${API_TOKEN}"
```