commit 502e9b7a519592c306ca7fa67522b6cf5a814297 Author: Lukas Masuch Date: Fri Jan 8 15:46:28 2021 +0100 Initial commit diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..81575e6 --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,76 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at team@mltooling.org. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/01_suggest-project.md b/.github/ISSUE_TEMPLATE/01_suggest-project.md new file mode 100644 index 0000000..c923228 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01_suggest-project.md @@ -0,0 +1,25 @@ +--- +name: "πŸ“¦ Suggest a project" +about: "Do you like to suggest a project that hasn't been added to this best-of list yet?" +title: 'Add project: ' +labels: 'add-project' +assignees: '' + +--- + + + +**Project details:** + + +- Project Name: +- Github URL: +- Category: +- License: +- Package Managers: + +**Additional context:** + + diff --git a/.github/ISSUE_TEMPLATE/02_update-project.md b/.github/ISSUE_TEMPLATE/02_update-project.md new file mode 100644 index 0000000..8a143ca --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02_update-project.md @@ -0,0 +1,22 @@ +--- +name: "✏️ Update a project" +about: Do you have changes for a project, e.g. missing package manager, wrong license or category? +title: 'Update project: ' +labels: 'update-project' +assignees: '' + +--- + +**Update details:** + + + +- Project Name: + + + +**Additional context:** + + diff --git a/.github/ISSUE_TEMPLATE/03_update-category.md b/.github/ISSUE_TEMPLATE/03_update-category.md new file mode 100644 index 0000000..f3b4be0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/03_update-category.md @@ -0,0 +1,28 @@ +--- +name: "🏷 Add or update a category" +about: Do you like to suggest a new project category or update an existing one? +title: '' +labels: 'category' +assignees: '' + +--- + + + +- [ ] Add category +- [ ] Update category: + +**Category details:** + + + +- Category Title: +- Category Subtitle: + +**Additional context:** + + diff --git a/.github/ISSUE_TEMPLATE/04_change-configuration.md b/.github/ISSUE_TEMPLATE/04_change-configuration.md new file mode 100644 index 0000000..70a77bb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/04_change-configuration.md @@ -0,0 +1,12 @@ +--- +name: "βš™οΈ Change configuration" +about: Do you have a suggestion for changing the configuration, e.g. allow additional licenses or adjust minimal stars? +title: '' +labels: 'configuration' +assignees: '' + +--- + +**Configuration Change:** + + diff --git a/.github/ISSUE_TEMPLATE/05_anything-else.md b/.github/ISSUE_TEMPLATE/05_anything-else.md new file mode 100644 index 0000000..430a82e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/05_anything-else.md @@ -0,0 +1,16 @@ +--- +name: "\U0001F4AC Anything else?" +about: For questions or suggestions regarding the metadata collection or markdown generation, please refer to the best-of-lists/best-of-generator repository. +title: '' +labels: 'question' +assignees: '' + +--- + + + +**Describe the issue:** + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..b1ed24d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,20 @@ +**What kind of change does this PR introduce?** + + +- [ ] Add a project +- [ ] Update a project +- [ ] Remove a project +- [ ] Add or update a category +- [ ] Change configuration +- [ ] Documentation +- [ ] Other, please describe: + +**Description:** + + +**Checklist:** + + +- [ ] I have read the [CONTRIBUTING](https://github.com/best-of-lists/best-of/blob/main/CONTRIBUTING.md) guidelines. +- [ ] I have not modified the `README.md` file. Projects are only supposed to be added or updated within the `projects.yaml` file since the `README.md` file is automatically generated. diff --git a/.github/labels.yml b/.github/labels.yml new file mode 100644 index 0000000..73fc8cd --- /dev/null +++ b/.github/labels.yml @@ -0,0 +1,42 @@ +- name: add-project + color: a2eeef + description: "Add new project to best-of list" +- name: update-project + color: a2eeef + description: "Update a project on the best-of list" +- name: category + color: a2eeef + description: "Add or update a category to the best-of list" +- name: configuration + color: a2eeef + description: "Issue refers to the best-of list configuration" +- name: generation + color: a2eeef + description: "Issue refers to the best-of markdown generation" +- name: collection + color: a2eeef + description: "Issue refers to the project metadata collection" +- name: question + color: a2eeef + description: "Further information is requested" +- name: documentation + color: a2eeef + description: "Changes to documentation" +- name: bug + color: d73a4a + description: "Something isn't working" +- name: "good first issue" + color: 98FF98 + description: "Good for newcomers" +- name: "help wanted" + color: 98FF98 + description: "Extra attention is needed" +- name: invalid + color: cfd3d7 + description: "This doesn't seem right" +- name: duplicate + color: cfd3d7 + description: "This issue or pull request already exists" +- name: "further input needed" + color: cfd3d7 + description: "Not enough detail is provided by the creator" diff --git a/.github/workflows/setup-best-of-list.yml b/.github/workflows/setup-best-of-list.yml new file mode 100644 index 0000000..04f835a --- /dev/null +++ b/.github/workflows/setup-best-of-list.yml @@ -0,0 +1,72 @@ +# Based on https://github.com/best-of-lists/best-of/blob/main/.github/workflows/setup-best-of-list.yml +name: setup-best-of-list + +on: + workflow_dispatch: + +env: + DEFAULT_BRANCH: "main" + SETUP_BRANCH: "setup" + PLACEHOLDER_REPO: "best-of-lists/best-of-template" + +jobs: + setup-best-of-list: + runs-on: ubuntu-latest + steps: + - name: create-update-branch + uses: peterjgrainger/action-create-branch@v2.0.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + branch: ${{ env.SETUP_BRANCH }} + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + ref: ${{ env.SETUP_BRANCH }} + token: ${{ secrets.GITHUB_TOKEN }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: setup-template + shell: bash + run: | + echo $GITHUB_REPOSITORY + rm -rf history config latest-changes.md README.md projects.yaml ./.github/workflows/setup-best-of-list.yml CONTRIBUTING.md create-best-of-list.md + mkdir -p ./config + cp ./template/footer.md ./config/footer.md + cp ./template/header.md ./config/header.md + cp ./template/projects.yaml ./projects.yaml + cp ./template/CONTRIBUTING.md ./CONTRIBUTING.md + rm -rf ./template/ + sed -i 's:${{ env.PLACEHOLDER_REPO }}:'$GITHUB_REPOSITORY':g' ./config/footer.md + sed -i 's:${{ env.PLACEHOLDER_REPO }}:'$GITHUB_REPOSITORY':g' ./config/header.md + sed -i 's:${{ env.PLACEHOLDER_REPO }}:'$GITHUB_REPOSITORY':g' ./CONTRIBUTING.md + sed -i 's:'$(echo "${{ env.PLACEHOLDER_REPO }}" | sed "s:.*/::")':'$(echo "$GITHUB_REPOSITORY" | sed "s:.*/::")':g' ./config/header.md + - name: push-update + uses: stefanzweifel/git-auto-commit-action@v4 + with: + branch: ${{ env.SETUP_BRANCH }} + commit_user_name: best-of setup + commit_user_email: actions@github.com + commit_message: Initial setup for best-of list + skip_dirty_check: true + commit_options: "--allow-empty" + - name: create-pull-request + shell: bash + run: | + # Stops script execution if a command has an error + set -e + curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.2 + bin/hub pull-request -b ${{ env.DEFAULT_BRANCH }} -h ${{ env.SETUP_BRANCH }} --no-edit -m "Initial setup for best-of list" -m "To finish this setup: Select Merge pull request below and Confirm merge." || true + rm bin/hub + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: sync-labels + # Alternative actions: + # https://github.com/crazy-max/ghaction-github-labeler + # https://github.com/EndBug/label-sync + uses: micnncim/action-label-syncer@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + manifest: ".github/labels.yml" + prune: true diff --git a/.github/workflows/update-best-of-list.yml b/.github/workflows/update-best-of-list.yml new file mode 100644 index 0000000..fda0c60 --- /dev/null +++ b/.github/workflows/update-best-of-list.yml @@ -0,0 +1,80 @@ +# Based on https://github.com/best-of-lists/best-of-update-action/blob/v0.5.2/workflows/update-best-of-list.yml +name: update-best-of-list + +on: + workflow_dispatch: + inputs: + version: + description: "Version to use for this update" + required: false + schedule: + - cron: "0 18 * * 4" # Every thursday at 6pm + +env: + BRANCH_PREFIX: "update/" + DEFAULT_BRANCH: "main" + +jobs: + update-best-of-list: + runs-on: ubuntu-latest + steps: + - if: ${{ github.event.inputs != null && github.event.inputs.version != null }} + name: set-version-from-input + run: echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV + - if: ${{ ! (env.VERSION != null && env.VERSION != '') }} + name: set-version-via-date + run: echo "VERSION=$(date '+%Y.%m.%d')" >> $GITHUB_ENV + - uses: actions/checkout@v2 + - name: check-version-tag + shell: bash + run: | + git fetch --tags --force + git show-ref --tags --verify --quiet -- "refs/tags/${{ env.VERSION }}" && echo "VERSION=$(date '+%Y.%m.%d-%H.%M')" >> $GITHUB_ENV || exit 0 + - name: create-update-branch + uses: peterjgrainger/action-create-branch@v2.0.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + branch: "${{ env.BRANCH_PREFIX }}${{ env.VERSION }}" + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + ref: ${{ env.BRANCH_PREFIX }}${{ env.VERSION }} + token: ${{ secrets.GITHUB_TOKEN }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: update-best-of-list + uses: best-of-lists/best-of-update-action@v0.5.2 + with: + libraries_key: ${{ secrets.LIBRARIES_KEY }} + github_key: ${{ secrets.GITHUB_TOKEN }} + - name: push-update + uses: stefanzweifel/git-auto-commit-action@v4 + with: + branch: ${{ env.BRANCH_PREFIX }}${{ env.VERSION }} + commit_user_name: best-of update + commit_user_email: actions@github.com + commit_message: Update best-of list for version ${{ env.VERSION }} + tagging_message: ${{ env.VERSION }} + skip_dirty_check: true + commit_options: "--allow-empty" + - name: create-pull-request + shell: bash + run: | + # Stops script execution if a command has an error + set -e + curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.2 + bin/hub pull-request -b ${{ env.DEFAULT_BRANCH }} -h ${{ env.BRANCH_PREFIX }}${{ env.VERSION }} --no-edit -m "Best-of update: ${{ env.VERSION }}" -m "To finish this update: Select Merge pull request below and Confirm merge. Also, make sure to publish the created draft release in the [releases section](../releases) as well." || true + rm bin/hub + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: create-release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ env.VERSION }} + release_name: "Update: ${{ env.VERSION }}" + body_path: "latest-changes.md" + draft: true + prerelease: false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5bee470 --- /dev/null +++ b/.gitignore @@ -0,0 +1,91 @@ +# IntelliJ +target/ +.idea/ +*.iml + +# Sublime +*.sublime-workspace + +# Eclipse +.settings + +# VS Code +.project +.classpath +.vscode/* +# Ignore all local history of files +**/.history + +# Java +*.class +target/ + +# C +*.so + +# Python +*.pyc +*.egg-info +__pycache__ +.ipynb_checkpoints +.Python +dist/ +.python-version +.installed.cfg +*.egg +reqlib-metadata +.mypy_cache/ +.venv +venv/ +build/ + +# Byte-compiled / optimized / DLL files +*.pyc +__pycache__/ +*.py[cod] +*$py.class + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ +.pytest_cache/ + +# NPM / Node / JavaScript +.npm +node_modules/ +jspm_packages/ + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# vim temporary files +*~ +.*.sw? + +# Other Artifacts +hs_err_pid* +*.log +*.swp +*.swo +temp/* +.DS_Store + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..4bf2324 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,118 @@ + +# Contribution Guidelines + +Thanks for your interest in contributing to our project. This page will give you a quick overview of how things are organized and, most importantly, how to get involved. Everyone is welcome to contribute, and we value everybody's contribution. + +## Table of contents + +1. [Add a project](#add-a-project) +2. [Update a project](#update-a-project) +3. [Improve metadata collection](#improve-metadata-collection) +4. [Improve markdown generation](#improve-markdown-generation) +5. [Create your own best-of list](#improve-markdown-generation) +6. [Code of conduct](#code-of-conduct) + +## Add a project + +If you like to suggest or add a project, choose one of the following ways: + +- Suggest a project by opening an issue: Please use the suggest project template from the [issue page](https://github.com/best-of-lists/best-of/issues/new/choose) and fill in the requested information. +- Add a project by modifying the [projects.yaml](https://github.com/best-of-lists/best-of/blob/main/projects.yaml) and submitting a pull request with your addition. This can also be done directly via the [GitHub UI](https://github.com/best-of-lists/best-of/edit/main/projects.yaml). + +Before opening an issue or pull request, please ensure that you adhere to the following guidelines: + +- Please make sure that the project was not already added or suggested to this best-of list. You can ensure this by searching the projects.yaml, the Readme, and the issue list. +- Add the project to the `projects.yaml` and never to the `README.md` file directly. Use the yaml format and the properties documented in the [project properties](#project-properties) section below to add a new project, for example: + ```yaml + - name: Tensorflow + github_id: tensorflow/tensorflow + pypi_id: tensorflow + conda_id: tensorflow + labels: ["tensorflow"] + category: ml-frameworks + ``` +- Please create an individual issue or pull request for each project. +- Please use the following title format for the issue or pull request: `Add project: project-name`. +- If a project doesn't fit any of the pre-existing categories, it should go under the `Others` category by not assigning any category. You can also suggest a new category via the add or update category template on the [issue page](https://github.com/best-of-lists/best-of/issues/new/choose). + +## Update a project + +If you like to suggest or contribute a project update, choose one of the following ways: + +- Suggest a project update by opening an issue: Please use the update project template from the [issue page](https://github.com/best-of-lists/best-of/issues/new/choose) and fill in the requested information. +- Update a project by modifying the [projects.yaml](https://github.com/best-of-lists/best-of/blob/main/projects.yaml) and submitting a pull request with your changes. This can also be done directly via the [GitHub UI](https://github.com/best-of-lists/best-of/edit/main/projects.yaml). + +Before opening an issue or pull request, please ensure that you adhere to the following guidelines: + +- Only update the project in the `projects.yaml` and never to the `README.md` file directly. Use the yaml format and the properties documented in the [project properties](#project-properties) section below to update a new project. +- Please create an individual issue or pull request for each project. +- Please use the following title format for the issue or pull request: `Update project: project-name`. + +## Project properties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PropertyDescription
nameName of the project. This name is required to be unique on the best-of list.
github_idGitHub ID of the project based on user or organization and the repository name, e.g. best-of-lists/best-of-generator.
Optional Properties:
categoryCategory that this project is most related to. You can find all available category IDs in the projects.yaml file. The project will be sorted into the Others category if no category is provided.
labelsList of labels that this project is related to. You can find all available label IDs in the projects.yaml file.
Supported Package Managers:
pypi_idProject ID on the python package index (PyPi).
conda_idProject ID on the conda package manager. If the main package is provided on a different channel, prefix the ID with the given channel: e.g. conda-forge/tensorflow
npm_idProject ID on the Node package manager (npm).
dockerhub_idProject ID on the Dockerhub container registry.
maven_idArtifact ID on Maven central, e.g. org.apache.flink:flink-core.
+ +Please refer to the [best-of-generator documentation](https://github.com/best-of-lists/best-of-generator#project-properties) for a complete and up-to-date list of supported project properties. + +## Improve metadata collection + +If you like to contribute to or share suggestions regarding the project metadata collection, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. + +## Improve markdown generation + +If you like to contribute to or share suggestions regarding the markdown generation, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. + +## Create your own best-of list + +If you want to create your own best-of list, we strongly recommend to follow [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). With this guide, it will only take about 3 minutes to get you started. It is already set-up to automatically run the best-of generator via our GitHub Action and includes other useful template files. + +## Code of Conduct + +All members of the project community must abide by the [Contributor Covenant, version 2.0](./.github/CODE_OF_CONDUCT.md). Only by respecting each other we can develop a productive, collaborative community. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project maintainer. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cc3e245 --- /dev/null +++ b/LICENSE @@ -0,0 +1,427 @@ +Attribution-ShareAlike 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-ShareAlike 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-ShareAlike 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. BY-SA Compatible License means a license listed at + creativecommons.org/compatiblelicenses, approved by Creative + Commons as essentially the equivalent of this Public License. + + d. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + e. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + f. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + g. License Elements means the license attributes listed in the name + of a Creative Commons Public License. The License Elements of this + Public License are Attribution and ShareAlike. + + h. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + i. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + j. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + k. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + l. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + m. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. Additional offer from the Licensor -- Adapted Material. + Every recipient of Adapted Material from You + automatically receives an offer from the Licensor to + exercise the Licensed Rights in the Adapted Material + under the conditions of the Adapter's License You apply. + + c. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + b. ShareAlike. + + In addition to the conditions in Section 3(a), if You Share + Adapted Material You produce, the following conditions also apply. + + 1. The Adapter's License You apply must be a Creative Commons + license with the same License Elements, this version or + later, or a BY-SA Compatible License. + + 2. You must include the text of, or the URI or hyperlink to, the + Adapter's License You apply. You may satisfy this condition + in any reasonable manner based on the medium, means, and + context in which You Share Adapted Material. + + 3. You may not offer or impose any additional or different terms + or conditions on, or apply any Effective Technological + Measures to, Adapted Material that restrict exercise of the + rights granted under the Adapter's License You apply. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material, + + including for purposes of Section 3(b); and + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the β€œLicensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/README.md b/README.md new file mode 100644 index 0000000..3552c10 --- /dev/null +++ b/README.md @@ -0,0 +1,96 @@ + +

+ best-of +
+

+ +

+ πŸ†  Discover best-of lists with awesome open-source projects on all kinds of topics. +

+ +

+ + + + + + +

+ +This curated list contains 2 best-of lists with a total of 52 stars grouped into 2 categories. All projects are ranked by a project-quality score, which is calculated based on various metrics automatically collected from GitHub and different package managers. If you like to add or update projects, feel free to open an [issue](https://github.com/best-of-lists/best-of/issues/new/choose), submit a [pull request](https://github.com/best-of-lists/best-of/pulls), or directly edit the [projects.yaml](https://github.com/best-of-lists/best-of/edit/main/projects.yaml). Contributions are very welcome! + +> πŸ§™β€β™‚οΈ Create your own best-of list in just 3 minutes with [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). +## Contents + +- [Machine Learning & Data Engineering](#machine-learning--data-engineering) _2 projects_ +- [Web Development](#web-development) _0 projects_ + +## Explanation +- πŸ₯‡πŸ₯ˆπŸ₯‰  Combined project-quality score +- ⭐️  Star count from GitHub +- 🐣  New project _(less than 6 months old)_ +- πŸ’€  Inactive project _(6 months no activity)_ +- πŸ’€  Dead project _(12 months no activity)_ +- πŸ“ˆπŸ“‰  Project is trending up or down +- βž•  Project was recently added +- πŸ‘¨β€πŸ’»  Contributors count from GitHub +- πŸ”€  Fork count from GitHub +- πŸ“‹  Issue count from GitHub +- ⏱️  Last update timestamp on package manager +- πŸ“₯  Download count from package manager +- πŸ“¦  Number of dependent projects +-   Best-of list with Python projects + +
+ +## Machine Learning & Data Engineering + +Back to top + +_Best-of lists about machine learning, data engieering, data science, or other topics related to big data._ + +
best-of-ml-python (πŸ₯‡8 Β· ⭐ 42 Β· 🐣) - A ranked list of awesome machine learning python libraries... + +- [GitHub](https://github.com/ml-tooling/best-of-ml-python) (πŸ‘¨β€πŸ’» 1 Β· πŸ”€ 1 Β· πŸ“‹ 5 - 20% open Β· ⏱️ 05.01.2021): + + ``` + git clone https://github.com/ml-tooling/best-of-ml-python + ``` +
+
best-of-jupyter (πŸ₯‡8 Β· ⭐ 10 Β· πŸ“ˆ) - A ranked list of awesome Jupyter Notebook, Hub and Lab projects.. + +- [GitHub](https://github.com/ml-tooling/best-of-jupyter) (⏱️ 05.01.2021): + + ``` + git clone https://github.com/ml-tooling/best-of-jupyter + ``` +
+
+ +## Web Development + +Back to top + +_Best-of lists about react, vue, angular, html5, css, or other topics related to web development._ + + +--- + +## Related Resources + +- [**Awesome**](https://github.com/sindresorhus/awesome): Awesome lists about all kinds of interesting topics + +## Contribution + +Contributions are encouraged and always welcome! If you like to add or update projects, choose one of the following ways: + +- Open an issue by selecting one of the provided categories from the [issue page](https://github.com/best-of-lists/best-of/issues/new/choose) and fill in the requested information. +- Modify the [projects.yaml](https://github.com/best-of-lists/best-of/blob/main/projects.yaml) with your additions or changes, and submit a pull request. This can also be done directly via the [GitHub UI](https://github.com/best-of-lists/best-of/edit/main/projects.yaml). + +If you like to contribute to or share suggestions regarding the project metadata collection or markdown generation, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. If you like to create your own best-of list, we recommend to follow [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). + +For more information on how to add or update projects, please read the [contribution guidelines](https://github.com/best-of-lists/best-of/blob/main/CONTRIBUTING.md). By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/best-of-lists/best-of/blob/main/.github/CODE_OF_CONDUCT.md). + +## License + +[![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg)](https://creativecommons.org/licenses/by-sa/4.0/) diff --git a/config/footer.md b/config/footer.md new file mode 100644 index 0000000..0263e73 --- /dev/null +++ b/config/footer.md @@ -0,0 +1,21 @@ + +--- + +## Related Resources + +- [**Awesome**](https://github.com/sindresorhus/awesome): Awesome lists about all kinds of interesting topics + +## Contribution + +Contributions are encouraged and always welcome! If you like to add or update projects, choose one of the following ways: + +- Open an issue by selecting one of the provided categories from the [issue page](https://github.com/best-of-lists/best-of/issues/new/choose) and fill in the requested information. +- Modify the [projects.yaml](https://github.com/best-of-lists/best-of/blob/main/projects.yaml) with your additions or changes, and submit a pull request. This can also be done directly via the [Github UI](https://github.com/best-of-lists/best-of/edit/main/projects.yaml). + +If you like to contribute to or share suggestions regarding the project metadata collection or markdown generation, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. If you like to create your own best-of list, we recommend to follow [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). + +For more information on how to add or update projects, please read the [contribution guidelines](https://github.com/best-of-lists/best-of/blob/main/CONTRIBUTING.md). By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/best-of-lists/best-of/blob/main/.github/CODE_OF_CONDUCT.md). + +## License + +[![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg)](https://creativecommons.org/licenses/by-sa/4.0/) diff --git a/config/header.md b/config/header.md new file mode 100644 index 0000000..2c3187b --- /dev/null +++ b/config/header.md @@ -0,0 +1,22 @@ + +

+ best-of +
+

+ +

+ πŸ†  Discover best-of lists with awesome open-source projects on all kinds of topics. +

+ +

+ + + + + + +

+ +This curated list contains {project_count} best-of lists with a total of {stars_count} stars grouped into {category_count} categories. All projects are ranked by a project-quality score, which is calculated based on various metrics automatically collected from Github and different package managers. If you like to add or update projects, feel free to open an [issue](https://github.com/best-of-lists/best-of/issues/new/choose), submit a [pull request](https://github.com/best-of-lists/best-of/pulls), or directly edit the [projects.yaml](https://github.com/best-of-lists/best-of/edit/main/projects.yaml). Contributions are very welcome! + +> πŸ§™β€β™‚οΈ Create your own best-of list in just 3 minutes with [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). \ No newline at end of file diff --git a/create-best-of-list.md b/create-best-of-list.md new file mode 100644 index 0000000..e6241a6 --- /dev/null +++ b/create-best-of-list.md @@ -0,0 +1,39 @@ +# Create your own best-of list + +Welcome ❀️ It is awesome that you want to create your own best-of list! It will only take around 3-4 minutes to get you started ⏱️ + +1. **Create a new repository based on the [best-of template](https://github.com/best-of-lists/best-of/generate)**. +
+ Screenshots (click to show...) + + ![](./template/docs/images/1-use-template-repo-framed.png) + ![](./template/docs/images/2-create-new-repo-framed.png) + +
+2. **Run the `setup-best-of-list` workflow**: `Actions` -> `setup-best-of-list` -> `Run workflow` +
+ Screenshots (click to show...) + + ![](./template/docs/images/3-run-setup-workflow-framed.png) + +
+3. **Select and merge the setup pull request**: After about one minute, a pull request should appear in the `Pull requests` section -> Select the `Initial setup for best-of list` pull request -> Select `Merge Pull Request` -> `Confirm Merge` +
+ Screenshots (click to show...) + + ![](./template/docs/images/4-select-setup-pr-framed.png) + ![](./template/docs/images/5-merge-setup-pr-framed.png) + +
+4. **Run the `update-best-of-list` workflow**: `Actions` -> `update-best-of-list` -> `Run workflow` (you don't have to provide a version as input). The workflow will probably run for 2-3 minutes. Once it is finished, another pull request is created with the generated `README.md`. Merge the pull request and publish the draft release as instructed in the PR. +
+ Screenshots (click to show...) + + ![](./template/docs/images/6-run-update-workflow-framed.png) + ![](./template/docs/images/7-merge-update-pr-framed.png) + +
+ +Congrats πŸŽ‰ You have created your own best-of list. Now you just need to fill it with some awesome projects by adding them to the `projects.yaml` as described in the [documentation](https://github.com/best-of-lists/best-of-generator#projects). After you added a few projects, you can either just manually rerun the `update-best-of-list` workflow to update the markdown page or wait for a few days until the scheduled action is run automatically. Keep in mind that the automated workflow also creates PRs for every update which you still need to merge manually. You can also start adapting the header and footer templates in `config/header.md` and `config/footer.md` to customize your list. + +For more information on the `projects.yaml`, project properties or configuration, please refer to the [best-of-generator documentation](https://github.com/best-of-lists/best-of-generator#documentation). diff --git a/history/2020-12-17_projects.csv b/history/2020-12-17_projects.csv new file mode 100644 index 0000000..831a8ba --- /dev/null +++ b/history/2020-12-17_projects.csv @@ -0,0 +1,2 @@ +,name,github_id,labels,category,github_url,homepage,license,created_at,updated_at,last_commit_pushed_at,fork_count,open_issue_count,star_count,latest_stable_release_published_at,latest_stable_release_number,release_count,description,projectrank,contributor_count,show,projectrank_placing +0,best-of-ml-python,ml-tooling/best-of-ml-python,['python'],big-data,https://github.com/ml-tooling/best-of-ml-python,https://github.com/ml-tooling/best-of-ml-python,CC-BY-SA-4.0,2020-11-29 19:41:36+00:00,2020-12-17 21:20:37+00:00,2020-12-17 20:36:50+00:00,1,1,35,2020-12-17 21:27:24+00:00,2020.12.17-test.2,4,A ranked list of awesome machine learning python libraries. Updated weekly.,9,1,True,1 diff --git a/history/2020-12-31_changes.md b/history/2020-12-31_changes.md new file mode 100644 index 0000000..f4397e2 --- /dev/null +++ b/history/2020-12-31_changes.md @@ -0,0 +1 @@ +Nothing changed from last update. \ No newline at end of file diff --git a/history/2020-12-31_projects.csv b/history/2020-12-31_projects.csv new file mode 100644 index 0000000..3ccc2ef --- /dev/null +++ b/history/2020-12-31_projects.csv @@ -0,0 +1,2 @@ +,name,github_id,labels,category,github_url,homepage,license,created_at,updated_at,last_commit_pushed_at,fork_count,open_issue_count,star_count,latest_stable_release_published_at,latest_stable_release_number,release_count,description,projectrank,contributor_count,show,projectrank_placing +0,best-of-ml-python,ml-tooling/best-of-ml-python,['python'],big-data,https://github.com/ml-tooling/best-of-ml-python,https://github.com/ml-tooling/best-of-ml-python,CC-BY-SA-4.0,2020-11-29 19:41:36,2020-12-31 18:37:36,2020-12-28 10:56:52,1,1,39,2020-12-28 01:48:56,2020.12.28,7,A ranked list of awesome machine learning python libraries. Updated weekly.,9,1,True,1 diff --git a/history/2021-01-02_changes.md b/history/2021-01-02_changes.md new file mode 100644 index 0000000..f4397e2 --- /dev/null +++ b/history/2021-01-02_changes.md @@ -0,0 +1 @@ +Nothing changed from last update. \ No newline at end of file diff --git a/history/2021-01-02_projects.csv b/history/2021-01-02_projects.csv new file mode 100644 index 0000000..0ac266c --- /dev/null +++ b/history/2021-01-02_projects.csv @@ -0,0 +1,3 @@ +,name,github_id,labels,category,github_url,homepage,license,created_at,updated_at,last_commit_pushed_at,fork_count,open_issue_count,star_count,latest_stable_release_published_at,latest_stable_release_number,release_count,description,projectrank,contributor_count,show,projectrank_placing +0,best-of-ml-python,ml-tooling/best-of-ml-python,['python'],big-data,https://github.com/ml-tooling/best-of-ml-python,https://github.com/ml-tooling/best-of-ml-python,CC-BY-SA-4.0,2020-11-29 19:41:36,2021-01-01 23:14:34,2021-01-01 23:14:25,1.0,1.0,41,2021-01-01 13:09:20,2021.01.01,8,A ranked list of awesome machine learning python libraries. Updated weekly.,8,1.0,True,1 +1,best-of-jupyter,ml-tooling/best-of-jupyter,['python'],big-data,https://github.com/ml-tooling/best-of-jupyter,https://github.com/ml-tooling/best-of-jupyter,CC-BY-SA-4.0,2021-01-01 22:25:48,2021-01-01 23:07:44,2021-01-01 23:07:38,,,1,2021-01-01 22:59:28,2021.01.01,1,"A ranked list of awesome Jupyter Notebook, Hub and Lab projects (extensions, kernels, tools). Updated weekly.",6,,True,3 diff --git a/history/2021-01-05_changes.md b/history/2021-01-05_changes.md new file mode 100644 index 0000000..579dcc5 --- /dev/null +++ b/history/2021-01-05_changes.md @@ -0,0 +1,6 @@ +## πŸ“ˆ Trending Up + +_Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ + +- best-of-jupyter (πŸ₯‰7 Β· ⭐ 6 Β· πŸ“ˆ) - A ranked list of awesome Jupyter Notebook, Hub and Lab.. + diff --git a/history/2021-01-05_projects.csv b/history/2021-01-05_projects.csv new file mode 100644 index 0000000..7260c8b --- /dev/null +++ b/history/2021-01-05_projects.csv @@ -0,0 +1,3 @@ +,name,github_id,labels,category,github_url,homepage,license,created_at,updated_at,last_commit_pushed_at,fork_count,closed_issue_count,star_count,latest_stable_release_published_at,latest_stable_release_number,release_count,description,projectrank,contributor_count,open_issue_count,show,projectrank_placing,trending +0,best-of-ml-python,ml-tooling/best-of-ml-python,['python'],data-engineering,https://github.com/ml-tooling/best-of-ml-python,https://github.com/ml-tooling/best-of-ml-python,CC-BY-SA-4.0,2020-11-29 19:41:36,2021-01-05 00:03:43,2021-01-05 00:03:37,1.0,4.0,41,2021-01-01 13:09:20,2021.01.01,8,A ranked list of awesome machine learning python libraries. Updated weekly.,8,1.0,1.0,True,1, +1,best-of-jupyter,ml-tooling/best-of-jupyter,['python'],data-engineering,https://github.com/ml-tooling/best-of-jupyter,https://github.com/ml-tooling/best-of-jupyter,CC-BY-SA-4.0,2021-01-01 22:25:48,2021-01-01 23:07:44,2021-01-01 23:07:38,,,6,2021-01-01 22:59:28,2021.01.01,1,"A ranked list of awesome Jupyter Notebook, Hub and Lab projects (extensions, kernels, tools). Updated weekly.",7,,,True,3,1.0 diff --git a/latest-changes.md b/latest-changes.md new file mode 100644 index 0000000..579dcc5 --- /dev/null +++ b/latest-changes.md @@ -0,0 +1,6 @@ +## πŸ“ˆ Trending Up + +_Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ + +- best-of-jupyter (πŸ₯‰7 Β· ⭐ 6 Β· πŸ“ˆ) - A ranked list of awesome Jupyter Notebook, Hub and Lab.. + diff --git a/projects.yaml b/projects.yaml new file mode 100644 index 0000000..f8eae77 --- /dev/null +++ b/projects.yaml @@ -0,0 +1,36 @@ +configuration: + min_stars: 0 + min_projectrank: 0 + require_github: True + allowed_licenses: ["all"] + hide_project_license: True + markdown_header_file: "config/header.md" + markdown_footer_file: "config/footer.md" + projects_history_folder: "history" + +categories: + - category: "data-engineering" + title: "Machine Learning & Data Engineering" + subtitle: "Best-of lists about machine learning, data engieering, data science, or other topics related to big data." + - category: "web-dev" + title: "Web Development" + subtitle: "Best-of lists about react, vue, angular, html5, css, or other topics related to web development." + +labels: + - label: "python" + image: "https://www.python.org/static/favicon.ico" + description: "Best-of list with Python projects" + +projects: + - name: best-of-ml-python + github_id: ml-tooling/best-of-ml-python + labels: ["python"] + category: "data-engineering" + - name: best-of-jupyter + github_id: ml-tooling/best-of-jupyter + labels: ["python"] + category: "data-engineering" + - name: best-of-web-python + github_id: ml-tooling/best-of-web-python + labels: ["python"] + category: "web-dev" diff --git a/template/CONTRIBUTING.md b/template/CONTRIBUTING.md new file mode 100644 index 0000000..d72200d --- /dev/null +++ b/template/CONTRIBUTING.md @@ -0,0 +1,118 @@ + +# Contribution Guidelines + +Thanks for your interest in contributing to our project. This page will give you a quick overview of how things are organized and, most importantly, how to get involved. Everyone is welcome to contribute, and we value everybody's contribution. + +## Table of contents + +1. [Add a project](#add-a-project) +2. [Update a project](#update-a-project) +3. [Improve metadata collection](#improve-metadata-collection) +4. [Improve markdown generation](#improve-markdown-generation) +5. [Create your own best-of list](#improve-markdown-generation) +6. [Code of conduct](#code-of-conduct) + +## Add a project + +If you like to suggest or add a project, choose one of the following ways: + +- Suggest a project by opening an issue: Please use the suggest project template from the [issue page](https://github.com/best-of-lists/best-of-template/issues/new/choose) and fill in the requested information. +- Add a project by modifying the [projects.yaml](https://github.com/best-of-lists/best-of-template/blob/main/projects.yaml) and submitting a pull request with your addition. This can also be done directly via the [Github UI](https://github.com/best-of-lists/best-of-template/edit/main/projects.yaml). + +Before opening an issue or pull request, please ensure that you adhere to the following guidelines: + +- Please make sure that the project was not already added or suggested to this best-of list. You can ensure this by searching the projects.yaml, the Readme, and the issue list. +- Add the project to the `projects.yaml` and never to the `README.md` file directly. Use the yaml format and the properties documented in the [project properties](#project-properties) section below to add a new project, for example: + ```yaml + - name: Tensorflow + github_id: tensorflow/tensorflow + pypi_id: tensorflow + conda_id: tensorflow + labels: ["tensorflow"] + category: ml-frameworks + ``` +- Please create an individual issue or pull request for each project. +- Please use the following title format for the issue or pull request: `Add project: project-name`. +- If a project doesn't fit into any of the pre-existing categories, it should go under the `Others` category by not assigning any category. You can also suggest a new category via the add or update category template on the [issue page](https://github.com/best-of-lists/best-of-template/issues/new/choose). + +## Update a project + +If you like to suggest or contribute a project update, choose one of the following ways: + +- Suggest a project update by opening an issue: Please use the update project template from the [issue page](https://github.com/best-of-lists/best-of-template/issues/new/choose) and fill in the requested information. +- Update a project by modifying the [projects.yaml](https://github.com/best-of-lists/best-of-template/blob/main/projects.yaml) and submitting a pull request with your changes. This can also be done directly via the [Github UI](https://github.com/best-of-lists/best-of-template/edit/main/projects.yaml). + +Before opening an issue or pull request, please ensure that you adhere to the following guidelines: + +- Only update the project in the `projects.yaml` and never to the `README.md` file directly. Use the yaml format and the properties documented in the [project properties](#project-properties) section below to update a new project. +- Please create an individual issue or pull request for each project. +- Please use the following title format for the issue or pull request: `Update project: project-name`. + +## Project properties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PropertyDescription
nameName of the project. This name is required to be unique on the best-of list.
github_idGithub ID of the project based on user or organization and the repository name, e.g. best-of-lists/best-of-generator.
Optional Properties:
categoryCategory that this project is most related to. You can find all available category IDs in the projects.yaml file. The project will be sorted into the Others category if no category is provided.
labelsList of labels that this project is related to. You can find all available label IDs in the projects.yaml file.
Supported Package Managers:
pypi_idProject ID on the python package index (PyPi).
conda_idProject ID on the conda package manager. If the main package is provided on a different channel, prefix the ID with the given channel: e.g. conda-forge/tensorflow
npm_idProject ID on the Node package manager (npm).
dockerhub_idProject ID on the Docker Hub container registry.
maven_idArtifact ID on Maven central, e.g. org.apache.flink:flink-core.
+ +Please refer to the [best-of-generator documentation](https://github.com/best-of-lists/best-of-generator#project-properties) for a complete and up-to-date list of supported project properties. + +## Improve metadata collection + +If you like to contribute to or share suggestions regarding the project metadata collection, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. + +## Improve markdown generation + +If you like to contribute to or share suggestions regarding the markdown generation, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. + +## Create your own best-of list + +If you want to create your own best-of list, we strongly recommend to follow [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). With this guide, it will only take about 3 minutes to get you started. It is already set-up to automatically run the best-of generator via our Github Action and includes other useful template files. + +## Code of Conduct + +All members of the project community must abide by the [Contributor Covenant, version 2.0](./.github/CODE_OF_CONDUCT.md). Only by respecting each other we can develop a productive, collaborative community. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project maintainer. diff --git a/template/docs/images/1-use-template-repo-framed.png b/template/docs/images/1-use-template-repo-framed.png new file mode 100644 index 0000000..a4dc137 Binary files /dev/null and b/template/docs/images/1-use-template-repo-framed.png differ diff --git a/template/docs/images/2-create-new-repo-framed.png b/template/docs/images/2-create-new-repo-framed.png new file mode 100644 index 0000000..36ddd70 Binary files /dev/null and b/template/docs/images/2-create-new-repo-framed.png differ diff --git a/template/docs/images/3-run-setup-workflow-framed.png b/template/docs/images/3-run-setup-workflow-framed.png new file mode 100644 index 0000000..6ad643d Binary files /dev/null and b/template/docs/images/3-run-setup-workflow-framed.png differ diff --git a/template/docs/images/4-select-setup-pr-framed.png b/template/docs/images/4-select-setup-pr-framed.png new file mode 100644 index 0000000..09b5f57 Binary files /dev/null and b/template/docs/images/4-select-setup-pr-framed.png differ diff --git a/template/docs/images/5-merge-setup-pr-framed.png b/template/docs/images/5-merge-setup-pr-framed.png new file mode 100644 index 0000000..ec6f253 Binary files /dev/null and b/template/docs/images/5-merge-setup-pr-framed.png differ diff --git a/template/docs/images/6-run-update-workflow-framed.png b/template/docs/images/6-run-update-workflow-framed.png new file mode 100644 index 0000000..00f8b93 Binary files /dev/null and b/template/docs/images/6-run-update-workflow-framed.png differ diff --git a/template/docs/images/7-merge-update-pr-framed.png b/template/docs/images/7-merge-update-pr-framed.png new file mode 100644 index 0000000..26ec524 Binary files /dev/null and b/template/docs/images/7-merge-update-pr-framed.png differ diff --git a/template/footer.md b/template/footer.md new file mode 100644 index 0000000..5563974 --- /dev/null +++ b/template/footer.md @@ -0,0 +1,21 @@ + +--- + +## Related Resources + +- [**Best-of lists**](https://best-of.org): Discover other best-of lists with awesome open-source projects on all kinds of topics. + +## Contribution + +Contributions are encouraged and always welcome! If you like to add or update projects, choose one of the following ways: + +- Open an issue by selecting one of the provided categories from the [issue page](https://github.com/best-of-lists/best-of-template/issues/new/choose) and fill in the requested information. +- Modify the [projects.yaml](https://github.com/best-of-lists/best-of-template/blob/main/projects.yaml) with your additions or changes, and submit a pull request. This can also be done directly via the [Github UI](https://github.com/best-of-lists/best-of-template/edit/main/projects.yaml). + +If you like to contribute to or share suggestions regarding the project metadata collection or markdown generation, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. If you like to create your own best-of list, we recommend to follow [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). + +For more information on how to add or update projects, please read the [contribution guidelines](https://github.com/best-of-lists/best-of-template/blob/main/CONTRIBUTING.md). By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/best-of-lists/best-of-template/blob/main/.github/CODE_OF_CONDUCT.md). + +## License + +[![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg)](https://creativecommons.org/licenses/by-sa/4.0/) diff --git a/template/header.md b/template/header.md new file mode 100644 index 0000000..8a8d26a --- /dev/null +++ b/template/header.md @@ -0,0 +1,22 @@ + +

+ best-of-template +
+

+ +

+ πŸ†  A ranked list of awesome projects. Updated weekly. +

+ +

+ + + + + + +

+ +This curated list contains {project_count} awesome open-source projects with a total of {stars_count} stars grouped into {category_count} categories. All projects are ranked by a project-quality score, which is calculated based on various metrics automatically collected from GitHub and different package managers. If you like to add or update projects, feel free to open an [issue](https://github.com/best-of-lists/best-of-template/issues/new/choose), submit a [pull request](https://github.com/best-of-lists/best-of-template/pulls), or directly edit the [projects.yaml](https://github.com/best-of-lists/best-of-template/edit/main/projects.yaml). Contributions are very welcome! + +> πŸ§™β€β™‚οΈ Create your own best-of list in just 3 minutes with [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). \ No newline at end of file diff --git a/template/projects.yaml b/template/projects.yaml new file mode 100644 index 0000000..666bfea --- /dev/null +++ b/template/projects.yaml @@ -0,0 +1,19 @@ +configuration: + markdown_header_file: "config/header.md" + markdown_footer_file: "config/footer.md" + +categories: + # - category: "data-engineering" + # title: "Machine Learning & Data Engineering" + # subtitle: "Best-of lists about machine learning, data engieering, data science, or other topics related to big data." + +labels: + # - label: "python" + # image: "https://www.python.org/static/favicon.ico" + # description: "Best-of list with Python projects" + +projects: + # - name: best-of-ml-python + # github_id: ml-tooling/best-of-ml-python + # labels: ["python"] + # category: "data-engineering"