├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 01_suggest-project.md │ ├── 02_update-project.md │ ├── 03_update-category.md │ ├── 04_change-configuration.md │ └── 05_anything-else.md ├── PULL_REQUEST_TEMPLATE.md ├── labels.yml └── workflows │ └── update-best-of-list.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config ├── footer.md └── header.md ├── history ├── 2021-01-01_projects.csv ├── 2021-01-05_changes.md ├── 2021-01-05_projects.csv ├── 2021-01-07_changes.md ├── 2021-01-07_projects.csv ├── 2021-01-08_changes.md ├── 2021-01-08_projects.csv ├── 2021-01-12_changes.md ├── 2021-01-12_projects.csv ├── 2021-01-16_changes.md ├── 2021-01-16_projects.csv ├── 2021-01-21_changes.md ├── 2021-01-21_projects.csv ├── 2021-01-28_changes.md ├── 2021-01-28_projects.csv ├── 2021-02-04_changes.md ├── 2021-02-04_projects.csv ├── 2021-02-18_changes.md ├── 2021-02-18_projects.csv ├── 2021-02-25_changes.md ├── 2021-02-25_projects.csv ├── 2021-03-04_changes.md ├── 2021-03-04_projects.csv ├── 2021-03-11_changes.md ├── 2021-03-11_projects.csv ├── 2021-04-01_changes.md ├── 2021-04-01_projects.csv ├── 2021-04-08_changes.md ├── 2021-04-08_projects.csv ├── 2021-04-15_changes.md ├── 2021-04-15_projects.csv ├── 2021-04-22_changes.md ├── 2021-04-22_projects.csv ├── 2021-04-29_changes.md ├── 2021-04-29_projects.csv ├── 2021-05-13_changes.md ├── 2021-05-13_projects.csv ├── 2021-06-03_changes.md ├── 2021-06-03_projects.csv ├── 2021-06-24_changes.md ├── 2021-06-24_projects.csv ├── 2021-07-01_changes.md ├── 2021-07-01_projects.csv ├── 2021-07-08_changes.md ├── 2021-07-08_projects.csv ├── 2021-07-15_changes.md ├── 2021-07-15_projects.csv ├── 2021-08-26_changes.md ├── 2021-08-26_projects.csv ├── 2021-11-17_changes.md ├── 2021-11-17_projects.csv ├── 2021-11-25_changes.md ├── 2021-11-25_projects.csv ├── 2021-12-02_changes.md ├── 2021-12-02_projects.csv ├── 2021-12-09_changes.md ├── 2021-12-09_projects.csv ├── 2021-12-16_changes.md ├── 2021-12-16_projects.csv ├── 2021-12-23_changes.md ├── 2021-12-23_projects.csv ├── 2021-12-30_changes.md ├── 2021-12-30_projects.csv ├── 2022-01-06_changes.md ├── 2022-01-06_projects.csv ├── 2022-01-13_changes.md ├── 2022-01-13_projects.csv ├── 2022-01-17_changes.md ├── 2022-01-17_projects.csv ├── 2022-01-20_changes.md ├── 2022-01-20_projects.csv ├── 2022-01-27_changes.md ├── 2022-01-27_projects.csv ├── 2022-02-10_changes.md ├── 2022-02-10_projects.csv ├── 2022-02-17_changes.md ├── 2022-02-17_projects.csv ├── 2022-04-14_changes.md ├── 2022-04-14_projects.csv ├── 2022-04-21_changes.md ├── 2022-04-21_projects.csv ├── 2022-04-28_changes.md ├── 2022-04-28_projects.csv ├── 2022-05-05_changes.md ├── 2022-05-05_projects.csv ├── 2022-05-12_changes.md ├── 2022-05-12_projects.csv ├── 2022-05-19_changes.md ├── 2022-05-19_projects.csv ├── 2022-05-26_changes.md ├── 2022-05-26_projects.csv ├── 2022-06-02_changes.md ├── 2022-06-02_projects.csv ├── 2022-06-09_changes.md ├── 2022-06-09_projects.csv ├── 2022-06-16_changes.md ├── 2022-06-16_projects.csv ├── 2022-06-23_changes.md ├── 2022-06-23_projects.csv ├── 2022-06-30_changes.md ├── 2022-06-30_projects.csv ├── 2022-07-07_changes.md ├── 2022-07-07_projects.csv ├── 2022-07-14_changes.md ├── 2022-07-14_projects.csv ├── 2022-07-21_changes.md ├── 2022-07-21_projects.csv ├── 2022-07-28_changes.md ├── 2022-07-28_projects.csv ├── 2022-08-04_changes.md ├── 2022-08-04_projects.csv ├── 2022-08-11_changes.md ├── 2022-08-11_projects.csv ├── 2022-08-18_changes.md ├── 2022-08-18_projects.csv ├── 2022-08-25_changes.md ├── 2022-08-25_projects.csv ├── 2022-09-01_changes.md ├── 2022-09-01_projects.csv ├── 2022-09-08_changes.md ├── 2022-09-08_projects.csv ├── 2022-09-15_changes.md ├── 2022-09-15_projects.csv ├── 2022-09-22_changes.md ├── 2022-09-22_projects.csv ├── 2022-09-29_changes.md ├── 2022-09-29_projects.csv ├── 2022-10-06_changes.md ├── 2022-10-06_projects.csv ├── 2022-10-13_changes.md ├── 2022-10-13_projects.csv ├── 2022-10-20_changes.md ├── 2022-10-20_projects.csv ├── 2022-10-27_changes.md ├── 2022-10-27_projects.csv ├── 2022-11-03_changes.md ├── 2022-11-03_projects.csv ├── 2022-11-10_changes.md ├── 2022-11-10_projects.csv ├── 2022-11-17_changes.md ├── 2022-11-17_projects.csv ├── 2022-11-24_changes.md ├── 2022-11-24_projects.csv ├── 2022-12-01_changes.md ├── 2022-12-01_projects.csv ├── 2022-12-08_changes.md ├── 2022-12-08_projects.csv ├── 2022-12-15_changes.md ├── 2022-12-15_projects.csv ├── 2022-12-29_changes.md ├── 2022-12-29_projects.csv ├── 2023-01-05_changes.md ├── 2023-01-05_projects.csv ├── 2023-01-12_changes.md ├── 2023-01-12_projects.csv ├── 2023-01-19_changes.md ├── 2023-01-19_projects.csv ├── 2023-01-26_changes.md ├── 2023-01-26_projects.csv ├── 2023-02-02_changes.md ├── 2023-02-02_projects.csv ├── 2023-02-16_changes.md ├── 2023-02-16_projects.csv ├── 2023-02-23_changes.md ├── 2023-02-23_projects.csv ├── 2023-03-02_changes.md ├── 2023-03-02_projects.csv ├── 2023-03-09_changes.md ├── 2023-03-09_projects.csv ├── 2023-03-16_changes.md ├── 2023-03-16_projects.csv ├── 2023-03-23_changes.md ├── 2023-03-23_projects.csv ├── 2023-03-30_changes.md ├── 2023-03-30_projects.csv ├── 2023-04-06_changes.md ├── 2023-04-06_projects.csv ├── 2023-04-13_changes.md ├── 2023-04-13_projects.csv ├── 2023-04-20_changes.md ├── 2023-04-20_projects.csv ├── 2023-04-27_changes.md ├── 2023-04-27_projects.csv ├── 2023-05-04_changes.md ├── 2023-05-04_projects.csv ├── 2023-05-11_changes.md ├── 2023-05-11_projects.csv ├── 2023-05-18_changes.md ├── 2023-05-18_projects.csv ├── 2023-05-25_changes.md ├── 2023-05-25_projects.csv ├── 2023-06-01_changes.md ├── 2023-06-01_projects.csv ├── 2023-06-08_changes.md ├── 2023-06-08_projects.csv ├── 2023-06-15_changes.md ├── 2023-06-15_projects.csv ├── 2023-06-22_changes.md ├── 2023-06-22_projects.csv ├── 2023-06-29_changes.md ├── 2023-06-29_projects.csv ├── 2023-07-06_changes.md ├── 2023-07-06_projects.csv ├── 2023-07-13_changes.md ├── 2023-07-13_projects.csv ├── 2023-07-20_changes.md ├── 2023-07-20_projects.csv ├── 2023-07-27_changes.md ├── 2023-07-27_projects.csv ├── 2023-08-03_changes.md ├── 2023-08-03_projects.csv ├── 2023-08-10_changes.md ├── 2023-08-10_projects.csv ├── 2023-08-17_changes.md ├── 2023-08-17_projects.csv ├── 2023-08-24_changes.md ├── 2023-08-24_projects.csv ├── 2023-08-31_changes.md ├── 2023-08-31_projects.csv ├── 2023-09-07_changes.md ├── 2023-09-07_projects.csv ├── 2023-09-14_changes.md ├── 2023-09-14_projects.csv ├── 2023-09-21_changes.md ├── 2023-09-21_projects.csv ├── 2023-09-28_changes.md ├── 2023-09-28_projects.csv ├── 2023-10-05_changes.md ├── 2023-10-05_projects.csv ├── 2023-10-12_changes.md ├── 2023-10-12_projects.csv ├── 2023-10-19_changes.md ├── 2023-10-19_projects.csv ├── 2023-10-26_changes.md ├── 2023-10-26_projects.csv ├── 2023-11-02_changes.md ├── 2023-11-02_projects.csv ├── 2023-11-09_changes.md ├── 2023-11-09_projects.csv ├── 2023-11-16_changes.md ├── 2023-11-16_projects.csv ├── 2023-11-23_changes.md ├── 2023-11-23_projects.csv ├── 2023-11-30_changes.md ├── 2023-11-30_projects.csv ├── 2023-12-07_changes.md ├── 2023-12-07_projects.csv ├── 2023-12-14_changes.md ├── 2023-12-14_projects.csv ├── 2023-12-21_changes.md ├── 2023-12-21_projects.csv ├── 2023-12-28_changes.md ├── 2023-12-28_projects.csv ├── 2024-01-04_changes.md ├── 2024-01-04_projects.csv ├── 2024-01-11_changes.md ├── 2024-01-11_projects.csv ├── 2024-01-18_changes.md ├── 2024-01-18_projects.csv ├── 2024-01-25_changes.md ├── 2024-01-25_projects.csv ├── 2024-02-01_changes.md ├── 2024-02-01_projects.csv ├── 2024-02-08_changes.md ├── 2024-02-08_projects.csv ├── 2024-02-15_changes.md ├── 2024-02-15_projects.csv ├── 2024-02-22_changes.md ├── 2024-02-22_projects.csv ├── 2024-02-29_changes.md ├── 2024-02-29_projects.csv ├── 2024-03-07_changes.md ├── 2024-03-07_projects.csv ├── 2024-03-14_changes.md ├── 2024-03-14_projects.csv ├── 2024-03-28_changes.md ├── 2024-03-28_projects.csv ├── 2024-04-04_changes.md ├── 2024-04-04_projects.csv ├── 2024-04-11_changes.md ├── 2024-04-11_projects.csv ├── 2024-04-18_changes.md ├── 2024-04-18_projects.csv ├── 2024-04-25_changes.md ├── 2024-04-25_projects.csv ├── 2024-05-02_changes.md ├── 2024-05-02_projects.csv ├── 2024-05-09_changes.md ├── 2024-05-09_projects.csv ├── 2024-05-16_changes.md ├── 2024-05-16_projects.csv ├── 2024-05-23_changes.md ├── 2024-05-23_projects.csv ├── 2024-05-30_changes.md ├── 2024-05-30_projects.csv ├── 2024-06-06_changes.md ├── 2024-06-06_projects.csv ├── 2024-10-17_changes.md ├── 2024-10-17_projects.csv ├── 2024-10-24_changes.md ├── 2024-10-24_projects.csv ├── 2024-10-31_changes.md ├── 2024-10-31_projects.csv ├── 2024-11-07_changes.md ├── 2024-11-07_projects.csv ├── 2024-11-14_changes.md ├── 2024-11-14_projects.csv ├── 2024-11-21_changes.md ├── 2024-11-21_projects.csv ├── 2024-11-28_changes.md ├── 2024-11-28_projects.csv ├── 2024-12-05_changes.md ├── 2024-12-05_projects.csv ├── 2024-12-12_changes.md ├── 2024-12-12_projects.csv ├── 2024-12-19_changes.md ├── 2024-12-19_projects.csv ├── 2025-01-02_changes.md ├── 2025-01-02_projects.csv ├── 2025-01-09_changes.md ├── 2025-01-09_projects.csv ├── 2025-01-16_changes.md ├── 2025-01-16_projects.csv ├── 2025-01-23_changes.md ├── 2025-01-23_projects.csv ├── 2025-02-06_changes.md ├── 2025-02-06_projects.csv ├── 2025-02-13_changes.md ├── 2025-02-13_projects.csv ├── 2025-02-20_changes.md ├── 2025-02-20_projects.csv ├── 2025-02-27_changes.md ├── 2025-02-27_projects.csv ├── 2025-03-06_changes.md ├── 2025-03-06_projects.csv ├── 2025-03-13_changes.md ├── 2025-03-13_projects.csv ├── 2025-03-20_changes.md ├── 2025-03-20_projects.csv ├── 2025-03-27_changes.md ├── 2025-03-27_projects.csv ├── 2025-04-03_changes.md ├── 2025-04-03_projects.csv ├── 2025-04-10_changes.md ├── 2025-04-10_projects.csv ├── 2025-04-17_changes.md ├── 2025-04-17_projects.csv ├── 2025-04-24_changes.md ├── 2025-04-24_projects.csv ├── 2025-05-01_changes.md ├── 2025-05-01_projects.csv ├── 2025-05-08_changes.md ├── 2025-05-08_projects.csv ├── 2025-05-15_changes.md ├── 2025-05-15_projects.csv ├── 2025-05-22_changes.md ├── 2025-05-22_projects.csv ├── 2025-05-29_changes.md └── 2025-05-29_projects.csv ├── latest-changes.md └── projects.yaml /.github/ISSUE_TEMPLATE/01_suggest-project.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "📦 Suggest a project" 3 | about: "Do you like to suggest a project that hasn't been added to this best-of list yet?" 4 | title: 'Add project: ' 5 | labels: 'add-project' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | **Project details:** 15 | 16 | 17 | - Project Name: 18 | - Github URL: 19 | - Category: 20 | - License: 21 | - Package Managers: 22 | 23 | **Additional context:** 24 | 25 | 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_update-project.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "✏️ Update a project" 3 | about: Do you have changes for a project, e.g. missing package manager, wrong license or category? 4 | title: 'Update project: ' 5 | labels: 'update-project' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Update details:** 11 | 12 | 15 | 16 | - Project Name: 17 | 18 | 19 | 20 | **Additional context:** 21 | 22 | 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_update-category.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "🏷 Add or update a category" 3 | about: Do you like to suggest a new project category or update an existing one? 4 | title: '' 5 | labels: 'category' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | - [ ] Add category 15 | - [ ] Update category: 16 | 17 | **Category details:** 18 | 19 | 22 | 23 | - Category Title: 24 | - Category Subtitle: 25 | 26 | **Additional context:** 27 | 28 | 29 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_change-configuration.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "⚙️ Change configuration" 3 | about: Do you have a suggestion for changing the configuration, e.g. allow additional licenses or adjust minimal stars? 4 | title: '' 5 | labels: 'configuration' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Configuration Change:** 11 | 12 | 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_anything-else.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F4AC Anything else?" 3 | about: For questions or suggestions regarding the metadata collection or markdown generation, please refer to the best-of-lists/best-of-generator repository. 4 | title: '' 5 | labels: 'question' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | **Describe the issue:** 15 | 16 | 17 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **What kind of change does this PR introduce?** 2 | 3 | 4 | - [ ] Add a project 5 | - [ ] Update a project 6 | - [ ] Remove a project 7 | - [ ] Add or update a category 8 | - [ ] Change configuration 9 | - [ ] Documentation 10 | - [ ] Other, please describe: 11 | 12 | **Description:** 13 | 14 | 15 | **Checklist:** 16 | 18 | 19 | - [ ] I have read the [CONTRIBUTING](https://github.com/best-of-lists/best-of/blob/main/CONTRIBUTING.md) guidelines. 20 | - [ ] 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. 21 | -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- 1 | - name: add-project 2 | color: a2eeef 3 | description: "Add new project to best-of list" 4 | - name: update-project 5 | color: a2eeef 6 | description: "Update a project on the best-of list" 7 | - name: category 8 | color: a2eeef 9 | description: "Add or update a category to the best-of list" 10 | - name: configuration 11 | color: a2eeef 12 | description: "Issue refers to the best-of list configuration" 13 | - name: generation 14 | color: a2eeef 15 | description: "Issue refers to the best-of markdown generation" 16 | - name: collection 17 | color: a2eeef 18 | description: "Issue refers to the project metadata collection" 19 | - name: question 20 | color: a2eeef 21 | description: "Further information is requested" 22 | - name: documentation 23 | color: a2eeef 24 | description: "Changes to documentation" 25 | - name: bug 26 | color: d73a4a 27 | description: "Something isn't working" 28 | - name: "good first issue" 29 | color: 98FF98 30 | description: "Good for newcomers" 31 | - name: "help wanted" 32 | color: 98FF98 33 | description: "Extra attention is needed" 34 | - name: invalid 35 | color: cfd3d7 36 | description: "This doesn't seem right" 37 | - name: duplicate 38 | color: cfd3d7 39 | description: "This issue or pull request already exists" 40 | - name: "further input needed" 41 | color: cfd3d7 42 | description: "Not enough detail is provided by the creator" 43 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ 2 | target/ 3 | .idea/ 4 | *.iml 5 | 6 | # Sublime 7 | *.sublime-workspace 8 | 9 | # Eclipse 10 | .settings 11 | 12 | # VS Code 13 | .project 14 | .classpath 15 | .vscode/* 16 | # Ignore all local history of files 17 | **/.history 18 | 19 | # Java 20 | *.class 21 | target/ 22 | 23 | # C 24 | *.so 25 | 26 | # Python 27 | *.pyc 28 | *.egg-info 29 | __pycache__ 30 | .ipynb_checkpoints 31 | .Python 32 | dist/ 33 | .python-version 34 | .installed.cfg 35 | *.egg 36 | reqlib-metadata 37 | .mypy_cache/ 38 | .venv 39 | venv/ 40 | build/ 41 | 42 | # Byte-compiled / optimized / DLL files 43 | *.pyc 44 | __pycache__/ 45 | *.py[cod] 46 | *$py.class 47 | 48 | # Unit test / coverage reports 49 | htmlcov/ 50 | .tox/ 51 | .nox/ 52 | .coverage 53 | .coverage.* 54 | .cache 55 | nosetests.xml 56 | coverage.xml 57 | *,cover 58 | .hypothesis/ 59 | .pytest_cache/ 60 | 61 | # NPM / Node / JavaScript 62 | .npm 63 | node_modules/ 64 | jspm_packages/ 65 | 66 | # Runtime data 67 | pids 68 | *.pid 69 | *.seed 70 | *.pid.lock 71 | 72 | # Logs 73 | logs 74 | *.log 75 | npm-debug.log* 76 | yarn-debug.log* 77 | yarn-error.log* 78 | lerna-debug.log* 79 | 80 | # vim temporary files 81 | *~ 82 | .*.sw? 83 | 84 | # Other Artifacts 85 | hs_err_pid* 86 | *.log 87 | *.swp 88 | *.swo 89 | temp/* 90 | .DS_Store 91 | 92 | -------------------------------------------------------------------------------- /config/footer.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 4 | ## Related Resources 5 | 6 | - [**Best-of lists**](https://best-of.org): Discover other best-of lists with awesome open-source projects on all kinds of topics. 7 | - [**best-of-ml-python**](https://github.com/ml-tooling/best-of-ml-python): A ranked list of awesome machine learning python libraries. 8 | - [**awesome-jupyter**](https://github.com/markusschanta/awesome-jupyter): A curated list of awesome Jupyter projects, libraries and resources. 9 | - [**awesome-jupyterlab**](https://github.com/mauhai/awesome-jupyterlab): A curated list of awesome JupyterLab extensions and resources. 10 | 11 | ## Contribution 12 | 13 | Contributions are encouraged and always welcome! If you like to add or update projects, choose one of the following ways: 14 | 15 | - Open an issue by selecting one of the provided categories from the [issue page](https://github.com/ml-tooling/best-of-jupyter/issues/new/choose) and fill in the requested information. 16 | - Modify the [projects.yaml](https://github.com/ml-tooling/best-of-jupyter/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/ml-tooling/best-of-jupyter/edit/main/projects.yaml). 17 | 18 | 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). 19 | 20 | For more information on how to add or update projects, please read the [contribution guidelines](https://github.com/ml-tooling/best-of-jupyter/blob/main/CONTRIBUTING.md). By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/ml-tooling/best-of-jupyter/blob/main/.github/CODE_OF_CONDUCT.md). 21 | 22 | ## License 23 | 24 | [![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg)](https://creativecommons.org/licenses/by-sa/4.0/) 25 | -------------------------------------------------------------------------------- /config/header.md: -------------------------------------------------------------------------------- 1 | 2 |

