Repository Status for Scikit-learn
Auto updating website that tracks closed & open issues/PRs on scikit-learn/scikit-learn.
Running locally
- Setup a virtual environment.
- Install requirements
pip install -r requirements
-
Create a personal access token and set it to
GITHUB_TOKEN
. -
Run the following to call the GitHub API for repo information and cache the results into
cache.json
.
python make.py cache.json dist
- Open
dist/index.html
to see the rendered page.
How to setup for another repo?
- Add your logo into
assets
directory. You can use another logo as long as it is in theassets
directory. - Pass in
--repo
into themake.py
command. Use--logo
if you have a different logo name.
python make.py cache.json dist \
--repo scikit-learn/scikit-learn --logo logo.svg
Testing
If you already called the GitHub API once and cached the results, then you can pass --cache-only
to build without querying the GitHub API:
python make.py cache.json dist --only-cache
License
This repo is under the MIT License.