3 | Best-of Jupyter 4 |
5 |

6 | 7 |

8 | 🏆  A ranked list of awesome Jupyter projects. Updated weekly. 9 |

10 | 11 |

12 | 13 | 14 | 15 | 16 | 17 | 18 |

19 | 20 | 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/ml-tooling/best-of-jupyter/issues/new/choose), submit a [pull request](https://github.com/ml-tooling/best-of-jupyter/pulls), or directly edit the [projects.yaml](https://github.com/ml-tooling/best-of-jupyter/edit/main/projects.yaml). Contributions are very welcome! 21 | 22 | --- 23 | 24 |

25 | 🧙‍♂️  Discover other best-of lists or create your own.
26 | 📫  Subscribe to our newsletter for updates and trending projects. 27 |

28 | 29 | --- 30 | 31 | -------------------------------------------------------------------------------- /history/2021-01-07_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - sparkmagic (🥇26 · ⭐ 920 · 📈) - Jupyter magics and kernels for working with remote Spark.. BSD-3 6 | - JupyterLab Renderers (🥇20 · ⭐ 390 · 📈) - Renderers and renderer extensions for JupyterLab. BSD-3 7 | 8 | ## 📉 Trending Down 9 | 10 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 11 | 12 | - pivottablejs (🥉19 · ⭐ 410 · 💀) - Dragndrop Pivot Tables and Charts for Jupyter/IPython Notebook,.. MIT 13 | - BatchSpawner (🥈18 · ⭐ 110 · 📉) - Custom Spawner for Jupyterhub to start servers in batch.. BSD-3 14 | - ipyp5 (🥉10 · ⭐ 23 · 📉) - p5.js Jupyter Widget. BSD-3 15 | 16 | -------------------------------------------------------------------------------- /history/2021-01-08_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab Data Explorer (🥈17 · ⭐ 140 · 💤) - First class datasets in JupyterLab. BSD-3 6 | - Theme Toggle (🥉13 · ⭐ 5 · 📈) - JupyterLab extension to toggle the theme in the Top Bar area. BSD-3 7 | - jupyterterminals (🥉7 · ⭐ 7 · 💤) - Jupyter plugin to support inline terminal shells along with.. MIT 8 | 9 | ## 📉 Trending Down 10 | 11 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 12 | 13 | - Jupyter Spark (🥉18 · ⭐ 190 · 📉) - Jupyter Notebook extension for Apache Spark integration. MPL-2.0 14 | - Null Authenticator (🥉13 · ⭐ 5 · 💀) - Null Authenticator for JupyterHub instances that should.. BSD-3 15 | - kernel-relay (🥉6 · ⭐ 9 · 💀) - kernel-relay is a GraphQL service for interfacing with.. ❗Unlicensed 16 | 17 | -------------------------------------------------------------------------------- /history/2021-02-25_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - pythreejs (🥈26 · ⭐ 700 · 📈) - A Jupyter - Three.js bridge. BSD-3 6 | - JupyterLab Debugger (🥇24 · ⭐ 470 · 📈) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 7 | - JupyterLab LSP (🥇23 · ⭐ 750 · 📈) - Coding assistance for JupyterLab (code navigation + hover.. BSD-3 8 | - jupyter-packaging (🥉22 · ⭐ 24 · 📈) - Tools to help build and install Jupyter Python packages. BSD-3 9 | - nbtutor (🥉20 · ⭐ 370 · 📈) - Visualize Python code execution (line-by-line) in Jupyter Notebook.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥇34 · ⭐ 2.1K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - jupyter-server-proxy (🥇24 · ⭐ 150 · 📉) - Jupyter notebook server extension to proxy web.. BSD-3 17 | - Kernel Gateway (🥈19 · ⭐ 330 · 📉) - Jupyter Kernel Gateway. BSD-3 18 | - SQLCell (🥉13 · ⭐ 140 · 📉) - SQLCell is a magic function for the Jupyter Notebook that executes.. MIT 19 | 20 | -------------------------------------------------------------------------------- /history/2021-03-11_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab TOC (🥇28 · ⭐ 11K · 📈) - Table of Contents extension for JupyterLab. BSD-3 6 | - ipyleaflet (🥇28 · ⭐ 1.1K · 📈) - A Jupyter - Leaflet.js bridge. MIT 7 | - jupyter-packaging (🥉24 · ⭐ 24 · 📈) - Tools to help build and install Jupyter Python packages. BSD-3 8 | - jupyter-dash (🥈23 · ⭐ 450 · 📈) - Develop Dash apps in the Jupyter Notebook and JupyterLab. MIT 9 | - Hash Authenticator (🥉13 · ⭐ 3 · 📈) - Authenticate users with passwords generated from their.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nikola (🥇28 · ⭐ 2.1K · 📉) - A static website and blog generator. MIT 16 | - jupyterlab-sparkmonitor (🥉15 · ⭐ 45 · 💤) - JupyterLab extension that enables monitoring launched.. Apache-2 17 | - jupyter-fs (🥉13 · ⭐ 80 · 📉) - A filesystem-like contents manager for multiple backends in.. Apache-2 18 | - FargateSpawner (🥉12 · ⭐ 22 · 💤) - Spawns JupyterHub single user servers in Docker containers.. MIT 19 | 20 | -------------------------------------------------------------------------------- /history/2021-04-08_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab (🥇37 · ⭐ 11K · 📈) - JupyterLab computational environment. BSD-3 6 | - Jupytext (🥇30 · ⭐ 4.4K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 7 | - bqplot (🥇30 · ⭐ 3K · 📈) - Plotting library for IPython/Jupyter notebooks. Apache-2 8 | - Jupyter Book (🥇29 · ⭐ 2.2K · 📈) - Build interactive, publication-quality documents from.. BSD-3 9 | - Contrib NBextensions (🥇28 · ⭐ 4.5K · 📈) - A collection of various notebook extensions for.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - jupyterlab-execute-time (🥉15 · ⭐ 120 · 📉) - Execute Time Plugin for Jupyter Lab. BSD-3 16 | 17 | ## ➕ Added Projects 18 | 19 | _Projects that were recently added to this best-of list._ 20 | 21 | - jupyterlab-executor (🥉10 · ⭐ 4 · 🐣) - JupyterLab extension to execute the scripts from the.. BSD-3 22 | 23 | -------------------------------------------------------------------------------- /history/2021-04-15_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbconvert (🥇35 · ⭐ 1.1K · 📈) - Jupyter Notebook Conversion. BSD-3 6 | - nbdime (🥈28 · ⭐ 2K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 7 | - qgrid (🥈26 · ⭐ 2.6K · 💤) - An interactive grid for sorting, filtering, and editing DataFrames.. Apache-2 8 | - scrapbook (🥈22 · ⭐ 210 · 📈) - A library for recording and reading data in notebooks. BSD-3 9 | - WrapSpawner (🥉14 · ⭐ 40 · 📈) - Mechanism for runtime configuration of spawners for JupyterHub. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipyparallel (🥈26 · ⭐ 1.9K · 📉) - Interactive Parallel Computing in Python. BSD-3 16 | 17 | -------------------------------------------------------------------------------- /history/2021-04-22_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - pandas-profiling (🥇30 · ⭐ 7.2K · 📈) - Create HTML profiling reports from pandas DataFrame.. MIT 6 | - LDAP Authenticator (🥇23 · ⭐ 150 · 📈) - LDAP Authenticator Plugin for Jupyter. BSD-3 7 | - Mapbox GL (🥈22 · ⭐ 560 · 📈) - Use Mapbox GL JS to visualize data in a Python Jupyter notebook. MIT 8 | - Kernel Gateway (🥈21 · ⭐ 340 · 📈) - Jupyter Kernel Gateway. BSD-3 9 | - GPU Dashboards (🥈18 · ⭐ 390 · 📈) - A JupyterLab extension for displaying dashboards of GPU.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbzip (🥉16 · ⭐ 67 · 💀) - Zips and downloads all the contents of a jupyter notebook. Apache-2 16 | 17 | -------------------------------------------------------------------------------- /history/2021-06-03_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Voila (🥇29 · ⭐ 3.3K · 📈) - Voil turns Jupyter notebooks into standalone web applications. BSD-3 6 | - nbclient (🥇29 · ⭐ 65 · 📈) - A client library for executing notebooks. Formally nbconvert's.. BSD-3 7 | - jupyter-matplotlib (🥇28 · ⭐ 1.1K · 📈) - Matplotlib Jupyter Integration. BSD-3 8 | - DataLab (🥈24 · ⭐ 960 · 💤) - Interactive tools and developer experiences for Big Data on.. Apache-2 9 | - elyra (🥇23 · ⭐ 940 · 📈) - Elyra extends JupyterLab Notebooks with an AI centric approach. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - qgrid (🥈25 · ⭐ 2.7K · 💀) - An interactive grid for sorting, filtering, and editing DataFrames.. Apache-2 16 | - pythreejs (🥈25 · ⭐ 730 · 📉) - A Jupyter - Three.js bridge. BSD-3 17 | - docker-python (🥉19 · ⭐ 1.8K · 📉) - Kaggle Python docker image. Apache-2 18 | - VSCode Jupyter (🥉16 · ⭐ 300 · 📉) - VS Code Jupyter extension. MIT 19 | - JupyterLab Top Bar (🥉14 · ⭐ 82 · 🐣) - JupyterLab Top Bar extension. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2021-06-24_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbgitpuller (🥇24 · ⭐ 130 · 📈) - Jupyter server extension to sync a git repository one-way to a.. BSD-3 6 | - Enterprise Gateway (🥈21 · ⭐ 440 · 📈) - A lightweight, multi-tenant, scalable and secure.. BSD-3 7 | - pyforest (🥈20 · ⭐ 880 · 📈) - pyforest - feel the bliss of automated imports. MIT 8 | - jupyterlab-classic (🥉15 · ⭐ 150 · 🐣) - JupyterLab distribution with a retro look and feel. BSD-3 9 | - ipylab (🥉14 · ⭐ 64 · 📈) - Control JupyterLab from Python Notebooks with Jupyter Widgets. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbconvert (🥇33 · ⭐ 1.1K · 📉) - Jupyter Notebook Conversion. BSD-3 16 | - IHaskell (🥈20 · ⭐ 2.3K · 📉) - A Haskell kernel for IPython. MIT 17 | - Jupyter Bokeh (🥈18 · ⭐ 180 · 📉) - An extension for rendering Bokeh content in JupyterLab.. BSD-3 18 | - JupyterLab Data Explorer (🥈17 · ⭐ 160 · 💀) - First class datasets in JupyterLab. BSD-3 19 | - nbzip (🥉17 · ⭐ 69 · 💀) - Zips and downloads all the contents of a jupyter notebook. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2021-07-15_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter-matplotlib (🥇29 · ⭐ 1.1K · 📈) - Matplotlib Jupyter Integration. BSD-3 6 | - Jupyter Themes (🥇28 · ⭐ 8.6K · 📈) - Custom Jupyter Notebook Themes. MIT 7 | - D-Tale (🥈25 · ⭐ 2.5K · 📈) - Visualizer for Pandas Data Structures. ❗️LGPL-2.1 8 | - DockerSpawner (🥈23 · ⭐ 380 · 📈) - Spawns JupyterHub single user servers in Docker containers. BSD-3 9 | - VSCode Jupyter (🥉18 · ⭐ 340 · 📈) - VS Code Jupyter extension. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbgitpuller (🥈22 · ⭐ 130 · 📉) - Jupyter server extension to sync a git repository one-way to a.. BSD-3 16 | - Enterprise Gateway (🥈20 · ⭐ 440 · 📉) - A lightweight, multi-tenant, scalable and secure.. BSD-3 17 | 18 | -------------------------------------------------------------------------------- /history/2021-11-25_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Metakernel (🥇25 · ⭐ 260 · 📈) - Jupyter/IPython Kernel Tools. BSD-3 6 | - nbQA (🥉21 · ⭐ 360 · 📈) - Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks. MIT 7 | - itables (🥉19 · ⭐ 210 · 💤) - Interactive Tables in Jupyter. MIT 8 | - Spark Monitor (🥈19 · ⭐ 160 · 💤) - Monitor Apache Spark from Jupyter Notebook. Apache-2 9 | - Content Management (🥉17 · ⭐ 75 · 💀) - Jupyter Content Management Extensions. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - D-Tale (🥈25 · ⭐ 2.8K · 📉) - Visualizer for Pandas Data Structures. ❗️LGPL-2.1 16 | - Native Authenticator (🥈19 · ⭐ 46 · 📉) - JupyterHub-native User Authenticator https://native-.. BSD-3 17 | - JupyterLab Spellchecker (🥈18 · ⭐ 130 · 📉) - Spellchecker for JupyterLab notebook markdown cells.. BSD-3 18 | - Remote Authenticator (🥉11 · ⭐ 1 · 📉) - A collection of JupyterHub Authenticators, including.. ❗️GPL-3.0 19 | 20 | -------------------------------------------------------------------------------- /history/2021-12-09_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab (🥇37 · ⭐ 12K · 📈) - JupyterLab computational environment. BSD-3 6 | - Jupyter Themes (🥇26 · ⭐ 8.9K · 📈) - Custom Jupyter Notebook Themes. MIT 7 | - pythreejs (🥈25 · ⭐ 770 · 📈) - A Jupyter - Three.js bridge. BSD-3 8 | - pick (🥈21 · ⭐ 400 · 💀) - Customize your kernels on Launch!. BSD-3 9 | - ipyexperiments (🥉16 · ⭐ 140 · 📈) - jupyter/ipython experiment containers for GPU and.. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nikola (🥇27 · ⭐ 2.2K · 📉) - A static website and blog generator. MIT 16 | - ipython-sql (🥇27 · ⭐ 1.5K · 📉) - %%sql magic for IPython, hopefully evolving into full SQL client. MIT 17 | - JupyterLab LSP (🥇25 · ⭐ 1.1K · 📉) - Coding assistance for JupyterLab (code navigation + hover.. BSD-3 18 | - nbval (🥈25 · ⭐ 360 · 💤) - A py.test plugin to validate Jupyter notebooks. BSD-3 19 | - Resource Usage (🥈20 · ⭐ 280 · 📉) - Jupyter Notebook Extension for monitoring your own Resource.. BSD-2 20 | 21 | -------------------------------------------------------------------------------- /history/2021-12-30_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab (🥇37 · ⭐ 12K · 📈) - JupyterLab computational environment. BSD-3 6 | - nikola (🥇29 · ⭐ 2.2K · 📈) - A static website and blog generator. MIT 7 | - itables (🥉20 · ⭐ 220 · 📈) - Interactive Tables in Jupyter. MIT 8 | - retrolab (🥉20 · ⭐ 220 · 📈) - JupyterLab distribution with a retro look and feel. BSD-3 9 | - ipysigma (🥉12 · ⭐ 31 · 💀) - A custom Jupyter widget library to display graphs using sigma.js. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - lux (🥈24 · ⭐ 3.2K · 📉) - Automatically visualize your pandas dataframe via a single print!. Apache-2 16 | - Matlab Kernel (🥉16 · ⭐ 410 · 💀) - Jupyter Kernel for Matlab. BSD-3 17 | - igv.js widget (🥉15 · ⭐ 140 · 📉) - Extension for Jupyter Notebook which integrates igv.js. MIT 18 | - JupyterLab Commenting (🥉14 · ⭐ 86 · 💀) - Commenting and annotation for JupyterLab. BSD-3 19 | - CAS Authenticator (🥉10 · ⭐ 16 · 💀) - CAS authenticator for Jupyterhub. ❗️GPL-3.0 20 | 21 | -------------------------------------------------------------------------------- /history/2022-01-17_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - sos (🥉27 · ⭐ 210 · 📈) - SoS workflow system for daily data analysis. BSD-3 6 | - jupyter-flex (🥉20 · ⭐ 230 · 📈) - Build dashboards using Jupyter Notebooks. Apache-2 7 | - testbook (🥉18 · ⭐ 270 · 📈) - Unit test your Jupyter Notebooks the right way. BSD-3 8 | - ssh_ipykernel (🥉10 · ⭐ 6 · 💤) - A remote jupyter kernel via ssh. MIT 9 | - jupyterterminals (🥉7 · ⭐ 8 · 💤) - Jupyter plugin to support inline terminal shells along with.. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Apache Toree (🥈22 · ⭐ 690 · 📉) - Jupyter kernel for Apache Spark. Apache-2 16 | - xeus-cling (🥉19 · ⭐ 2.1K · 📉) - Jupyter kernel for the C++ programming language. BSD-3 17 | - GPU Dashboards (🥈17 · ⭐ 440 · 📉) - A JupyterLab extension for displaying dashboards of GPU.. BSD-3 18 | - F# Kernel (🥉17 · ⭐ 430 · 📉) - F# for Jupyter Notebooks. BSD-3 19 | - JupyterLab Top Bar (🥉14 · ⭐ 95 · 📉) - JupyterLab Top Bar extension. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2022-05-12_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - pandas-profiling (🥇38 · ⭐ 8.9K · 📈) - Create HTML profiling reports from pandas DataFrame.. MIT 6 | - qtconsole (🥇37 · ⭐ 310 · 📈) - Jupyter Qt Console. BSD-3 7 | - nbgrader (🥈27 · ⭐ 1.1K · 📈) - A system for assigning and grading notebooks. BSD-3 8 | - Metakernel (🥇26 · ⭐ 280 · 📈) - Jupyter/IPython Kernel Tools. BSD-3 9 | - IHaskell (🥇24 · ⭐ 2.4K · 📈) - A Haskell kernel for the Jupyter project. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbconvert (🥇36 · ⭐ 1.3K · 📉) - Jupyter Notebook Conversion. BSD-3 16 | - nbformat (🥇33 · ⭐ 170 · 📉) - Reference implementation of the Jupyter Notebook format. BSD-3 17 | - nteract (🥈32 · ⭐ 5.8K · 📉) - The interactive computing suite for you!. BSD-3 18 | - ipyparallel (🥇32 · ⭐ 2.2K · 📉) - IPython Parallel: Interactive Parallel Computing in Python. BSD-3 19 | - lux (🥈27 · ⭐ 3.9K · 📉) - Automatically visualize your pandas dataframe via a single print!. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2022-05-26_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Perspective (🥇32 · ⭐ 4.5K · 📈) - A data visualization and analytics component, especially.. Apache-2 6 | - OAuthenticator (🥇29 · ⭐ 340 · 📈) - OAuth + JupyterHub Authenticator = OAuthenticator. BSD-3 7 | - pythreejs (🥈27 · ⭐ 820 · 📈) - A Jupyter - Three.js bridge. BSD-3 8 | - BinderHub (🥈24 · ⭐ 2.1K · 📈) - Run your code in the cloud, with technology so advanced, it.. BSD-3 9 | - mercury (🥈23 · ⭐ 1.5K · 🐣) - Convert Python notebook to web app and share with others. ❗Unlicensed 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - bokeh (🥇43 · ⭐ 16K · 📉) - Interactive Data Visualization in the browser, from Python. BSD-3 16 | - qtconsole (🥇36 · ⭐ 310 · 📉) - Jupyter Qt Console. BSD-3 17 | - ipydatagrid (🥉21 · ⭐ 230 · 📉) - Fast Datagrid widget for the Jupyter Notebook and JupyterLab. BSD-3 18 | - JupyterLab Templates (🥈20 · ⭐ 300 · 📉) - Support for jupyter notebook templates in jupyterlab. Apache-2 19 | - naas (🥉20 · ⭐ 190 · 📉) - Schedule notebooks, run them like APIs, expose securely your.. ❗️AGPL-3.0 20 | 21 | -------------------------------------------------------------------------------- /history/2022-06-16_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipywidgets (🥇39 · ⭐ 2.5K · 📈) - Interactive Widgets for the Jupyter Notebook. BSD-3 6 | - nbconvert (🥇37 · ⭐ 1.3K · 📈) - Jupyter Notebook Conversion. BSD-3 7 | - ipython-sql (🥇31 · ⭐ 1.5K · 📈) - %%sql magic for IPython, hopefully evolving into full SQL client. MIT 8 | - BeakerX (🥈29 · ⭐ 2.7K · 💀) - Beaker Extensions for Jupyter Notebook. Apache-2 9 | - almond (🥇24 · ⭐ 1.4K · 📈) - A Scala kernel for Jupyter. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipyparallel (🥈30 · ⭐ 2.2K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 16 | - RISE (🥈28 · ⭐ 3.3K · 📉) - RISE: Live Reveal.js Jupyter/IPython Slideshow Extension. BSD-3 17 | - nbdime (🥈28 · ⭐ 2.2K · 📉) - Tools for diffing and merging of Jupyter notebooks. BSD-3 18 | - gophernotes (🥈23 · ⭐ 3.3K · 📉) - The Go kernel for Jupyter notebooks and nteract. MIT 19 | - IHaskell (🥈23 · ⭐ 2.4K · 📉) - A Haskell kernel for the Jupyter project. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2022-07-28_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - bqplot (🥇31 · ⭐ 3.3K · 📈) - Plotting library for IPython/Jupyter notebooks. Apache-2 6 | - ipyparallel (🥈31 · ⭐ 2.2K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 7 | - nbgrader (🥇30 · ⭐ 1.1K · 📈) - A system for assigning and grading notebooks. BSD-3 8 | - ipyvolume (🥈29 · ⭐ 1.8K · 📈) - 3d plotting for Python in the Jupyter notebook based on IPython.. MIT 9 | - commuter (🥉21 · ⭐ 5.8K · 📈) - Notebook sharing hub. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipython (🥇44 · ⭐ 15K · 📉) - Official repository for IPython itself. Other repos in the IPython.. BSD-3 16 | - qtconsole (🥇36 · ⭐ 320 · 📉) - Jupyter Qt Console. BSD-3 17 | - nbdev (🥇32 · ⭐ 3.3K · 📉) - Create delightful python projects using Jupyter Notebooks. Apache-2 18 | - sparkmagic (🥇30 · ⭐ 1.1K · 📉) - Jupyter magics and kernels for working with remote Spark.. BSD-3 19 | - SudoSpawner (🥉13 · ⭐ 44 · 💤) - Spawn JupyterHub single-user servers with sudo. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2022-08-04_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbconvert (🥇37 · ⭐ 1.4K · 📈) - Jupyter Notebook Conversion. BSD-3 6 | - LFortran (🥇24 · ⭐ 350 · 📈) - Official main repository for LFortran. MIT 7 | - Resource Usage (🥈22 · ⭐ 320 · 📈) - Jupyter Notebook Extension for monitoring your own Resource.. BSD-2 8 | - treon (🥉20 · ⭐ 280 · 📈) - Easy to use test framework for Jupyter Notebooks. MIT 9 | - SudoSpawner (🥉16 · ⭐ 44 · 💤) - Spawn JupyterHub single-user servers with sudo. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - bqplot (🥈30 · ⭐ 3.3K · 📉) - Plotting library for IPython/Jupyter notebooks. Apache-2 16 | - sos (🥈29 · ⭐ 230 · 📉) - SoS workflow system for daily data analysis. BSD-3 17 | - jupyter-dash (🥈28 · ⭐ 790 · 📉) - Develop Dash apps in the Jupyter Notebook and JupyterLab. MIT 18 | - lux (🥈24 · ⭐ 4.1K · 📉) - Automatically visualize your pandas dataframe via a single print!. Apache-2 19 | - fastpages (🥈24 · ⭐ 3.3K · 📉) - An easy to use blogging platform, with enhanced support for.. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2022-08-11_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - bokeh (🥇44 · ⭐ 17K · 📈) - Interactive Data Visualization in the browser, from Python. BSD-3 6 | - JupyterHub (🥇39 · ⭐ 7.1K · 📈) - Multi-user server for Jupyter notebooks. BSD-3 7 | - nbconvert (🥇38 · ⭐ 1.4K · 📈) - Jupyter Notebook Conversion. BSD-3 8 | - JupyterLab TOC (🥇28 · ⭐ 12K · 💤) - Table of Contents extension for JupyterLab. BSD-3 9 | - Metakernel (🥇27 · ⭐ 290 · 📈) - Jupyter/IPython Kernel Tools. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - pandas-profiling (🥇37 · ⭐ 9.4K · 📉) - Create HTML profiling reports from pandas DataFrame.. MIT 16 | - Docker Stacks (🥈30 · ⭐ 7.2K · 📉) - Ready-to-run Docker images containing Jupyter applications. BSD-3 17 | - bqplot (🥈29 · ⭐ 3.3K · 📉) - Plotting library for IPython/Jupyter notebooks. Apache-2 18 | - VSCode Jupyter (🥈27 · ⭐ 700 · 📉) - VS Code Jupyter extension. MIT 19 | - NBextensions Configurator (🥈25 · ⭐ 910 · 📉) - A jupyter notebook serverextension providing config.. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2022-08-18_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - papermill (🥇33 · ⭐ 4.8K · 📈) - Parameterize, execute, and analyze notebooks. BSD-3 6 | - pythreejs (🥈29 · ⭐ 830 · 📈) - A Jupyter - Three.js bridge. BSD-3 7 | - VSCode Jupyter (🥈28 · ⭐ 700 · 📈) - VS Code Jupyter extension. MIT 8 | - ipycytoscape (🥈25 · ⭐ 200 · 📈) - A Cytoscape Jupyter widget. BSD-3 9 | - itables (🥉23 · ⭐ 320 · 📈) - Pandas DataFrames as Interactive DataTables. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Perspective (🥇30 · ⭐ 4.8K · 📉) - A data visualization and analytics component, especially.. Apache-2 16 | - sos (🥈28 · ⭐ 230 · 📉) - SoS workflow system for daily data analysis. BSD-3 17 | - JupyterLab Debugger (🥇27 · ⭐ 12K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 18 | - ipydatawidgets (🥉20 · ⭐ 29 · 📉) - A set of widgets to help facilitate reuse of large datasets.. BSD-3 19 | - jupyverse (🥉16 · ⭐ 110 · 📉) - A Jupyter server based on FastAPI. ❗️BSD-1-Clause 20 | 21 | -------------------------------------------------------------------------------- /history/2022-09-15_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbval (🥈27 · ⭐ 390 · 📈) - A py.test plugin to validate Jupyter notebooks. BSD-3 6 | - LDAP Authenticator (🥇24 · ⭐ 180 · 💀) - LDAP Authenticator Plugin for Jupyter. BSD-3 7 | - Native Authenticator (🥈22 · ⭐ 54 · 📈) - JupyterHub-native User Authenticator https://native-.. BSD-3 8 | - Lantern (🥈18 · ⭐ 320 · 📈) - Data exploration glue. Apache-2 9 | - Remote Authenticator (🥉10 · ⭐ 1 · 📈) - A collection of JupyterHub Authenticators, including.. ❗️GPL-3.0 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - qtconsole (🥇35 · ⭐ 330 · 📉) - Jupyter Qt Console. BSD-3 16 | - ipyparallel (🥈30 · ⭐ 2.3K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 17 | - ipython-sql (🥇30 · ⭐ 1.6K · 📉) - %%sql magic for IPython, hopefully evolving into full SQL client. MIT 18 | - nbgrader (🥇29 · ⭐ 1.1K · 📉) - A system for assigning and grading notebooks. BSD-3 19 | - sos (🥉26 · ⭐ 230 · 📉) - SoS workflow system for daily data analysis. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2022-09-22_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - pandas-profiling (🥇39 · ⭐ 9.6K · 📈) - Create HTML profiling reports from pandas DataFrame.. MIT 6 | - nteract (🥈33 · ⭐ 5.9K · 📈) - The interactive computing suite for you!. BSD-3 7 | - ipycanvas (🥈27 · ⭐ 630 · 📈) - Interactive Canvas in Jupyter. BSD-3 8 | - sos (🥈27 · ⭐ 230 · 📈) - SoS workflow system for daily data analysis. BSD-3 9 | - ipysigma (🥉17 · ⭐ 40 · 📈) - A Jupyter widget using sigma.js to render interactive networks. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipyleaflet (🥇33 · ⭐ 1.3K · 📉) - A Jupyter - Leaflet.js bridge. MIT 16 | - nbdime (🥈28 · ⭐ 2.3K · 📉) - Tools for diffing and merging of Jupyter notebooks. BSD-3 17 | - nbgrader (🥇28 · ⭐ 1.1K · 📉) - A system for assigning and grading notebooks. BSD-3 18 | - repo2docker (🥈27 · ⭐ 1.4K · 📉) - Turn repositories into Jupyter-enabled Docker images. BSD-3 19 | - jupyterlab-theme-solarized-dark (🥉11 · ⭐ 67 · 📉) - JupyterLab 2/3 Solarized Dark extension. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2022-10-27_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - qtconsole (🥇36 · ⭐ 340 · 📈) - Jupyter Qt Console. BSD-3 6 | - Jupytext (🥇32 · ⭐ 5.6K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 7 | - ipyvolume (🥈29 · ⭐ 1.8K · 📈) - 3d plotting for Python in the Jupyter notebook based on IPython.. MIT 8 | - xeus-cling (🥈22 · ⭐ 2.4K · 📈) - Jupyter kernel for the C++ programming language. BSD-3 9 | - jupyter-archive (🥉17 · ⭐ 56 · 📈) - A Jupyter/Jupyterlab extension to make, download and.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbdev (🥇33 · ⭐ 3.8K · 📉) - Create delightful software with Jupyter Notebooks. Apache-2 16 | - nglview (🥈24 · ⭐ 600 · 📉) - Jupyter widget to interactively view molecular structures and.. MIT 17 | - mercury (🥉22 · ⭐ 2.1K · 📉) - Convert Python notebook to web app and share with non-.. ❗Unlicensed 18 | - pyforest (🥉19 · ⭐ 1K · 💀) - pyforest - feel the bliss of automated imports. MIT 19 | - naas (🥉19 · ⭐ 210 · 📉) - Schedule notebooks, run them like APIs, expose securely your.. ❗️AGPL-3.0 20 | 21 | -------------------------------------------------------------------------------- /history/2022-11-03_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - qtconsole (🥇37 · ⭐ 340 · 📈) - Jupyter Qt Console. BSD-3 6 | - BeakerX (🥈29 · ⭐ 2.7K · 💀) - Beaker Extensions for Jupyter Notebook. Apache-2 7 | - facets-overview (🥈28 · ⭐ 7K · 💀) - Visualizations for machine learning datasets. Apache-2 8 | - jupyter-server-proxy (🥈26 · ⭐ 260 · 📈) - Jupyter notebook server extension to proxy web.. BSD-3 9 | - IRkernel (🥇25 · ⭐ 1.6K · 📈) - R kernel for Jupyter. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - sparkmagic (🥇28 · ⭐ 1.2K · 📉) - Jupyter magics and kernels for working with remote Spark.. BSD-3 16 | - Code Formatter (🥈21 · ⭐ 620 · 📉) - A JupyterLab plugin to facilitate invocation of code.. MIT 17 | - tributary (🥉14 · ⭐ 390 · 📉) - Streaming reactive and dataflow graphs in Python. Apache-2 18 | - allthekernels (🥉14 · ⭐ 69 · 📉) - A multiplexer kernel for Jupyter. MIT 19 | - SQLCell (🥉13 · ⭐ 150 · 💀) - SQLCell is a magic function for the Jupyter Notebook that executes.. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2022-11-10_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupytext (🥇32 · ⭐ 5.7K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 6 | - ipyvolume (🥈29 · ⭐ 1.8K · 📈) - 3d plotting for Python in the Jupyter notebook based on IPython.. MIT 7 | - nbviewer (🥈26 · ⭐ 2.1K · 📈) - nbconvert as a web service: Render Jupyter Notebooks as static web.. BSD-3 8 | - .NET Interactive (🥇25 · ⭐ 2.1K · 📈) - .NET Interactive combines the power of .NET with many.. MIT 9 | - nbgitpuller (🥈25 · ⭐ 170 · 📈) - Jupyter server extension to sync a git repository one-way to a.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbconvert (🥇37 · ⭐ 1.4K · 📉) - Jupyter Notebook Conversion. ❗Unlicensed 16 | - KubeSpawner (🥇29 · ⭐ 440 · 📉) - Kubernetes spawner for JupyterHub. BSD-3 17 | - Stencila (🥈27 · ⭐ 660 · 📉) - Author, collaborate on, and publish beautiful interactive.. Apache-2 18 | - BinderHub (🥉23 · ⭐ 2.2K · 📉) - Run your code in the cloud, with technology so advanced, it.. BSD-3 19 | - dask-labextension (🥈22 · ⭐ 280 · 📉) - JupyterLab extension for Dask. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2022-11-24_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - IPython Kernel (🥇37 · ⭐ 520 · 📈) - IPython Kernel for Jupyter. BSD-3 6 | - evidently (🥇35 · ⭐ 2.9K · 📈) - Evaluate and monitor ML models from validation to production... Apache-2 7 | - nikola (🥇32 · ⭐ 2.4K · 📈) - A static website and blog generator. MIT 8 | - Horizon Theme (🥈15 · ⭐ 56 · 📈) - VSCode Horizon Theme port for JupyterLab. BSD-3 9 | - KnowledgeLab (🥉14 · ⭐ 45 · 📈) - KnowledgeRepo + JupyterLab. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbclient (🥈31 · ⭐ 110 · 📉) - A client library for executing notebooks. Formally nbconverts.. BSD-3 16 | - bqplot (🥈30 · ⭐ 3.4K · 📉) - Plotting library for IPython/Jupyter notebooks. Apache-2 17 | - JupyterLab LSP (🥇29 · ⭐ 1.4K · 📉) - Coding assistance for JupyterLab (code navigation + hover.. BSD-3 18 | - pythreejs (🥈29 · ⭐ 840 · 📉) - A Jupyter - Three.js bridge. BSD-3 19 | - Metakernel (🥇24 · ⭐ 300 · 📉) - Jupyter/IPython Kernel Tools. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2022-12-01_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupytext (🥇33 · ⭐ 5.7K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 6 | - Stencila (🥈28 · ⭐ 660 · 📈) - Author, collaborate on, and publish beautiful interactive.. Apache-2 7 | - Metakernel (🥇26 · ⭐ 300 · 📈) - Jupyter/IPython Kernel Tools. BSD-3 8 | - datapane (🥉24 · ⭐ 720 · 📈) - Datapane is the easiest way to create data science reports from.. Apache-2 9 | - ipysheet (🥉23 · ⭐ 510 · 📈) - Jupyter handsontable integration. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥇38 · ⭐ 2.6K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - ipyparallel (🥈29 · ⭐ 2.3K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 17 | - BeakerX (🥈28 · ⭐ 2.7K · 💀) - Beaker Extensions for Jupyter Notebook. Apache-2 18 | - nbclient (🥈25 · ⭐ 110 · 📉) - A client library for executing notebooks. Formally.. ❗Unlicensed 19 | - easyexplore (🥉9 · ⭐ 4 · 📉) - Toolbox for easy and effective data exploration in Python. ❗️GPL-3.0 20 | 21 | -------------------------------------------------------------------------------- /history/2022-12-08_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - IPython Kernel (🥇39 · ⭐ 530 · 📈) - IPython Kernel for Jupyter. BSD-3 6 | - Perspective (🥇30 · ⭐ 5K · 📈) - A data visualization and analytics component, especially.. Apache-2 7 | - mkdocs-jupyter (🥉23 · ⭐ 180 · 📈) - Use Jupyter Notebook in mkdocs. Apache-2 8 | - SAS Kernel (🥈20 · ⭐ 190 · 📈) - A Jupyter kernel for SAS. This opens up all the data.. Apache-2 9 | - jupyter-flex (🥉19 · ⭐ 270 · 📈) - Build dashboards using Jupyter Notebooks. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - bokeh (🥇42 · ⭐ 17K · 📉) - Interactive Data Visualization in the browser, from Python. BSD-3 16 | - jupyter_server (🥉33 · ⭐ 360 · 📉) - The backendi.e. core services, APIs, and REST.. ❗Unlicensed 17 | - nikola (🥈31 · ⭐ 2.4K · 📉) - A static website and blog generator. MIT 18 | - D-Tale (🥈29 · ⭐ 3.8K · 📉) - Visualizer for Pandas Data Structures. ❗️LGPL-2.1 19 | - dtale (🥇29 · ⭐ 3.8K · 📉) - Visualizer for pandas data structures. ❗️LGPL-2.1 20 | 21 | -------------------------------------------------------------------------------- /history/2022-12-29_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupytext (🥇34 · ⭐ 5.7K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 6 | - D-Tale (🥈30 · ⭐ 3.8K · 📈) - Visualizer for Pandas Data Structures. ❗️LGPL-2.1 7 | - dtale (🥇30 · ⭐ 3.8K · 📈) - Visualizer for pandas data structures. ❗️LGPL-2.1 8 | - nbclient (🥈30 · ⭐ 110 · 📈) - A client library for executing notebooks. Formally.. ❗Unlicensed 9 | - easyexplore (🥉10 · ⭐ 5 · 📈) - Toolbox for easy and effective data exploration in Python. ❗️GPL-3.0 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - panel (🥇36 · ⭐ 2.5K · 📉) - A high-level app and dashboarding solution for Python. BSD-3 16 | - Voila (🥇34 · ⭐ 4.5K · 📉) - Voil turns Jupyter notebooks into standalone web applications. BSD-3 17 | - evidently (🥇34 · ⭐ 3K · 📉) - Evaluate and monitor ML models from validation to production... Apache-2 18 | - nteract (🥈32 · ⭐ 5.9K · 📉) - The interactive computing suite for you!. BSD-3 19 | - ipyleaflet (🥈32 · ⭐ 1.3K · 📉) - A Jupyter - Leaflet.js bridge. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-01-19_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupytext (🥇35 · ⭐ 5.8K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 6 | - nteract (🥈32 · ⭐ 6K · 📈) - The interactive computing suite for you!. BSD-3 7 | - papermill (🥇32 · ⭐ 5.1K · 📈) - Parameterize, execute, and analyze notebooks. BSD-3 8 | - RISE (🥈30 · ⭐ 3.4K · 📈) - RISE: Live Reveal.js Jupyter/IPython Slideshow Extension. BSD-3 9 | - nbdime (🥈30 · ⭐ 2.4K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbgrader (🥇28 · ⭐ 1.2K · 📉) - A system for assigning and grading notebooks. BSD-3 16 | - DockerSpawner (🥈26 · ⭐ 440 · 📉) - Spawns JupyterHub single user servers in Docker containers. BSD-3 17 | - ipycanvas (🥉22 · ⭐ 650 · 📉) - Interactive Canvas in Jupyter. BSD-3 18 | - ipyvizzu (🥉21 · ⭐ 740 · 📉) - Build animated charts in Jupyter Notebook and similar.. Apache-2 19 | - jupyverse (🥉18 · ⭐ 120 · 📉) - A Jupyter server based on FastAPI. ❗️BSD-1-Clause 20 | 21 | -------------------------------------------------------------------------------- /history/2023-01-26_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab Git (🥇31 · ⭐ 1.2K · 📈) - A Git extension for JupyterLab. BSD-3 6 | - Knowledge Repo (🥈29 · ⭐ 5.3K · 📈) - A next-generation curated knowledge sharing platform.. Apache-2 7 | - responsible-ai-widgets (🥈29 · ⭐ 660 · 📈) - Responsible AI Toolbox is a suite of tools providing.. MIT 8 | - jupyter-console (🥈27 · ⭐ 210 · 💤) - Jupyter Terminal Console. BSD-3 9 | - OCaml Kernel (🥉20 · ⭐ 240 · 📈) - An OCaml kernel for Jupyter (IPython) notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbformat (🥇34 · ⭐ 200 · 📉) - Reference implementation of the Jupyter Notebook format. BSD-3 16 | - nikola (🥈32 · ⭐ 2.4K · 📉) - A static website and blog generator. MIT 17 | - Enterprise Gateway (🥈23 · ⭐ 540 · 📉) - A lightweight, multi-tenant, scalable and secure.. ❗Unlicensed 18 | - mercury (🥉22 · ⭐ 2.3K · 📉) - Convert Jupyter Notebook to web app and share with non-.. ❗Unlicensed 19 | - JupyterLab SideCar (🥈19 · ⭐ 210 · 📉) - A sidecar output widget for JupyterLab. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-03-02_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - qtconsole (🥇36 · ⭐ 350 · 📈) - Jupyter Qt Console. BSD-3 6 | - nikola (🥈32 · ⭐ 2.4K · 📈) - A static website and blog generator. MIT 7 | - ipython-sql (🥇31 · ⭐ 1.7K · 📈) - %%sql magic for IPython, hopefully evolving into full SQL client. MIT 8 | - ipyvizzu (🥉23 · ⭐ 760 · 📈) - Build animated charts in Jupyter Notebook and similar.. Apache-2 9 | - BatchSpawner (🥈23 · ⭐ 150 · 📈) - Custom Spawner for Jupyterhub to start servers in batch.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - IPython Kernel (🥇38 · ⭐ 540 · 📉) - IPython Kernel for Jupyter. BSD-3 16 | - Contrib NBextensions (🥇31 · ⭐ 5K · 📉) - A collection of various notebook extensions for.. BSD-3 17 | - bqplot (🥈31 · ⭐ 3.4K · 📉) - Plotting library for IPython/Jupyter notebooks. Apache-2 18 | - nbclient (🥇31 · ⭐ 120 · 📉) - A client library for executing notebooks. Formally nbconverts.. BSD-3 19 | - ipyscales (🥉15 · ⭐ 13 · 📉) - A widget library for scales. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-03-30_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipywidgets (🥇39 · ⭐ 2.8K · 📈) - Interactive Widgets for the Jupyter Notebook. BSD-3 6 | - bqplot (🥈32 · ⭐ 3.4K · 📈) - Plotting library for IPython/Jupyter notebooks. Apache-2 7 | - Contrib NBextensions (🥇31 · ⭐ 5K · 📈) - A collection of various notebook extensions for.. BSD-3 8 | - jupyter-flex (🥉23 · ⭐ 280 · 📈) - Build dashboards using Jupyter Notebooks. Apache-2 9 | - ipylab (🥈20 · ⭐ 140 · 📈) - Control JupyterLab from Python Notebooks with Jupyter Widgets. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - KubeSpawner (🥇29 · ⭐ 450 · 📉) - Kubernetes spawner for JupyterHub. BSD-3 16 | - JupyterLab Chart Editor (🥉17 · ⭐ 210 · 💀) - JupyterLab extension for Plotlys react-chart-editor. BSD-3 17 | - Spark Monitor (🥉15 · ⭐ 170 · 💤) - Monitor Apache Spark from Jupyter Notebook. Apache-2 18 | - KnowledgeLab (🥉13 · ⭐ 47 · 📉) - KnowledgeRepo + JupyterLab. Apache-2 19 | 20 | -------------------------------------------------------------------------------- /history/2023-04-20_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupytext (🥇35 · ⭐ 5.9K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 6 | - nbformat (🥇35 · ⭐ 210 · 📈) - Reference implementation of the Jupyter Notebook format. BSD-3 7 | - KubeSpawner (🥇30 · ⭐ 450 · 📈) - Kubernetes spawner for JupyterHub. BSD-3 8 | - BinderHub (🥉24 · ⭐ 2.3K · 📈) - Run your code in the cloud, with technology so advanced, it.. BSD-3 9 | - IJulia.jl (🥈20 · ⭐ 2.6K · 📈) - Julia kernel for Jupyter. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Client (🥈29 · ⭐ 310 · 📉) - Jupyter protocol client APIs. BSD-3 16 | - JupyterLab Debugger (🥈22 · ⭐ 550 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 17 | - ipyregulartable (🥉19 · ⭐ 85 · 📉) - High performance, editable, stylable datagrids in.. Apache-2 18 | - ipydagred3 (🥉18 · ⭐ 51 · 📉) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 19 | - pick (🥉13 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-04-27_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter_server (🥉36 · ⭐ 390 · 📈) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 6 | - nbdime (🥈32 · ⭐ 2.4K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 7 | - nglview (🥈26 · ⭐ 660 · 📈) - Jupyter widget to interactively view molecular structures and.. MIT 8 | - JupyterLab HDF5 (🥈20 · ⭐ 110 · 📈) - Open and explore HDF5 files in JupyterLab. Can handle very.. BSD-3 9 | - PPExtensions (🥉14 · ⭐ 48 · 💀) - Set of iPython and Jupyter extensions to improve user.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - xonsh (🥇27 · ⭐ 7K · 📉) - Python-powered, cross-platform, Unix-gazing shell. ❗Unlicensed 16 | - ipyparallel (🥈25 · ⭐ 2.4K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 17 | - datapane (🥉21 · ⭐ 1.2K · 📉) - Build full-stack data apps in 100% Python. Apache-2 18 | - JupyterLab TOC (🥈19 · ⭐ 730 · 💀) - Table of Contents extension for JupyterLab. BSD-3 19 | - nb_black (🥉6 · 💀) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-05-04_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - bokeh (🥇43 · ⭐ 18K · 📈) - Interactive Data Visualization in the browser, from Python. BSD-3 6 | - Jupyter Client (🥇34 · ⭐ 310 · 📈) - Jupyter protocol client APIs. BSD-3 7 | - ipyregulartable (🥈25 · ⭐ 2.8K · 📈) - High performance, editable, stylable datagrids in.. Apache-2 8 | - ipyexperiments (🥉15 · ⭐ 160 · 💀) - jupyter/ipython experiment containers for GPU and.. Apache-2 9 | - nb_black (🥉13 · ⭐ 62 · 💀) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - jupyter_server (🥉31 · ⭐ 390 · 📉) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 16 | - Contrib NBextensions (🥈24 · ⭐ 5K · 📉) - A collection of various notebook extensions for.. ❗Unlicensed 17 | - Jupyter Themes (🥈23 · ⭐ 9.5K · 💀) - Custom Jupyter Notebook Themes. MIT 18 | - jupyterlab-gitplus (🥉7 · ⭐ 100 · 📉) - JupyterLab extension to create GitHub commits & pull.. ❗️AGPL-3.0 19 | - ipyaggrid (🥉6 · ⭐ 11 · 💀) - MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-05-11_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter_server (🥉35 · ⭐ 390 · 📈) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 6 | - ipyparallel (🥈31 · ⭐ 2.4K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 7 | - Perspective (🥇30 · ⭐ 6.2K · 📈) - A data visualization and analytics component, especially.. Apache-2 8 | - naas (🥉20 · ⭐ 240 · 📈) - Schedule notebooks, run them like APIs, expose securely your.. ❗️AGPL-3.0 9 | - Gruvbox Theme (🥈12 · ⭐ 48 · 💀) - Gruvbox dark theme for Jupyter Lab. Modeled on classic.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - bokeh (🥇39 · ⭐ 18K · 📉) - Interactive Data Visualization in the browser, from Python. BSD-3 16 | - nglview (🥉23 · ⭐ 660 · 📉) - Jupyter widget to interactively view molecular structures and.. ❗Unlicensed 17 | - datapane (🥉21 · ⭐ 1.2K · 📉) - Build full-stack data apps in 100% Python. Apache-2 18 | - ipyregulartable (🥉18 · ⭐ 86 · 📉) - High performance, editable, stylable datagrids in.. Apache-2 19 | - nb_black (🥉6 · 💀) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-05-18_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab Debugger (🥇29 · ⭐ 13K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 6 | - jupyter-server-proxy (🥇27 · ⭐ 280 · 📈) - Jupyter notebook server extension to proxy web.. BSD-3 7 | - JupyterLab HDF5 (🥈20 · ⭐ 110 · 📈) - Open and explore HDF5 files in JupyterLab. Can handle very.. BSD-3 8 | - jupyter-tensorboard (🥉19 · ⭐ 460 · 💀) - Start Tensorboard in Jupyter Notebook. MIT 9 | - ipyaggrid (🥉13 · ⭐ 13 · 💀) - Jupyter widget - ag-grid in the notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Client (🥈29 · ⭐ 310 · 📉) - Jupyter protocol client APIs. BSD-3 16 | - ipyparallel (🥈25 · ⭐ 2.4K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 17 | - pythreejs (🥈25 · ⭐ 870 · 📉) - A Jupyter - Three.js bridge. ❗Unlicensed 18 | - nbval (🥉23 · ⭐ 400 · 📉) - A py.test plugin to validate Jupyter notebooks. ❗Unlicensed 19 | - ipyexperiments (🥉10 · ⭐ 160 · 💀) - jupyter/ipython experiment containers for GPU and.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-05-25_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - xonsh (🥇32 · ⭐ 7K · 📈) - Python-powered, cross-platform, Unix-gazing shell. ❗️BSD-1-Clause 6 | - ipyparallel (🥈31 · ⭐ 2.4K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 7 | - ipyregulartable (🥈25 · ⭐ 2.8K · 📈) - High performance, editable, stylable datagrids in.. Apache-2 8 | - ipydagred3 (🥈25 · ⭐ 2.8K · 📈) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 9 | - vega (🥈25 · ⭐ 350 · 📈) - IPython/Jupyter notebook module for Vega and Vega-Lite. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - jupyter_server (🥉31 · ⭐ 390 · 📉) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 16 | - nbdime (🥈28 · ⭐ 2.5K · 📉) - Tools for diffing and merging of Jupyter notebooks. ❗Unlicensed 17 | - jupyter-console (🥈25 · ⭐ 220 · 📉) - Jupyter Terminal Console. BSD-3 18 | - JupyterLab Debugger (🥈22 · ⭐ 550 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 19 | - ipyaggrid (🥉6 · ⭐ 11 · 💀) - MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-06-01_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbdime (🥈32 · ⭐ 2.5K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 6 | - nbtutor (🥉21 · ⭐ 440 · 📈) - Visualize Python code execution (line-by-line) in Jupyter Notebook.. BSD-3 7 | - naas (🥉20 · ⭐ 240 · 📈) - Schedule notebooks, run them like APIs, expose securely your.. ❗️AGPL-3.0 8 | - JupyterLab HDF5 (🥈19 · ⭐ 110 · 📈) - Open and explore HDF5 files in JupyterLab. Can handle very.. BSD-3 9 | - HTTP-over-WebSocket (🥉18 · ⭐ 260 · 💀) - Jupyter support for HTTP-over-ws. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - pythreejs (🥈24 · ⭐ 870 · 📉) - A Jupyter - Three.js bridge. ❗Unlicensed 16 | - Code Formatter (🥇22 · ⭐ 710 · 📉) - A JupyterLab plugin to facilitate invocation of code.. MIT 17 | - IJavascript (🥈21 · ⭐ 2K · 📉) - IJavascript is a javascript kernel for the Jupyter.. ❗Unlicensed 18 | - Apache Toree (🥈19 · ⭐ 710 · 📉) - Jupyter kernel for Apache Spark. Apache-2 19 | - Gruvbox Theme (🥉7 · ⭐ 49 · 💀) - Gruvbox dark theme for Jupyter Lab. Modeled on classic.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-06-08_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab TOC (🥇28 · ⭐ 13K · 💀) - Table of Contents extension for JupyterLab. BSD-3 6 | - Jupyter Themes (🥇28 · ⭐ 9.6K · 📈) - Custom Jupyter Notebook Themes. MIT 7 | - ipyvolume (🥈28 · ⭐ 1.9K · 📈) - 3d plotting for Python in the Jupyter notebook based on IPython.. MIT 8 | - pick (🥈20 · ⭐ 610 · 💀) - Customize your kernels on Launch!. BSD-3 9 | - tributary (🥉18 · ⭐ 410 · 📈) - Streaming reactive and dataflow graphs in Python. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Client (🥈28 · ⭐ 320 · 📉) - Jupyter protocol client APIs. BSD-3 16 | - ipyparallel (🥈25 · ⭐ 2.4K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 17 | - vega (🥉20 · ⭐ 350 · 📉) - IPython/Jupyter notebook module for Vega and Vega-Lite. BSD-3 18 | - Jupyter Bokeh (🥉15 · ⭐ 220 · 📉) - An extension for rendering Bokeh content in JupyterLab.. BSD-3 19 | - JupyterLab HDF5 (🥉14 · ⭐ 110 · 📉) - Open and explore HDF5 files in JupyterLab. Can handle very.. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-06-15_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter_server (🥉35 · ⭐ 400 · 📈) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 6 | - JupyterLab Debugger (🥇29 · ⭐ 13K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 7 | - jupyter-server-proxy (🥇27 · ⭐ 290 · 📈) - Jupyter notebook server extension to proxy web.. BSD-3 8 | - Jupyter Bokeh (🥈20 · ⭐ 220 · 📈) - An extension for rendering Bokeh content in JupyterLab.. BSD-3 9 | - ipyaggrid (🥉13 · ⭐ 13 · 💀) - Jupyter widget - ag-grid in the notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - pythreejs (🥈24 · ⭐ 880 · 📉) - A Jupyter - Three.js bridge. ❗Unlicensed 16 | - Jupyter Themes (🥈23 · ⭐ 9.6K · 📉) - Custom Jupyter Notebook Themes. MIT 17 | - JupyterLab TOC (🥈19 · ⭐ 730 · 💀) - Table of Contents extension for JupyterLab. BSD-3 18 | - ipycanvas (🥉14 · 💤) - Interactive Canvas in Jupyter. BSD-3 19 | - pick (🥉13 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-06-22_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbdime (🥈32 · ⭐ 2.5K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 6 | - ipyparallel (🥇31 · ⭐ 2.4K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 7 | - ipycanvas (🥉21 · ⭐ 650 · 💤) - Interactive Canvas in Jupyter. BSD-3 8 | - Ansible Kernel (🥈21 · ⭐ 520 · 💀) - Jupyter Notebook Kernel for running Ansible Tasks and.. Apache-2 9 | - pick (🥈20 · ⭐ 610 · 💀) - Customize your kernels on Launch!. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - jupyter_server (🥉31 · ⭐ 400 · 📉) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 16 | - JupyterLab Debugger (🥇22 · ⭐ 550 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 17 | - ipyregulartable (🥉17 · ⭐ 88 · 📉) - High performance, editable, stylable datagrids in.. Apache-2 18 | - ipydagred3 (🥉17 · ⭐ 54 · 📉) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 19 | - tributary (🥉11 · ⭐ 11 · 📉) - Streaming reactive and dataflow graphs in Python. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2023-06-29_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - vega (🥈25 · ⭐ 350 · 📈) - IPython/Jupyter notebook module for Vega and Vega-Lite. BSD-3 6 | - Bash Kernel (🥈23 · ⭐ 640 · 📈) - A bash kernel for IPython. BSD-3 7 | - JupyterLab Drawio (🥇23 · ⭐ 570 · 💀) - A standalone embedding of the FOSS drawio / mxgraph.. BSD-3 8 | - nb_black (🥉16 · ⭐ 62 · 📈) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. MIT 9 | - Gruvbox Theme (🥈12 · ⭐ 49 · 💀) - Gruvbox dark theme for Jupyter Lab. Modeled on classic.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbdime (🥈28 · ⭐ 2.5K · 📉) - Tools for diffing and merging of Jupyter notebooks. ❗Unlicensed 16 | - RISE (🥈25 · ⭐ 3.6K · 📉) - RISE: Live Reveal.js Jupyter/IPython Slideshow Extension. ❗Unlicensed 17 | - jupyter-server-proxy (🥈23 · ⭐ 290 · 📉) - Jupyter notebook server extension to proxy web.. BSD-3 18 | - xeus-python (🥉19 · ⭐ 380 · 📉) - Jupyter kernel for the Python programming language. BSD-3 19 | - jupyter-tensorboard (🥉14 · ⭐ 460 · 💀) - Start Tensorboard in Jupyter Notebook. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-07-06_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupyter Client (🥇33 · ⭐ 320 · 📈) - Jupyter protocol client APIs. BSD-3 6 | - JupyterLab Debugger (🥇29 · ⭐ 13K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 7 | - Jupyter Themes (🥇28 · ⭐ 9.6K · 📈) - Custom Jupyter Notebook Themes. MIT 8 | - ipydagred3 (🥈24 · ⭐ 2.8K · 📈) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 9 | - ipyregulartable (🥉23 · ⭐ 2.8K · 📈) - High performance, editable, stylable datagrids in.. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - datapane (🥉20 · ⭐ 1.2K · 📉) - Build and share data reports in 100% Python. Apache-2 16 | - Gruvbox Theme (🥉7 · ⭐ 49 · 💀) - Gruvbox dark theme for Jupyter Lab. Modeled on classic.. ❗Unlicensed 17 | - nb_black (🥉7 · 📉) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 18 | - ipyaggrid (🥉6 · ⭐ 11 · 💀) - MIT 19 | - Nord Theme (🥉3 · ⭐ 25 · 💀) - JupyterLab - Nord Theme. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-07-20_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Contrib NBextensions (🥇30 · ⭐ 5.1K · 💤) - A collection of various notebook extensions for.. BSD-3 6 | - JupyterLab TOC (🥇28 · ⭐ 13K · 💀) - Table of Contents extension for JupyterLab. BSD-3 7 | - datapane (🥉24 · ⭐ 1.3K · 📈) - Build and share data reports in 100% Python. Apache-2 8 | - pick (🥈20 · ⭐ 610 · 💀) - Customize your kernels on Launch!. BSD-3 9 | - tributary (🥉17 · ⭐ 410 · 📈) - Streaming reactive and dataflow graphs in Python. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Client (🥈28 · ⭐ 320 · 📉) - Jupyter protocol client APIs. BSD-3 16 | - pythreejs (🥈25 · ⭐ 880 · 📉) - A Jupyter - Three.js bridge. ❗Unlicensed 17 | - ipyparallel (🥈24 · ⭐ 2.4K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 18 | - JupyterLab HDF5 (🥉14 · ⭐ 110 · 📉) - Open and explore HDF5 files in JupyterLab. Can handle very.. BSD-3 19 | - ipyexperiments (🥉10 · ⭐ 160 · 💀) - jupyter/ipython experiment containers for GPU and.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-07-27_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipyparallel (🥇30 · ⭐ 2.4K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 6 | - jupyter-server-proxy (🥈26 · ⭐ 300 · 📈) - Jupyter notebook server extension to proxy web.. BSD-3 7 | - nbinteract (🥉20 · ⭐ 230 · 💀) - Create interactive webpages from Jupyter Notebooks. BSD-3 8 | - ipycanvas (🥉16 · 📈) - Interactive Canvas in Jupyter. BSD-3 9 | - ipyaggrid (🥉13 · ⭐ 13 · 💀) - Jupyter widget - ag-grid in the notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Themes (🥈23 · ⭐ 9.6K · 📉) - Custom Jupyter Notebook Themes. MIT 16 | - Code Formatter (🥇23 · ⭐ 720 · 📉) - A JupyterLab plugin to facilitate invocation of code.. MIT 17 | - datapane (🥉20 · ⭐ 1.3K · 📉) - Build and share data reports in 100% Python. Apache-2 18 | - JupyterLab TOC (🥈19 · ⭐ 730 · 💀) - Table of Contents extension for JupyterLab. BSD-3 19 | - tributary (🥉11 · ⭐ 12 · 📉) - Streaming reactive and dataflow graphs in Python. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2023-08-03_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupyter Client (🥇33 · ⭐ 320 · 📈) - Jupyter protocol client APIs. BSD-3 6 | - JupyterLab Debugger (🥇28 · ⭐ 13K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 7 | - nb_black (🥈17 · ⭐ 62 · 📈) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. MIT 8 | - ipyexperiments (🥉15 · ⭐ 160 · 💀) - jupyter/ipython experiment containers for GPU and.. Apache-2 9 | - Gruvbox Theme (🥈12 · ⭐ 49 · 💀) - Gruvbox dark theme for Jupyter Lab. Modeled on classic.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Contrib NBextensions (🥈24 · ⭐ 5.1K · 💤) - A collection of various notebook extensions for.. ❗Unlicensed 16 | - ipyregulartable (🥉18 · ⭐ 91 · 📉) - High performance, editable, stylable datagrids in.. Apache-2 17 | - ipydagred3 (🥉17 · ⭐ 59 · 📉) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 18 | - pick (🥉12 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 19 | - ipyaggrid (🥉6 · ⭐ 11 · 💀) - MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-08-10_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Contrib NBextensions (🥇30 · ⭐ 5.1K · 💤) - A collection of various notebook extensions for.. BSD-3 6 | - JupyterLab TOC (🥇28 · ⭐ 13K · 💀) - Table of Contents extension for JupyterLab. BSD-3 7 | - Jupyter Themes (🥈28 · ⭐ 9.6K · 📈) - Custom Jupyter Notebook Themes. MIT 8 | - tributary (🥉16 · ⭐ 410 · 📈) - Streaming reactive and dataflow graphs in Python. Apache-2 9 | - ipyaggrid (🥉13 · ⭐ 13 · 💀) - Jupyter widget - ag-grid in the notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Client (🥈28 · ⭐ 330 · 📉) - Jupyter protocol client APIs. BSD-3 16 | - ipyparallel (🥈24 · ⭐ 2.4K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 17 | - JupyterLab Debugger (🥈21 · ⭐ 560 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 18 | - ipyexperiments (🥉10 · ⭐ 160 · 💀) - jupyter/ipython experiment containers for GPU and.. ❗Unlicensed 19 | - nb_black (🥉8 · 📉) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-08-24_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipywidgets (🥇39 · ⭐ 2.9K · 📈) - Interactive Widgets for the Jupyter Notebook. BSD-3 6 | - Jupyter Client (🥇33 · ⭐ 330 · 📈) - Jupyter protocol client APIs. BSD-3 7 | - JupyterLab Debugger (🥇31 · ⭐ 13K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 8 | - ipyparallel (🥈30 · ⭐ 2.5K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 9 | - ipyexperiments (🥉16 · ⭐ 160 · 💀) - jupyter/ipython experiment containers for GPU and.. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - xonsh (🥇28 · ⭐ 7.2K · 📉) - Python-powered, cross-platform, Unix-gazing shell. ❗Unlicensed 16 | - nbdime (🥈27 · ⭐ 2.5K · 📉) - Tools for diffing and merging of Jupyter notebooks. ❗Unlicensed 17 | - Contrib NBextensions (🥇26 · ⭐ 5.1K · 💤) - A collection of various notebook extensions for.. ❗Unlicensed 18 | - ipydagred3 (🥉16 · ⭐ 60 · 📉) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 19 | - tributary (🥉10 · ⭐ 12 · 📉) - Streaming reactive and dataflow graphs in Python. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2023-08-31_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - xonsh (🥇32 · ⭐ 7.2K · 📈) - Python-powered, cross-platform, Unix-gazing shell. ❗️BSD-1-Clause 6 | - ipydagred3 (🥉24 · ⭐ 2.8K · 📈) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 7 | - pick (🥈20 · ⭐ 610 · 💀) - Customize your kernels on Launch!. BSD-3 8 | - tributary (🥉16 · ⭐ 410 · 📈) - Streaming reactive and dataflow graphs in Python. Apache-2 9 | - ipyaggrid (🥉14 · ⭐ 13 · 💀) - Jupyter widget - ag-grid in the notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥇33 · ⭐ 2.9K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - Jupyter Client (🥇28 · ⭐ 330 · 📉) - Jupyter protocol client APIs. BSD-3 17 | - JupyterLab Debugger (🥇26 · ⭐ 560 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 18 | - ipyparallel (🥈24 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 19 | - commuter (🥉15 · ⭐ 470 · 💀) - Notebook sharing hub. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-09-07_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipywidgets (🥇39 · ⭐ 2.9K · 📈) - Interactive Widgets for the Jupyter Notebook. BSD-3 6 | - Jupyter Client (🥇33 · ⭐ 330 · 📈) - Jupyter protocol client APIs. BSD-3 7 | - ipyparallel (🥈30 · ⭐ 2.5K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 8 | - JupyterLab TOC (🥇28 · ⭐ 13K · 💀) - Table of Contents extension for JupyterLab. BSD-3 9 | - commuter (🥉20 · ⭐ 6.1K · 💀) - Notebook sharing hub. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nglview (🥉23 · ⭐ 720 · 📉) - Jupyter widget to interactively view molecular structures and.. ❗Unlicensed 16 | - Kernel Gateway (🥈21 · ⭐ 450 · 📉) - Jupyter Kernel Gateway. ❗Unlicensed 17 | - xeus-python (🥉18 · ⭐ 390 · 📉) - Jupyter kernel for the Python programming language. BSD-3 18 | - cdsdashboards (🥉14 · ⭐ 190 · 💤) - JupyterHub extension for ContainDS Dashboards. ❗Unlicensed 19 | - jupyterlab-interactive-dashboard-editor (🥉13 · ⭐ 210 · 💀) - A drag-and-drop dashboard editor for JupyterLab. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-09-14_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipyregulartable (🥉24 · ⭐ 2.9K · 📈) - High performance, editable, stylable datagrids in.. Apache-2 6 | - Apache Toree (🥈24 · ⭐ 720 · 📈) - Jupyter kernel for Apache Spark. Apache-2 7 | - dask-labextension (🥈23 · ⭐ 290 · 📈) - JupyterLab extension for Dask. BSD-3 8 | - jupyterlab-execute-time (🥈20 · ⭐ 290 · 📈) - A JupyterLab extension for displaying cell timings. BSD-3 9 | - ssh_ipykernel (🥉11 · ⭐ 11 · 💀) - A remote jupyter kernel via ssh. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥇33 · ⭐ 2.9K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - Jupyter Client (🥇29 · ⭐ 330 · 📉) - Jupyter protocol client APIs. BSD-3 17 | - Contrib NBextensions (🥇26 · ⭐ 5.1K · 💤) - A collection of various notebook extensions for.. ❗Unlicensed 18 | - ipyparallel (🥈24 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 19 | - ipyexperiments (🥉10 · ⭐ 160 · 💀) - jupyter/ipython experiment containers for GPU and.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-09-28_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupyter Client (🥇33 · ⭐ 330 · 📈) - Jupyter protocol client APIs. BSD-3 6 | - ipydagred3 (🥈25 · ⭐ 2.9K · 📈) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 7 | - tributary (🥉15 · ⭐ 410 · 📈) - Streaming reactive and dataflow graphs in Python. Apache-2 8 | - ipyexperiments (🥉15 · ⭐ 160 · 💀) - jupyter/ipython experiment containers for GPU and.. Apache-2 9 | - nb_black (🥉15 · ⭐ 62 · 📈) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥇33 · ⭐ 2.9K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - xonsh (🥇27 · ⭐ 7.3K · 📉) - Python-powered, cross-platform, Unix-gazing shell. ❗Unlicensed 17 | - JupyterLab Debugger (🥇26 · ⭐ 560 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 18 | - Code Formatter (🥈21 · ⭐ 750 · 📉) - A JupyterLab plugin to facilitate invocation of code.. MIT 19 | - ipyaggrid (🥉7 · ⭐ 11 · 💀) - MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-10-12_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipydagred3 (🥈25 · ⭐ 2.9K · 📈) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 6 | - Apache Toree (🥈24 · ⭐ 720 · 📈) - Jupyter kernel for Apache Spark. Apache-2 7 | - IHaskell (🥈22 · ⭐ 2.5K · 📈) - A Haskell kernel for the Jupyter project. MIT 8 | - notebookJS (🥉15 · ⭐ 250 · 💤) - notebookJS: seamless JavaScript integration in Python Notebooks. MIT 9 | - jupyterlab-interactive-dashboard-editor (🥉15 · ⭐ 210 · 💀) - A drag-and-drop dashboard editor for JupyterLab. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥇32 · ⭐ 2.9K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - Jupyter Client (🥈29 · ⭐ 330 · 📉) - Jupyter protocol client APIs. BSD-3 17 | - ipyparallel (🥈24 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 18 | - JupyterLab TOC (🥈19 · ⭐ 730 · 💀) - Table of Contents extension for JupyterLab. BSD-3 19 | - ipyaggrid (🥉7 · ⭐ 11 · 💀) - MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-11-09_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab TOC (🥇28 · ⭐ 13K · 💀) - Table of Contents extension for JupyterLab. BSD-3 6 | - Jupyter Themes (🥇28 · ⭐ 9.7K · 📈) - Custom Jupyter Notebook Themes. MIT 7 | - jupyter-console (🥈28 · ⭐ 230 · 💤) - Jupyter Terminal Console. BSD-3 8 | - pivottablejs (🥉23 · ⭐ 600 · 💀) - Dragndrop Pivot Tables and Charts for Jupyter/IPython Notebook,.. MIT 9 | - pick (🥈20 · ⭐ 620 · 💀) - Customize your kernels on Launch!. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - JupyterLab Debugger (🥇26 · ⭐ 560 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 16 | - datapane (🥉19 · ⭐ 1.3K · 📉) - Build and share data reports in 100% Python. Apache-2 17 | - Gruvbox Theme (🥉8 · ⭐ 50 · 💀) - Gruvbox dark theme for Jupyter Lab. Modeled on classic.. ❗Unlicensed 18 | - nb_black (🥉6 · 📉) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 19 | - Nord Theme (🥉4 · ⭐ 26 · 💀) - JupyterLab - Nord Theme. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-11-16_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter_server (🥉35 · ⭐ 430 · 📈) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 6 | - nbdime (🥈32 · ⭐ 2.5K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 7 | - Contrib NBextensions (🥇31 · ⭐ 5.1K · 💤) - A collection of various notebook extensions for.. BSD-3 8 | - jupyter-server-proxy (🥈27 · ⭐ 310 · 📈) - Jupyter notebook server extension to proxy web.. BSD-3 9 | - tributary (🥉14 · ⭐ 410 · 📈) - Streaming reactive and dataflow graphs in Python. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Client (🥈29 · ⭐ 340 · 📉) - Jupyter protocol client APIs. BSD-3 16 | - ipyparallel (🥈24 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 17 | - gmaps (🥉20 · ⭐ 760 · 💀) - Google maps for Jupyter notebooks. BSD-3 18 | - JupyterLab TOC (🥈19 · ⭐ 730 · 💀) - Table of Contents extension for JupyterLab. BSD-3 19 | - pick (🥉13 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-11-30_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipyvolume (🥈28 · ⭐ 1.9K · 📈) - 3d plotting for Python in the Jupyter notebook based on IPython.. MIT 6 | - ipyvuetify (🥈26 · ⭐ 320 · 📈) - Jupyter widgets based on vuetify UI components. MIT 7 | - nbQA (🥈25 · ⭐ 910 · 📈) - Run ruff, isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter.. MIT 8 | - xeus-python (🥈23 · ⭐ 400 · 📈) - Jupyter kernel for the Python programming language. BSD-3 9 | - ipysigma (🥉20 · ⭐ 140 · 📈) - A Jupyter widget using sigma.js to render interactive networks. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nteract (🥈33 · ⭐ 6.1K · 📉) - The interactive computing suite for you!. BSD-3 16 | - nglview (🥈26 · ⭐ 740 · 📉) - Jupyter widget to interactively view molecular structures and.. MIT 17 | - ipyvizzu (🥉23 · ⭐ 880 · 📉) - Build animated charts in Jupyter Notebook and similar.. Apache-2 18 | - IHaskell (🥈22 · ⭐ 2.5K · 📉) - A Haskell kernel for the Jupyter project. MIT 19 | - Apache Toree (🥈21 · ⭐ 720 · 📉) - Jupyter kernel for Apache Spark. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2023-12-21_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab Debugger (🥇32 · ⭐ 13K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 6 | - jupyter-tensorboard (🥉18 · ⭐ 460 · 💀) - Start Tensorboard in Jupyter Notebook. MIT 7 | - HTTP-over-WebSocket (🥉18 · ⭐ 260 · 💀) - Jupyter support for HTTP-over-ws. Apache-2 8 | - tributary (🥉15 · ⭐ 410 · 📈) - Streaming reactive and dataflow graphs in Python. Apache-2 9 | - PPExtensions (🥉13 · ⭐ 50 · 💀) - Set of iPython and Jupyter extensions to improve user.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Sphinx (🥈23 · ⭐ 170 · 📉) - Sphinx extension for rendering of Jupyter interactive.. BSD-3 16 | - gmaps (🥉20 · ⭐ 760 · 💀) - Google maps for Jupyter notebooks. BSD-3 17 | - JupyterLab TOC (🥈19 · ⭐ 730 · 💀) - Table of Contents extension for JupyterLab. BSD-3 18 | - nbinteract (🥉17 · ⭐ 230 · 💀) - Create interactive webpages from Jupyter Notebooks. BSD-3 19 | - pick (🥉13 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2023-12-28_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter_server (🥉36 · ⭐ 430 · 📈) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 6 | - Jupyter Client (🥇34 · ⭐ 340 · 📈) - Jupyter protocol client APIs. BSD-3 7 | - xonsh (🥇32 · ⭐ 7.4K · 📈) - Python-powered, cross-platform, Unix-gazing shell. ❗️BSD-1-Clause 8 | - ipyparallel (🥈29 · ⭐ 2.5K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 9 | - Nord Theme (🥉8 · ⭐ 26 · 💀) - JupyterLab - Nord Theme. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Contrib NBextensions (🥇26 · ⭐ 5.1K · 💤) - A collection of various notebook extensions for.. ❗Unlicensed 16 | - commuter (🥉15 · ⭐ 480 · 💀) - Notebook sharing hub. BSD-3 17 | - tributary (🥉10 · ⭐ 17 · 📉) - Streaming reactive and dataflow graphs in Python. Apache-2 18 | - ipyaggrid (🥉6 · ⭐ 11 · 💀) - MIT 19 | - nb_black (🥉6 · 📉) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-01-04_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - commuter (🥉20 · ⭐ 6.1K · 💀) - Notebook sharing hub. BSD-3 6 | - pick (🥈20 · ⭐ 620 · 💀) - Customize your kernels on Launch!. BSD-3 7 | - ipyexperiments (🥉18 · ⭐ 180 · 📈) - Automatic GPU+CPU memory profiling, re-use and memory.. Apache-2 8 | - nb_black (🥉15 · ⭐ 62 · 💤) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. MIT 9 | - ipyaggrid (🥉14 · ⭐ 39 · 💀) - Jupyter widget - ag-grid in the notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥈33 · ⭐ 3K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - jupyter_server (🥉32 · ⭐ 430 · 📉) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 17 | - Jupyter Client (🥈29 · ⭐ 340 · 📉) - Jupyter protocol client APIs. BSD-3 18 | - JupyterLab Debugger (🥇25 · ⭐ 560 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 19 | - ipyparallel (🥈23 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-01-11_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter_server (🥉36 · ⭐ 430 · 📈) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 6 | - Jupyter Client (🥇34 · ⭐ 340 · 📈) - Jupyter protocol client APIs. BSD-3 7 | - nbdime (🥇33 · ⭐ 2.6K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 8 | - ipyparallel (🥈29 · ⭐ 2.5K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 9 | - jupyter-console (🥈27 · ⭐ 230 · 💤) - Jupyter Terminal Console. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nglview (🥉23 · ⭐ 750 · 📉) - Jupyter widget to interactively view molecular structures and.. ❗Unlicensed 16 | - notedown (🥉20 · ⭐ 850 · 💀) - Markdown = IPython Notebook. BSD-2 17 | - cdsdashboards (🥉14 · ⭐ 200 · 💀) - JupyterHub extension for ContainDS Dashboards. ❗Unlicensed 18 | - ipycanvas (🥉12 · 📉) - Interactive Canvas in Jupyter. ❗Unlicensed 19 | - nb_black (🥉6 · 💤) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-01-18_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - xonsh (🥇32 · ⭐ 7.5K · 📈) - Python-powered, cross-platform, Unix-gazing shell. ❗️Custom 6 | - JupyterLab Debugger (🥇31 · ⭐ 14K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 7 | - ipydagred3 (🥈25 · ⭐ 2.9K · 📈) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 8 | - Collapsible Headings (🥉16 · ⭐ 170 · 💀) - Implements Collapsible Headers for Jupyter Lab.. BSD-3 9 | - ipycanvas (🥉16 · 📈) - Interactive Canvas in Jupyter. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - jupyter_server (🥉32 · ⭐ 430 · 📉) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 16 | - commuter (🥉15 · ⭐ 480 · 💀) - Notebook sharing hub. BSD-3 17 | - pick (🥉13 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 18 | - tributary (🥉10 · ⭐ 17 · 📉) - Streaming reactive and dataflow graphs in Python. Apache-2 19 | - ipyaggrid (🥉6 · ⭐ 11 · 💀) - MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2024-01-25_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Kernel Gateway (🥇26 · ⭐ 460 · 📈) - Jupyter Kernel Gateway. BSD-3 6 | - nbQA (🥈25 · ⭐ 930 · 📈) - Run ruff, isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter.. MIT 7 | - commuter (🥉21 · ⭐ 6.1K · 💀) - Notebook sharing hub. BSD-3 8 | - pick (🥈20 · ⭐ 620 · 💀) - Customize your kernels on Launch!. BSD-3 9 | - ipyaggrid (🥉14 · ⭐ 39 · 💀) - Jupyter widget - ag-grid in the notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Client (🥇29 · ⭐ 350 · 📉) - Jupyter protocol client APIs. BSD-3 16 | - ipyparallel (🥈24 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 17 | - ipydagred3 (🥉18 · ⭐ 67 · 📉) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 18 | - ipyexperiments (🥉12 · ⭐ 180 · 📉) - Automatic GPU+CPU memory profiling, re-use and memory.. ❗Unlicensed 19 | - Gruvbox Theme (🥉8 · ⭐ 49 · 💀) - Gruvbox dark theme for Jupyter Lab. Modeled on classic.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-02-01_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipyparallel (🥈29 · ⭐ 2.5K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 6 | - JupyterLab TOC (🥇28 · ⭐ 14K · 💀) - Table of Contents extension for JupyterLab. BSD-3 7 | - notebookJS (🥉18 · ⭐ 260 · 💀) - notebookJS: seamless JavaScript integration in Python Notebooks. MIT 8 | - ipyexperiments (🥉18 · ⭐ 180 · 📈) - Automatic GPU+CPU memory profiling, re-use and memory.. Apache-2 9 | - nb_black (🥉15 · ⭐ 62 · 💤) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥈31 · ⭐ 3K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - nbdev (🥈25 · ⭐ 4.7K · 📉) - Create delightful software with Jupyter Notebooks. Apache-2 17 | - JupyterLab Debugger (🥈21 · ⭐ 560 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 18 | - ipyaggrid (🥉10 · ⭐ 13 · 💀) - A jupyter widget embedding the ag-grid library. MIT 19 | - Nord Theme (🥉4 · ⭐ 26 · 💀) - JupyterLab - Nord Theme. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-02-08_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipywidgets (🥇36 · ⭐ 3K · 📈) - Interactive Widgets for the Jupyter Notebook. BSD-3 6 | - JupyterLab Debugger (🥇32 · ⭐ 14K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 7 | - ipyregulartable (🥈25 · ⭐ 2.9K · 📈) - High performance, editable, stylable datagrids in.. Apache-2 8 | - ipydagred3 (🥈25 · ⭐ 2.9K · 📈) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 9 | - jupyter-tensorboard (🥉18 · ⭐ 460 · 💀) - Start Tensorboard in Jupyter Notebook. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Client (🥈28 · ⭐ 350 · 📉) - Jupyter protocol client APIs. BSD-3 16 | - nbdime (🥈27 · ⭐ 2.6K · 📉) - Tools for diffing and merging of Jupyter notebooks. ❗Unlicensed 17 | - ipyparallel (🥈24 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 18 | - ipyexperiments (🥉12 · ⭐ 180 · 📉) - Automatic GPU+CPU memory profiling, re-use and memory.. ❗Unlicensed 19 | - tributary (🥉10 · ⭐ 17 · 📉) - Streaming reactive and dataflow graphs in Python. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2024-02-15_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupyter Client (🥇34 · ⭐ 350 · 📈) - Jupyter protocol client APIs. BSD-3 6 | - Contrib NBextensions (🥇30 · ⭐ 5.1K · 💀) - A collection of various notebook extensions for.. BSD-3 7 | - ipyparallel (🥈29 · ⭐ 2.5K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 8 | - jupyter-console (🥈27 · ⭐ 240 · 💤) - Jupyter Terminal Console. BSD-3 9 | - nbQA (🥈25 · ⭐ 940 · 📈) - Run ruff, isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter.. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - JupyterLab Debugger (🥈21 · ⭐ 560 · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 16 | - ipydagred3 (🥉19 · ⭐ 67 · 📉) - ipywidgets library for drawing directed acyclic graphs in.. Apache-2 17 | - ipyregulartable (🥉18 · ⭐ 97 · 📉) - High performance, editable, stylable datagrids in.. Apache-2 18 | - pick (🥉13 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 19 | - nb_black (🥉6 · 💤) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-02-22_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbdime (🥈31 · ⭐ 2.6K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 6 | - nglview (🥈27 · ⭐ 760 · 📈) - Jupyter widget to interactively view molecular structures and.. MIT 7 | - datapane (🥉22 · ⭐ 1.3K · 📈) - Build and share data reports in 100% Python. Apache-2 8 | - tributary (🥉16 · ⭐ 410 · 📈) - Streaming reactive and dataflow graphs in Python. Apache-2 9 | - nb_black (🥉15 · ⭐ 62 · 💤) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipywidgets (🥈33 · ⭐ 3K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 16 | - Jupyter Client (🥇29 · ⭐ 350 · 📉) - Jupyter protocol client APIs. BSD-3 17 | - ipyparallel (🥈24 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 18 | - JupyterLab TOC (🥈19 · ⭐ 720 · 💀) - Table of Contents extension for JupyterLab. BSD-3 19 | - ipyaggrid (🥉6 · ⭐ 11 · 💀) - MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2024-02-29_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter_server (🥉36 · ⭐ 440 · 📈) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 6 | - Contrib NBextensions (🥇30 · ⭐ 5.2K · 💀) - A collection of various notebook extensions for.. BSD-3 7 | - Jupyter Themes (🥇29 · ⭐ 9.7K · 📈) - Custom Jupyter Notebook Themes. MIT 8 | - pick (🥈20 · ⭐ 620 · 💀) - Customize your kernels on Launch!. BSD-3 9 | - ipycanvas (🥉16 · 💤) - Interactive Canvas in Jupyter. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nglview (🥉23 · ⭐ 770 · 📉) - Jupyter widget to interactively view molecular structures and.. ❗Unlicensed 16 | - datapane (🥉18 · ⭐ 1.3K · 📉) - Build and share data reports in 100% Python. Apache-2 17 | - commuter (🥉15 · ⭐ 480 · 💀) - Notebook sharing hub. BSD-3 18 | - tributary (🥉11 · ⭐ 19 · 📉) - Streaming reactive and dataflow graphs in Python. Apache-2 19 | - nb_black (🥉6 · 💤) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-03-07_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab Git (🥇31 · ⭐ 1.4K · 📈) - A Git extension for JupyterLab. BSD-3 6 | - JupyterLab Debugger (🥇29 · ⭐ 14K · 💀) - A visual debugger for Jupyter notebooks, consoles,.. BSD-3 7 | - nbval (🥈28 · ⭐ 430 · 📈) - A py.test plugin to validate Jupyter notebooks. BSD-3 8 | - commuter (🥉20 · ⭐ 6.1K · 💀) - Notebook sharing hub. BSD-3 9 | - Gruvbox Theme (🥉12 · ⭐ 51 · 💀) - Gruvbox dark theme for Jupyter Lab. Modeled on classic.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - jupyter_server (🥉32 · ⭐ 440 · 📉) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 16 | - Contrib NBextensions (🥇26 · ⭐ 5.2K · 💀) - A collection of various notebook extensions for.. ❗Unlicensed 17 | - jupyter-console (🥈23 · ⭐ 240 · 💤) - Jupyter Terminal Console. BSD-3 18 | - jupyter-server-proxy (🥈22 · ⭐ 320 · 📉) - Jupyter notebook server extension to proxy web.. BSD-3 19 | - pick (🥉13 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2024-03-28_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Docker Stacks (🥈33 · ⭐ 8.2K · 📈) - Ready-to-run Docker images containing Jupyter applications. BSD-3 6 | - JupyterLab TOC (🥇28 · ⭐ 14K · 💀) - Table of Contents extension for JupyterLab. BSD-3 7 | - nglview (🥈27 · ⭐ 770 · 📈) - Jupyter widget to interactively view molecular structures and.. MIT 8 | - jupyter-console (🥈27 · ⭐ 240 · 💤) - Jupyter Terminal Console. BSD-3 9 | - nbviewer (🥈25 · ⭐ 2.2K · 💀) - nbconvert as a web service: Render Jupyter Notebooks as static web.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - dtale (🥈28 · ⭐ 4.5K · 📉) - Visualizer for pandas data structures. ❗️LGPL-2.1 16 | - nbdime (🥈27 · ⭐ 2.6K · 📉) - Tools for diffing and merging of Jupyter notebooks. ❗Unlicensed 17 | - RISE (🥈25 · ⭐ 3.6K · 📉) - RISE: Live Reveal.js Jupyter/IPython Slideshow Extension. ❗Unlicensed 18 | - ipyvuetify (🥉22 · ⭐ 330 · 📉) - Jupyter widgets based on vuetify UI components. MIT 19 | - gmaps (🥉20 · ⭐ 760 · 💀) - Google maps for Jupyter notebooks. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2024-04-04_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbdime (🥈31 · ⭐ 2.6K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 6 | - RISE (🥈28 · ⭐ 3.6K · 📈) - RISE: Live Reveal.js Jupyter/IPython Slideshow Extension. BSD-3 7 | - Kernel Gateway (🥇26 · ⭐ 480 · 📈) - Jupyter Kernel Gateway. ❗Unlicensed 8 | - gmaps (🥉24 · ⭐ 760 · 💀) - Google maps for Jupyter notebooks. BSD-3 9 | - Matlab Kernel (🥉19 · ⭐ 470 · 💀) - Jupyter Kernel for Matlab. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipyparallel (🥈24 · ⭐ 2.5K · 📉) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 16 | - JupyterLab TOC (🥈19 · ⭐ 720 · 💀) - Table of Contents extension for JupyterLab. BSD-3 17 | - pick (🥉13 · ⭐ 32 · 💀) - Customize your kernels on Launch!. BSD-3 18 | - ipyexperiments (🥉10 · ⭐ 190 · 📉) - Automatic GPU+CPU memory profiling, re-use and memory.. ❗Unlicensed 19 | - nb_black (🥉6 · 💤) - A simple extension for Jupyter Notebook and Jupyter Lab to beautify.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-04-25_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbdev (🥈28 · ⭐ 4.7K · 📈) - Create delightful software with Jupyter Notebooks. Apache-2 6 | - ipytest (🥉25 · ⭐ 290 · 📈) - Pytest in IPython notebooks. MIT 7 | - ipycanvas (🥉22 · ⭐ 680 · 💤) - Interactive Canvas in Jupyter. BSD-3 8 | - pick (🥈22 · ⭐ 680 · 💀) - Customize your kernels on Launch!. BSD-3 9 | - SQLCell (🥉15 · ⭐ 150 · 💀) - SQLCell is a magic function for the Jupyter Notebook that executes.. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Book (🥇33 · ⭐ 3.7K · 📉) - Create beautiful, publication-quality books and documents.. BSD-3 16 | - nikola (🥈32 · ⭐ 2.5K · 📉) - A static website and blog generator. MIT 17 | - D-Tale (🥈29 · ⭐ 4.5K · 📉) - Visualizer for Pandas Data Structures. ❗️LGPL-2.1 18 | - dtale (🥇29 · ⭐ 4.5K · 📉) - Visualizer for pandas data structures. ❗️LGPL-2.1 19 | - sparkmagic (🥇29 · ⭐ 1.3K · 📉) - Jupyter magics and kernels for working with remote Spark.. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2024-05-02_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupytext (🥇34 · ⭐ 6.4K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 6 | - nbdev (🥇31 · ⭐ 4.7K · 📈) - Create delightful software with Jupyter Notebooks. Apache-2 7 | - D-Tale (🥈30 · ⭐ 4.6K · 📈) - Visualizer for Pandas Data Structures. ❗️LGPL-2.1 8 | - dtale (🥇30 · ⭐ 4.6K · 📈) - Visualizer for pandas data structures. ❗️LGPL-2.1 9 | - ipyvue (🥉23 · ⭐ 65 · 📈) - Jupyter widgets base for Vue libraries. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - qtconsole (🥇34 · ⭐ 390 · 📉) - Jupyter Qt Console. BSD-3 16 | - papermill (🥇33 · ⭐ 5.6K · 📉) - Parameterize, execute, and analyze notebooks. BSD-3 17 | - JupyterLab Git (🥇31 · ⭐ 1.4K · 📉) - A Git extension for JupyterLab. BSD-3 18 | - KubeSpawner (🥇28 · ⭐ 520 · 📉) - Kubernetes spawner for JupyterHub. BSD-3 19 | - DataLab (🥉24 · ⭐ 980 · 💀) - Interactive tools and developer experiences for Big Data on.. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2024-05-09_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - pandas-profiling (🥇38 · ⭐ 12K · 📈) - 1 Line of code data quality profiling & exploratory data.. MIT 6 | - qtconsole (🥇37 · ⭐ 390 · 📈) - Jupyter Qt Console. BSD-3 7 | - Jupytext (🥇35 · ⭐ 6.4K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 8 | - nbdev (🥇32 · ⭐ 4.8K · 📈) - Create delightful software with Jupyter Notebooks. Apache-2 9 | - mercury (🥈26 · ⭐ 3.8K · 📈) - Convert Jupyter Notebooks to Web Apps. ❗️AGPL-3.0 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupyter Book (🥈32 · ⭐ 3.7K · 📉) - Create beautiful, publication-quality books and documents.. BSD-3 16 | - nteract (🥈31 · ⭐ 6.2K · 📉) - The interactive computing suite for you!. BSD-3 17 | - jupyter-console (🥈26 · ⭐ 240 · 💀) - Jupyter Terminal Console. BSD-3 18 | - pick (🥈22 · ⭐ 680 · 💀) - Customize your kernels on Launch!. BSD-3 19 | - Bash Kernel (🥈22 · ⭐ 680 · 📉) - A bash kernel for IPython. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2024-05-16_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipyleaflet (🥇34 · ⭐ 1.5K · 📈) - A Jupyter - Leaflet.js bridge. MIT 6 | - nbdev (🥇33 · ⭐ 4.8K · 📈) - Create delightful software with Jupyter Notebooks. Apache-2 7 | - JupyterLab Git (🥇33 · ⭐ 1.4K · 📈) - A Git extension for JupyterLab. BSD-3 8 | - D-Tale (🥈31 · ⭐ 4.6K · 📈) - Visualizer for Pandas Data Structures. ❗️LGPL-2.1 9 | - Appmode (🥈23 · ⭐ 430 · 📈) - A Jupyter extensions that turns notebooks into web applications. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - sos (🥈29 · ⭐ 260 · 📉) - SoS workflow system for daily data analysis. BSD-3 16 | - sparkmagic (🥇28 · ⭐ 1.3K · 📉) - Jupyter magics and kernels for working with remote Spark.. BSD-3 17 | - Jupyter Sphinx (🥈28 · ⭐ 180 · 📉) - Sphinx extension for rendering of Jupyter interactive.. BSD-3 18 | - elyra (🥇27 · ⭐ 1.8K · 📉) - Elyra extends JupyterLab with an AI centric approach. Apache-2 19 | - jupyter-tensorboard (🥉16 · ⭐ 460 · 💀) - Start Tensorboard in Jupyter Notebook. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2024-05-23_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Voila (🥇34 · ⭐ 5.2K · 📈) - Voil turns Jupyter notebooks into standalone web applications. BSD-3 6 | - OAuthenticator (🥇30 · ⭐ 400 · 📈) - OAuth + JupyterHub Authenticator = OAuthenticator. BSD-3 7 | - elyra (🥇29 · ⭐ 1.8K · 📈) - Elyra extends JupyterLab with an AI centric approach. Apache-2 8 | - ipydatagrid (🥈26 · ⭐ 510 · 📈) - Fast Datagrid widget for the Jupyter Notebook and JupyterLab. BSD-3 9 | - ThebeLab (🥉24 · ⭐ 380 · 📈) - Turn static HTML pages into live documents with Jupyter kernels. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - bokeh (🥇42 · ⭐ 19K · 📉) - Interactive Data Visualization in the browser, from Python. BSD-3 16 | - sos (🥈28 · ⭐ 260 · 📉) - SoS workflow system for daily data analysis. BSD-3 17 | - ipytest (🥉24 · ⭐ 290 · 📉) - Pytest in IPython notebooks. MIT 18 | - JupyterLab Templates (🥈23 · ⭐ 380 · 📉) - Support for jupyter notebook templates in jupyterlab. Apache-2 19 | - Enterprise Gateway (🥈22 · ⭐ 610 · 📉) - A lightweight, multi-tenant, scalable and secure.. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2024-10-24_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - IPython Kernel (🥇40 · ⭐ 640 · 📈) - IPython Kernel for Jupyter. BSD-3 6 | - JupyterHub (🥇39 · ⭐ 8.1K · 📈) - Multi-user server for Jupyter notebooks. BSD-3 7 | - PixieDust (🥈27 · ⭐ 1K · 💀) - Python Helper library for Jupyter Notebooks. Apache-2 8 | - Rsession Proxy (🥈22 · ⭐ 120 · 📈) - Jupyter extensions for running an RStudio rsession proxy. BSD-3 9 | - SystemdSpawner (🥉22 · ⭐ 92 · 📈) - Spawn JupyterHub single-user notebook servers with systemd. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipyleaflet (🥇32 · ⭐ 1.5K · 📉) - A Jupyter - Leaflet.js bridge. MIT 16 | - elyra (🥇29 · ⭐ 1.8K · 📉) - Elyra extends JupyterLab with an AI centric approach. Apache-2 17 | - mkdocs-jupyter (🥈27 · ⭐ 390 · 📉) - Use Jupyter Notebook in mkdocs. Apache-2 18 | - JupyterLab Google Drive (🥉17 · ⭐ 400 · 💀) - Cloud storage for JupyterLab using Google Drive. BSD-3 19 | 20 | -------------------------------------------------------------------------------- /history/2024-11-07_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - LDAP Authenticator (🥇29 · ⭐ 210 · 📈) - LDAP Authenticator Plugin for Jupyter. BSD-3 6 | - ipyvolume (🥈26 · ⭐ 1.9K · 💀) - 3d plotting for Python in the Jupyter notebook based on IPython.. MIT 7 | - ThebeLab (🥉24 · ⭐ 400 · 📈) - Turn static HTML pages into live documents with Jupyter kernels. BSD-3 8 | - pyforest (🥈23 · ⭐ 1.1K · 📈) - pyforest - feel the bliss of automated imports. MIT 9 | - notedown (🥉23 · ⭐ 850 · 💀) - Markdown = IPython Notebook. BSD-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbconvert (🥇37 · ⭐ 1.7K · 📉) - Jupyter Notebook Conversion. BSD-3 16 | - nikola (🥈30 · ⭐ 2.6K · 📉) - A static website and blog generator. MIT 17 | - RISE (🥈28 · ⭐ 3.7K · 💀) - RISE: Live Reveal.js Jupyter/IPython Slideshow Extension. BSD-3 18 | - Metakernel (🥇25 · ⭐ 350 · 💤) - Jupyter/IPython Kernel Tools. BSD-3 19 | - ipydatagrid (🥉24 · ⭐ 580 · 📉) - Fast Datagrid widget for the Jupyter Notebook and JupyterLab. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2024-11-14_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - sparkmagic (🥇32 · ⭐ 1.3K · 📈) - Jupyter magics and kernels for working with remote Spark.. BSD-3 6 | - ipyparallel (🥈31 · ⭐ 2.6K · 📈) - IPython Parallel: Interactive Parallel Computing in.. ❗Unlicensed 7 | - LFortran (🥇30 · ⭐ 960 · 📈) - Official main repository for LFortran. MIT 8 | - BinderHub (🥉25 · ⭐ 2.6K · 📈) - Run your code in the cloud, with technology so advanced, it.. BSD-3 9 | - ipyvue (🥉23 · ⭐ 68 · 📈) - Jupyter widgets base for Vue libraries. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - JupyterHub (🥇39 · ⭐ 8.1K · 📉) - Multi-user server for Jupyter notebooks. BSD-3 16 | - qtconsole (🥇36 · ⭐ 420 · 📉) - Jupyter Qt Console. BSD-3 17 | - xonsh (🥇35 · ⭐ 8.4K · 📉) - Python-powered shell. Full-featured and cross-platform. ❗️Custom 18 | - Jupyter Themes (🥇28 · ⭐ 9.8K · 💀) - Custom Jupyter Notebook Themes. MIT 19 | - sos (🥈27 · ⭐ 270 · 📉) - SoS workflow system for daily data analysis. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2024-12-05_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbclient (🥇32 · ⭐ 150 · 📈) - A client library for executing notebooks. Formally nbconverts.. BSD-3 6 | - jupyter-server-proxy (🥇29 · ⭐ 350 · 📈) - Jupyter notebook server extension to proxy web.. BSD-3 7 | - docker-python (🥉26 · ⭐ 2.7K · 📈) - Kaggle Python docker image. Apache-2 8 | - itkwidgets (🥈25 · ⭐ 590 · 📈) - An elegant Python interface for visualization on the web.. Apache-2 9 | - JupyterLab Templates (🥈23 · ⭐ 400 · 📈) - Support for jupyter notebook templates in jupyterlab. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - IPython Kernel (🥇36 · ⭐ 650 · 📉) - IPython Kernel for Jupyter. BSD-3 16 | - nbdev (🥈28 · ⭐ 4.9K · 📉) - Create delightful software with Jupyter Notebooks. Apache-2 17 | - nikola (🥈26 · ⭐ 2.6K · 📉) - A static website and blog generator. MIT 18 | - pick (🥈18 · ⭐ 720 · 💀) - Customize your kernels on Launch!. BSD-3 19 | - colabcode (🥉14 · ⭐ 2.1K · 📉) - Run VSCode (codeserver) on Google Colab or Kaggle Notebooks. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2024-12-12_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - IPython Kernel (🥇40 · ⭐ 660 · 📈) - IPython Kernel for Jupyter. BSD-3 6 | - nbdev (🥇33 · ⭐ 5K · 📈) - Create delightful software with Jupyter Notebooks. Apache-2 7 | - nikola (🥈30 · ⭐ 2.6K · 📈) - A static website and blog generator. MIT 8 | - Mapbox GL (🥉24 · ⭐ 670 · 💀) - Use Mapbox GL JS to visualize data in a Python Jupyter notebook. MIT 9 | - pick (🥈22 · ⭐ 720 · 💀) - Customize your kernels on Launch!. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Jupytext (🥇33 · ⭐ 6.7K · 📉) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 16 | - facets-overview (🥈27 · ⭐ 7.4K · 💀) - Visualizations for machine learning datasets. Apache-2 17 | - sos (🥈27 · ⭐ 280 · 📉) - SoS workflow system for daily data analysis. BSD-3 18 | - BatchSpawner (🥈22 · ⭐ 190 · 💤) - Custom Spawner for Jupyterhub to start servers in batch.. BSD-3 19 | - nbstata (🥉15 · ⭐ 29 · 📉) - A Jupyter kernel for Stata built on pystata. ❗️GPL-3.0 20 | 21 | -------------------------------------------------------------------------------- /history/2024-12-19_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - Jupytext (🥇35 · ⭐ 6.7K · 📈) - Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts. MIT 6 | - Perspective (🥇34 · ⭐ 8.7K · 📈) - A data visualization and analytics component, especially.. Apache-2 7 | - nbdime (🥈33 · ⭐ 2.7K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 8 | - jupyter-matplotlib (🥇33 · ⭐ 1.6K · 📈) - Matplotlib Jupyter Integration. BSD-3 9 | - ipydatagrid (🥈26 · ⭐ 590 · 📈) - Fast Datagrid widget for the Jupyter Notebook and JupyterLab. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - pandas-profiling (🥇37 · ⭐ 13K · 📉) - 1 Line of code data quality profiling & exploratory data.. MIT 16 | - ipywidgets (🥇36 · ⭐ 3.2K · 📉) - Interactive Widgets for the Jupyter Notebook. BSD-3 17 | - qtconsole (🥇36 · ⭐ 420 · 📉) - Jupyter Qt Console. BSD-3 18 | - Jupyter Client (🥇34 · ⭐ 400 · 📉) - Jupyter protocol client APIs. BSD-3 19 | - Native Authenticator (🥈22 · ⭐ 73 · 📉) - JupyterHub-native User Authenticator. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2025-01-02_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - nbconvert (🥇39 · ⭐ 1.8K · 📈) - Jupyter Notebook Conversion. BSD-3 6 | - jupyter_server (🥉37 · ⭐ 490 · 📈) - The backendi.e. core services, APIs, and REST endpointsto.. BSD-3 7 | - nikola (🥈31 · ⭐ 2.6K · 📈) - A static website and blog generator. MIT 8 | - bqplot (🥈30 · ⭐ 3.6K · 📈) - Plotting library for IPython/Jupyter notebooks. Apache-2 9 | - clojupyter (🥉18 · ⭐ 840 · 📈) - a Jupyter kernel for Clojure. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - evidently (🥇35 · ⭐ 5.6K · 📉) - Evidently is an open-source ML and LLM observability.. Apache-2 16 | - jupyter-matplotlib (🥇32 · ⭐ 1.6K · 📉) - Matplotlib Jupyter Integration. BSD-3 17 | - watermark (🥈24 · ⭐ 910 · 📉) - An IPython magic extension for printing date and time stamps,.. BSD-3 18 | - ipyvuetify (🥈24 · ⭐ 350 · 📉) - Jupyter widgets based on vuetify UI components. MIT 19 | - SciJava Kernel (🥉14 · ⭐ 180 · 💀) - [RETIRED] Try IJava or BeakerX. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2025-01-23_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - ipywidgets (🥇37 · ⭐ 3.2K · 📈) - Interactive Widgets for the Jupyter Notebook. BSD-3 6 | - Voila (🥈33 · ⭐ 5.5K · 📈) - Voil turns Jupyter notebooks into standalone web applications. BSD-3 7 | - elyra (🥇30 · ⭐ 1.9K · 📈) - Elyra extends JupyterLab with an AI centric approach. Apache-2 8 | - clojupyter (🥈21 · ⭐ 840 · 📈) - a Jupyter kernel for Clojure. MIT 9 | - SAML Authenticator (🥈18 · ⭐ 37 · 📈) - jupyterhub-samlauthenticator. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - IPython Kernel (🥇39 · ⭐ 660 · 📉) - IPython Kernel for Jupyter. BSD-3 16 | - qtconsole (🥇35 · ⭐ 420 · 📉) - Jupyter Qt Console. BSD-3 17 | - nbdev (🥈32 · ⭐ 5K · 📉) - Create delightful software with Jupyter Notebooks. Apache-2 18 | - ipyleaflet (🥈31 · ⭐ 1.5K · 📉) - A Jupyter - Leaflet.js bridge. MIT 19 | - almond (🥈22 · ⭐ 1.6K · 📉) - A Scala kernel for Jupyter. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2025-02-20_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - qtconsole (🥇36 · ⭐ 420 · 📈) - Jupyter Qt Console. BSD-3 6 | - DockerSpawner (🥇29 · ⭐ 510 · 📈) - Spawns JupyterHub single user servers in Docker containers. BSD-3 7 | - .NET Interactive (🥈25 · ⭐ 3K · 📈) - .NET Interactive combines the power of .NET with many other.. MIT 8 | - ipytest (🥉24 · ⭐ 320 · 📈) - Pytest in IPython notebooks. MIT 9 | - jupyverse (🥉21 · ⭐ 260 · 📈) - A Jupyter server based on FastAPI. ❗️BSD-1-Clause 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - nbdev (🥈32 · ⭐ 5K · 📉) - Create delightful software with Jupyter Notebooks. Apache-2 16 | - VSCode Jupyter (🥈31 · ⭐ 1.3K · 📉) - VS Code Jupyter extension. MIT 17 | - elyra (🥇29 · ⭐ 1.9K · 📉) - Elyra extends JupyterLab with an AI centric approach. Apache-2 18 | - sparkmagic (🥇29 · ⭐ 1.3K · 📉) - Jupyter magics and kernels for working with remote Spark.. BSD-3 19 | - responsible-ai-widgets (🥈25 · ⭐ 1.5K · 📉) - Responsible AI Toolbox is a suite of tools providing.. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2025-03-06_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - jupyter-matplotlib (🥇34 · ⭐ 1.6K · 📈) - Matplotlib Jupyter Integration. BSD-3 6 | - nikola (🥈32 · ⭐ 2.6K · 📈) - A static website and blog generator. MIT 7 | - Evcxr (🥇27 · ⭐ 5.8K · 📈) - An evaluation context for Rust, including a Jupyter Kernel. MIT 8 | - jdaviz (🥈27 · ⭐ 150 · 📈) - Interactive data visualization and analysis tools for astronomical.. BSD-3 9 | - JupyterWith (🥉17 · ⭐ 690 · 📈) - Declarative and reproducible Jupyter environments - powered by Nix. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - pandas-profiling (🥇34 · ⭐ 13K · 📉) - 1 Line of code data quality profiling & exploratory data.. MIT 16 | - nbdime (🥈31 · ⭐ 2.7K · 📉) - Tools for diffing and merging of Jupyter notebooks. BSD-3 17 | - ipycanvas (🥉21 · ⭐ 690 · 💀) - Interactive Canvas in Jupyter. BSD-3 18 | - vega (🥉21 · ⭐ 380 · 📉) - IPython/Jupyter notebook module for Vega and Vega-Lite. BSD-3 19 | - jupyterlab-execute-time (🥈19 · ⭐ 380 · 📉) - A JupyterLab extension for displaying cell timings. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2025-03-27_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - pandas-profiling (🥇38 · ⭐ 13K · 📈) - 1 Line of code data quality profiling & exploratory data.. MIT 6 | - xonsh (🥇36 · ⭐ 8.7K · 📈) - Python-powered shell. Full-featured and cross-platform. ❗️Custom 7 | - nbclient (🥇33 · ⭐ 170 · 📈) - A client library for executing notebooks. Formally nbconverts.. BSD-3 8 | - nbdime (🥈32 · ⭐ 2.7K · 📈) - Tools for diffing and merging of Jupyter notebooks. BSD-3 9 | - scrapbook (🥉23 · ⭐ 290 · 💀) - A library for recording and reading data in notebooks. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Variable Inspector (🥈24 · ⭐ 1.1K · 📉) - Variable Inspector extension for Jupyterlab. BSD-3 16 | 17 | -------------------------------------------------------------------------------- /history/2025-04-03_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - xonsh (🥇37 · ⭐ 8.7K · 📈) - Python-powered shell. Full-featured and cross-platform. ❗️Custom 6 | - nbdev (🥇34 · ⭐ 5.1K · 📈) - Create delightful software with Jupyter Notebooks. Apache-2 7 | - vega (🥉22 · ⭐ 380 · 📈) - IPython/Jupyter notebook module for Vega and Vega-Lite. BSD-3 8 | - nbgallery (🥉21 · ⭐ 150 · 📈) - Enterprise Jupyter notebook sharing and collaboration app. MIT 9 | - First Use Authenticator (🥈20 · ⭐ 49 · 📈) - JupyterHub Authenticator that lets users set.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - IPython Kernel (🥇40 · ⭐ 670 · 📉) - IPython Kernel for Jupyter. BSD-3 16 | - JupyterHub (🥇38 · ⭐ 8.3K · 📉) - Multi-user server for Jupyter notebooks. BSD-3 17 | - qtconsole (🥇34 · ⭐ 420 · 📉) - Jupyter Qt Console. BSD-3 18 | - JupyterLab Git (🥇32 · ⭐ 1.5K · 📉) - A Git extension for JupyterLab. BSD-3 19 | - Voila (🥈31 · ⭐ 5.6K · 📉) - Voil turns Jupyter notebooks into standalone web applications. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /latest-changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _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._ 4 | 5 | - JupyterLab LSP (🥇31 · ⭐ 1.9K · 📈) - Coding assistance for JupyterLab (code navigation + hover.. BSD-3 6 | - sparkmagic (🥇30 · ⭐ 1.4K · 📈) - Jupyter magics and kernels for working with remote Spark.. BSD-3 7 | - OAuthenticator (🥇29 · ⭐ 430 · 📈) - OAuth + JupyterHub Authenticator = OAuthenticator. BSD-3 8 | - ipyvuetify (🥈26 · ⭐ 350 · 📈) - Jupyter widgets based on vuetify UI components. MIT 9 | - dask-labextension (🥈22 · ⭐ 320 · 📈) - JupyterLab extension for Dask. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - ipython (🥇47 · ⭐ 16K · 📉) - Official repository for IPython itself. Other repos in the IPython.. BSD-3 16 | - Jupyter Book (🥇33 · ⭐ 4.1K · 📉) - Create beautiful, publication-quality books and documents.. BSD-3 17 | - LFortran (🥇29 · ⭐ 1.1K · 📉) - Official main repository for LFortran. MIT 18 | - Evcxr (🥇27 · ⭐ 6K · 📉) - An evaluation context for Rust, including a Jupyter Kernel. MIT 19 | - almond (🥈22 · ⭐ 1.6K · 📉) - A Scala kernel for Jupyter. BSD-3 20 | 21 | --------------------------------------------------------------------------------