diff --git a/.github/workflows/update-analysis.yaml b/.github/workflows/update-analysis.yaml index a08012a2..ef4578ec 100644 --- a/.github/workflows/update-analysis.yaml +++ b/.github/workflows/update-analysis.yaml @@ -1,7 +1,6 @@ name: update-analysis on: - pull_request: [] schedule: # Weekly on Wednesday (software updated Sunday night) - cron: 0 0 * * 3 diff --git a/1.download.py b/1.download.py index eac5aa95..befa8394 100644 --- a/1.download.py +++ b/1.download.py @@ -22,7 +22,6 @@ import tempfile import shutil import argparse -import re import sys import os @@ -125,7 +124,6 @@ def main(): if os.path.exists(destfile) and reqfile: continue - print(f"{reponame}: {i} of {len(repos)}") dest = clone(repo.url, tempdir) if not dest: @@ -150,7 +148,7 @@ def main(): if os.path.exists(destfile): continue - try: + try: cli = parser.RequirementsParser(filename=found, min_credit=0.001) result = cli.gen(name=repo.uid, min_credit=0.001) except: @@ -196,6 +194,7 @@ def main(): shutil.rmtree(tempdir) write_json(meta, meta_json) utils.write_json(list(missing_requirements), "missing-requirements.json") - + + if __name__ == "__main__": main() diff --git a/2.analysis.py b/2.analysis.py index 16160502..a65c5099 100644 --- a/2.analysis.py +++ b/2.analysis.py @@ -27,6 +27,7 @@ import tempfile import shutil + def clone(url, dest): dest = os.path.join(dest, os.path.basename(url)) cmd = Command("git clone --depth 1 %s %s" % (url, dest)) @@ -135,6 +136,8 @@ def main(): meta = read_json(meta_json) language_json = os.path.join("docs", "language-counts.json") + # Collect list of data files + data_files = [] count = 0 for i, reponame in enumerate(repos): repo = pedia.get(reponame[0]) @@ -143,55 +146,12 @@ def main(): destfile = os.path.join(destdir, "data.json") if not os.path.exists(destfile): continue - print(f"{reponame}: {i} of {len(repos)}") + data_files.append(destfile) count += 1 - # Find the metadata file in the repo - found = None - for filename in recursive_find(destdir, pattern="*"): - basename = os.path.basename(filename) - if basename in packages.filesystem_manager_names: - found = filename - break - - # This should not happen - if not found: - tempdir = tempfile.mkdtemp() - dest = clone(repo.url, tempdir) - for filename in recursive_find(tempdir, pattern="*"): - basename = os.path.basename(filename) - if basename in packages.filesystem_manager_names: - found = filename - break - - if not found: - print('WARNING %s not found!' % repo.uid) - continue - - # copy found file into folder - reqfile = os.path.join(destdir, os.path.basename(found)) - shutil.copyfile(found, reqfile) - shutil.rmtree(dest) - - if not found: - print('WARNING %s not found!' % repo.uid) - continue - - try: - global_cli.gen(repo.uid, filename=found, min_credit=0.001) - except: - continue - - write_json(meta, meta_json) - - # Write language counts - counts = {} - for repo, language in meta["language"].items(): - if language not in counts: - counts[language] = 0 - counts[language] += 1 - write_json(counts, language_json) + # This is how to render the custom (loaded) data + roots = global_cli.load_datafiles(data_files) # Write results, changing round to include most global_cli.round_by = 100 @@ -201,25 +161,33 @@ def main(): "RSEPedia Top Dependencies", "dependencies", ) - + global_cli.render(start_end_blocks=False) + + global_cli.render(start_end_blocks=False, data=roots) ) + write_json(meta, meta_json) + + # Write language counts + counts = {} + for repo, language in meta["language"].items(): + if language not in counts: + counts[language] = 0 + counts[language] += 1 + write_json(counts, language_json) # Replace for jekyll site write_file( - os.path.join("docs", "all-repos.md"), global_cli.render(start_end_blocks=False) + os.path.join("docs", "all-repos.md"), + global_cli.render(start_end_blocks=False, data=roots), ) write_file(os.path.join("pages", "dependencies.md"), content) # Get stats for different languages # 'setup.py', 'package.json', 'npm', 'DESCRIPTION', 'cran', 'pypi', 'go.mod', 'go', 'requirements.txt']) python_deps = len( - set(global_cli.data["pypi"]) - .union(global_cli.data["requirements.txt"]) - .union(global_cli.data["pypi"]) + set(roots["pypi"]).union(roots["requirements.txt"]).union(roots["pypi"]) ) - r_deps = len(set(global_cli.data["DESCRIPTION"]).union(global_cli.data["cran"])) - js_deps = len(set(global_cli.data["npm"]).union(global_cli.data["package.json"])) - go_deps = len(set(global_cli.data["go"]).union(global_cli.data["go.mod"])) + r_deps = len(set(roots["DESCRIPTION"]).union(roots["cran"])) + js_deps = len(set(roots["npm"]).union(roots["package.json"])) + go_deps = len(set(roots["go"]).union(roots["go.mod"])) stats = { "python_deps": python_deps, @@ -233,14 +201,12 @@ def main(): write_json(counts, os.path.join("_data", "language_counts.json")) # Prepare scoped tables to languages - custom_cli = copy.deepcopy(global_cli) - # Keep count of repos / deps files for each repos_counts = {} # Python - custom_cli.data = custom_cli.prepare_custom_table( - ["setup.py", "requirements.txt", "pypi"] + data = global_cli.load_datafiles( + data_files, includes=["setup.py", "requirements.txt", "pypi"] ) content = ( header @@ -248,34 +214,34 @@ def main(): "RSEPedia Top Python Dependencies", "python", ) - + custom_cli.render(start_end_blocks=False) + + global_cli.render(start_end_blocks=False, data=data) ) write_file(os.path.join("pages", "python.md"), content) - repos_counts["Python"] = count_repos(custom_cli.data) + repos_counts["Python"] = count_repos(data) # R - custom_cli.data = custom_cli.prepare_custom_table(["cran", "DESCRIPTION"]) - content = header % ("RSEPedia Top R Dependencies", "R") + custom_cli.render( - start_end_blocks=False + data = global_cli.load_datafiles(data_files, includes=["cran", "DESCRIPTION"]) + content = header % ("RSEPedia Top R Dependencies", "R") + global_cli.render( + start_end_blocks=False, data=data ) write_file(os.path.join("pages", "r.md"), content) - repos_counts["R"] = count_repos(custom_cli.data) + repos_counts["R"] = count_repos(data) # Javascript - custom_cli.data = custom_cli.prepare_custom_table(["package.json", "npm"]) - content = header % ("RSEPedia Top Js Dependencies", "js") + custom_cli.render( - start_end_blocks=False + data = global_cli.load_datafiles(data_files, includes=["package.json", "npm"]) + content = header % ("RSEPedia Top Js Dependencies", "js") + global_cli.render( + start_end_blocks=False, data=data ) write_file(os.path.join("pages", "js.md"), content) - repos_counts["Js"] = count_repos(custom_cli.data) + repos_counts["Js"] = count_repos(data) # Go - custom_cli.data = custom_cli.prepare_custom_table(["go.mod", "go"]) - content = header % ("RSEPedia Top Go Dependencies", "go") + custom_cli.render( - start_end_blocks=False - ) + data = global_cli.load_datafiles(data_files, includes=["go.mod", "go"]) + content = header % ("RSEPedia Top Go Dependencies", "go") + global_cli.render( + start_end_blocks=False, data=data + ) write_file(os.path.join("pages", "go.md"), content) - repos_counts["Go"] = count_repos(custom_cli.data) + repos_counts["Go"] = count_repos(data) # Emoji are problematic for jekyll data for repo, desc in meta["description"].items(): diff --git a/3.parse_one.py b/3.parse_one.py index 9a478667..fe1550e5 100644 --- a/3.parse_one.py +++ b/3.parse_one.py @@ -9,11 +9,7 @@ from rse.main import Encyclopedia from rse.utils.command import Command -from rse.utils.file import ( - recursive_find, - write_json, - read_json, -) +from rse.utils.file import recursive_find import citelang.utils as utils import citelang.main.parser as parser @@ -22,7 +18,6 @@ import tempfile import shutil import argparse -import re import sys import os @@ -112,7 +107,7 @@ def main(): # copy found file into folder shutil.copyfile(found, reqfile) - try: + try: cli = parser.RequirementsParser(filename=found, min_credit=0.001) result = cli.gen(name=repo.uid, min_credit=0.001) except: @@ -143,6 +138,7 @@ def main(): if os.path.exists(destdir) and len(os.listdir(destdir)) == 0: shutil.rmtree(destdir) shutil.rmtree(tempdir) - + + if __name__ == "__main__": main() diff --git a/4.redo_language.py b/4.redo_language.py new file mode 100644 index 00000000..71699d48 --- /dev/null +++ b/4.redo_language.py @@ -0,0 +1,164 @@ +#!/usr/bin/env python + +# This is a basic parsing script that will generate output files +# organized / named by repo, along with a "super credit" summary of all repos. + +__author__ = "Vanessa Sochat" +__copyright__ = "Copyright 2022, Vanessa Sochat" +__license__ = "MPL 2.0" + +from rse.main import Encyclopedia +from rse.utils.command import Command +from rse.utils.file import recursive_find + +import citelang.utils as utils +import citelang.main.parser as parser +import citelang.main.packages as packages + +import tempfile +import shutil +import argparse +import sys +import os + + +def clone(url, dest): + dest = os.path.join(dest, os.path.basename(url)) + cmd = Command("git clone --depth 1 %s %s" % (url, dest)) + cmd.execute() + if cmd.returncode != 0: + print("Issue cloning %s" % url) + return + return dest + + +def get_parser(): + parser = argparse.ArgumentParser( + description="Research Software Encyclopedia Analyzer", + formatter_class=argparse.RawTextHelpFormatter, + ) + + parser.add_argument( + "--settings-file", + dest="settings_file", + help="custom path to settings file.", + ) + + parser.add_argument( + "--language-file", + dest="language_files", + action="append", + help="Language requirements file basename to re-parse.", + choices=[ + "DESCRIPTION", + "requirements.txt", + "setup.py", + "go.mod", + "package.json", + ], + ) + + parser.add_argument( + "-o", + "--outdir", + help="Output directory for data.", + default=os.path.join(os.getcwd(), "_repos"), + ) + return parser + + +repo_header = """--- +title: %s +layout: repo +tipue_search_active: true +exclude_from_search: true +--- +""" + + +def main(): + + p = get_parser() + args, extra = p.parse_known_args() + + # Create a base temporary folder to work from + tempdir = tempfile.mkdtemp() + + # Make sure output directory exists + outdir = os.path.abspath(args.outdir) + if not os.path.exists(outdir): + sys.exit("%s does not exist!" % args.outdir) + + # Create a base temporary folder to work from + tempdir = tempfile.mkdtemp() + + pedia = Encyclopedia(args.settings_file) + repos = list(pedia.list()) + for i, reponame in enumerate(repos): + + repo = pedia.get(reponame[0]) + destdir = os.path.join(outdir, repo.uid) + if not os.path.exists(destdir): + continue + + destfile = os.path.join(destdir, "data.json") + found = False + for lang_file in args.language_files: + reqfile = os.path.join(destdir, lang_file) + if os.path.exists(reqfile): + found = True + break + + if not found: + continue + + # Re-clone, because we need reqs files in context of their code! + dest = clone(repo.url, tempdir) + if not dest: + continue + + # By here we've already filtered to requirements files + found = None + for filename in recursive_find(dest, pattern="*"): + basename = os.path.basename(filename) + if basename in packages.filesystem_manager_names: + found = filename + break + + if not found: + continue + + reqfile = os.path.join(destdir, os.path.basename(found)) + + # copy updated found file into folder + shutil.copyfile(found, reqfile) + + # Files that are weirdly binaries are going to error here + try: + cli = parser.RequirementsParser(filename=found, min_credit=0.001) + result = cli.gen(name=repo.uid, min_credit=0.001) + except UnicodeDecodeError: + print("Issue parsing %s because of unicode, skipping." % repo.uid) + continue + + continue + utils.write_json(cli.data, destfile) + destfile = os.path.join(destdir, "README.md") + utils.write_file( + repo_header % repo.uid + result.render(start_end_blocks=False), destfile + ) + + # use the root to derive a badge (this is how done internally) + destfile = os.path.join(destdir, "badge.png") + os.system( + "citelang badge %s %s --min-credit 0.001 --outfile %s --force" + % (repo.uid, found, destfile) + ) + shutil.rmtree(dest) + + # Clean up + shutil.rmtree(tempdir) + + +if __name__ == "__main__": + main() diff --git a/README.md b/README.md index a94d0353..a9b6ece5 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ $ python 2.analysis.py --settings-file ../software/rse.ini -o ./_repos For all repos we generate high level metadata and a summary of all dependencies. -### 3 Parse One +### 3 Parse One / Redo If you need to update one parsing (e.g., look for new deps, etc.): @@ -100,6 +100,24 @@ If you need to update one parsing (e.g., look for new deps, etc.): $ python 3.parse_one.py --settings-file ../software/rse.ini -o ./_repos github/sylabs/singularity ``` +Or to re-run for an entire language (or more than one). Below we would re-parse python repos: + +```bash +$ python 4.redo_language.py --settings-file ../software/rse.ini -o ./_repos --language-file setup.py --language-file requirements.txt +``` + +Or for just repos with package.json files: + +```bash +$ python 4.redo_language.py --settings-file ../software/rse.ini -o ./_repos --language-file package.json +``` + +And then you might update the summary data, etc. + +```bash +$ python 2.analysis.py --settings-file ../software/rse.ini -o ./_repos +``` + ## Diary I first did steps 1-3 (download through vectors) just using markdown files. The result looked like lips - diff --git a/_data/language_counts.json b/_data/language_counts.json index 745343bd..cd8b0687 100644 --- a/_data/language_counts.json +++ b/_data/language_counts.json @@ -1,17 +1,17 @@ { "unknown": 34, - "Python": 511, + "Python": 505, "Jupyter Notebook": 90, "Modelica": 1, "Shell": 15, - "HTML": 40, + "HTML": 39, "Perl": 9, - "R": 464, - "C++": 123, + "R": 461, + "C++": 120, "Java": 44, "C": 40, "Rust": 5, - "JavaScript": 50, + "JavaScript": 49, "AMPL": 1, "MATLAB": 20, "Haskell": 1, @@ -30,7 +30,7 @@ "Pascal": 1, "TSQL": 2, "Kotlin": 2, - "Go": 5, + "Go": 4, "PostScript": 2, "Nextflow": 5, "CSS": 1, diff --git a/_data/repos.json b/_data/repos.json index 68f35cf0..84c43096 100644 --- a/_data/repos.json +++ b/_data/repos.json @@ -7575,67 +7575,7 @@ "microbiology", "whole-genome-sequencing" ], - "github/gromacs/gromacs": [], - "github/ECP-copa/Cabana": [ - "particles", - "exascale-computing", - "exascale", - "kokkos", - "co-design" - ], - "github/theosanderson/chronumental": [ - "phylogenetics", - "timetree", - "jax", - "numpyro" - ], - "github/mishioo/tesliper": [ - "python", - "chemistry", - "spectroscopy", - "chemical-computing", - "optical-spectroscopy", - "spectral-simulations", - "gaussian", - "workflow-automation", - "batch-processing" - ], - "github/OSS-Lab/ChemChaste": [], - "github/ModellingWebLab/chaste-codegen": [], - "github/SWIFTSIM/emulator": [], - "github/datngu/Circall": [], - "github/sylabs/singularity": [ - "containers", - "hpc", - "linux" - ], - "github/aalhossary/pyemgpipeline": [], - "github/cinemascience/cinema_snap": [], - "github/leishenggit/CircleBase": [ - "eccdna", - "function-regulation", - "pagerank" - ], - "github/spokenlanguage/platalea": [ - "visually-grounded-speech", - "multi-tasking", - "spoken-language-understanding", - "deep-neural-networks", - "speech-processing", - "weakly-supervised-learning", - "multimodal-learning", - "pytorch", - "flickr8k", - "spokencoco" - ], - "github/laurazara/IgIDivA": [], - "github/lasseignelab/CINmetrics": [], - "github/chainsawriot/sweater": [ - "r", - "wordembedding", - "bias-detection", - "textanalysis" - ] + "github/gromacs/gromacs": [] }, "language": { "gitlab/chiemotono/mdcontactcom": "unknown", @@ -9208,22 +9148,7 @@ "github/BU-ISCIII/taranis": "Python", "github/BU-ISCIII/iSkyLIMS": "JavaScript", "github/BU-ISCIII/plasmidID": "Shell", - "github/gromacs/gromacs": "C++", - "github/ECP-copa/Cabana": "C++", - "github/theosanderson/chronumental": "Python", - "github/mishioo/tesliper": "Python", - "github/OSS-Lab/ChemChaste": "C++", - "github/ModellingWebLab/chaste-codegen": "Python", - "github/SWIFTSIM/emulator": "Python", - "github/datngu/Circall": "C++", - "github/sylabs/singularity": "Go", - "github/aalhossary/pyemgpipeline": "Python", - "github/cinemascience/cinema_snap": "JavaScript", - "github/leishenggit/CircleBase": "HTML", - "github/spokenlanguage/platalea": "Python", - "github/laurazara/IgIDivA": "R", - "github/lasseignelab/CINmetrics": "R", - "github/chainsawriot/sweater": "R" + "github/gromacs/gromacs": "C++" }, "url": { "gitlab/chiemotono/mdcontactcom": "https://gitlab.com/chiemotono/mdcontactcom", @@ -10796,22 +10721,7 @@ "github/BU-ISCIII/taranis": "https://github.com/BU-ISCIII/taranis", "github/BU-ISCIII/iSkyLIMS": "https://github.com/BU-ISCIII/iSkyLIMS", "github/BU-ISCIII/plasmidID": "https://github.com/BU-ISCIII/plasmidID", - "github/gromacs/gromacs": "https://github.com/gromacs/gromacs", - "github/ECP-copa/Cabana": "https://github.com/ECP-copa/Cabana", - "github/theosanderson/chronumental": "https://github.com/theosanderson/chronumental", - "github/mishioo/tesliper": "https://github.com/mishioo/tesliper", - "github/OSS-Lab/ChemChaste": "https://github.com/OSS-Lab/ChemChaste", - "github/ModellingWebLab/chaste-codegen": "https://github.com/ModellingWebLab/chaste-codegen", - "github/SWIFTSIM/emulator": "https://github.com/SWIFTSIM/emulator", - "github/datngu/Circall": "https://github.com/datngu/Circall", - "github/sylabs/singularity": "https://github.com/sylabs/singularity", - "github/aalhossary/pyemgpipeline": "https://github.com/aalhossary/pyemgpipeline", - "github/cinemascience/cinema_snap": "https://github.com/cinemascience/cinema_snap", - "github/leishenggit/CircleBase": "https://github.com/leishenggit/CircleBase", - "github/spokenlanguage/platalea": "https://github.com/spokenlanguage/platalea", - "github/laurazara/IgIDivA": "https://github.com/laurazara/IgIDivA", - "github/lasseignelab/CINmetrics": "https://github.com/lasseignelab/CINmetrics", - "github/chainsawriot/sweater": "https://github.com/chainsawriot/sweater" + "github/gromacs/gromacs": "https://github.com/gromacs/gromacs" }, "description": { "gitlab/chiemotono/mdcontactcom": "", @@ -12384,21 +12294,6 @@ "github/BU-ISCIII/taranis": "cg/wgMLST allele calling software, schema evaluation and allele distance estimation for outbreak reserch.", "github/BU-ISCIII/iSkyLIMS": "is an open-source LIMS (laboratory Information Management System) for Next Generation Sequencing sample management, statistics and reports, and bioinformatics analysis service management.", "github/BU-ISCIII/plasmidID": "PlasmidID is a mapping-based, assembly-assisted plasmid identification tool that analyzes and gives graphic solution for plasmid identification.", - "github/gromacs/gromacs": "Public/backup repository of the GROMACS molecular simulation toolkit. Please do not mine the metadata blindly; we use https://gitlab.com/gromacs/gromacs for code review and issue tracking.", - "github/ECP-copa/Cabana": "Performance-portable library for particle-based simulations", - "github/theosanderson/chronumental": "Estimating time trees from very large phylogenies", - "github/mishioo/tesliper": "Theoretical Spectroscopist's Little Helper", - "github/OSS-Lab/ChemChaste": null, - "github/ModellingWebLab/chaste-codegen": "Code generation for Chaste based on cellmlmanip", - "github/SWIFTSIM/emulator": "The SWIFT simulation cosmological emulator (swift-emulator)", - "github/datngu/Circall": "Circall is a novel method to discover circular RNA from paired-end RNA sequencing data", - "github/sylabs/singularity": "SingularityCE is the Community Edition of Singularity, an open source container platform designed to be simple, fast, and secure.", - "github/aalhossary/pyemgpipeline": null, - "github/cinemascience/cinema_snap": "React-based web viewer", - "github/leishenggit/CircleBase": "An integrated resource and analysis platform for human eccDNAs", - "github/spokenlanguage/platalea": "Library for training visually-grounded models of spoken language understanding.", - "github/laurazara/IgIDivA": null, - "github/lasseignelab/CINmetrics": "CINmetrics R package", - "github/chainsawriot/sweater": " Speedy Word Embedding Association Test & Extras using R" + "github/gromacs/gromacs": "Public/backup repository of the GROMACS molecular simulation toolkit. Please do not mine the metadata blindly; we use https://gitlab.com/gromacs/gromacs for code review and issue tracking." } } \ No newline at end of file diff --git a/_data/repos_counts_languages.json b/_data/repos_counts_languages.json index e281b8bd..0eb4966c 100644 --- a/_data/repos_counts_languages.json +++ b/_data/repos_counts_languages.json @@ -1,6 +1,6 @@ { - "Python": 2079, + "Python": 2345, "R": 1819, - "Js": 837, + "Js": 1000, "Go": 122 } \ No newline at end of file diff --git a/_data/stats.json b/_data/stats.json index 375b4520..d3df4da6 100644 --- a/_data/stats.json +++ b/_data/stats.json @@ -1,8 +1,8 @@ { - "python_deps": 1809, + "python_deps": 2071, "r_deps": 1819, - "js_deps": 837, + "js_deps": 1000, "go_deps": 122, "total_repos": 1585, - "total_parsed": 910 + "total_parsed": 913 } \ No newline at end of file diff --git a/_repos/github/0xCoto/Virgo/README.md b/_repos/github/0xCoto/Virgo/README.md index 6cc70e47..148059e7 100644 --- a/_repos/github/0xCoto/Virgo/README.md +++ b/_repos/github/0xCoto/Virgo/README.md @@ -8,47 +8,73 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.339| -|pypi|[matplotlib](https://matplotlib.org)|0.339| -|pypi|[pytest](https://pypi.org/project/pytest)|0.011| +|pypi|[matplotlib](https://matplotlib.org)|0.179| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.127| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[numpy](https://www.numpy.org)|0.076| +|pypi|[pytest](https://pypi.org/project/pytest)|0.043| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.035| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.035| +|pypi|[scipy](https://pypi.org/project/scipy)|0.014| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[packaging](https://pypi.org/project/packaging)|0.012| |setup.py|github/0xCoto/Virgo|0.01| -|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.009| -|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.009| -|pypi|[pytest-astropy](https://github.com/astropy/pytest-astropy)|0.009| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.009| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.009| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.009| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.009| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.009| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.009| -|pypi|[ipython](https://pypi.org/project/ipython)|0.009| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.009| -|pypi|[asdf](https://pypi.org/project/asdf)|0.009| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.009| -|pypi|[jplephem](https://pypi.org/project/jplephem)|0.009| -|pypi|[pytz](https://pypi.org/project/pytz)|0.009| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.009| -|pypi|[pandas](https://pypi.org/project/pandas)|0.009| -|pypi|[bleach](https://pypi.org/project/bleach)|0.009| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.009| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.009| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.009| -|pypi|[h5py](https://pypi.org/project/h5py)|0.009| -|pypi|[dask](https://pypi.org/project/dask)|0.009| -|pypi|[certifi](https://pypi.org/project/certifi)|0.009| -|pypi|[scipy](https://pypi.org/project/scipy)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.009| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.009| -|pypi|[astropy](http://astropy.org)|0.003| -|pypi|[filelock](https://pypi.org/project/filelock)|0.002| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| -|pypi|[psutil](https://pypi.org/project/psutil)|0.002| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.002| -|pypi|[execnet](https://pypi.org/project/execnet)|0.002| +|pypi|[xattr](https://pypi.org/project/xattr)|0.009| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.009| +|pypi|[munkres](https://pypi.org/project/munkres)|0.009| +|pypi|[brotli](https://pypi.org/project/brotli)|0.009| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.009| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.009| +|pypi|[sympy](https://pypi.org/project/sympy)|0.009| +|pypi|[lz4](https://pypi.org/project/lz4)|0.009| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.009| +|pypi|[lxml](https://pypi.org/project/lxml)|0.009| +|pypi|[fs](https://pypi.org/project/fs)|0.009| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.009| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.008| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.006| +|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.005| +|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.005| +|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.005| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.005| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.005| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.005| +|pypi|[ipython](https://pypi.org/project/ipython)|0.005| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.005| +|pypi|[asdf](https://pypi.org/project/asdf)|0.005| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.005| +|pypi|[jplephem](https://pypi.org/project/jplephem)|0.005| +|pypi|[pytz](https://pypi.org/project/pytz)|0.005| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.005| +|pypi|[pandas](https://pypi.org/project/pandas)|0.005| +|pypi|[bleach](https://pypi.org/project/bleach)|0.005| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.005| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.005| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.005| +|pypi|[h5py](https://pypi.org/project/h5py)|0.005| +|pypi|[dask](https://pypi.org/project/dask)|0.005| +|pypi|[certifi](https://pypi.org/project/certifi)|0.005| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.005| +|pypi|[tomli](https://pypi.org/project/tomli)|0.003| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.003| +|pypi|[astropy](http://astropy.org)|0.002| +|pypi|[astro-virgo](https://github.com/0xCoto/Virgo)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[objgraph](https://mg.pov.lt/objgraph/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/0xCoto/Virgo/badge.png b/_repos/github/0xCoto/Virgo/badge.png index 3508c82e..7a3ddcd2 100644 Binary files a/_repos/github/0xCoto/Virgo/badge.png and b/_repos/github/0xCoto/Virgo/badge.png differ diff --git a/_repos/github/0xCoto/Virgo/data.json b/_repos/github/0xCoto/Virgo/data.json index 7aab66e9..862bc6e4 100644 --- a/_repos/github/0xCoto/Virgo/data.json +++ b/_repos/github/0xCoto/Virgo/data.json @@ -6,177 +6,269 @@ } }, "pypi": { - "numpy": { - "credit": 0.33933428571428575, - "url": "https://www.numpy.org" + "astro-virgo": { + "credit": 0.0012375000000000025, + "url": "https://github.com/0xCoto/Virgo" + }, + "astropy": { + "credit": 0.001645875000000005, + "url": "http://astropy.org" }, "matplotlib": { - "credit": 0.33933428571428575, + "credit": 0.1786670134615385, "url": "https://matplotlib.org" }, - "astropy": { - "credit": 0.003300000000000025, - "url": "http://astropy.org" + "cycler": { + "credit": 0.12375, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0012375000000000025, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0012375000000000025, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" + }, + "pyerfa": { + "credit": 0.0058929750000000026, + "url": "https://github.com/liberfa/pyerfa" + }, + "numpy": { + "credit": 0.0761211, + "url": "https://www.numpy.org" }, "sgp4": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://github.com/brandon-rhodes/python-sgp4" }, "skyfield": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "http://github.com/brandon-rhodes/python-skyfield/" }, "coverage": { - "credit": 9.334285714285642e-05, + "credit": 0.008847152678571429, "url": "https://github.com/nedbat/coveragepy" }, "objgraph": { - "credit": 9.334285714285642e-05, + "credit": 0.0011901214285714287, "url": "https://mg.pov.lt/objgraph/" }, "pytest-xdist": { - "credit": 9.334285714285642e-05, + "credit": 0.004655475, "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest-astropy": { - "credit": 0.009334285714285713, - "url": "https://github.com/astropy/pytest-astropy" + "credit": 0.004655475, + "url": "https://pypi.org/project/pytest-astropy" }, "pytest-astropy-header": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/pytest-astropy-header" }, "pytest-doctestplus": { - "credit": 0.009334285714285713, + "credit": 0.0352836, "url": "https://pypi.org/project/pytest-doctestplus" }, "Jinja2": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/Jinja2" }, "sphinx-changelog": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/sphinx-changelog" }, "sphinx-astropy": { - "credit": 0.009334285714285713, + "credit": 0.0352836, "url": "https://pypi.org/project/sphinx-astropy" }, "sphinx": { - "credit": 0.009334285714285713, + "credit": 0.01231250625, "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.009334285714285713, + "credit": 0.12716797500000002, "url": "https://pypi.org/project/typing-extensions" }, "pytest": { - "credit": 0.010874442857142856, + "credit": 0.04294063125, "url": "https://pypi.org/project/pytest" }, "ipython": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/ipython" }, "bottleneck": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/bottleneck" }, "asdf": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/asdf" }, "mpmath": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/mpmath" }, "jplephem": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/jplephem" }, "pytz": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/pytz" }, "sortedcontainers": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/sortedcontainers" }, "pandas": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/pandas" }, "bleach": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/bleach" }, "html5lib": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/html5lib" }, "beautifulsoup4": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/beautifulsoup4" }, "pyarrow": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/pyarrow" }, "h5py": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/h5py" }, "dask": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/dask" }, "certifi": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/certifi" }, "scipy": { - "credit": 0.009334285714285713, + "credit": 0.014079513461538462, "url": "https://pypi.org/project/scipy" }, "packaging": { - "credit": 0.009334285714285713, + "credit": 0.01231250625, "url": "https://pypi.org/project/packaging" }, "PyYAML": { - "credit": 0.009334285714285713, + "credit": 0.004655475, "url": "https://pypi.org/project/PyYAML" }, - "pyerfa": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/pyerfa" + "xattr": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/xattr" }, - "tomli": { - "credit": 0.009240942857142857, - "url": "https://pypi.org/project/tomli" + "unicodedata2": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/unicodedata2" }, - "graphviz": { - "credit": 0.009240942857142857, - "url": "https://pypi.org/project/graphviz" + "munkres": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/brotli" }, - "filelock": { - "credit": 0.001540157142857143, - "url": "https://pypi.org/project/filelock" + "brotlicffi": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/brotlicffi" }, - "setproctitle": { - "credit": 0.001540157142857143, - "url": "https://pypi.org/project/setproctitle" + "skia-pathops": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/skia-pathops" }, - "psutil": { - "credit": 0.001540157142857143, - "url": "https://pypi.org/project/psutil" + "sympy": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/sympy" }, - "pytest-forked": { - "credit": 0.001540157142857143, - "url": "https://pypi.org/project/pytest-forked" + "lz4": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/lz4" }, - "execnet": { - "credit": 0.001540157142857143, - "url": "https://pypi.org/project/execnet" + "zopfli": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pytest-cov" + }, + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" + }, + "tomli": { + "credit": 0.003465353571428571, + "url": "https://pypi.org/project/tomli" + }, + "graphviz": { + "credit": 0.003465353571428571, + "url": "https://pypi.org/project/graphviz" } } } \ No newline at end of file diff --git a/_repos/github/21cmFAST/21cmFAST/README.md b/_repos/github/21cmFAST/21cmFAST/README.md index 018bdffc..65177768 100644 --- a/_repos/github/21cmFAST/21cmFAST/README.md +++ b/_repos/github/21cmFAST/21cmFAST/README.md @@ -8,31 +8,55 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.167| -|pypi|[pycparser](https://github.com/eliben/pycparser)|0.163| -|pypi|[h5py](http://www.h5py.org)|0.085| -|pypi|[matplotlib](https://matplotlib.org)|0.085| -|pypi|[pyyaml](https://pyyaml.org/)|0.083| -|pypi|[cached_property](https://github.com/pydanny/cached-property)|0.083| -|pypi|[bidict](https://bidict.readthedocs.io)|0.083| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.083| -|pypi|[colorama](https://github.com/tartley/colorama)|0.041| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.152| +|pypi|[matplotlib](https://matplotlib.org)|0.084| +|pypi|[h5py](http://www.h5py.org)|0.078| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.078| +|pypi|[21cmFAST](https://github.com/21cmFAST/21cmFAST)|0.076| +|pypi|[bidict](https://bidict.readthedocs.io)|0.076| +|pypi|[cached-property](https://github.com/pydanny/cached-property)|0.076| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.076| +|pypi|[pytest](https://pypi.org/project/pytest)|0.026| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.021| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.021| +|pypi|[numpy](https://pypi.org/project/numpy)|0.021| |setup.py|github/21cmFAST/21cmFAST|0.01| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| -|pypi|[pytest](https://pypi.org/project/pytest)|0.005| -|pypi|[ipython](https://pypi.org/project/ipython)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[scipy](https://www.scipy.org)|0.003| +|pypi|[scipy](https://pypi.org/project/scipy)|0.008| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[lxml](https://pypi.org/project/lxml)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.003| |pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.002| |pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.002| |pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.002| |pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.002| |pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.002| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.002| |pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.002| |pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.002| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| |pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.002| |pypi|[asdf](https://pypi.org/project/asdf)|0.002| |pypi|[mpmath](https://pypi.org/project/mpmath)|0.002| @@ -47,25 +71,13 @@ exclude_from_search: true |pypi|[dask](https://pypi.org/project/dask)|0.002| |pypi|[certifi](https://pypi.org/project/certifi)|0.002| |pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.002| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.002| |pypi|[tomli](https://pypi.org/project/tomli)|0.002| |pypi|[graphviz](https://pypi.org/project/graphviz)|0.002| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.002| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.002| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.002| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.002| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.002| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.002| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| -|pypi|[zipp](https://pypi.org/project/zipp)|0.002| -|pypi|[cffi](http://cffi.readthedocs.org)|0.002| -|pypi|[click](https://palletsprojects.com/p/click/)|0.001| |pypi|[astropy](http://astropy.org)|0.001| +|pypi|[cffi](http://cffi.readthedocs.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/21cmFAST/21cmFAST/badge.png b/_repos/github/21cmFAST/21cmFAST/badge.png index d311dc37..f4a288fa 100644 Binary files a/_repos/github/21cmFAST/21cmFAST/badge.png and b/_repos/github/21cmFAST/21cmFAST/badge.png differ diff --git a/_repos/github/21cmFAST/21cmFAST/data.json b/_repos/github/21cmFAST/21cmFAST/data.json index f6fd5955..cd61a412 100644 --- a/_repos/github/21cmFAST/21cmFAST/data.json +++ b/_repos/github/21cmFAST/21cmFAST/data.json @@ -6,244 +6,284 @@ } }, "pypi": { - "click": { - "credit": 0.0008250000000000063, - "url": "https://palletsprojects.com/p/click/" + "21cmFAST": { + "credit": 0.07615384615384616, + "url": "https://github.com/21cmFAST/21cmFAST" }, - "numpy": { - "credit": 0.16650857142857145, - "url": "https://www.numpy.org" - }, - "pyyaml": { - "credit": 0.0825, - "url": "https://pyyaml.org/" + "astropy": { + "credit": 0.0007615384615384663, + "url": "http://astropy.org" }, "cffi": { - "credit": 0.0016500000000000126, + "credit": 0.0007615384615384663, "url": "http://cffi.readthedocs.org" }, - "scipy": { - "credit": 0.0031585714285714346, - "url": "https://www.scipy.org" - }, - "astropy": { - "credit": 0.0008250000000000063, - "url": "http://astropy.org" - }, "h5py": { - "credit": 0.08483357142857144, + "credit": 0.07830791208791209, "url": "http://www.h5py.org" }, - "cached_property": { - "credit": 0.0825, + "bidict": { + "credit": 0.07615384615384616, + "url": "https://bidict.readthedocs.io" + }, + "cached-property": { + "credit": 0.07615384615384616, "url": "https://github.com/pydanny/cached-property" }, "matplotlib": { - "credit": 0.08483357142857144, + "credit": 0.08410732037193576, "url": "https://matplotlib.org" }, - "bidict": { - "credit": 0.0825, - "url": "https://bidict.readthedocs.io" + "cycler": { + "credit": 0.07615384615384616, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0007615384615384663, + "url": "http://github.com/fonttools/fonttools" }, - "setuptools_scm": { - "credit": 0.0825, - "url": "https://github.com/pypa/setuptools_scm/" + "kiwisolver": { + "credit": 0.0007615384615384663, + "url": "https://github.com/nucleic/kiwi" }, - "importlib-metadata": { - "credit": 0.0004083750000000025, - "url": "https://github.com/python/importlib_metadata" + "pillow": { + "credit": 0.0007615384615384663, + "url": "https://python-pillow.org" }, - "colorama": { - "credit": 0.0408375, - "url": "https://github.com/tartley/colorama" + "pyerfa": { + "credit": 0.0029156043956044004, + "url": "https://github.com/liberfa/pyerfa" }, "pycparser": { - "credit": 0.16335, + "credit": 0.15154615384615383, "url": "https://github.com/eliben/pycparser" }, "sgp4": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://github.com/brandon-rhodes/python-sgp4" }, "skyfield": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "http://github.com/brandon-rhodes/python-skyfield/" }, "coverage": { - "credit": 2.3335714285714106e-05, + "credit": 0.00473355989010989, "url": "https://github.com/nedbat/coveragepy" }, "objgraph": { - "credit": 2.3335714285714106e-05, + "credit": 2.154065934065934e-05, "url": "https://mg.pov.lt/objgraph/" }, "pytest-xdist": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest-astropy": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/pytest-astropy" }, "pytest-astropy-header": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/pytest-astropy-header" }, "pytest-doctestplus": { - "credit": 0.0023335714285714283, + "credit": 0.021002142857142858, "url": "https://pypi.org/project/pytest-doctestplus" }, "Jinja2": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/Jinja2" }, "sphinx-changelog": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/sphinx-changelog" }, "sphinx-astropy": { - "credit": 0.0023335714285714283, + "credit": 0.021002142857142858, "url": "https://pypi.org/project/sphinx-astropy" }, "sphinx": { - "credit": 0.004579633928571428, + "credit": 0.006866085164835165, "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.004579633928571428, + "credit": 0.07754637362637362, "url": "https://pypi.org/project/typing-extensions" }, "pytest": { - "credit": 0.004579633928571428, + "credit": 0.025714162087912086, "url": "https://pypi.org/project/pytest" }, "ipython": { - "credit": 0.004579633928571428, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/ipython" }, "bottleneck": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/bottleneck" }, "asdf": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/asdf" }, "mpmath": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/mpmath" }, "jplephem": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/jplephem" }, "pytz": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/pytz" }, "sortedcontainers": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/sortedcontainers" }, "pandas": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/pandas" }, "bleach": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/bleach" }, "html5lib": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/html5lib" }, "beautifulsoup4": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/beautifulsoup4" }, "pyarrow": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/pyarrow" }, "dask": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/dask" }, "certifi": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/certifi" }, + "scipy": { + "credit": 0.007953474218089602, + "url": "https://pypi.org/project/scipy" + }, "packaging": { - "credit": 0.004579633928571428, + "credit": 0.006866085164835165, "url": "https://pypi.org/project/packaging" }, "PyYAML": { - "credit": 0.0023335714285714283, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/PyYAML" }, - "pyerfa": { - "credit": 0.0023335714285714283, - "url": "https://pypi.org/project/pyerfa" + "numpy": { + "credit": 0.021002142857142858, + "url": "https://pypi.org/project/numpy" + }, + "xattr": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/munkres" }, - "importlib-resources": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/importlib-resources" + "brotli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotli" }, - "pytest-mypy": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pytest-mypy" + "brotlicffi": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotlicffi" }, - "pytest-black": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pytest-black" + "skia-pathops": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/skia-pathops" }, - "pytest-perf": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pytest-perf" + "sympy": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/sympy" }, - "flufl.flake8": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/flufl.flake8" + "lz4": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lz4" }, - "pyfakefs": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pyfakefs" + "zopfli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/zopfli" }, - "pytest-enabler": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pytest-enabler" + "lxml": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pytest-timeout" }, "pytest-cov": { - "credit": 0.0022460625, + "credit": 0.0047120192307692306, "url": "https://pypi.org/project/pytest-cov" }, - "pytest-flake8": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pytest-flake8" + "pyroma": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "pytest-checkdocs": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pytest-checkdocs" + "sphinx-removed-in": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "rst.linker": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/rst.linker" + "sphinx-issues": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-issues" }, - "jaraco.packaging": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/jaraco.packaging" + "sphinx-copybutton": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "zipp": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/zipp" + "olefile": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/olefile" }, "tomli": { - "credit": 0.0023102357142857142, + "credit": 0.0021325252747252748, "url": "https://pypi.org/project/tomli" }, "graphviz": { - "credit": 0.0023102357142857142, + "credit": 0.0021325252747252748, "url": "https://pypi.org/project/graphviz" } } diff --git a/_repos/github/3D-e-Chem/kripodb/README.md b/_repos/github/3D-e-Chem/kripodb/README.md index 9e664003..d32f4722 100644 --- a/_repos/github/3D-e-Chem/kripodb/README.md +++ b/_repos/github/3D-e-Chem/kripodb/README.md @@ -8,67 +8,64 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://pypi.org/project/numpy)|0.128| -|pypi|[pyroaring](https://github.com/Ezibenroc/PyRoaringBitMap)|0.099| -|pypi|[blosc](http://github.com/blosc/python-blosc)|0.099| -|pypi|[six](https://github.com/benjaminp/six)|0.099| -|pypi|[pytest](https://pypi.org/project/pytest)|0.043| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.036| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.026| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.022| -|pypi|[packaging](https://pypi.org/project/packaging)|0.019| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.016| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.016| -|pypi|[pytz](https://pypi.org/project/pytz)|0.016| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.016| -|pypi|[ipython](https://ipython.org)|0.014| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.014| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.014| -|pypi|[numexpr](https://pypi.org/project/numexpr)|0.014| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.014| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.014| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.014| -|pypi|[idna](https://pypi.org/project/idna)|0.014| -|pypi|[chardet](https://pypi.org/project/chardet)|0.014| -|pypi|[certifi](https://pypi.org/project/certifi)|0.014| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.014| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.014| -|pypi|[flake8](https://pypi.org/project/flake8)|0.014| -|pypi|[python-utils](https://pypi.org/project/python-utils)|0.014| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.102| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.078| +|pypi|[numexpr](https://github.com/pydata/numexpr)|0.075| +|pypi|[clickclick](https://codeberg.org/hjacobs/python-clickclick)|0.069| +|pypi|[inflection](https://github.com/jpvanhal/inflection)|0.069| +|pypi|[blosc](http://github.com/blosc/python-blosc)|0.066| +|pypi|[pyroaring](https://github.com/Ezibenroc/PyRoaringBitMap)|0.066| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.065| +|pypi|[Babel](https://pypi.org/project/Babel)|0.033| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.029| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.023| +|pypi|[pytest](https://pypi.org/project/pytest)|0.023| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.019| +|pypi|[python-utils](https://github.com/WoLpH/python-utils)|0.017| +|pypi|[packaging](https://pypi.org/project/packaging)|0.016| +|pypi|[flake8](https://pypi.org/project/flake8)|0.016| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.013| +|pypi|[ipython](https://pypi.org/project/ipython)|0.013| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.01| |setup.py|github/3D-e-Chem/kripodb|0.01| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.008| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.008| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.008| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.008| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.008| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.008| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.008| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.008| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.008| -|pypi|[requests](https://requests.readthedocs.io)|0.006| -|pypi|[aiohttp-remotes](https://pypi.org/project/aiohttp-remotes)|0.005| -|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|0.005| -|pypi|[testfixtures](https://pypi.org/project/testfixtures)|0.005| -|pypi|[decorator](https://pypi.org/project/decorator)|0.005| -|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|0.005| -|pypi|[sphinx-autoapi](https://pypi.org/project/sphinx-autoapi)|0.005| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.005| -|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|0.005| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.01| +|pypi|[freezegun](https://pypi.org/project/freezegun)|0.009| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.009| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.009| +|pypi|[numpy](https://pypi.org/project/numpy)|0.009| +|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.009| +|pypi|[asgiref](https://pypi.org/project/asgiref)|0.009| +|pypi|[click](https://pypi.org/project/click)|0.009| +|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.009| +|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.007| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.007| +|pypi|[mock](https://pypi.org/project/mock)|0.007| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| |pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.005| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.005| -|pypi|[flask](https://pypi.org/project/flask)|0.005| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|0.005| -|pypi|[inflection](https://pypi.org/project/inflection)|0.005| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.005| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.005| -|pypi|[clickclick](https://pypi.org/project/clickclick)|0.005| -|pypi|[pandas](https://pandas.pydata.org)|0.001| -|pypi|[tables](https://www.pytables.org)|0.001| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|0.001| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.001| +|pypi|[flask](https://palletsprojects.com/p/flask)|0.004| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|0.004| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.004| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.004| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.004| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.004| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| +|pypi|[zipp](https://pypi.org/project/zipp)|0.004| +|pypi|[pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp)|0.003| +|pypi|[testfixtures](https://pypi.org/project/testfixtures)|0.003| +|pypi|[decorator](https://pypi.org/project/decorator)|0.003| +|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|0.003| +|pypi|[sphinx-autoapi](https://pypi.org/project/sphinx-autoapi)|0.003| +|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|0.003| +|pypi|[requests](https://pypi.org/project/requests)|0.003| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.003| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.003| |pypi|[connexion](https://github.com/zalando/connexion)|0.001| +|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|0.001| +|pypi|[tables](https://www.pytables.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/3D-e-Chem/kripodb/badge.png b/_repos/github/3D-e-Chem/kripodb/badge.png index 0c49aa63..0b91d7c8 100644 Binary files a/_repos/github/3D-e-Chem/kripodb/badge.png and b/_repos/github/3D-e-Chem/kripodb/badge.png differ diff --git a/_repos/github/3D-e-Chem/kripodb/data.json b/_repos/github/3D-e-Chem/kripodb/data.json index 8e37fc58..db407e3d 100644 --- a/_repos/github/3D-e-Chem/kripodb/data.json +++ b/_repos/github/3D-e-Chem/kripodb/data.json @@ -6,245 +6,237 @@ } }, "pypi": { - "pyroaring": { - "credit": 0.099, - "url": "https://github.com/Ezibenroc/PyRoaringBitMap" - }, "blosc": { - "credit": 0.099, + "credit": 0.066, "url": "http://github.com/blosc/python-blosc" }, - "tables": { - "credit": 0.0009900000000000048, - "url": "https://www.pytables.org" - }, - "pandas": { - "credit": 0.0009900000000000186, - "url": "https://pandas.pydata.org" - }, "connexion": { - "credit": 0.0009899999999999909, + "credit": 0.0006599999999999939, "url": "https://github.com/zalando/connexion" }, - "requests": { - "credit": 0.005657142857142862, - "url": "https://requests.readthedocs.io" - }, - "scipy": { - "credit": 0.0009900000000000048, - "url": "https://www.scipy.org" - }, "progressbar2": { - "credit": 0.0009900000000000048, + "credit": 0.0006599999999999939, "url": "https://github.com/WoLpH/python-progressbar" }, - "six": { - "credit": 0.099, - "url": "https://github.com/benjaminp/six" - }, - "pytest-runner": { - "credit": 0.0009900000000000048, - "url": "https://github.com/pytest-dev/pytest-runner/" + "pyroaring": { + "credit": 0.066, + "url": "https://github.com/Ezibenroc/PyRoaringBitMap" }, - "ipython": { - "credit": 0.014001428571428571, - "url": "https://ipython.org" + "tables": { + "credit": 0.0006599999999999939, + "url": "https://www.pytables.org" }, - "numpydoc": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/numpydoc" + "clickclick": { + "credit": 0.06911142857142857, + "url": "https://codeberg.org/hjacobs/python-clickclick" }, - "sphinx-rtd-theme": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/sphinx-rtd-theme" + "flask": { + "credit": 0.0037714285714285658, + "url": "https://palletsprojects.com/p/flask" }, - "sphinx": { - "credit": 0.03554208791208791, - "url": "https://pypi.org/project/sphinx" + "inflection": { + "credit": 0.06911142857142857, + "url": "https://github.com/jpvanhal/inflection" }, - "packaging": { - "credit": 0.01866857142857143, - "url": "https://pypi.org/project/packaging" + "itsdangerous": { + "credit": 0.07844571428571429, + "url": "https://palletsprojects.com/p/itsdangerous/" }, "numexpr": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/numexpr" - }, - "numpy": { - "credit": 0.12834642857142858, - "url": "https://pypi.org/project/numpy" + "credit": 0.07533428571428571, + "url": "https://github.com/pydata/numexpr" }, - "pytest-xdist": { - "credit": 0.016335, - "url": "https://pypi.org/project/pytest-xdist" + "python-utils": { + "credit": 0.01652828571428571, + "url": "https://github.com/WoLpH/python-utils" }, - "pytest": { - "credit": 0.042542802197802196, - "url": "https://pypi.org/project/pytest" + "werkzeug": { + "credit": 0.0037714285714285658, + "url": "https://palletsprojects.com/p/werkzeug/" }, - "hypothesis": { - "credit": 0.016335, - "url": "https://pypi.org/project/hypothesis" + "importlib-metadata": { + "credit": 0.013105714285714281, + "url": "https://github.com/python/importlib_metadata" }, - "pytz": { - "credit": 0.016335, - "url": "https://pypi.org/project/pytz" + "Jinja2": { + "credit": 0.009994285714285709, + "url": "https://palletsprojects.com/p/jinja/" }, - "python-dateutil": { - "credit": 0.016335, - "url": "https://pypi.org/project/python-dateutil" + "MarkupSafe": { + "credit": 0.10178142857142858, + "url": "https://palletsprojects.com/p/markupsafe/" }, "aiohttp-remotes": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/aiohttp-remotes" + "credit": 3.111428571428562e-05, + "url": "https://github.com/aio-libs/aiohttp-remotes" }, "pytest-aiohttp": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/pytest-aiohttp" + "credit": 0.003111428571428572, + "url": "https://github.com/aio-libs/pytest-aiohttp" }, "testfixtures": { - "credit": 0.0046671428571428576, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/testfixtures" }, "pytest-cov": { - "credit": 0.0262078021978022, + "credit": 0.02260971428571429, "url": "https://pypi.org/project/pytest-cov" }, + "pytest": { + "credit": 0.02260971428571429, + "url": "https://pypi.org/project/pytest" + }, "decorator": { - "credit": 0.0046671428571428576, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/decorator" }, "swagger-ui-bundle": { - "credit": 0.0046671428571428576, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/swagger-ui-bundle" }, "sphinx-autoapi": { - "credit": 0.0046671428571428576, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/sphinx-autoapi" }, - "MarkupSafe": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/MarkupSafe" - }, "aiohttp-jinja2": { - "credit": 0.0046671428571428576, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/aiohttp-jinja2" }, "aiohttp": { - "credit": 0.0046671428571428576, + "credit": 0.004651585714285715, "url": "https://pypi.org/project/aiohttp" }, - "importlib-metadata": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/importlib-metadata" - }, - "itsdangerous": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/itsdangerous" - }, - "flask": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/flask" - }, - "werkzeug": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/werkzeug" + "packaging": { + "credit": 0.016075714285714287, + "url": "https://pypi.org/project/packaging" }, - "inflection": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/inflection" + "requests": { + "credit": 0.003111428571428572, + "url": "https://pypi.org/project/requests" }, "PyYAML": { - "credit": 0.0046671428571428576, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/PyYAML" }, "jsonschema": { - "credit": 0.0046671428571428576, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/jsonschema" }, - "clickclick": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/clickclick" + "freezegun": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/freezegun" }, - "win-inet-pton": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/win-inet-pton" + "pytest-mypy": { + "credit": 0.019498285714285718, + "url": "https://pypi.org/project/pytest-mypy" }, - "PySocks": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/PySocks" + "flake8": { + "credit": 0.015868285714285717, + "url": "https://pypi.org/project/flake8" }, - "charset-normalizer": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/charset-normalizer" + "sphinx": { + "credit": 0.028832571428571433, + "url": "https://pypi.org/project/sphinx" }, - "idna": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/idna" + "ipython": { + "credit": 0.012964285714285716, + "url": "https://pypi.org/project/ipython" }, - "chardet": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/chardet" + "numpydoc": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/numpydoc" }, - "certifi": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/certifi" + "sphinx-rtd-theme": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "urllib3": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/urllib3" + "numpy": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/numpy" }, - "freezegun": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/freezegun" + "python-dotenv": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/python-dotenv" }, - "pytest-mypy": { - "credit": 0.02154065934065934, - "url": "https://pypi.org/project/pytest-mypy" + "asgiref": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/asgiref" }, - "flake8": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/flake8" + "click": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/click" }, - "python-utils": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/python-utils" + "Werkzeug": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/Werkzeug" + }, + "types-setuptools": { + "credit": 0.006534000000000001, + "url": "https://pypi.org/project/types-setuptools" + }, + "pytest-asyncio": { + "credit": 0.006534000000000001, + "url": "https://pypi.org/project/pytest-asyncio" + }, + "pytest-flake8": { + "credit": 0.010164000000000001, + "url": "https://pypi.org/project/pytest-flake8" + }, + "mock": { + "credit": 0.006534000000000001, + "url": "https://pypi.org/project/mock" + }, + "watchdog": { + "credit": 0.06534000000000001, + "url": "https://pypi.org/project/watchdog" + }, + "importlib-resources": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/importlib-resources" }, "pytest-black": { - "credit": 0.007539230769230769, + "credit": 0.0036300000000000004, "url": "https://pypi.org/project/pytest-black" }, - "types-setuptools": { - "credit": 0.007539230769230769, - "url": "https://pypi.org/project/types-setuptools" + "pytest-perf": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pytest-perf" + }, + "flufl.flake8": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/flufl.flake8" }, - "pytest-virtualenv": { - "credit": 0.007539230769230769, - "url": "https://pypi.org/project/pytest-virtualenv" + "pyfakefs": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pyfakefs" }, "pytest-enabler": { - "credit": 0.007539230769230769, + "credit": 0.0036300000000000004, "url": "https://pypi.org/project/pytest-enabler" }, - "pytest-flake8": { - "credit": 0.007539230769230769, - "url": "https://pypi.org/project/pytest-flake8" - }, "pytest-checkdocs": { - "credit": 0.007539230769230769, + "credit": 0.0036300000000000004, "url": "https://pypi.org/project/pytest-checkdocs" }, - "jaraco.tidelift": { - "credit": 0.007539230769230769, - "url": "https://pypi.org/project/jaraco.tidelift" - }, "rst.linker": { - "credit": 0.007539230769230769, + "credit": 0.0036300000000000004, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.007539230769230769, + "credit": 0.0036300000000000004, "url": "https://pypi.org/project/jaraco.packaging" + }, + "typing-extensions": { + "credit": 0.0051701571428571435, + "url": "https://pypi.org/project/typing-extensions" + }, + "zipp": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/zipp" + }, + "Babel": { + "credit": 0.032670000000000005, + "url": "https://pypi.org/project/Babel" } } } \ No newline at end of file diff --git a/_repos/github/3D-e-Chem/sygma/badge.png b/_repos/github/3D-e-Chem/sygma/badge.png index b273a640..4092cefc 100644 Binary files a/_repos/github/3D-e-Chem/sygma/badge.png and b/_repos/github/3D-e-Chem/sygma/badge.png differ diff --git a/_repos/github/3d-pli/fastpli/badge.png b/_repos/github/3d-pli/fastpli/badge.png index a6968d9a..b2603d5d 100644 Binary files a/_repos/github/3d-pli/fastpli/badge.png and b/_repos/github/3d-pli/fastpli/badge.png differ diff --git a/_repos/github/AA-ALERT/frbcatdb/badge.png b/_repos/github/AA-ALERT/frbcatdb/badge.png index b44e761e..ff9dcb7b 100644 Binary files a/_repos/github/AA-ALERT/frbcatdb/badge.png and b/_repos/github/AA-ALERT/frbcatdb/badge.png differ diff --git a/_repos/github/AMReX-Astro/Nyx/badge.png b/_repos/github/AMReX-Astro/Nyx/badge.png index a0ddc08b..ecd4f973 100644 Binary files a/_repos/github/AMReX-Astro/Nyx/badge.png and b/_repos/github/AMReX-Astro/Nyx/badge.png differ diff --git a/_repos/github/AlexMikes/AutoFunc/badge.png b/_repos/github/AlexMikes/AutoFunc/badge.png index c775049e..babcc3de 100644 Binary files a/_repos/github/AlexMikes/AutoFunc/badge.png and b/_repos/github/AlexMikes/AutoFunc/badge.png differ diff --git a/_repos/github/AlexanderLabWHOI/EUKulele/README.md b/_repos/github/AlexanderLabWHOI/EUKulele/README.md index 336b6f43..0718dd11 100644 --- a/_repos/github/AlexanderLabWHOI/EUKulele/README.md +++ b/_repos/github/AlexanderLabWHOI/EUKulele/README.md @@ -8,94 +8,108 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.103| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.096| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.075| +|pypi|[pytest](https://pypi.org/project/pytest)|0.065| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.046| +|pypi|[mypy](https://pypi.org/project/mypy)|0.045| |pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.032| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.03| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.028| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.028| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.028| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.028| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.026| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.024| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.021| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.015| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.013| -|pypi|[pep517](https://pypi.org/project/pep517)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.01| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.038| +|pypi|[six](https://pypi.org/project/six)|0.036| +|pypi|[matplotlib](https://matplotlib.org)|0.034| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.03| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.027| +|pypi|[alabaster](https://alabaster.readthedocs.io)|0.026| +|pypi|[snowballstemmer](https://github.com/snowballstem/snowball)|0.026| +|pypi|[imagesize](https://github.com/shibukawa/imagesize_py)|0.026| +|pypi|[EUKulele](https://github.com/AlexanderLabWHOI/EUKulele)|0.025| +|pypi|[argparse](https://github.com/ThomasWaldmann/argparse/)|0.025| +|pypi|[biopython](https://biopython.org/)|0.025| +|pypi|[chardet](https://github.com/chardet/chardet)|0.025| +|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.025| +|pypi|[python-coveralls](http://github.com/z4r/python-coveralls)|0.025| +|pypi|[ujson](https://github.com/ultrajson/ultrajson)|0.025| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.025| +|pypi|[oset](https://gitorious.com/sleipnir/python-oset)|0.025| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.025| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.025| +|pypi|[tomli](https://pypi.org/project/tomli)|0.025| +|pypi|[pytz](https://pypi.org/project/pytz)|0.025| +|pypi|[pybtex](https://pybtex.org/)|0.015| +|pypi|[py](https://pypi.org/project/py)|0.013| +|pypi|[Babel](https://pypi.org/project/Babel)|0.013| |setup.py|github/AlexanderLabWHOI/EUKulele|0.01| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[attrs](https://www.attrs.org/)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.005| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.005| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.005| -|pypi|[path](https://pypi.org/project/path)|0.005| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| -|pypi|[keyring](https://pypi.org/project/keyring)|0.005| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.005| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.005| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.003| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| +|pypi|[scipy](https://pypi.org/project/scipy)|0.008| +|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|0.008| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.008| +|pypi|[pandas](https://pypi.org/project/pandas)|0.006| +|pypi|[numpy](https://pypi.org/project/numpy)|0.006| +|pypi|[Sphinx](https://www.sphinx-doc.org/)|0.005| +|pypi|[dataclasses](https://github.com/ericvsmith/dataclasses)|0.005| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.005| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.005| +|pypi|[execnet](https://execnet.readthedocs.io/en/latest/)|0.004| +|pypi|[pytest-forked](https://github.com/pytest-dev/pytest-forked)|0.004| +|pypi|[filelock](https://pypi.org/project/filelock)|0.004| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| +|pypi|[psutil](https://pypi.org/project/psutil)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| +|pypi|[hunter](https://pypi.org/project/hunter)|0.003| +|pypi|[fields](https://pypi.org/project/fields)|0.003| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.003| +|pypi|[xattr](https://pypi.org/project/xattr)|0.002| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.002| +|pypi|[munkres](https://pypi.org/project/munkres)|0.002| +|pypi|[brotli](https://pypi.org/project/brotli)|0.002| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.002| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.002| +|pypi|[sympy](https://pypi.org/project/sympy)|0.002| +|pypi|[lz4](https://pypi.org/project/lz4)|0.002| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.002| +|pypi|[lxml](https://pypi.org/project/lxml)|0.002| +|pypi|[fs](https://pypi.org/project/fs)|0.002| |pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|0.001| -|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.001| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.002| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.002| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.002| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.002| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.002| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.002| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.002| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.002| +|pypi|[olefile](https://pypi.org/project/olefile)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.001| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.001| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| +|pypi|[zipp](https://pypi.org/project/zipp)|0.001| +|pypi|[babel](https://babel.pocoo.org/)|0.001| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.001| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.001| +|pypi|[sphinxcontrib-htmlhelp](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-serializinghtml](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-applehelp](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-devhelp](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-jsmath](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-qthelp](http://sphinx-doc.org/)|0.001| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.001| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.001| +|pypi|[isort](https://pypi.org/project/isort)|0.001| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.001| +|pypi|[colorama](https://pypi.org/project/colorama)|0.001| +|pypi|[requests](https://pypi.org/project/requests)|0.001| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/AlexanderLabWHOI/EUKulele/badge.png b/_repos/github/AlexanderLabWHOI/EUKulele/badge.png index 15c75ca1..a0d39f12 100644 Binary files a/_repos/github/AlexanderLabWHOI/EUKulele/badge.png and b/_repos/github/AlexanderLabWHOI/EUKulele/badge.png differ diff --git a/_repos/github/AlexanderLabWHOI/EUKulele/data.json b/_repos/github/AlexanderLabWHOI/EUKulele/data.json index 1d6d9691..ae73b4eb 100644 --- a/_repos/github/AlexanderLabWHOI/EUKulele/data.json +++ b/_repos/github/AlexanderLabWHOI/EUKulele/data.json @@ -6,357 +6,437 @@ } }, "pypi": { - "pytest-runner": { - "credit": 0.00990000000000002, - "url": "https://github.com/pytest-dev/pytest-runner/" + "EUKulele": { + "credit": 0.025384615384615384, + "url": "https://github.com/AlexanderLabWHOI/EUKulele" }, - "pytest-mypy": { - "credit": 0.02794362032967033, - "url": "https://github.com/dbader/pytest-mypy" + "sphinxcontrib-bibtex": { + "credit": 0.0002538461538461531, + "url": "https://github.com/mcmtroffaes/sphinxcontrib-bibtex" }, - "pytest-black": { - "credit": 0.10258200494505493, - "url": "https://github.com/shopkeep/pytest-black" + "argparse": { + "credit": 0.025384615384615384, + "url": "https://github.com/ThomasWaldmann/argparse/" }, - "types-setuptools": { - "credit": 0.07539230769230769, - "url": "https://github.com/python/typeshed" + "biopython": { + "credit": 0.025384615384615384, + "url": "https://biopython.org/" }, - "pytest-virtualenv": { - "credit": 0.0007539230769230826, - "url": "https://github.com/manahl/pytest-plugins" + "chardet": { + "credit": 0.025384615384615384, + "url": "https://github.com/chardet/chardet" }, - "pytest-enabler": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-enabler" + "matplotlib": { + "credit": 0.033600443786982244, + "url": "https://matplotlib.org" + }, + "multiprocess": { + "credit": 0.025384615384615384, + "url": "https://github.com/uqfoundation/multiprocess" }, "pytest-cov": { - "credit": 0.030252745353708792, + "credit": 0.0032206730769230763, "url": "https://github.com/pytest-dev/pytest-cov" }, - "pytest-flake8": { - "credit": 0.02794362032967033, - "url": "https://github.com/tholo/pytest-flake8" + "pytest-xdist": { + "credit": 0.003395192307692307, + "url": "https://github.com/pytest-dev/pytest-xdist" }, - "pytest-checkdocs": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-checkdocs" + "python-coveralls": { + "credit": 0.025384615384615384, + "url": "http://github.com/z4r/python-coveralls" }, - "pytest": { - "credit": 0.09642254402234783, - "url": "https://docs.pytest.org/en/latest/" + "seaborn": { + "credit": 0.0002538461538461531, + "url": "https://seaborn.pydata.org" }, - "jaraco.tidelift": { - "credit": 0.0007539230769230826, - "url": "https://github.com/jaraco/jaraco.tidelift" + "ujson": { + "credit": 0.025384615384615384, + "url": "https://github.com/ultrajson/ultrajson" }, - "rst.linker": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/rst.linker" + "cycler": { + "credit": 0.025384615384615384, + "url": "https://github.com/matplotlib/cycler" }, - "jaraco.packaging": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/jaraco.packaging" + "dill": { + "credit": 0.0002538461538461531, + "url": "https://github.com/uqfoundation/dill" }, - "sphinx": { - "credit": 0.03167374536850169, + "execnet": { + "credit": 0.004442307692307692, + "url": "https://execnet.readthedocs.io/en/latest/" + }, + "fonttools": { + "credit": 0.0002538461538461531, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0002538461538461531, + "url": "https://github.com/nucleic/kiwi" + }, + "oset": { + "credit": 0.025384615384615384, + "url": "https://gitorious.com/sleipnir/python-oset" + }, + "pillow": { + "credit": 0.0002538461538461531, + "url": "https://python-pillow.org" + }, + "pybtex": { + "credit": 0.015357438461538461, + "url": "https://pybtex.org/" + }, + "pybtex-docutils": { + "credit": 0.0003041076923076917, + "url": "https://github.com/mcmtroffaes/pybtex-docutils" + }, + "Sphinx": { + "credit": 0.005279999999999996, "url": "https://www.sphinx-doc.org/" }, - "mypy": { - "credit": 0.004593131360946745, - "url": "http://www.mypy-lang.org/" + "coverage": { + "credit": 0.004965865384615384, + "url": "https://github.com/nedbat/coveragepy" }, - "filelock": { - "credit": 0.00018659596153846117, - "url": "https://github.com/tox-dev/py-filelock" + "pytest-forked": { + "credit": 0.004442307692307692, + "url": "https://github.com/pytest-dev/pytest-forked" }, - "attrs": { - "credit": 0.0060060575120192295, - "url": "https://www.attrs.org/" + "alabaster": { + "credit": 0.026389846153846153, + "url": "https://alabaster.readthedocs.io" }, - "mock": { - "credit": 0.02074713847355769, - "url": "http://mock.readthedocs.org/en/latest/" + "babel": { + "credit": 0.0012590769230769224, + "url": "https://babel.pocoo.org/" }, - "virtualenv": { - "credit": 0.024257474999999997, - "url": "https://virtualenv.pypa.io/" + "docutils": { + "credit": 0.04646933076923077, + "url": "http://docutils.sourceforge.net/" }, - "pytest-shutil": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-shutil" + "importlib-metadata": { + "credit": 0.0012590769230769224, + "url": "https://github.com/python/importlib_metadata" }, - "pytest-fixture-config": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-fixture-config" + "Jinja2": { + "credit": 0.0012590769230769224, + "url": "https://palletsprojects.com/p/jinja/" }, - "types-toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-toml" + "latexcodec": { + "credit": 0.007780511538461538, + "url": "https://github.com/mcmtroffaes/latexcodec" }, - "jaraco.context": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.context" + "snowballstemmer": { + "credit": 0.026389846153846153, + "url": "https://github.com/snowballstem/snowball" }, - "jaraco.functools": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.functools" + "sphinxcontrib-htmlhelp": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" }, - "toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/toml" + "sphinxcontrib-serializinghtml": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" }, - "pytest-xdist": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/pytest-xdist" + "imagesize": { + "credit": 0.026389846153846153, + "url": "https://github.com/shibukawa/imagesize_py" + }, + "sphinxcontrib-applehelp": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-devhelp": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-jsmath": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-qthelp": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "MarkupSafe": { + "credit": 0.03795, + "url": "https://palletsprojects.com/p/markupsafe/" + }, + "dataclasses": { + "credit": 0.005026153846153846, + "url": "https://github.com/ericvsmith/dataclasses" + }, + "virtualenv": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/virtualenv" }, "six": { - "credit": 0.010750798091715976, + "credit": 0.035798780769230765, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.009329798076923076, + "credit": 0.003141346153846154, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.009329798076923076, + "credit": 0.003141346153846154, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.009329798076923076, + "credit": 0.003141346153846154, "url": "https://pypi.org/project/fields" }, - "coverage": { - "credit": 0.013059923115754437, - "url": "https://pypi.org/project/coverage" + "pytest": { + "credit": 0.06532045384615384, + "url": "https://pypi.org/project/pytest" }, - "flake8": { - "credit": 0.04030472769230769, - "url": "https://pypi.org/project/flake8" + "filelock": { + "credit": 0.0041884615384615385, + "url": "https://pypi.org/project/filelock" }, - "types-docutils": { - "credit": 0.010307205494505494, - "url": "https://pypi.org/project/types-docutils" + "setproctitle": { + "credit": 0.0041884615384615385, + "url": "https://pypi.org/project/setproctitle" }, - "importlib-metadata": { - "credit": 0.02568748869333791, - "url": "https://pypi.org/project/importlib-metadata" + "psutil": { + "credit": 0.0041884615384615385, + "url": "https://pypi.org/project/psutil" }, - "pep517": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/pep517" + "pandas": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/pandas" }, - "docutils": { - "credit": 0.008316848571428571, - "url": "https://pypi.org/project/docutils" + "scipy": { + "credit": 0.008215828402366863, + "url": "https://pypi.org/project/scipy" }, - "xmlschema": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/xmlschema" + "numpy": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/numpy" }, - "requests": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/requests" + "objgraph": { + "credit": 0.02513076923076923, + "url": "https://pypi.org/project/objgraph" + }, + "pre-commit": { + "credit": 0.02513076923076923, + "url": "https://pypi.org/project/pre-commit" }, - "pygments": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pygments" + "xattr": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/xattr" }, - "nose": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/nose" + "unicodedata2": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/unicodedata2" }, - "hypothesis": { - "credit": 0.007240461565273667, - "url": "https://pypi.org/project/hypothesis" + "munkres": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/munkres" }, - "argcomplete": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/argcomplete" + "brotli": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/brotli" }, - "colorama": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/colorama" + "brotlicffi": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/brotlicffi" }, - "atomicwrites": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/atomicwrites" + "skia-pathops": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/skia-pathops" }, - "tomli": { - "credit": 0.008898294915865383, - "url": "https://pypi.org/project/tomli" + "sympy": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/sympy" }, - "py": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/py" + "lz4": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/zopfli" }, - "pluggy": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pluggy" + "lxml": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.0019331360946745562, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.026526923076923076, + "url": "https://pypi.org/project/typing-extensions" + }, + "pytest-timeout": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.008804996935096152, + "credit": 0.003972057692307692, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/markdown2" }, - "importlib-resources": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/importlib-resources" + "defusedxml": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/check-manifest" }, - "keyring": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/keyring" + "sphinxext-opengraph": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "requests-toolbelt": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/requests-toolbelt" + "sphinx-rtd-theme": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "autocommand": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/autocommand" + "sphinx-removed-in": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "types-python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-python-dateutil" + "sphinx-issues": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/sphinx-issues" }, - "path": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/path" + "sphinx-copybutton": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/python-dateutil" + "sphinx": { + "credit": 0.002966826923076923, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.001570673076923077, + "url": "https://pypi.org/project/olefile" + }, + "PyYAML": { + "credit": 0.007526665384615385, + "url": "https://pypi.org/project/PyYAML" }, "types-requests": { - "credit": 0.0029855353846153843, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/types-requests" }, "types-typed-ast": { - "credit": 0.0029855353846153843, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/types-typed-ast" }, "docutils-stubs": { - "credit": 0.0029855353846153843, + "credit": 0.029905615384615388, "url": "https://pypi.org/project/docutils-stubs" }, + "mypy": { + "credit": 0.044984076923076925, + "url": "https://pypi.org/project/mypy" + }, "isort": { - "credit": 0.0029855353846153843, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/isort" }, + "flake8": { + "credit": 0.03995792307692308, + "url": "https://pypi.org/project/flake8" + }, "sphinxcontrib-websupport": { - "credit": 0.0029855353846153843, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/sphinxcontrib-websupport" }, - "imagesize": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/babel" + "colorama": { + "credit": 0.0010052307692307693, + "url": "https://pypi.org/project/colorama" }, - "snowballstemmer": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/snowballstemmer" + "requests": { + "credit": 0.0010052307692307693, + "url": "https://pypi.org/project/requests" }, "Pygments": { - "credit": 0.0029855353846153843, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/Pygments" }, - "Jinja2": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" + "tomli": { + "credit": 0.02513076923076923, + "url": "https://pypi.org/project/tomli" }, - "sphinxcontrib-devhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" + "py": { + "credit": 0.012565384615384615, + "url": "https://pypi.org/project/py" }, - "sphinxcontrib-applehelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" + "pytz": { + "credit": 0.02513076923076923, + "url": "https://pypi.org/project/pytz" }, - "lxml": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/lxml" + "importlib-resources": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/importlib-resources" }, - "psutil": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/psutil" + "pytest-mypy": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-mypy" }, - "typed-ast": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typed-ast" + "pytest-black": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-black" }, - "mypy-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/mypy-extensions" + "pytest-perf": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-perf" }, - "typing-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typing-extensions" + "flufl.flake8": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/flufl.flake8" }, - "pytest-timeout": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/pytest-timeout" + "pyfakefs": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pyfakefs" }, - "covdefaults": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/covdefaults" + "pytest-enabler": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-enabler" }, - "sphinx-autodoc-typehints": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" + "pytest-flake8": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-flake8" }, - "furo": { - "credit": 0.003730125038831361, - "url": "https://pypi.org/project/furo" + "pytest-checkdocs": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-checkdocs" }, - "cloudpickle": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/cloudpickle" + "ipython": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/ipython" }, - "pre-commit": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pre-commit" + "rst.linker": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/rst.linker" }, - "sphinx-notfound-page": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/sphinx-notfound-page" + "jaraco.packaging": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/jaraco.packaging" }, - "zope.interface": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/zope.interface" + "zipp": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/zipp" }, - "pytest-mypy-plugins": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pytest-mypy-plugins" + "Babel": { + "credit": 0.012565384615384615, + "url": "https://pypi.org/project/Babel" }, - "pympler": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pympler" + "html5lib": { + "credit": 0.005026153846153846, + "url": "https://pypi.org/project/html5lib" } } } \ No newline at end of file diff --git a/_repos/github/AlphonsG/Rainbow-Optical-Flow-For-ALI/badge.png b/_repos/github/AlphonsG/Rainbow-Optical-Flow-For-ALI/badge.png index 9136075b..9788788d 100644 Binary files a/_repos/github/AlphonsG/Rainbow-Optical-Flow-For-ALI/badge.png and b/_repos/github/AlphonsG/Rainbow-Optical-Flow-For-ALI/badge.png differ diff --git a/_repos/github/BackmanLab/PWSpy/badge.png b/_repos/github/BackmanLab/PWSpy/badge.png index 2d0b707e..6365ef2f 100644 Binary files a/_repos/github/BackmanLab/PWSpy/badge.png and b/_repos/github/BackmanLab/PWSpy/badge.png differ diff --git a/_repos/github/Bahler-Lab/pyphe/README.md b/_repos/github/Bahler-Lab/pyphe/README.md index 370d730f..0765a92e 100644 --- a/_repos/github/Bahler-Lab/pyphe/README.md +++ b/_repos/github/Bahler-Lab/pyphe/README.md @@ -8,83 +8,87 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.392| -|pypi|[matplotlib](https://matplotlib.org)|0.187| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.03| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.03| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.026| -|pypi|[pandas](https://pandas.pydata.org)|0.014| -|pypi|[scipy](https://www.scipy.org)|0.012| -|pypi|[seaborn](https://seaborn.pydata.org)|0.012| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.011| -|pypi|[flake8](https://pypi.org/project/flake8)|0.011| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.011| +|pypi|[matplotlib](https://matplotlib.org)|0.148| +|pypi|[numpy](https://pypi.org/project/numpy)|0.145| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.083| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.082| +|pypi|[scipy](https://pypi.org/project/scipy)|0.045| +|pypi|[pandas](https://pypi.org/project/pandas)|0.039| +|pypi|[lxml](https://pypi.org/project/lxml)|0.031| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.02| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.016| +|pypi|[pytest](https://pypi.org/project/pytest)|0.016| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.016| +|pypi|[seaborn](https://seaborn.pydata.org)|0.015| +|pypi|[scikit-learn](http://scikit-learn.org)|0.014| +|pypi|[scikit-image](https://scikit-image.org)|0.012| +|pypi|[pillow](https://python-pillow.org)|0.012| |pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.011| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.011| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| +|pypi|[sympy](https://pypi.org/project/sympy)|0.01| |setup.py|github/Bahler-Lab/pyphe|0.01| -|pypi|[scikit-image](https://scikit-image.org)|0.008| -|pypi|[black](https://pypi.org/project/black)|0.008| -|pypi|[hypothesis](https://hypothesis.works)|0.007| -|pypi|[mypy](https://pypi.org/project/mypy)|0.007| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.007| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.007| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.007| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.007| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.007| -|pypi|[joblib](https://pypi.org/project/joblib)|0.007| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.006| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[scikit-learn](http://scikit-learn.org)|0.005| -|pypi|[codecov](https://pypi.org/project/codecov)|0.004| -|pypi|[asv](https://pypi.org/project/asv)|0.004| -|pypi|[qtpy](https://pypi.org/project/qtpy)|0.004| -|pypi|[astropy](https://pypi.org/project/astropy)|0.004| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.004| -|pypi|[kaleido](https://pypi.org/project/kaleido)|0.004| -|pypi|[plotly](https://pypi.org/project/plotly)|0.004| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.004| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.004| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.004| -|pypi|[dask](https://pypi.org/project/dask)|0.004| -|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.004| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| -|pypi|[pooch](https://pypi.org/project/pooch)|0.004| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.004| -|pypi|[tifffile](https://pypi.org/project/tifffile)|0.004| -|pypi|[imageio](https://pypi.org/project/imageio)|0.004| -|pypi|[pillow](https://pypi.org/project/pillow)|0.004| -|pypi|[networkx](https://pypi.org/project/networkx)|0.004| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|0.004| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.008| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.007| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[flake8](https://pypi.org/project/flake8)|0.007| +|pypi|[astropy](https://pypi.org/project/astropy)|0.007| +|pypi|[codecov](https://pypi.org/project/codecov)|0.006| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.006| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[coverage](https://pypi.org/project/coverage)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[itk](https://pypi.org/project/itk)|0.004| +|pypi|[gdal](https://pypi.org/project/gdal)|0.004| +|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.004| +|pypi|[invoke](https://pypi.org/project/invoke)|0.004| +|pypi|[wheel](https://pypi.org/project/wheel)|0.004| |pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.004| +|pypi|[av](https://pypi.org/project/av)|0.004| +|pypi|[pydot](https://pypi.org/project/pydot)|0.004| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.004| +|pypi|[texext](https://pypi.org/project/texext)|0.004| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.004| +|pypi|[mypy](https://pypi.org/project/mypy)|0.004| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| +|pypi|[imageio](https://github.com/imageio/imageio)|0.003| +|pypi|[networkx](https://networkx.org/)|0.003| +|pypi|[PyWavelets](https://github.com/PyWavelets/pywt)|0.003| +|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|0.002| +|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|0.002| +|pypi|[asv](https://pypi.org/project/asv)|0.002| +|pypi|[qtpy](https://pypi.org/project/qtpy)|0.002| +|pypi|[pyamg](https://pypi.org/project/pyamg)|0.002| +|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.002| +|pypi|[kaleido](https://pypi.org/project/kaleido)|0.002| +|pypi|[plotly](https://pypi.org/project/plotly)|0.002| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.002| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.002| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.002| +|pypi|[dask](https://pypi.org/project/dask)|0.002| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.002| +|pypi|[pooch](https://pypi.org/project/pooch)|0.002| +|pypi|[pyphe](https://github.com/Bahler-Lab/pyphe)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Bahler-Lab/pyphe/badge.png b/_repos/github/Bahler-Lab/pyphe/badge.png index d8b8a07f..045443cc 100644 Binary files a/_repos/github/Bahler-Lab/pyphe/badge.png and b/_repos/github/Bahler-Lab/pyphe/badge.png differ diff --git a/_repos/github/Bahler-Lab/pyphe/data.json b/_repos/github/Bahler-Lab/pyphe/data.json index 1bca7dbf..5df8da2d 100644 --- a/_repos/github/Bahler-Lab/pyphe/data.json +++ b/_repos/github/Bahler-Lab/pyphe/data.json @@ -6,317 +6,325 @@ } }, "pypi": { - "pandas": { - "credit": 0.013715540816326541, - "url": "https://pandas.pydata.org" + "pyphe": { + "credit": 0.0008250000000000063, + "url": "https://github.com/Bahler-Lab/pyphe" }, "matplotlib": { - "credit": 0.1870998979591837, + "credit": 0.1477053708791209, "url": "https://matplotlib.org" }, - "numpy": { - "credit": 0.392162487244898, - "url": "https://www.numpy.org" + "scikit-image": { + "credit": 0.01249285714285715, + "url": "https://scikit-image.org" }, "seaborn": { - "credit": 0.012082040816326543, + "credit": 0.014826428571428577, "url": "https://seaborn.pydata.org" }, - "scipy": { - "credit": 0.012432076530612256, - "url": "https://www.scipy.org" + "cycler": { + "credit": 0.0825, + "url": "https://github.com/matplotlib/cycler" }, - "scikit-image": { - "credit": 0.008081632653061267, - "url": "https://scikit-image.org" + "fonttools": { + "credit": 0.0008250000000000063, + "url": "http://github.com/fonttools/fonttools" }, - "scikit-learn": { - "credit": 0.005414693877551034, - "url": "http://scikit-learn.org" + "imageio": { + "credit": 0.0031585714285714346, + "url": "https://github.com/imageio/imageio" }, - "pytest-xdist": { - "credit": 0.006008946428571429, - "url": "https://github.com/pytest-dev/pytest-xdist" + "kiwisolver": { + "credit": 0.0008250000000000063, + "url": "https://github.com/nucleic/kiwi" }, - "pytest": { - "credit": 0.025770962755102038, - "url": "https://docs.pytest.org/en/latest/" + "networkx": { + "credit": 0.0031585714285714346, + "url": "https://networkx.org/" }, - "hypothesis": { - "credit": 0.00745284375, - "url": "https://hypothesis.works" + "pillow": { + "credit": 0.01154100563909775, + "url": "https://python-pillow.org" }, - "pytz": { - "credit": 0.030394767857142856, - "url": "http://pythonhosted.org/pytz" + "PyWavelets": { + "credit": 0.0031585714285714346, + "url": "https://github.com/PyWavelets/pywt" + }, + "tifffile": { + "credit": 0.00745725563909775, + "url": "https://www.lfd.uci.edu/~gohlke/" + }, + "scikit-learn": { + "credit": 0.014001428571428571, + "url": "http://scikit-learn.org" }, - "python-dateutil": { - "credit": 0.030394767857142856, - "url": "https://github.com/dateutil/dateutil" + "scipy": { + "credit": 0.04478662087912087, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.1448963627819549, + "url": "https://pypi.org/project/numpy" + }, + "pandas": { + "credit": 0.038503928571428564, + "url": "https://pypi.org/project/pandas" }, "pytest-faulthandler": { - "credit": 4.0004081632653496e-05, - "url": "https://github.com/pytest-dev/pytest-faulthandler" + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/pytest-faulthandler" }, "pytest-localserver": { - "credit": 4.0004081632653496e-05, - "url": "https://github.com/pytest-dev/pytest-localserver" + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/pytest-localserver" }, "pytest-cov": { - "credit": 0.010667755102040814, - "url": "https://github.com/pytest-dev/pytest-cov" + "credit": 0.015820693139097744, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest": { + "credit": 0.015820693139097744, + "url": "https://pypi.org/project/pytest" }, "flake8": { - "credit": 0.010667755102040814, + "credit": 0.006632255639097744, "url": "https://pypi.org/project/flake8" }, "codecov": { - "credit": 0.004000408163265305, + "credit": 0.0064173214285714285, "url": "https://pypi.org/project/codecov" }, "asv": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/asv" }, "qtpy": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/qtpy" }, "pyamg": { - "credit": 0.010667755102040814, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/pyamg" }, "astropy": { - "credit": 0.004000408163265305, + "credit": 0.006632255639097744, "url": "https://pypi.org/project/astropy" }, "SimpleITK": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/SimpleITK" }, "kaleido": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/kaleido" }, "plotly": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/plotly" }, "ipywidgets": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/ipywidgets" }, "myst-parser": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/myst-parser" }, "cloudpickle": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/cloudpickle" }, "dask": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/dask" }, "pytest-runner": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/pytest-runner" }, "sphinx-copybutton": { - "credit": 0.004000408163265305, + "credit": 0.007438258928571428, "url": "https://pypi.org/project/sphinx-copybutton" }, "numpydoc": { - "credit": 0.010667755102040814, + "credit": 0.010716005639097744, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.010667755102040814, + "credit": 0.0064173214285714285, "url": "https://pypi.org/project/sphinx-gallery" }, "sphinx": { - "credit": 0.010667755102040814, + "credit": 0.015820693139097744, "url": "https://pypi.org/project/sphinx" }, "pooch": { - "credit": 0.004000408163265305, + "credit": 0.0023335714285714283, "url": "https://pypi.org/project/pooch" }, "packaging": { - "credit": 0.005444305484693877, + "credit": 0.007438258928571428, "url": "https://pypi.org/project/packaging" }, - "PyWavelets": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/PyWavelets" + "xattr": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/xattr" }, - "tifffile": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/tifffile" + "unicodedata2": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/unicodedata2" }, - "imageio": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/imageio" + "munkres": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/munkres" }, - "pillow": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/pillow" + "brotli": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/brotli" }, - "networkx": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/networkx" + "brotlicffi": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/brotlicffi" }, - "mypy": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/mypy" - }, - "black": { - "credit": 0.007950811224489795, - "url": "https://pypi.org/project/black" + "skia-pathops": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/skia-pathops" }, - "sphinxext-opengraph": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinxext-opengraph" + "sympy": { + "credit": 0.010366442307692307, + "url": "https://pypi.org/project/sympy" }, - "sphinx-prompt": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinx-prompt" + "lz4": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/lz4" }, - "Pillow": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/Pillow" + "zopfli": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/zopfli" }, - "memory-profiler": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/memory-profiler" + "lxml": { + "credit": 0.030785192307692305, + "url": "https://pypi.org/project/lxml" }, - "threadpoolctl": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/threadpoolctl" + "fs": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/fs" }, - "joblib": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/joblib" + "itk": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/itk" }, - "filelock": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/filelock" + "gdal": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/gdal" }, - "setproctitle": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/setproctitle" + "pydata-sphinx-theme": { + "credit": 0.008382434210526316, + "url": "https://pypi.org/project/pydata-sphinx-theme" }, - "psutil": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/psutil" - }, - "pytest-forked": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/pytest-forked" - }, - "execnet": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/execnet" + "black": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/black" }, - "xmlschema": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/xmlschema" + "fsspec": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/fsspec" }, - "requests": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/requests" + "invoke": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/invoke" }, - "pygments": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pygments" + "wheel": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/wheel" }, - "nose": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/nose" + "psutil": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/psutil" }, - "mock": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/mock" + "imageio-ffmpeg": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/imageio-ffmpeg" }, - "argcomplete": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/argcomplete" + "av": { + "credit": 0.004298684210526316, + "url": "https://pypi.org/project/av" }, - "colorama": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/colorama" + "typing-extensions": { + "credit": 0.081675, + "url": "https://pypi.org/project/typing-extensions" }, - "atomicwrites": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/atomicwrites" + "pydot": { + "credit": 0.00408375, + "url": "https://pypi.org/project/pydot" }, - "importlib-metadata": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/importlib-metadata" + "pygraphviz": { + "credit": 0.00408375, + "url": "https://pypi.org/project/pygraphviz" }, - "tomli": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/tomli" + "texext": { + "credit": 0.00408375, + "url": "https://pypi.org/project/texext" }, - "py": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/py" + "nb2plots": { + "credit": 0.00408375, + "url": "https://pypi.org/project/nb2plots" }, - "pluggy": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pluggy" + "mypy": { + "credit": 0.00408375, + "url": "https://pypi.org/project/mypy" }, - "iniconfig": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/iniconfig" + "pre-commit": { + "credit": 0.00408375, + "url": "https://pypi.org/project/pre-commit" }, - "attrs": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/attrs" + "pytest-timeout": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pytest-timeout" }, - "tzdata": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/tzdata" + "pyroma": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pyroma" }, - "backports.zoneinfo": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/backports.zoneinfo" + "markdown2": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/markdown2" }, - "rich": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/rich" + "defusedxml": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/defusedxml" }, - "redis": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/redis" + "coverage": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/coverage" }, - "libcst": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/libcst" + "check-manifest": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/check-manifest" }, - "lark-parser": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lark-parser" + "sphinxext-opengraph": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "dpcontracts": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/dpcontracts" + "sphinx-rtd-theme": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "django": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/django" + "sphinx-removed-in": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "click": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/click" + "sphinx-issues": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-issues" }, - "sortedcontainers": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/sortedcontainers" + "olefile": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/olefile" }, - "werkzeug": { - "credit": 0.003960404081632652, - "url": "https://pypi.org/project/werkzeug" + "imagecodecs": { + "credit": 0.02041875, + "url": "https://pypi.org/project/imagecodecs" } } } \ No newline at end of file diff --git a/_repos/github/BartoszBartmanski/StoSpa2/README.md b/_repos/github/BartoszBartmanski/StoSpa2/README.md index cbb1dad1..81c03a5b 100644 --- a/_repos/github/BartoszBartmanski/StoSpa2/README.md +++ b/_repos/github/BartoszBartmanski/StoSpa2/README.md @@ -8,52 +8,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest](https://pypi.org/project/pytest)|0.205| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.191| -|pypi|[wheel](https://github.com/pypa/wheel)|0.041| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.039| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.031| -|pypi|[coverage](https://pypi.org/project/coverage)|0.029| -|pypi|[scikit-build](https://pypi.org/project/scikit-build)|0.027| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.027| -|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.027| -|pypi|[path.py](https://pypi.org/project/path.py)|0.027| -|pypi|[flake8](https://pypi.org/project/flake8)|0.027| -|pypi|[codecov](https://pypi.org/project/codecov)|0.027| -|pypi|[filelock](https://pypi.org/project/filelock)|0.013| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.011| -|pypi|[tomli](https://pypi.org/project/tomli)|0.011| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.011| -|pypi|[ini2toml](https://github.com/abravalheri/ini2toml/)|0.011| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.011| -|pypi|[build](https://pypi.org/project/build)|0.011| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.011| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.011| -|pypi|[pip](https://pypi.org/project/pip)|0.011| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.011| -|pypi|[mock](https://pypi.org/project/mock)|0.011| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.011| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.011| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.011| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.011| -|pypi|[furo](https://pypi.org/project/furo)|0.011| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.011| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.011| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.011| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.011| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.011| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.011| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.011| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|github/BartoszBartmanski/StoSpa2|0.01| -|pypi|[cmake](https://cmake.org/)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[six](https://pypi.org/project/six)|0.001| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| -|pypi|[hunter](https://pypi.org/project/hunter)|0.001| -|pypi|[fields](https://pypi.org/project/fields)|0.001| +|pypi|[pystospa](https://pypi.org/project/pystospa)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/BartoszBartmanski/StoSpa2/badge.png b/_repos/github/BartoszBartmanski/StoSpa2/badge.png index 403c82de..afbef5ae 100644 Binary files a/_repos/github/BartoszBartmanski/StoSpa2/badge.png and b/_repos/github/BartoszBartmanski/StoSpa2/badge.png differ diff --git a/_repos/github/BartoszBartmanski/StoSpa2/data.json b/_repos/github/BartoszBartmanski/StoSpa2/data.json index a6bd5214..7e414289 100644 --- a/_repos/github/BartoszBartmanski/StoSpa2/data.json +++ b/_repos/github/BartoszBartmanski/StoSpa2/data.json @@ -6,189 +6,9 @@ } }, "pypi": { - "setuptools": { - "credit": 0.030525000000000024, - "url": "https://github.com/pypa/setuptools" - }, - "wheel": { - "credit": 0.04106370967741938, - "url": "https://github.com/pypa/wheel" - }, - "cmake": { - "credit": 0.003300000000000025, - "url": "https://cmake.org/" - }, - "pytest-mypy": { - "credit": 0.00010538709677419301, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-cov": { - "credit": 0.19068038709677418, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-black": { - "credit": 0.010538709677419355, - "url": "https://github.com/shopkeep/pytest-black" - }, - "tomli": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/tomli" - }, - "tomli-w": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/tomli-w" - }, - "ini2toml": { - "credit": 0.010538709677419355, - "url": "https://github.com/abravalheri/ini2toml/" - }, - "pip-run": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pip-run" - }, - "filelock": { - "credit": 0.013147040322580645, - "url": "https://pypi.org/project/filelock" - }, - "build": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/build" - }, - "jaraco.path": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.path" - }, - "pytest-xdist": { - "credit": 0.011842875000000001, - "url": "https://pypi.org/project/pytest-xdist" - }, - "jaraco.envs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.envs" - }, - "pip": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pip" - }, - "virtualenv": { - "credit": 0.039067875, - "url": "https://pypi.org/project/virtualenv" - }, - "flake8-2020": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/flake8-2020" - }, - "mock": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/mock" - }, - "pytest-perf": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-perf" - }, - "pytest-enabler": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-flake8": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "pytest": { - "credit": 0.20502620564516127, - "url": "https://pypi.org/project/pytest" - }, - "furo": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/furo" - }, - "sphinxcontrib-towncrier": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" - }, - "sphinx-inline-tabs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx-inline-tabs" - }, - "sphinx-favicon": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx-favicon" - }, - "pygments-github-lexers": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pygments-github-lexers" - }, - "jaraco.tidelift": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx" - }, - "scikit-build": { - "credit": 0.027225, - "url": "https://pypi.org/project/scikit-build" - }, - "pytest-virtualenv": { - "credit": 0.027225, - "url": "https://pypi.org/project/pytest-virtualenv" - }, - "pytest-runner": { - "credit": 0.027225, - "url": "https://pypi.org/project/pytest-runner" - }, - "path.py": { - "credit": 0.027225, - "url": "https://pypi.org/project/path.py" - }, - "flake8": { - "credit": 0.027225, - "url": "https://pypi.org/project/flake8" - }, - "coverage": { - "credit": 0.028529165322580645, - "url": "https://pypi.org/project/coverage" - }, - "codecov": { - "credit": 0.027225, - "url": "https://pypi.org/project/codecov" - }, - "mypy": { - "credit": 0.0026083306451612906, - "url": "https://pypi.org/project/mypy" - }, - "attrs": { - "credit": 0.0026083306451612906, - "url": "https://pypi.org/project/attrs" - }, - "six": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/fields" + "pystospa": { + "credit": 0.0099, + "url": "https://pypi.org/project/pystospa" } } } \ No newline at end of file diff --git a/_repos/github/BioGearsEngine/core/badge.png b/_repos/github/BioGearsEngine/core/badge.png index 52e93579..a54add53 100644 Binary files a/_repos/github/BioGearsEngine/core/badge.png and b/_repos/github/BioGearsEngine/core/badge.png differ diff --git a/_repos/github/BioSTEAMDevelopmentGroup/thermosteam/badge.png b/_repos/github/BioSTEAMDevelopmentGroup/thermosteam/badge.png index 62ed6db8..cc7d6ae1 100644 Binary files a/_repos/github/BioSTEAMDevelopmentGroup/thermosteam/badge.png and b/_repos/github/BioSTEAMDevelopmentGroup/thermosteam/badge.png differ diff --git a/_repos/github/BioinfoUNIBA/REDItools2/badge.png b/_repos/github/BioinfoUNIBA/REDItools2/badge.png index 88839828..0a253274 100644 Binary files a/_repos/github/BioinfoUNIBA/REDItools2/badge.png and b/_repos/github/BioinfoUNIBA/REDItools2/badge.png differ diff --git a/_repos/github/BritishGeologicalSurvey/pyvolcans/README.md b/_repos/github/BritishGeologicalSurvey/pyvolcans/README.md index d7220a63..953a7eab 100644 --- a/_repos/github/BritishGeologicalSurvey/pyvolcans/README.md +++ b/_repos/github/BritishGeologicalSurvey/pyvolcans/README.md @@ -8,51 +8,60 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.31| -|pypi|[matplotlib](https://matplotlib.org)|0.198| -|pypi|[python-levenshtein](http://github.com/ztane/python-Levenshtein)|0.196| -|pypi|[future](https://python-future.org)|0.039| -|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.039| -|pypi|[h5py](http://www.h5py.org)|0.039| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.034| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.034| +|pypi|[future](https://python-future.org)|0.108| +|pypi|[h5py](http://www.h5py.org)|0.108| +|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.108| +|pypi|[matplotlib](https://matplotlib.org)|0.105| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.09| +|pypi|[python-levenshtein](https://pypi.org/project/python-levenshtein)|0.089| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.089| +|pypi|[numpy](https://pypi.org/project/numpy)|0.026| +|pypi|[scipy](https://pypi.org/project/scipy)|0.025| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.015| |setup.py|github/BritishGeologicalSurvey/pyvolcans|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.008| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.005| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.005| -|pypi|[psutil](https://pypi.org/project/psutil)|0.005| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.005| -|pypi|[execnet](https://pypi.org/project/execnet)|0.005| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| -|pypi|[pandas](https://pandas.pydata.org)|0.004| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[colorama](https://pypi.org/project/colorama)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[thefuzz](https://github.com/seatgeek/thefuzz)|0.002| -|pypi|[pymatreader](https://gitlab.com/obob/pymatreader)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[rich](https://pypi.org/project/rich)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[libcst](https://pypi.org/project/libcst)|0.002| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.002| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.002| -|pypi|[django](https://pypi.org/project/django)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| +|pypi|[pymatreader](https://gitlab.com/obob/pymatreader)|0.009| +|pypi|[thefuzz](https://github.com/seatgeek/thefuzz)|0.009| +|pypi|[versioneer](https://github.com/python-versioneer/python-versioneer)|0.008| +|pypi|[ipython](https://pypi.org/project/ipython)|0.008| +|pypi|[ipdb](https://pypi.org/project/ipdb)|0.008| +|pypi|[flake8](https://pypi.org/project/flake8)|0.008| +|pypi|[pandas](https://pypi.org/project/pandas)|0.008| +|pypi|[xattr](https://pypi.org/project/xattr)|0.007| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.007| +|pypi|[munkres](https://pypi.org/project/munkres)|0.007| +|pypi|[brotli](https://pypi.org/project/brotli)|0.007| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.007| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.007| +|pypi|[sympy](https://pypi.org/project/sympy)|0.007| +|pypi|[lz4](https://pypi.org/project/lz4)|0.007| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.007| +|pypi|[lxml](https://pypi.org/project/lxml)|0.007| +|pypi|[fs](https://pypi.org/project/fs)|0.007| +|pypi|[coverage](https://pypi.org/project/coverage)|0.007| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| +|pypi|[pyvolcans](https://github.com/BritishGeologicalSurvey/pyvolcans)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/BritishGeologicalSurvey/pyvolcans/badge.png b/_repos/github/BritishGeologicalSurvey/pyvolcans/badge.png index 00a080ac..7d461fb6 100644 Binary files a/_repos/github/BritishGeologicalSurvey/pyvolcans/badge.png and b/_repos/github/BritishGeologicalSurvey/pyvolcans/badge.png differ diff --git a/_repos/github/BritishGeologicalSurvey/pyvolcans/data.json b/_repos/github/BritishGeologicalSurvey/pyvolcans/data.json index ab142f3b..742f6a1c 100644 --- a/_repos/github/BritishGeologicalSurvey/pyvolcans/data.json +++ b/_repos/github/BritishGeologicalSurvey/pyvolcans/data.json @@ -6,189 +6,217 @@ } }, "pypi": { - "numpy": { - "credit": 0.31048281, - "url": "https://www.numpy.org" + "pyvolcans": { + "credit": 0.000899999999999998, + "url": "https://github.com/BritishGeologicalSurvey/pyvolcans" }, - "pandas": { - "credit": 0.0037768500000000373, - "url": "https://pandas.pydata.org" + "matplotlib": { + "credit": 0.10495384615384615, + "url": "https://matplotlib.org" }, "pymatreader": { - "credit": 0.0019799999999999818, + "credit": 0.008999999999999998, "url": "https://gitlab.com/obob/pymatreader" }, - "matplotlib": { - "credit": 0.198, - "url": "https://matplotlib.org" - }, "thefuzz": { - "credit": 0.0019800000000000095, + "credit": 0.008999999999999998, "url": "https://github.com/seatgeek/thefuzz" }, - "pytest-xdist": { - "credit": 0.0003266999999999992, - "url": "https://github.com/pytest-dev/pytest-xdist" + "cycler": { + "credit": 0.09, + "url": "https://github.com/matplotlib/cycler" }, - "pytest": { - "credit": 0.007514099999999999, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.002348156249999999, - "url": "https://hypothesis.works" + "fonttools": { + "credit": 0.000899999999999998, + "url": "http://github.com/fonttools/fonttools" }, - "pytz": { - "credit": 0.03446685, - "url": "http://pythonhosted.org/pytz" + "kiwisolver": { + "credit": 0.000899999999999998, + "url": "https://github.com/nucleic/kiwi" }, - "python-dateutil": { - "credit": 0.03446685, - "url": "https://github.com/dateutil/dateutil" + "pillow": { + "credit": 0.000899999999999998, + "url": "https://python-pillow.org" }, "future": { - "credit": 0.039204, + "credit": 0.10782, "url": "https://python-future.org" }, + "h5py": { + "credit": 0.10782, + "url": "http://www.h5py.org" + }, "xmltodict": { - "credit": 0.039204, + "credit": 0.10782, "url": "https://github.com/martinblech/xmltodict" }, - "scipy": { - "credit": 0.0003920400000000032, - "url": "https://www.scipy.org" + "versioneer": { + "credit": 0.0081, + "url": "https://github.com/python-versioneer/python-versioneer" }, - "h5py": { - "credit": 0.039204, - "url": "http://www.h5py.org" + "pytest-cov": { + "credit": 0.005649749999999999, + "url": "https://github.com/pytest-dev/pytest-cov" }, - "python-levenshtein": { - "credit": 0.19602, - "url": "http://github.com/ztane/python-Levenshtein" + "pytest": { + "credit": 0.014671125, + "url": "https://docs.pytest.org/en/latest/" + }, + "ipython": { + "credit": 0.0081, + "url": "https://pypi.org/project/ipython" + }, + "ipdb": { + "credit": 0.0081, + "url": "https://pypi.org/project/ipdb" + }, + "flake8": { + "credit": 0.0081, + "url": "https://pypi.org/project/flake8" + }, + "pandas": { + "credit": 0.0081, + "url": "https://pypi.org/project/pandas" }, - "filelock": { - "credit": 0.00539055, - "url": "https://github.com/tox-dev/py-filelock" + "numpy": { + "credit": 0.02592, + "url": "https://pypi.org/project/numpy" }, - "setproctitle": { - "credit": 0.00539055, - "url": "https://pypi.org/project/setproctitle" + "scipy": { + "credit": 0.024673846153846154, + "url": "https://pypi.org/project/scipy" }, - "psutil": { - "credit": 0.00539055, - "url": "https://pypi.org/project/psutil" + "python-levenshtein": { + "credit": 0.0891, + "url": "https://pypi.org/project/python-levenshtein" }, - "pytest-forked": { - "credit": 0.00539055, - "url": "https://pypi.org/project/pytest-forked" + "xattr": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/xattr" }, - "execnet": { - "credit": 0.00539055, - "url": "https://pypi.org/project/execnet" + "unicodedata2": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/unicodedata2" }, - "xmlschema": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/xmlschema" + "munkres": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/munkres" }, - "requests": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/requests" + "brotli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotli" }, - "pygments": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/pygments" + "brotlicffi": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotlicffi" }, - "nose": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/nose" + "skia-pathops": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/skia-pathops" }, - "mock": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/mock" + "sympy": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/sympy" }, - "argcomplete": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/argcomplete" + "lz4": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lz4" }, - "colorama": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/colorama" + "zopfli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/zopfli" }, - "atomicwrites": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/atomicwrites" + "lxml": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lxml" }, - "importlib-metadata": { - "credit": 0.00381830625, - "url": "https://pypi.org/project/importlib-metadata" + "fs": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/fs" }, - "tomli": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/tomli" + "typing-extensions": { + "credit": 0.0891, + "url": "https://pypi.org/project/typing-extensions" }, - "py": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/py" + "pytest-timeout": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pytest-timeout" }, - "pluggy": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.00202145625, + "credit": 0.00556875, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.00556875, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00556875, + "url": "https://pypi.org/project/defusedxml" }, - "attrs": { - "credit": 0.00381830625, - "url": "https://pypi.org/project/attrs" + "coverage": { + "credit": 0.006571125, + "url": "https://pypi.org/project/coverage" }, - "tzdata": { - "credit": 0.00179685, - "url": "https://pypi.org/project/tzdata" + "check-manifest": { + "credit": 0.00556875, + "url": "https://pypi.org/project/check-manifest" }, - "backports.zoneinfo": { - "credit": 0.00179685, - "url": "https://pypi.org/project/backports.zoneinfo" + "sphinxext-opengraph": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "rich": { - "credit": 0.00179685, - "url": "https://pypi.org/project/rich" + "sphinx-rtd-theme": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "redis": { - "credit": 0.00179685, - "url": "https://pypi.org/project/redis" + "sphinx-removed-in": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "libcst": { - "credit": 0.00179685, - "url": "https://pypi.org/project/libcst" + "sphinx-issues": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-issues" }, - "lark-parser": { - "credit": 0.00179685, - "url": "https://pypi.org/project/lark-parser" + "sphinx-copybutton": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "dpcontracts": { - "credit": 0.00179685, - "url": "https://pypi.org/project/dpcontracts" + "sphinx": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.00556875, + "url": "https://pypi.org/project/olefile" + }, + "virtualenv": { + "credit": 0.001002375, + "url": "https://pypi.org/project/virtualenv" + }, + "pytest-xdist": { + "credit": 0.001002375, + "url": "https://pypi.org/project/pytest-xdist" }, - "django": { - "credit": 0.00179685, - "url": "https://pypi.org/project/django" + "six": { + "credit": 0.001002375, + "url": "https://pypi.org/project/six" }, - "click": { - "credit": 0.00179685, - "url": "https://pypi.org/project/click" + "process-tests": { + "credit": 0.001002375, + "url": "https://pypi.org/project/process-tests" }, - "black": { - "credit": 0.00179685, - "url": "https://pypi.org/project/black" + "hunter": { + "credit": 0.001002375, + "url": "https://pypi.org/project/hunter" }, - "sortedcontainers": { - "credit": 0.00179685, - "url": "https://pypi.org/project/sortedcontainers" + "fields": { + "credit": 0.001002375, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/CEED/libCEED/README.md b/_repos/github/CEED/libCEED/README.md index 0e9bab75..c6114c7d 100644 --- a/_repos/github/CEED/libCEED/README.md +++ b/_repos/github/CEED/libCEED/README.md @@ -9,8 +9,11 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/CEED/libCEED|0.01| -|pypi|[cffi](http://cffi.readthedocs.org)|0.01| -|pypi|[pycparser](https://github.com/eliben/pycparser)|0.01| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.008| +|pypi|[cffi](http://cffi.readthedocs.org)|0.004| +|pypi|[libceed](https://libceed.readthedocs.io)|0.003| +|pypi|[numba](https://numba.pydata.org)|0.001| +|pypi|[numpy](https://www.numpy.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/CEED/libCEED/badge.png b/_repos/github/CEED/libCEED/badge.png index 930a264f..33b12c17 100644 Binary files a/_repos/github/CEED/libCEED/badge.png and b/_repos/github/CEED/libCEED/badge.png differ diff --git a/_repos/github/CEED/libCEED/data.json b/_repos/github/CEED/libCEED/data.json index d900d45d..ea5d04fe 100644 --- a/_repos/github/CEED/libCEED/data.json +++ b/_repos/github/CEED/libCEED/data.json @@ -6,13 +6,25 @@ } }, "pypi": { + "libceed": { + "credit": 0.0033000000000000004, + "url": "https://libceed.readthedocs.io" + }, "cffi": { - "credit": 0.0099, + "credit": 0.0043890000000000005, "url": "http://cffi.readthedocs.org" }, "pycparser": { - "credit": 0.009801, + "credit": 0.00764511, "url": "https://github.com/eliben/pycparser" + }, + "numba": { + "credit": 0.001089, + "url": "https://numba.pydata.org" + }, + "numpy": { + "credit": 0.001089, + "url": "https://www.numpy.org" } } } \ No newline at end of file diff --git a/_repos/github/CFSAN-Biostatistics/SeroTools/README.md b/_repos/github/CFSAN-Biostatistics/SeroTools/README.md index 72cc63a0..54809a3e 100644 --- a/_repos/github/CFSAN-Biostatistics/SeroTools/README.md +++ b/_repos/github/CFSAN-Biostatistics/SeroTools/README.md @@ -8,94 +8,54 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.103| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.096| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.075| -|pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.032| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.03| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.028| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.028| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.028| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.028| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.026| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.024| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.021| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.015| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.013| -|pypi|[pep517](https://pypi.org/project/pep517)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.01| +|pypi|[numpy](https://www.numpy.org)|0.575| +|pypi|[pytz](http://pythonhosted.org/pytz)|0.085| +|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.085| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.04| +|pypi|[execnet](https://pypi.org/project/execnet)|0.013| +|pypi|[py](https://pypi.org/project/py)|0.012| |setup.py|github/CFSAN-Biostatistics/SeroTools|0.01| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[attrs](https://www.attrs.org/)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.005| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.005| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.005| -|pypi|[path](https://pypi.org/project/path)|0.005| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| -|pypi|[keyring](https://pypi.org/project/keyring)|0.005| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.005| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.005| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.003| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| +|pypi|[serotools](https://github.com/CFSAN-Biostatistics/serotools)|0.01| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.009| +|pypi|[attrs](https://pypi.org/project/attrs)|0.009| +|pypi|[pandas](https://pandas.pydata.org)|0.009| +|pypi|[mock](https://pypi.org/project/mock)|0.007| +|pypi|[hypothesis](https://hypothesis.works)|0.006| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.005| +|pypi|[requests](https://pypi.org/project/requests)|0.005| +|pypi|[pygments](https://pypi.org/project/pygments)|0.005| +|pypi|[nose](https://pypi.org/project/nose)|0.005| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.005| +|pypi|[colorama](https://pypi.org/project/colorama)|0.005| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.005| +|pypi|[tomli](https://pypi.org/project/tomli)|0.005| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.005| +|pypi|[packaging](https://pypi.org/project/packaging)|0.005| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.005| +|pypi|[tzdata](https://pypi.org/project/tzdata)|0.004| +|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.004| +|pypi|[rich](https://pypi.org/project/rich)|0.004| +|pypi|[redis](https://pypi.org/project/redis)|0.004| +|pypi|[libcst](https://pypi.org/project/libcst)|0.004| +|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.004| +|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.004| +|pypi|[django](https://pypi.org/project/django)|0.004| +|pypi|[click](https://pypi.org/project/click)|0.004| +|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.004| +|pypi|[wmi](https://pypi.org/project/wmi)|0.002| +|pypi|[pywin32](https://pypi.org/project/pywin32)|0.002| +|pypi|[enum34](https://pypi.org/project/enum34)|0.002| +|pypi|[unittest2](https://pypi.org/project/unittest2)|0.002| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.002| |pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.002| +|pypi|[coverage](https://pypi.org/project/coverage)|0.002| |pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| |pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|0.001| -|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.001| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| +|pypi|[furo](https://pypi.org/project/furo)|0.002| +|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/CFSAN-Biostatistics/SeroTools/badge.png b/_repos/github/CFSAN-Biostatistics/SeroTools/badge.png index 06fc88d2..7c8e4e99 100644 Binary files a/_repos/github/CFSAN-Biostatistics/SeroTools/badge.png and b/_repos/github/CFSAN-Biostatistics/SeroTools/badge.png differ diff --git a/_repos/github/CFSAN-Biostatistics/SeroTools/data.json b/_repos/github/CFSAN-Biostatistics/SeroTools/data.json index b7f94452..4f8b382d 100644 --- a/_repos/github/CFSAN-Biostatistics/SeroTools/data.json +++ b/_repos/github/CFSAN-Biostatistics/SeroTools/data.json @@ -6,357 +6,209 @@ } }, "pypi": { - "pytest-runner": { + "serotools": { "credit": 0.00990000000000002, - "url": "https://github.com/pytest-dev/pytest-runner/" + "url": "https://github.com/CFSAN-Biostatistics/serotools" }, - "pytest-mypy": { - "credit": 0.02794362032967033, - "url": "https://github.com/dbader/pytest-mypy" + "pandas": { + "credit": 0.00934770375000003, + "url": "https://pandas.pydata.org" }, - "pytest-black": { - "credit": 0.10258200494505493, - "url": "https://github.com/shopkeep/pytest-black" + "numpy": { + "credit": 0.57535545375, + "url": "https://www.numpy.org" }, - "types-setuptools": { - "credit": 0.07539230769230769, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.0007539230769230826, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.030252745353708792, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.02794362032967033, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-checkdocs" + "pytest-xdist": { + "credit": 0.0008085825000000019, + "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest": { - "credit": 0.09642254402234783, + "credit": 0.0400607145984375, "url": "https://docs.pytest.org/en/latest/" }, - "jaraco.tidelift": { - "credit": 0.0007539230769230826, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/jaraco.packaging" + "hypothesis": { + "credit": 0.005811686718749987, + "url": "https://hypothesis.works" }, - "sphinx": { - "credit": 0.03167374536850169, - "url": "https://www.sphinx-doc.org/" + "pytz": { + "credit": 0.08530545375, + "url": "http://pythonhosted.org/pytz" }, - "mypy": { - "credit": 0.004593131360946745, - "url": "http://www.mypy-lang.org/" + "python-dateutil": { + "credit": 0.08530545375, + "url": "https://github.com/dateutil/dateutil" }, "filelock": { - "credit": 0.00018659596153846117, + "credit": 0.00013341611249999968, "url": "https://github.com/tox-dev/py-filelock" }, - "attrs": { - "credit": 0.0060060575120192295, - "url": "https://www.attrs.org/" - }, - "mock": { - "credit": 0.02074713847355769, - "url": "http://mock.readthedocs.org/en/latest/" - }, - "virtualenv": { - "credit": 0.024257474999999997, - "url": "https://virtualenv.pypa.io/" - }, - "pytest-shutil": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-fixture-config" + "setproctitle": { + "credit": 0.00013341611249999968, + "url": "https://github.com/dvarrazzo/py-setproctitle" }, - "types-toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.010750798091715976, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.013059923115754437, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.04030472769230769, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.010307205494505494, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.02568748869333791, - "url": "https://pypi.org/project/importlib-metadata" + "psutil": { + "credit": 0.00013341611250000142, + "url": "https://github.com/giampaolo/psutil" }, - "pep517": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/pep517" + "pytest-forked": { + "credit": 0.00013341611249999968, + "url": "https://github.com/pytest-dev/pytest-forked" }, - "docutils": { - "credit": 0.008316848571428571, - "url": "https://pypi.org/project/docutils" + "execnet": { + "credit": 0.013341611249999998, + "url": "https://pypi.org/project/execnet" }, "xmlschema": { - "credit": 0.005819461550480768, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/xmlschema" }, "requests": { - "credit": 0.008804996935096152, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/requests" }, "pygments": { - "credit": 0.005819461550480768, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.005819461550480768, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/nose" }, - "hypothesis": { - "credit": 0.007240461565273667, - "url": "https://pypi.org/project/hypothesis" + "mock": { + "credit": 0.0072044700749999985, + "url": "https://pypi.org/project/mock" }, "argcomplete": { - "credit": 0.005819461550480768, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.008804996935096152, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.005819461550480768, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/atomicwrites" }, + "importlib-metadata": { + "credit": 0.009450307968749998, + "url": "https://pypi.org/project/importlib-metadata" + }, "tomli": { - "credit": 0.008898294915865383, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.005819461550480768, + "credit": 0.011607201787499999, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.005819461550480768, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.008804996935096152, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.005819461550480768, + "credit": 0.005003104218749999, "url": "https://pypi.org/project/iniconfig" }, - "importlib-resources": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-python-dateutil" - }, - "path": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/path" - }, - "python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/python-dateutil" - }, - "types-requests": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/isort" - }, - "sphinxcontrib-websupport": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "imagesize": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/snowballstemmer" - }, - "Pygments": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Jinja2" + "attrs": { + "credit": 0.009450307968749998, + "url": "https://pypi.org/project/attrs" }, - "sphinxcontrib-qthelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" + "tzdata": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/tzdata" }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + "backports.zoneinfo": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/backports.zoneinfo" }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + "rich": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/rich" }, - "sphinxcontrib-jsmath": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" + "redis": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/redis" }, - "sphinxcontrib-devhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" + "libcst": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/libcst" }, - "sphinxcontrib-applehelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" + "lark-parser": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/lark-parser" }, - "lxml": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/lxml" + "dpcontracts": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/dpcontracts" }, - "psutil": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/psutil" + "django": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/django" }, - "typed-ast": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typed-ast" + "click": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/click" }, - "mypy-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/mypy-extensions" + "black": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/black" }, - "typing-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typing-extensions" + "sortedcontainers": { + "credit": 0.00444720375, + "url": "https://pypi.org/project/sortedcontainers" }, "pytest-timeout": { - "credit": 0.0023091250240384613, + "credit": 0.0016510243921874998, "url": "https://pypi.org/project/pytest-timeout" }, + "pytest-cov": { + "credit": 0.0016510243921874998, + "url": "https://pypi.org/project/pytest-cov" + }, + "coverage": { + "credit": 0.0016510243921874998, + "url": "https://pypi.org/project/coverage" + }, "covdefaults": { - "credit": 0.0023091250240384613, + "credit": 0.0016510243921874998, "url": "https://pypi.org/project/covdefaults" }, "sphinx-autodoc-typehints": { - "credit": 0.0023091250240384613, + "credit": 0.0016510243921874998, "url": "https://pypi.org/project/sphinx-autodoc-typehints" }, + "sphinx": { + "credit": 0.0016510243921874998, + "url": "https://pypi.org/project/sphinx" + }, "furo": { - "credit": 0.003730125038831361, + "credit": 0.0016510243921874998, "url": "https://pypi.org/project/furo" }, - "cloudpickle": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pre-commit" + "wmi": { + "credit": 0.0022013658562499996, + "url": "https://pypi.org/project/wmi" }, - "sphinx-notfound-page": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/sphinx-notfound-page" + "pywin32": { + "credit": 0.0022013658562499996, + "url": "https://pypi.org/project/pywin32" }, - "zope.interface": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/zope.interface" + "enum34": { + "credit": 0.0022013658562499996, + "url": "https://pypi.org/project/enum34" }, - "pytest-mypy-plugins": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pytest-mypy-plugins" + "unittest2": { + "credit": 0.0022013658562499996, + "url": "https://pypi.org/project/unittest2" }, - "pympler": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pympler" + "ipaddress": { + "credit": 0.0022013658562499996, + "url": "https://pypi.org/project/ipaddress" } } } \ No newline at end of file diff --git a/_repos/github/CLARIAH/grlc/badge.png b/_repos/github/CLARIAH/grlc/badge.png index f3ce4334..6cf9bf1a 100644 Binary files a/_repos/github/CLARIAH/grlc/badge.png and b/_repos/github/CLARIAH/grlc/badge.png differ diff --git a/_repos/github/COVID-IWG/epimargin/README.md b/_repos/github/COVID-IWG/epimargin/README.md index 9702bc81..25d9e6c0 100644 --- a/_repos/github/COVID-IWG/epimargin/README.md +++ b/_repos/github/COVID-IWG/epimargin/README.md @@ -8,71 +8,98 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.181| -|pypi|[matplotlib](https://matplotlib.org)|0.123| -|pypi|[pandas](https://pandas.pydata.org)|0.094| -|pypi|[statsmodels](https://www.statsmodels.org/)|0.076| -|pypi|[semver](https://github.com/python-semver/python-semver)|0.076| -|pypi|[scipy](https://pypi.org/project/scipy)|0.036| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.022| -|pypi|[webcolors](https://pypi.org/project/webcolors)|0.019| -|pypi|[pyproj](https://pypi.org/project/pyproj)|0.019| -|pypi|[fiona](https://pypi.org/project/fiona)|0.019| -|pypi|[shapely](https://pypi.org/project/shapely)|0.019| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.018| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.013| -|pypi|[pytz](https://pypi.org/project/pytz)|0.013| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.013| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.011| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.011| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.011| -|pypi|[idna](https://pypi.org/project/idna)|0.011| -|pypi|[chardet](https://pypi.org/project/chardet)|0.011| -|pypi|[certifi](https://pypi.org/project/certifi)|0.011| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.011| +|pypi|[numpy](https://pypi.org/project/numpy)|0.096| +|pypi|[matplotlib](https://matplotlib.org)|0.06| +|pypi|[click](https://pypi.org/project/click)|0.053| +|pypi|[pandas](https://pypi.org/project/pandas)|0.044| +|pypi|[webcolors](https://github.com/ubernostrum/webcolors)|0.043| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.039| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.038| +|pypi|[fastprogress](https://github.com/fastai/fastprogress)|0.038| +|pypi|[semver](https://github.com/python-semver/python-semver)|0.037| +|pypi|[statsmodels](https://www.statsmodels.org/)|0.037| +|pypi|[netcdf4](http://github.com/Unidata/netcdf4-python)|0.037| +|pypi|[munch](https://github.com/Infinidat/munch)|0.036| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.036| +|pypi|[certifi](https://pypi.org/project/certifi)|0.036| +|pypi|[theano-pymc](http://deeplearning.net/software/theano/)|0.034| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.034| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.034| +|pypi|[scipy](https://pypi.org/project/scipy)|0.025| +|pypi|[pytest](https://pypi.org/project/pytest)|0.022| +|pypi|[shapely](https://github.com/shapely/shapely)|0.011| |setup.py|github/COVID-IWG/epimargin|0.01| -|pypi|[arviz](http://github.com/arviz-devs/arviz)|0.009| -|pypi|[patsy](https://pypi.org/project/patsy)|0.008| -|pypi|[fastprogress](https://pypi.org/project/fastprogress)|0.008| -|pypi|[dill](https://pypi.org/project/dill)|0.008| -|pypi|[deprecat](https://pypi.org/project/deprecat)|0.008| -|pypi|[cachetools](https://pypi.org/project/cachetools)|0.008| -|pypi|[zarr](https://pypi.org/project/zarr)|0.005| -|pypi|[dask](https://pypi.org/project/dask)|0.005| -|pypi|[ujson](https://pypi.org/project/ujson)|0.005| -|pypi|[bokeh](https://pypi.org/project/bokeh)|0.005| -|pypi|[numba](https://pypi.org/project/numba)|0.005| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.005| -|pypi|[xarray](https://pypi.org/project/xarray)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| +|pypi|[six](https://pypi.org/project/six)|0.009| +|pypi|[fiona](http://github.com/Toblerity/Fiona)|0.009| +|pypi|[pyproj](https://github.com/pyproj4/pyproj)|0.009| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.008| +|pypi|[arviz](http://github.com/arviz-devs/arviz)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| |pypi|[setuptools](https://pypi.org/project/setuptools)|0.005| |pypi|[seaborn](https://seaborn.pydata.org)|0.004| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.004| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| -|pypi|[flake8](https://pypi.org/project/flake8)|0.004| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.004| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.004| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.004| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.004| -|pypi|[joblib](https://pypi.org/project/joblib)|0.004| -|pypi|[filelock](https://pypi.org/project/filelock)|0.002| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| -|pypi|[psutil](https://pypi.org/project/psutil)|0.002| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.002| -|pypi|[execnet](https://pypi.org/project/execnet)|0.002| -|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|0.001| -|pypi|[flat-table](https://github.com/metinsenturk/flat_table)|0.001| -|pypi|[requests](https://requests.readthedocs.io)|0.001| -|pypi|[tikzplotlib](https://pypi.org/project/tikzplotlib)|0.001| -|pypi|[geopandas](http://geopandas.org)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| +|pypi|[patsy](https://github.com/pydata/patsy)|0.004| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.004| +|pypi|[deprecat](https://pypi.org/project/deprecat)|0.004| +|pypi|[zarr](https://pypi.org/project/zarr)|0.004| +|pypi|[dask](https://pypi.org/project/dask)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| +|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|0.003| +|pypi|[flat-table](https://github.com/metinsenturk/flat_table)|0.003| +|pypi|[geopandas](http://geopandas.org)|0.003| +|pypi|[tikzplotlib](https://pypi.org/project/tikzplotlib)|0.003| +|pypi|[xarray](https://github.com/pydata/xarray)|0.003| +|pypi|[scikit-learn](http://scikit-learn.org)|0.003| +|pypi|[requests](https://pypi.org/project/requests)|0.003| +|pypi|[xattr](https://pypi.org/project/xattr)|0.003| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.003| +|pypi|[munkres](https://pypi.org/project/munkres)|0.003| +|pypi|[brotli](https://pypi.org/project/brotli)|0.003| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.003| +|pypi|[sympy](https://pypi.org/project/sympy)|0.003| +|pypi|[lz4](https://pypi.org/project/lz4)|0.003| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.003| +|pypi|[lxml](https://pypi.org/project/lxml)|0.003| +|pypi|[fs](https://pypi.org/project/fs)|0.003| +|pypi|[click-plugins](https://github.com/click-contrib/click-plugins)|0.003| +|pypi|[cligj](https://github.com/mapbox/cligj)|0.003| +|pypi|[ujson](https://pypi.org/project/ujson)|0.002| +|pypi|[bokeh](https://pypi.org/project/bokeh)|0.002| +|pypi|[numba](https://pypi.org/project/numba)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[boto3](https://pypi.org/project/boto3)|0.002| +|pypi|[ordereddict](https://pypi.org/project/ordereddict)|0.002| +|pypi|[argparse](https://pypi.org/project/argparse)|0.002| +|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.002| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.002| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.002| +|pypi|[coverage](https://pypi.org/project/coverage)|0.002| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.002| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.002| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.002| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.002| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| +|pypi|[olefile](https://pypi.org/project/olefile)|0.002| +|pypi|[cftime](https://pypi.org/project/cftime)|0.002| +|pypi|[scanpydoc](https://pypi.org/project/scanpydoc)|0.001| +|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.001| +|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.001| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|0.001| +|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|0.001| +|pypi|[pooch](https://pypi.org/project/pooch)|0.001| +|pypi|[cfgrib](https://pypi.org/project/cfgrib)|0.001| +|pypi|[rasterio](https://pypi.org/project/rasterio)|0.001| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.001| +|pypi|[pydap](https://pypi.org/project/pydap)|0.001| +|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|0.001| +|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.001| +|pypi|[numbagg](https://pypi.org/project/numbagg)|0.001| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/COVID-IWG/epimargin/badge.png b/_repos/github/COVID-IWG/epimargin/badge.png index 0bffedaa..cbf27e84 100644 Binary files a/_repos/github/COVID-IWG/epimargin/badge.png and b/_repos/github/COVID-IWG/epimargin/badge.png differ diff --git a/_repos/github/COVID-IWG/epimargin/data.json b/_repos/github/COVID-IWG/epimargin/data.json index aa8e15b1..34ccc0ae 100644 --- a/_repos/github/COVID-IWG/epimargin/data.json +++ b/_repos/github/COVID-IWG/epimargin/data.json @@ -6,265 +6,385 @@ } }, "pypi": { - "numpy": { - "credit": 0.18146373626373624, - "url": "https://www.numpy.org" + "epimargin": { + "credit": 0.000341379310344829, + "url": "https://github.com/COVID-IWG/epimargin" }, - "pandas": { - "credit": 0.09350604395604396, - "url": "https://pandas.pydata.org" + "pymc3": { + "credit": 0.0029411140583554393, + "url": "http://github.com/pymc-devs/pymc3" }, - "matplotlib": { - "credit": 0.12282527472527474, - "url": "https://matplotlib.org" + "semver": { + "credit": 0.03673766578249337, + "url": "https://github.com/python-semver/python-semver" + }, + "theano-pymc": { + "credit": 0.03413793103448276, + "url": "http://deeplearning.net/software/theano/" }, "arviz": { - "credit": 0.009138461538461543, + "credit": 0.0066962864721485426, "url": "http://github.com/arviz-devs/arviz" }, - "pymc3": { - "credit": 0.0007615384615384663, - "url": "http://github.com/pymc-devs/pymc3" - }, - "statsmodels": { - "credit": 0.07615384615384616, - "url": "https://www.statsmodels.org/" + "matplotlib": { + "credit": 0.05994958317544524, + "url": "https://matplotlib.org" }, "flat-table": { - "credit": 0.0007615384615384663, + "credit": 0.0029411140583554393, "url": "https://github.com/metinsenturk/flat_table" }, - "requests": { - "credit": 0.0007615384615384663, - "url": "https://requests.readthedocs.io" + "geopandas": { + "credit": 0.0029411140583554393, + "url": "http://geopandas.org" }, "seaborn": { - "credit": 0.004351648351648356, + "credit": 0.004240981432360744, "url": "https://seaborn.pydata.org" }, + "statsmodels": { + "credit": 0.03673766578249337, + "url": "https://www.statsmodels.org/" + }, "tikzplotlib": { - "credit": 0.0007615384615384663, + "credit": 0.0029411140583554393, "url": "https://pypi.org/project/tikzplotlib" }, - "geopandas": { - "credit": 0.0007615384615384663, - "url": "http://geopandas.org" + "cachetools": { + "credit": 0.037893103448275865, + "url": "https://github.com/tkem/cachetools/" + }, + "cycler": { + "credit": 0.03413793103448276, + "url": "https://github.com/matplotlib/cycler" + }, + "fastprogress": { + "credit": 0.037893103448275865, + "url": "https://github.com/fastai/fastprogress" + }, + "fiona": { + "credit": 0.008790517241379312, + "url": "http://github.com/Toblerity/Fiona" + }, + "fonttools": { + "credit": 0.000341379310344829, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.000341379310344829, + "url": "https://github.com/nucleic/kiwi" + }, + "patsy": { + "credit": 0.004096551724137932, + "url": "https://github.com/pydata/patsy" + }, + "pillow": { + "credit": 0.000341379310344829, + "url": "https://python-pillow.org" + }, + "pyproj": { + "credit": 0.008790517241379312, + "url": "https://github.com/pyproj4/pyproj" + }, + "shapely": { + "credit": 0.011043620689655174, + "url": "https://github.com/shapely/shapely" + }, + "xarray": { + "credit": 0.002755418719211824, + "url": "https://github.com/pydata/xarray" + }, + "dill": { + "credit": 0.004096551724137932, + "url": "https://github.com/uqfoundation/dill" + }, + "netcdf4": { + "credit": 0.036551970443349756, + "url": "http://github.com/Unidata/netcdf4-python" + }, + "webcolors": { + "credit": 0.04258706896551724, + "url": "https://github.com/ubernostrum/webcolors" + }, + "click-plugins": { + "credit": 0.002594482758620691, + "url": "https://github.com/click-contrib/click-plugins" + }, + "cligj": { + "credit": 0.002594482758620691, + "url": "https://github.com/mapbox/cligj" + }, + "cftime": { + "credit": 0.0016412466843501341, + "url": "https://pypi.org/project/cftime" + }, + "munch": { + "credit": 0.03639103448275862, + "url": "https://github.com/Infinidat/munch" }, "scikit-learn": { - "credit": 0.0007615384615384663, + "credit": 0.0025997347480106103, "url": "http://scikit-learn.org" }, - "semver": { - "credit": 0.07615384615384616, - "url": "https://github.com/python-semver/python-semver" - }, - "pytest-xdist": { - "credit": 0.00012565384615384652, - "url": "https://github.com/pytest-dev/pytest-xdist" + "requests": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/requests" }, - "pytest": { - "credit": 0.018228782967032967, - "url": "https://docs.pytest.org/en/latest/" + "pandas": { + "credit": 0.04386536566881394, + "url": "https://pypi.org/project/pandas" }, - "hypothesis": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/hypothesis" + "numpy": { + "credit": 0.09568674497915877, + "url": "https://pypi.org/project/numpy" }, - "pytz": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/pytz" + "scipy": { + "credit": 0.025277262220538086, + "url": "https://pypi.org/project/scipy" }, - "python-dateutil": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/python-dateutil" + "deprecat": { + "credit": 0.0037551724137931033, + "url": "https://pypi.org/project/deprecat" }, "zarr": { - "credit": 0.005385164835164835, + "credit": 0.0037139067828723003, "url": "https://pypi.org/project/zarr" }, "dask": { - "credit": 0.005385164835164835, + "credit": 0.0037139067828723003, "url": "https://pypi.org/project/dask" }, "ujson": { - "credit": 0.005385164835164835, + "credit": 0.002414039408866995, "url": "https://pypi.org/project/ujson" }, "bokeh": { - "credit": 0.005385164835164835, + "credit": 0.002414039408866995, "url": "https://pypi.org/project/bokeh" }, "numba": { - "credit": 0.005385164835164835, + "credit": 0.002414039408866995, "url": "https://pypi.org/project/numba" }, "typing-extensions": { - "credit": 0.005385164835164835, + "credit": 0.03621059113300493, "url": "https://pypi.org/project/typing-extensions" }, - "netcdf4": { - "credit": 0.005385164835164835, - "url": "https://pypi.org/project/netcdf4" - }, - "xarray": { - "credit": 0.005385164835164835, - "url": "https://pypi.org/project/xarray" - }, "packaging": { - "credit": 0.005385164835164835, + "credit": 0.0058261912656309214, "url": "https://pypi.org/project/packaging" }, - "scipy": { - "credit": 0.03620027472527473, - "url": "https://pypi.org/project/scipy" - }, "setuptools": { - "credit": 0.005385164835164835, + "credit": 0.0046671428571428576, "url": "https://pypi.org/project/setuptools" }, - "patsy": { - "credit": 0.008376923076923077, - "url": "https://pypi.org/project/patsy" + "Pillow": { + "credit": 0.008449137931034483, + "url": "https://pypi.org/project/Pillow" }, - "fastprogress": { - "credit": 0.008376923076923077, - "url": "https://pypi.org/project/fastprogress" + "mock": { + "credit": 0.002253103448275862, + "url": "https://pypi.org/project/mock" }, - "dill": { - "credit": 0.008376923076923077, - "url": "https://pypi.org/project/dill" - }, - "deprecat": { - "credit": 0.008376923076923077, - "url": "https://pypi.org/project/deprecat" + "pytest": { + "credit": 0.02239021551724138, + "url": "https://pypi.org/project/pytest" }, - "cachetools": { - "credit": 0.008376923076923077, - "url": "https://pypi.org/project/cachetools" + "pytest-cov": { + "credit": 0.03928849137931034, + "url": "https://pypi.org/project/pytest-cov" }, - "win-inet-pton": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/win-inet-pton" + "boto3": { + "credit": 0.002253103448275862, + "url": "https://pypi.org/project/boto3" }, - "PySocks": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/PySocks" + "ordereddict": { + "credit": 0.002253103448275862, + "url": "https://pypi.org/project/ordereddict" }, - "charset-normalizer": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/charset-normalizer" + "argparse": { + "credit": 0.002253103448275862, + "url": "https://pypi.org/project/argparse" }, - "idna": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/idna" + "six": { + "credit": 0.009012413793103448, + "url": "https://pypi.org/project/six" }, - "chardet": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/chardet" + "click": { + "credit": 0.052947931034482754, + "url": "https://pypi.org/project/click" }, "certifi": { - "credit": 0.01077032967032967, + "credit": 0.03604965517241379, "url": "https://pypi.org/project/certifi" }, - "urllib3": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/urllib3" + "attrs": { + "credit": 0.002253103448275862, + "url": "https://pypi.org/project/attrs" }, - "webcolors": { - "credit": 0.018848076923076922, - "url": "https://pypi.org/project/webcolors" + "xattr": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/xattr" }, - "Pillow": { - "credit": 0.022438186813186812, - "url": "https://pypi.org/project/Pillow" + "unicodedata2": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/unicodedata2" }, - "pyproj": { - "credit": 0.018848076923076922, - "url": "https://pypi.org/project/pyproj" + "munkres": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/munkres" }, - "fiona": { - "credit": 0.018848076923076922, - "url": "https://pypi.org/project/fiona" + "brotli": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/brotli" }, - "shapely": { - "credit": 0.018848076923076922, - "url": "https://pypi.org/project/shapely" + "brotlicffi": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/brotlicffi" }, - "pyamg": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pyamg" + "skia-pathops": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/skia-pathops" }, - "mypy": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/mypy" + "sympy": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/sympy" }, - "black": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/black" + "lz4": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/lz4" }, - "flake8": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/flake8" + "zopfli": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/zopfli" }, - "pytest-cov": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pytest-cov" + "lxml": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/check-manifest" }, "sphinxext-opengraph": { - "credit": 0.00359010989010989, + "credit": 0.0021122844827586207, "url": "https://pypi.org/project/sphinxext-opengraph" }, - "sphinx-prompt": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/sphinx-prompt" + "sphinx-rtd-theme": { + "credit": 0.003412151856763926, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "numpydoc": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/numpydoc" + "sphinx-issues": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinx-issues" }, - "sphinx-gallery": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/sphinx-gallery" + "sphinx-copybutton": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinx-copybutton" }, "sphinx": { - "credit": 0.00359010989010989, + "credit": 0.0021122844827586207, "url": "https://pypi.org/project/sphinx" }, - "scikit-image": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/scikit-image" + "olefile": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/olefile" + }, + "scanpydoc": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/scanpydoc" + }, + "nbsphinx": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/nbsphinx" + }, + "jupyter-client": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/jupyter-client" + }, + "ipykernel": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/ipykernel" + }, + "ipython": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/ipython" + }, + "sphinx-autosummary-accessors": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/sphinx-autosummary-accessors" + }, + "nc-time-axis": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/nc-time-axis" + }, + "pooch": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/pooch" + }, + "cfgrib": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/cfgrib" }, - "memory-profiler": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/memory-profiler" + "rasterio": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/rasterio" }, - "threadpoolctl": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/threadpoolctl" + "fsspec": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/fsspec" }, - "joblib": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/joblib" + "pydap": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/pydap" }, - "filelock": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/filelock" + "h5netcdf": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/h5netcdf" }, - "setproctitle": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/setproctitle" + "netCDF4": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/netCDF4" }, - "psutil": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/psutil" + "numbagg": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/numbagg" }, - "pytest-forked": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/pytest-forked" + "bottleneck": { + "credit": 0.0012998673740053051, + "url": "https://pypi.org/project/bottleneck" }, - "execnet": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/execnet" + "objgraph": { + "credit": 0.03379655172413793, + "url": "https://pypi.org/project/objgraph" } } } \ No newline at end of file diff --git a/_repos/github/Climdyn/qgs/badge.png b/_repos/github/Climdyn/qgs/badge.png index f13397dd..67704656 100644 Binary files a/_repos/github/Climdyn/qgs/badge.png and b/_repos/github/Climdyn/qgs/badge.png differ diff --git a/_repos/github/ComparativeGenomicsToolkit/cactus/README.md b/_repos/github/ComparativeGenomicsToolkit/cactus/README.md index 4d248377..13fa0d91 100644 --- a/_repos/github/ComparativeGenomicsToolkit/cactus/README.md +++ b/_repos/github/ComparativeGenomicsToolkit/cactus/README.md @@ -8,53 +8,37 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[decorator](https://github.com/micheles/decorator)|0.198| -|pypi|[cigar](https://github.com/brentp/cigar)|0.198| -|pypi|[biopython](https://biopython.org/)|0.198| -|pypi|[requests](https://pypi.org/project/requests)|0.017| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.012| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.012| -|pypi|[pygments](https://pypi.org/project/pygments)|0.012| -|pypi|[nose](https://pypi.org/project/nose)|0.012| -|pypi|[mock](https://pypi.org/project/mock)|0.012| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.012| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.012| -|pypi|[colorama](https://pypi.org/project/colorama)|0.012| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.012| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.012| -|pypi|[tomli](https://pypi.org/project/tomli)|0.012| -|pypi|[py](https://pypi.org/project/py)|0.012| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.012| -|pypi|[packaging](https://pypi.org/project/packaging)|0.012| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.012| -|pypi|[attrs](https://pypi.org/project/attrs)|0.012| +|pypi|[Cactus](http://github.com/koenbok/Cactus)|0.247| +|pypi|[biopython](https://biopython.org/)|0.247| +|pypi|[cigar](https://github.com/brentp/cigar)|0.247| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.014| +|pypi|[sympy](https://pypi.org/project/sympy)|0.012| +|pypi|[pydot](https://pypi.org/project/pydot)|0.012| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.012| +|pypi|[lxml](https://pypi.org/project/lxml)|0.012| +|pypi|[texext](https://pypi.org/project/texext)|0.012| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.012| +|pypi|[pillow](https://pypi.org/project/pillow)|0.012| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.012| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.012| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[mypy](https://pypi.org/project/mypy)|0.012| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.012| +|pypi|[pandas](https://pypi.org/project/pandas)|0.012| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.012| +|pypi|[scipy](https://pypi.org/project/scipy)|0.012| +|pypi|[numpy](https://pypi.org/project/numpy)|0.012| |setup.py|github/ComparativeGenomicsToolkit/cactus|0.01| -|pypi|[pydot](https://pypi.org/project/pydot)|0.009| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.009| -|pypi|[lxml](https://pypi.org/project/lxml)|0.009| -|pypi|[texext](https://pypi.org/project/texext)|0.009| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.009| -|pypi|[pillow](https://pypi.org/project/pillow)|0.009| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.009| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.009| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.009| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| -|pypi|[mypy](https://pypi.org/project/mypy)|0.009| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.009| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.009| -|pypi|[black](https://pypi.org/project/black)|0.009| -|pypi|[pandas](https://pypi.org/project/pandas)|0.009| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.009| -|pypi|[scipy](https://pypi.org/project/scipy)|0.009| -|pypi|[numpy](https://pypi.org/project/numpy)|0.009| -|pypi|[coverage](https://pypi.org/project/coverage)|0.006| +|pypi|[coverage](https://pypi.org/project/coverage)|0.008| +|pypi|[requests](https://pypi.org/project/requests)|0.006| |pypi|[networkx](https://networkx.org/)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| -|pypi|[six](https://pypi.org/project/six)|0.001| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| -|pypi|[hunter](https://pypi.org/project/hunter)|0.001| -|pypi|[fields](https://pypi.org/project/fields)|0.001| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[six](https://pypi.org/project/six)|0.002| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| +|pypi|[hunter](https://pypi.org/project/hunter)|0.002| +|pypi|[fields](https://pypi.org/project/fields)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/ComparativeGenomicsToolkit/cactus/badge.png b/_repos/github/ComparativeGenomicsToolkit/cactus/badge.png index 9d66aa34..5c6e95b2 100644 Binary files a/_repos/github/ComparativeGenomicsToolkit/cactus/badge.png and b/_repos/github/ComparativeGenomicsToolkit/cactus/badge.png differ diff --git a/_repos/github/ComparativeGenomicsToolkit/cactus/data.json b/_repos/github/ComparativeGenomicsToolkit/cactus/data.json index df862a14..940ad2b9 100644 --- a/_repos/github/ComparativeGenomicsToolkit/cactus/data.json +++ b/_repos/github/ComparativeGenomicsToolkit/cactus/data.json @@ -6,196 +6,132 @@ } }, "pypi": { - "decorator": { - "credit": 0.198, - "url": "https://github.com/micheles/decorator" + "Cactus": { + "credit": 0.2475, + "url": "http://github.com/koenbok/Cactus" }, "networkx": { - "credit": 0.0019799999999999818, + "credit": 0.002475000000000005, "url": "https://networkx.org/" }, - "pytest": { - "credit": 0.012469403571428582, - "url": "https://docs.pytest.org/en/latest/" + "biopython": { + "credit": 0.2475, + "url": "https://biopython.org/" }, "cigar": { - "credit": 0.198, + "credit": 0.2475, "url": "https://github.com/brentp/cigar" }, - "biopython": { - "credit": 0.198, - "url": "https://biopython.org/" - }, "codecov": { - "credit": 9.334285714285642e-05, + "credit": 0.0001225124999999997, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 9.334285714285642e-05, + "credit": 0.0001225124999999997, "url": "https://github.com/pytest-dev/pytest-cov" }, + "pytest": { + "credit": 0.0137673421875, + "url": "https://docs.pytest.org/en/latest/" + }, + "sympy": { + "credit": 0.01225125, + "url": "https://pypi.org/project/sympy" + }, "pydot": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/nb2plots" }, "pillow": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/pillow" }, "numpydoc": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/pre-commit" }, - "pyupgrade": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/pyupgrade" - }, - "black": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/black" - }, "pandas": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/pandas" }, "matplotlib": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/matplotlib" }, "scipy": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/scipy" }, "numpy": { - "credit": 0.009334285714285715, + "credit": 0.01225125, "url": "https://pypi.org/project/numpy" }, - "xmlschema": { - "credit": 0.01225125, - "url": "https://pypi.org/project/xmlschema" + "coverage": { + "credit": 0.0075804609375, + "url": "https://pypi.org/project/coverage" }, "requests": { - "credit": 0.016871721428571428, + "credit": 0.00606436875, "url": "https://pypi.org/project/requests" }, - "pygments": { - "credit": 0.01225125, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.01225125, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.01225125, - "url": "https://pypi.org/project/mock" - }, - "hypothesis": { - "credit": 0.01225125, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.01225125, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.01225125, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.01225125, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.01225125, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.01225125, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.01225125, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.01225125, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.01225125, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.01225125, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.01225125, - "url": "https://pypi.org/project/attrs" - }, - "coverage": { - "credit": 0.005775589285714287, - "url": "https://pypi.org/project/coverage" - }, "virtualenv": { - "credit": 0.0011551178571428573, + "credit": 0.0015160921875, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.0011551178571428573, + "credit": 0.0015160921875, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.0011551178571428573, + "credit": 0.0015160921875, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.0011551178571428573, + "credit": 0.0015160921875, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.0011551178571428573, + "credit": 0.0015160921875, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.0011551178571428573, + "credit": 0.0015160921875, "url": "https://pypi.org/project/fields" } } diff --git a/_repos/github/ConorMacBride/mcalf/README.md b/_repos/github/ConorMacBride/mcalf/README.md index 822e2898..bb64a1b4 100644 --- a/_repos/github/ConorMacBride/mcalf/README.md +++ b/_repos/github/ConorMacBride/mcalf/README.md @@ -8,8 +8,84 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.095| +|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.095| +|pypi|[pox](https://github.com/uqfoundation/pox)|0.095| +|pypi|[matplotlib](https://matplotlib.org)|0.089| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.078| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.078| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.076| +|pypi|[pytest](https://pypi.org/project/pytest)|0.03| +|pypi|[numpy](https://pypi.org/project/numpy)|0.025| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.021| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.021| +|pypi|[ppft](https://github.com/uqfoundation/ppft)|0.02| +|pypi|[scipy](https://pypi.org/project/scipy)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|github/ConorMacBride/mcalf|0.01| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.01| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.009| +|pypi|[coverage](https://pypi.org/project/coverage)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[lxml](https://pypi.org/project/lxml)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[astropy](http://astropy.org)|0.005| +|pypi|[pathos](https://github.com/uqfoundation/pathos)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[tox](https://tox.readthedocs.io)|0.004| +|pypi|[pytest-mpl](https://pypi.org/project/pytest-mpl)|0.004| +|pypi|[setuptools-scm](https://pypi.org/project/setuptools-scm)|0.004| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| +|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.004| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.004| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.004| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.004| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.003| +|pypi|[sgp4](https://pypi.org/project/sgp4)|0.002| +|pypi|[skyfield](https://pypi.org/project/skyfield)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.002| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.002| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.002| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.002| +|pypi|[asdf](https://pypi.org/project/asdf)|0.002| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.002| +|pypi|[jplephem](https://pypi.org/project/jplephem)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| +|pypi|[pandas](https://pypi.org/project/pandas)|0.002| +|pypi|[bleach](https://pypi.org/project/bleach)|0.002| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.002| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.002| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.002| +|pypi|[h5py](https://pypi.org/project/h5py)|0.002| +|pypi|[dask](https://pypi.org/project/dask)|0.002| +|pypi|[certifi](https://pypi.org/project/certifi)|0.002| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.002| +|pypi|[mcalf](https://github.com/ConorMacBride/mcalf/)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/ConorMacBride/mcalf/badge.png b/_repos/github/ConorMacBride/mcalf/badge.png index b2ed4486..e14a3c11 100644 Binary files a/_repos/github/ConorMacBride/mcalf/badge.png and b/_repos/github/ConorMacBride/mcalf/badge.png differ diff --git a/_repos/github/ConorMacBride/mcalf/data.json b/_repos/github/ConorMacBride/mcalf/data.json index 22eb198f..bc97f3a1 100644 --- a/_repos/github/ConorMacBride/mcalf/data.json +++ b/_repos/github/ConorMacBride/mcalf/data.json @@ -6,9 +6,313 @@ } }, "pypi": { - "setuptools_scm": { - "credit": 0.0099, - "url": "https://github.com/pypa/setuptools_scm/" + "mcalf": { + "credit": 0.0007615384615384801, + "url": "https://github.com/ConorMacBride/mcalf/" + }, + "astropy": { + "credit": 0.005196380090497742, + "url": "http://astropy.org" + }, + "matplotlib": { + "credit": 0.08854216200089503, + "url": "https://matplotlib.org" + }, + "pathos": { + "credit": 0.005196380090497742, + "url": "https://github.com/uqfoundation/pathos" + }, + "cycler": { + "credit": 0.07615384615384616, + "url": "https://github.com/matplotlib/cycler" + }, + "dill": { + "credit": 0.09500192307692308, + "url": "https://github.com/uqfoundation/dill" + }, + "fonttools": { + "credit": 0.0007615384615384663, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0007615384615384663, + "url": "https://github.com/nucleic/kiwi" + }, + "multiprocess": { + "credit": 0.09500192307692308, + "url": "https://github.com/uqfoundation/multiprocess" + }, + "pillow": { + "credit": 0.0007615384615384663, + "url": "https://python-pillow.org" + }, + "pox": { + "credit": 0.09500192307692308, + "url": "https://github.com/uqfoundation/pox" + }, + "ppft": { + "credit": 0.01960961538461539, + "url": "https://github.com/uqfoundation/ppft" + }, + "pyerfa": { + "credit": 0.0029156043956044004, + "url": "https://github.com/liberfa/pyerfa" + }, + "tox": { + "credit": 0.004434841628959275, + "url": "https://tox.readthedocs.io" + }, + "pytest-mpl": { + "credit": 0.004434841628959275, + "url": "https://pypi.org/project/pytest-mpl" + }, + "pytest-cov": { + "credit": 0.009146860859728507, + "url": "https://pypi.org/project/pytest-cov" + }, + "setuptools-scm": { + "credit": 0.004434841628959275, + "url": "https://pypi.org/project/setuptools-scm" + }, + "pytest": { + "credit": 0.03014900371687136, + "url": "https://pypi.org/project/pytest" + }, + "sphinx-gallery": { + "credit": 0.004434841628959275, + "url": "https://pypi.org/project/sphinx-gallery" + }, + "sphinx-rtd-theme": { + "credit": 0.009146860859728507, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "nbsphinx": { + "credit": 0.004434841628959275, + "url": "https://pypi.org/project/nbsphinx" + }, + "ipykernel": { + "credit": 0.004434841628959275, + "url": "https://pypi.org/project/ipykernel" + }, + "sphinx": { + "credit": 0.01130092679379444, + "url": "https://pypi.org/project/sphinx" + }, + "scipy": { + "credit": 0.012388315847048878, + "url": "https://pypi.org/project/scipy" + }, + "scikit-learn": { + "credit": 0.004434841628959275, + "url": "https://pypi.org/project/scikit-learn" + }, + "pyyaml": { + "credit": 0.004434841628959275, + "url": "https://pypi.org/project/pyyaml" + }, + "numpy": { + "credit": 0.025436984486102134, + "url": "https://pypi.org/project/numpy" + }, + "sgp4": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/sgp4" + }, + "skyfield": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/skyfield" + }, + "coverage": { + "credit": 0.006866085164835165, + "url": "https://pypi.org/project/coverage" + }, + "objgraph": { + "credit": 0.07754637362637362, + "url": "https://pypi.org/project/objgraph" + }, + "pytest-xdist": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/pytest-xdist" + }, + "pytest-astropy": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/pytest-astropy" + }, + "pytest-astropy-header": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/pytest-astropy-header" + }, + "pytest-doctestplus": { + "credit": 0.021002142857142858, + "url": "https://pypi.org/project/pytest-doctestplus" + }, + "Jinja2": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/Jinja2" + }, + "sphinx-changelog": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/sphinx-changelog" + }, + "sphinx-astropy": { + "credit": 0.021002142857142858, + "url": "https://pypi.org/project/sphinx-astropy" + }, + "typing-extensions": { + "credit": 0.07754637362637362, + "url": "https://pypi.org/project/typing-extensions" + }, + "ipython": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/ipython" + }, + "bottleneck": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/bottleneck" + }, + "asdf": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/asdf" + }, + "mpmath": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/mpmath" + }, + "jplephem": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/jplephem" + }, + "pytz": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/pytz" + }, + "sortedcontainers": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/sortedcontainers" + }, + "pandas": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/pandas" + }, + "bleach": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/bleach" + }, + "html5lib": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/html5lib" + }, + "beautifulsoup4": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/beautifulsoup4" + }, + "pyarrow": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/pyarrow" + }, + "h5py": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/h5py" + }, + "dask": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/dask" + }, + "certifi": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/certifi" + }, + "packaging": { + "credit": 0.006866085164835165, + "url": "https://pypi.org/project/packaging" + }, + "PyYAML": { + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/PyYAML" + }, + "xattr": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-removed-in": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/CouncilDataProject/cookiecutter-cdp-deployment/badge.png b/_repos/github/CouncilDataProject/cookiecutter-cdp-deployment/badge.png new file mode 100644 index 00000000..876e48c0 Binary files /dev/null and b/_repos/github/CouncilDataProject/cookiecutter-cdp-deployment/badge.png differ diff --git a/_repos/github/DSIMB/medusa/badge.png b/_repos/github/DSIMB/medusa/badge.png index bcbbe591..374e545f 100644 Binary files a/_repos/github/DSIMB/medusa/badge.png and b/_repos/github/DSIMB/medusa/badge.png differ diff --git a/_repos/github/DeepRank/DeepRank-GNN/badge.png b/_repos/github/DeepRank/DeepRank-GNN/badge.png index 4d59f088..eca2a3f8 100644 Binary files a/_repos/github/DeepRank/DeepRank-GNN/badge.png and b/_repos/github/DeepRank/DeepRank-GNN/badge.png differ diff --git a/_repos/github/DeepRank/deeprank/README.md b/_repos/github/DeepRank/deeprank/README.md index 6c5414a0..f5945d6b 100644 --- a/_repos/github/DeepRank/deeprank/README.md +++ b/_repos/github/DeepRank/deeprank/README.md @@ -8,45 +8,60 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.185| -|pypi|[freesasa](http://freesasa.github.io/)|0.165| -|pypi|[h5py](http://www.h5py.org)|0.083| -|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.083| -|pypi|[matplotlib](https://matplotlib.org)|0.083| -|pypi|[torchsummary](https://github.com/sksq96/pytorch-summary)|0.083| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.082| -|pypi|[pytest](https://pypi.org/project/pytest)|0.021| -|pypi|[twine](https://pypi.org/project/twine)|0.018| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.014| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.014| -|pypi|[pytz](https://pypi.org/project/pytz)|0.014| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.014| -|pypi|[slack-sdk](https://github.com/slackapi/python-slack-sdk)|0.01| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.01| -|pypi|[wheel](https://pypi.org/project/wheel)|0.01| -|pypi|[py-make](https://pypi.org/project/py-make)|0.01| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.01| -|pypi|[colorama](https://pypi.org/project/colorama)|0.01| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.163| +|pypi|[matplotlib](https://matplotlib.org)|0.092| +|pypi|[freesasa](http://freesasa.github.io/)|0.086| +|pypi|[h5py](http://www.h5py.org)|0.086| +|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.086| +|pypi|[torchsummary](https://github.com/sksq96/pytorch-summary)|0.086| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.083| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.016| +|pypi|[pytest](https://pypi.org/project/pytest)|0.016| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.016| +|pypi|[coveralls](http://github.com/TheKevJames/coveralls-python)|0.011| +|pypi|[isort](https://pypi.org/project/isort)|0.011| +|pypi|[autopep8](https://pypi.org/project/autopep8)|0.011| +|pypi|[prospector](https://pypi.org/project/prospector)|0.011| +|pypi|[pandas](https://pypi.org/project/pandas)|0.011| +|pypi|[numpy](https://pypi.org/project/numpy)|0.011| |setup.py|github/DeepRank/deeprank|0.01| -|pypi|[pandas](https://pandas.pydata.org)|0.008| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.007| -|pypi|[coveralls](https://pypi.org/project/coveralls)|0.007| +|pypi|[scipy](https://pypi.org/project/scipy)|0.01| +|pypi|[coverage](https://pypi.org/project/coverage)|0.009| |pypi|[ipython](https://pypi.org/project/ipython)|0.007| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.007| -|pypi|[isort](https://pypi.org/project/isort)|0.007| -|pypi|[autopep8](https://pypi.org/project/autopep8)|0.007| -|pypi|[prospector](https://pypi.org/project/prospector)|0.007| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.001| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.001| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.001| -|pypi|[idna](https://pypi.org/project/idna)|0.001| -|pypi|[chardet](https://pypi.org/project/chardet)|0.001| -|pypi|[certifi](https://pypi.org/project/certifi)|0.001| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.001| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[torch](https://pytorch.org/)|0.001| -|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|0.001| +|pypi|[twine](https://pypi.org/project/twine)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[lxml](https://pypi.org/project/lxml)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[packaging](https://pypi.org/project/packaging)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|0.005| +|pypi|[torch](https://pytorch.org/)|0.005| +|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|0.004| +|pypi|[nose](https://pypi.org/project/nose)|0.004| +|pypi|[pycuda](https://pypi.org/project/pycuda)|0.004| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.004| +|pypi|[deeprank](https://github.com/DeepRank/deeprank)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/DeepRank/deeprank/badge.png b/_repos/github/DeepRank/deeprank/badge.png index a38a16d9..1587b230 100644 Binary files a/_repos/github/DeepRank/deeprank/badge.png and b/_repos/github/DeepRank/deeprank/badge.png differ diff --git a/_repos/github/DeepRank/deeprank/data.json b/_repos/github/DeepRank/deeprank/data.json index ec0e0ca2..bf1a8cd5 100644 --- a/_repos/github/DeepRank/deeprank/data.json +++ b/_repos/github/DeepRank/deeprank/data.json @@ -6,161 +6,217 @@ } }, "pypi": { - "numpy": { - "credit": 0.1852125, - "url": "https://www.numpy.org" - }, - "scipy": { + "deeprank": { "credit": 0.0008250000000000063, - "url": "https://www.scipy.org" + "url": "https://github.com/DeepRank/deeprank" + }, + "freesasa": { + "credit": 0.0862125, + "url": "http://freesasa.github.io/" + }, + "pdb2sql": { + "credit": 0.004537500000000007, + "url": "https://github.com/DeepRank/pdb2sql" }, "h5py": { - "credit": 0.0825, + "credit": 0.0862125, "url": "http://www.h5py.org" }, - "tqdm": { - "credit": 0.0008250000000000063, - "url": "https://tqdm.github.io" - }, - "pandas": { - "credit": 0.008250000000000007, - "url": "https://pandas.pydata.org" + "matplotlib": { + "credit": 0.0924951923076923, + "url": "https://matplotlib.org" }, "mpi4py": { - "credit": 0.0825, + "credit": 0.0862125, "url": "https://github.com/mpi4py/mpi4py/" }, - "matplotlib": { - "credit": 0.0825, - "url": "https://matplotlib.org" + "torch": { + "credit": 0.004537500000000007, + "url": "https://pytorch.org/" }, "torchsummary": { - "credit": 0.0825, + "credit": 0.0862125, "url": "https://github.com/sksq96/pytorch-summary" }, - "torch": { - "credit": 0.0008250000000000063, - "url": "https://pytorch.org/" + "cycler": { + "credit": 0.0825, + "url": "https://github.com/matplotlib/cycler" }, - "pdb2sql": { + "fonttools": { "credit": 0.0008250000000000063, - "url": "https://github.com/DeepRank/pdb2sql" + "url": "http://github.com/fonttools/fonttools" }, - "freesasa": { - "credit": 0.165, - "url": "http://freesasa.github.io/" + "kiwisolver": { + "credit": 0.0008250000000000063, + "url": "https://github.com/nucleic/kiwi" }, - "requests": { - "credit": 0.00010209375000000062, - "url": "https://requests.readthedocs.io" + "pillow": { + "credit": 0.0008250000000000063, + "url": "https://python-pillow.org" }, - "slack-sdk": { - "credit": 0.010209375, - "url": "https://github.com/slackapi/python-slack-sdk" + "coveralls": { + "credit": 0.0111375, + "url": "http://github.com/TheKevJames/coveralls-python" }, - "ipywidgets": { - "credit": 0.010209375, - "url": "https://pypi.org/project/ipywidgets" + "codacy-coverage": { + "credit": 0.0037125, + "url": "https://pypi.org/project/codacy-coverage" }, - "wheel": { - "credit": 0.010209375, - "url": "https://pypi.org/project/wheel" + "pytest-cov": { + "credit": 0.016242187499999998, + "url": "https://pypi.org/project/pytest-cov" }, - "twine": { - "credit": 0.017634375, - "url": "https://pypi.org/project/twine" + "pytest": { + "credit": 0.016242187499999998, + "url": "https://pypi.org/project/pytest" }, - "py-make": { - "credit": 0.010209375, - "url": "https://pypi.org/project/py-make" + "coverage": { + "credit": 0.0088171875, + "url": "https://pypi.org/project/coverage" }, - "importlib-resources": { - "credit": 0.010209375, - "url": "https://pypi.org/project/importlib-resources" + "nose": { + "credit": 0.0037125, + "url": "https://pypi.org/project/nose" }, - "colorama": { - "credit": 0.010209375, - "url": "https://pypi.org/project/colorama" + "sphinx": { + "credit": 0.016242187499999998, + "url": "https://pypi.org/project/sphinx" }, - "pytest-xdist": { - "credit": 0.0136125, - "url": "https://pypi.org/project/pytest-xdist" + "isort": { + "credit": 0.0111375, + "url": "https://pypi.org/project/isort" }, - "pytest": { - "credit": 0.0210375, - "url": "https://pypi.org/project/pytest" + "autopep8": { + "credit": 0.0111375, + "url": "https://pypi.org/project/autopep8" }, - "hypothesis": { - "credit": 0.0136125, - "url": "https://pypi.org/project/hypothesis" + "prospector": { + "credit": 0.0111375, + "url": "https://pypi.org/project/prospector" }, - "pytz": { - "credit": 0.0136125, - "url": "https://pypi.org/project/pytz" + "pycuda": { + "credit": 0.0037125, + "url": "https://pypi.org/project/pycuda" }, - "python-dateutil": { - "credit": 0.0136125, - "url": "https://pypi.org/project/python-dateutil" + "pandas": { + "credit": 0.0111375, + "url": "https://pypi.org/project/pandas" }, - "typing-extensions": { - "credit": 0.081675, - "url": "https://pypi.org/project/typing-extensions" + "tqdm": { + "credit": 0.0037125, + "url": "https://pypi.org/project/tqdm" }, - "pytest-cov": { - "credit": 0.007425, - "url": "https://pypi.org/project/pytest-cov" + "scipy": { + "credit": 0.009995192307692307, + "url": "https://pypi.org/project/scipy" }, - "coveralls": { - "credit": 0.007425, - "url": "https://pypi.org/project/coveralls" + "numpy": { + "credit": 0.0111375, + "url": "https://pypi.org/project/numpy" }, "ipython": { "credit": 0.007425, "url": "https://pypi.org/project/ipython" }, - "sphinx": { + "twine": { "credit": 0.007425, - "url": "https://pypi.org/project/sphinx" + "url": "https://pypi.org/project/twine" }, - "isort": { - "credit": 0.007425, - "url": "https://pypi.org/project/isort" + "typing-extensions": { + "credit": 0.16335, + "url": "https://pypi.org/project/typing-extensions" }, - "autopep8": { - "credit": 0.007425, - "url": "https://pypi.org/project/autopep8" + "xattr": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/xattr" }, - "prospector": { - "credit": 0.007425, - "url": "https://pypi.org/project/prospector" + "unicodedata2": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/defusedxml" }, - "win-inet-pton": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/win-inet-pton" + "check-manifest": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/check-manifest" }, - "PySocks": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/PySocks" + "sphinxext-opengraph": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "charset-normalizer": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/charset-normalizer" + "sphinx-rtd-theme": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "idna": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/idna" + "sphinx-removed-in": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "chardet": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/chardet" + "sphinx-issues": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-issues" }, - "certifi": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/certifi" + "sphinx-copybutton": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "urllib3": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/urllib3" + "olefile": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/DeepRank/iScore/README.md b/_repos/github/DeepRank/iScore/README.md index cbcaf9eb..8d8ebc04 100644 --- a/_repos/github/DeepRank/iScore/README.md +++ b/_repos/github/DeepRank/iScore/README.md @@ -8,44 +8,63 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.216| -|pypi|[biopython](https://biopython.org/)|0.109| -|pypi|[h5py](http://www.h5py.org)|0.104| -|pypi|[matplotlib](https://matplotlib.org)|0.104| -|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.099| -|pypi|[libsvm](https://github.com/ocampor/libsvm)|0.099| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.025| -|pypi|[coveralls](https://pypi.org/project/coveralls)|0.024| -|pypi|[coverage](https://pypi.org/project/coverage)|0.016| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.015| -|pypi|[nose](https://pypi.org/project/nose)|0.015| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.014| -|pypi|[isort](https://pypi.org/project/isort)|0.014| -|pypi|[prospector](https://pypi.org/project/prospector)|0.014| -|pypi|[scipy](https://www.scipy.org)|0.011| -|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|0.011| +|pypi|[biopython](https://biopython.org/)|0.094| +|pypi|[matplotlib](https://matplotlib.org)|0.092| +|pypi|[h5py](http://www.h5py.org)|0.086| +|pypi|[libsvm](https://github.com/ocampor/libsvm)|0.086| +|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.086| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.083| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.082| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.024| +|pypi|[pytest](https://pypi.org/project/pytest)|0.024| +|pypi|[coveralls](http://github.com/TheKevJames/coveralls-python)|0.019| +|pypi|[numpy](https://pypi.org/project/numpy)|0.019| +|pypi|[scipy](https://pypi.org/project/scipy)|0.018| +|pypi|[coverage](https://pypi.org/project/coverage)|0.017| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.016| +|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|0.013| +|pypi|[nose](https://pypi.org/project/nose)|0.012| +|pypi|[isort](https://pypi.org/project/isort)|0.011| +|pypi|[prospector](https://pypi.org/project/prospector)|0.011| |setup.py|github/DeepRank/iScore|0.01| -|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|0.01| -|pypi|[ipython](https://pypi.org/project/ipython)|0.009| -|pypi|[twine](https://pypi.org/project/twine)|0.009| -|pypi|[autopep8](https://pypi.org/project/autopep8)|0.009| -|pypi|[pandas](https://pypi.org/project/pandas)|0.009| -|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.005| -|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.005| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| -|pypi|[recommonmark](https://pypi.org/project/recommonmark)|0.005| -|pypi|[yapf](https://pypi.org/project/yapf)|0.005| -|pypi|[IPython](https://pypi.org/project/IPython)|0.005| -|pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.005| -|pypi|[PyQt5](https://pypi.org/project/PyQt5)|0.005| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| -|pypi|[six](https://pypi.org/project/six)|0.001| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| -|pypi|[hunter](https://pypi.org/project/hunter)|0.001| -|pypi|[fields](https://pypi.org/project/fields)|0.001| -|pypi|[h5xplorer](https://github.com/DeepRank/h5xplorer)|0.001| -|pypi|[pssmgen](https://github.com/DeepRank/PSSMGen)|0.001| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.009| +|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|0.008| +|pypi|[ipython](https://pypi.org/project/ipython)|0.007| +|pypi|[twine](https://pypi.org/project/twine)|0.007| +|pypi|[autopep8](https://pypi.org/project/autopep8)|0.007| +|pypi|[pandas](https://pypi.org/project/pandas)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[lxml](https://pypi.org/project/lxml)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[packaging](https://pypi.org/project/packaging)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[pssmgen](https://github.com/DeepRank/PSSMGen)|0.004| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.004| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.004| +|pypi|[recommonmark](https://pypi.org/project/recommonmark)|0.004| +|pypi|[yapf](https://pypi.org/project/yapf)|0.004| +|pypi|[h5xplorer](https://pypi.org/project/h5xplorer)|0.004| +|pypi|[iScore](https://github.com/DeepRank/iScore)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/DeepRank/iScore/badge.png b/_repos/github/DeepRank/iScore/badge.png index 0220f9db..b8ea8fe4 100644 Binary files a/_repos/github/DeepRank/iScore/badge.png and b/_repos/github/DeepRank/iScore/badge.png differ diff --git a/_repos/github/DeepRank/iScore/data.json b/_repos/github/DeepRank/iScore/data.json index 525ab3fb..81fd318f 100644 --- a/_repos/github/DeepRank/iScore/data.json +++ b/_repos/github/DeepRank/iScore/data.json @@ -6,153 +6,229 @@ } }, "pypi": { - "numpy": { - "credit": 0.21572100000000002, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.010791000000000005, - "url": "https://www.scipy.org" + "iScore": { + "credit": 0.0008250000000000063, + "url": "https://github.com/DeepRank/iScore" }, "biopython": { - "credit": 0.10880100000000001, + "credit": 0.09421858695652174, "url": "https://biopython.org/" }, - "mpi4py": { - "credit": 0.099, - "url": "https://github.com/mpi4py/mpi4py/" - }, "h5py": { - "credit": 0.10444500000000001, + "credit": 0.08605108695652175, "url": "http://www.h5py.org" }, + "libsvm": { + "credit": 0.08605108695652175, + "url": "https://github.com/ocampor/libsvm" + }, "matplotlib": { - "credit": 0.10444500000000001, + "credit": 0.09233377926421406, "url": "https://matplotlib.org" }, - "libsvm": { - "credit": 0.099, - "url": "https://github.com/ocampor/libsvm" + "mpi4py": { + "credit": 0.08605108695652175, + "url": "https://github.com/mpi4py/mpi4py/" }, "pdb2sql": { - "credit": 0.010791000000000005, + "credit": 0.012543586956521744, "url": "https://github.com/DeepRank/pdb2sql" }, "pssmgen": { - "credit": 0.0009899999999999909, + "credit": 0.004376086956521745, "url": "https://github.com/DeepRank/PSSMGen" }, - "h5xplorer": { - "credit": 0.0009900000000000048, - "url": "https://github.com/DeepRank/h5xplorer" + "cycler": { + "credit": 0.0825, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0008250000000000063, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0008250000000000063, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0008250000000000063, + "url": "https://python-pillow.org" + }, + "coveralls": { + "credit": 0.01914358695652174, + "url": "http://github.com/TheKevJames/coveralls-python" + }, + "pytest-runner": { + "credit": 0.003551086956521739, + "url": "https://pypi.org/project/pytest-runner" }, "pytest-cov": { - "credit": 0.0153351, - "url": "https://github.com/pytest-dev/pytest-cov" + "credit": 0.02424827445652174, + "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.025258612499999996, - "url": "https://docs.pytest.org/en/latest/" + "credit": 0.02424827445652174, + "url": "https://pypi.org/project/pytest" }, - "coveralls": { - "credit": 0.024155999999999997, - "url": "https://pypi.org/project/coveralls" + "pycodestyle": { + "credit": 0.003551086956521739, + "url": "https://pypi.org/project/pycodestyle" }, - "ipython": { - "credit": 0.00891, - "url": "https://pypi.org/project/ipython" + "coverage": { + "credit": 0.016823274456521736, + "url": "https://pypi.org/project/coverage" + }, + "nose": { + "credit": 0.011718586956521738, + "url": "https://pypi.org/project/nose" + }, + "sphinx-rtd-theme": { + "credit": 0.008655774456521739, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx": { - "credit": 0.014355, + "credit": 0.01608077445652174, "url": "https://pypi.org/project/sphinx" }, - "twine": { - "credit": 0.00891, - "url": "https://pypi.org/project/twine" + "recommonmark": { + "credit": 0.003551086956521739, + "url": "https://pypi.org/project/recommonmark" }, "isort": { - "credit": 0.014355, + "credit": 0.01097608695652174, "url": "https://pypi.org/project/isort" }, - "autopep8": { - "credit": 0.00891, - "url": "https://pypi.org/project/autopep8" + "yapf": { + "credit": 0.003551086956521739, + "url": "https://pypi.org/project/yapf" }, "prospector": { - "credit": 0.014355, + "credit": 0.01097608695652174, "url": "https://pypi.org/project/prospector" }, + "h5xplorer": { + "credit": 0.003551086956521739, + "url": "https://pypi.org/project/h5xplorer" + }, + "scipy": { + "credit": 0.018001279264214045, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.01914358695652174, + "url": "https://pypi.org/project/numpy" + }, + "ipython": { + "credit": 0.007425, + "url": "https://pypi.org/project/ipython" + }, + "twine": { + "credit": 0.007425, + "url": "https://pypi.org/project/twine" + }, + "autopep8": { + "credit": 0.007425, + "url": "https://pypi.org/project/autopep8" + }, "pandas": { - "credit": 0.00891, + "credit": 0.007425, "url": "https://pypi.org/project/pandas" }, "codacy-coverage": { - "credit": 0.009801, + "credit": 0.0081675, "url": "https://pypi.org/project/codacy-coverage" }, - "coverage": { - "credit": 0.0163486125, - "url": "https://pypi.org/project/coverage" + "xattr": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/xattr" }, - "nose": { - "credit": 0.015246000000000001, - "url": "https://pypi.org/project/nose" + "unicodedata2": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/unicodedata2" }, - "pytest-runner": { - "credit": 0.005445, - "url": "https://pypi.org/project/pytest-runner" + "munkres": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/munkres" }, - "pycodestyle": { - "credit": 0.005445, - "url": "https://pypi.org/project/pycodestyle" + "brotli": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/brotli" }, - "sphinx-rtd-theme": { - "credit": 0.005445, - "url": "https://pypi.org/project/sphinx-rtd-theme" + "brotlicffi": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/brotlicffi" }, - "recommonmark": { - "credit": 0.005445, - "url": "https://pypi.org/project/recommonmark" + "skia-pathops": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/skia-pathops" }, - "yapf": { - "credit": 0.005445, - "url": "https://pypi.org/project/yapf" + "sympy": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.006282692307692308, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.081675, + "url": "https://pypi.org/project/typing-extensions" + }, + "pytest-timeout": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pyroma" }, - "IPython": { - "credit": 0.005445, - "url": "https://pypi.org/project/IPython" + "packaging": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/packaging" }, - "qtconsole": { - "credit": 0.005445, - "url": "https://pypi.org/project/qtconsole" + "markdown2": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/markdown2" }, - "PyQt5": { - "credit": 0.005445, - "url": "https://pypi.org/project/PyQt5" + "defusedxml": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/defusedxml" }, - "virtualenv": { - "credit": 0.0011026125, - "url": "https://pypi.org/project/virtualenv" + "check-manifest": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/check-manifest" }, - "pytest-xdist": { - "credit": 0.0011026125, - "url": "https://pypi.org/project/pytest-xdist" + "sphinxext-opengraph": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "six": { - "credit": 0.0011026125, - "url": "https://pypi.org/project/six" + "sphinx-removed-in": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "process-tests": { - "credit": 0.0011026125, - "url": "https://pypi.org/project/process-tests" + "sphinx-issues": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-issues" }, - "hunter": { - "credit": 0.0011026125, - "url": "https://pypi.org/project/hunter" + "sphinx-copybutton": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "fields": { - "credit": 0.0011026125, - "url": "https://pypi.org/project/fields" + "olefile": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/DeepRank/pdb2sql/README.md b/_repos/github/DeepRank/pdb2sql/README.md index 5710c612..0e71ff35 100644 --- a/_repos/github/DeepRank/pdb2sql/README.md +++ b/_repos/github/DeepRank/pdb2sql/README.md @@ -8,53 +8,117 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.581| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.086| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.086| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.04| -|pypi|[execnet](https://pypi.org/project/execnet)|0.013| -|pypi|[py](https://pypi.org/project/py)|0.012| +|pypi|[numpy](https://www.numpy.org)|0.107| +|pypi|[toml](https://pypi.org/project/toml)|0.049| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.049| +|pypi|[requests](https://pypi.org/project/requests)|0.041| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.033| +|pypi|[coverage](https://pypi.org/project/coverage)|0.033| +|pypi|[colorama](https://pypi.org/project/colorama)|0.03| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.027| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.026| +|pypi|[docopt](https://pypi.org/project/docopt)|0.022| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.021| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.02| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.019| +|pypi|[pip-api](https://pypi.org/project/pip-api)|0.018| +|pypi|[requirementslib](https://pypi.org/project/requirementslib)|0.018| +|pypi|[pipreqs](https://pypi.org/project/pipreqs)|0.018| +|pypi|[pytz](https://pypi.org/project/pytz)|0.015| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.015| +|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.011| +|pypi|[six](https://pypi.org/project/six)|0.011| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.011| +|pypi|[hunter](https://pypi.org/project/hunter)|0.011| +|pypi|[fields](https://pypi.org/project/fields)|0.011| |setup.py|github/DeepRank/pdb2sql|0.01| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| -|pypi|[attrs](https://pypi.org/project/attrs)|0.01| -|pypi|[pandas](https://pandas.pydata.org)|0.009| -|pypi|[mock](https://pypi.org/project/mock)|0.007| -|pypi|[hypothesis](https://hypothesis.works)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.005| -|pypi|[pygments](https://pypi.org/project/pygments)|0.005| -|pypi|[nose](https://pypi.org/project/nose)|0.005| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.005| -|pypi|[colorama](https://pypi.org/project/colorama)|0.005| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.005| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.005| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.004| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.004| -|pypi|[rich](https://pypi.org/project/rich)|0.004| -|pypi|[redis](https://pypi.org/project/redis)|0.004| -|pypi|[libcst](https://pypi.org/project/libcst)|0.004| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.004| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.004| -|pypi|[django](https://pypi.org/project/django)|0.004| -|pypi|[click](https://pypi.org/project/click)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.004| -|pypi|[wmi](https://pypi.org/project/wmi)|0.002| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.002| -|pypi|[enum34](https://pypi.org/project/enum34)|0.002| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.002| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.002| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| -|pypi|[furo](https://pypi.org/project/furo)|0.002| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.001| +|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|0.01| +|pypi|[rich](https://pypi.org/project/rich)|0.01| +|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.01| +|pypi|[keyring](https://pypi.org/project/keyring)|0.01| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.01| +|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.01| +|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.01| +|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.009| +|pypi|[pygments](https://pypi.org/project/pygments)|0.008| +|pypi|[mypy](https://pypi.org/project/mypy)|0.008| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| +|pypi|[nose](https://pypi.org/project/nose)|0.006| +|pypi|[mock](https://pypi.org/project/mock)|0.006| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| +|pypi|[tomli](https://pypi.org/project/tomli)|0.006| +|pypi|[py](https://pypi.org/project/py)|0.006| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| +|pypi|[attrs](https://pypi.org/project/attrs)|0.006| +|pypi|[vulture](https://pypi.org/project/vulture)|0.005| +|pypi|[setoptconf-tmp](https://pypi.org/project/setoptconf-tmp)|0.005| +|pypi|[requirements-detector](https://pypi.org/project/requirements-detector)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[pylint-plugin-utils](https://pypi.org/project/pylint-plugin-utils)|0.005| +|pypi|[pylint-flask](https://pypi.org/project/pylint-flask)|0.005| +|pypi|[pylint-django](https://pypi.org/project/pylint-django)|0.005| +|pypi|[pylint-celery](https://pypi.org/project/pylint-celery)|0.005| +|pypi|[pylint](https://pypi.org/project/pylint)|0.005| +|pypi|[pyflakes](https://pypi.org/project/pyflakes)|0.005| +|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|0.005| +|pypi|[pep8-naming](https://pypi.org/project/pep8-naming)|0.005| +|pypi|[mccabe](https://pypi.org/project/mccabe)|0.005| +|pypi|[dodgy](https://pypi.org/project/dodgy)|0.005| +|pypi|[bandit](https://pypi.org/project/bandit)|0.005| +|pypi|[isort](https://pycqa.github.io/isort/)|0.004| +|pypi|[pandas](https://pandas.pydata.org)|0.004| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.004| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.004| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.004| +|pypi|[flake8](https://pypi.org/project/flake8)|0.004| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.004| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.004| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.004| +|pypi|[babel](https://pypi.org/project/babel)|0.004| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.004| +|pypi|[docutils](https://pypi.org/project/docutils)|0.004| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.004| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.004| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.004| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.004| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.004| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.004| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.004| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.004| +|pypi|[trio](https://pypi.org/project/trio)|0.003| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.003| +|pypi|[curio](https://pypi.org/project/curio)|0.003| +|pypi|[testpath](https://pypi.org/project/testpath)|0.003| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.003| +|pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.003| +|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|0.003| +|pypi|[notebook](https://pypi.org/project/notebook)|0.003| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.003| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.003| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.003| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.003| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.003| +|pypi|[black](https://pypi.org/project/black)|0.003| +|pypi|[appnope](https://pypi.org/project/appnope)|0.003| +|pypi|[pexpect](https://pypi.org/project/pexpect)|0.003| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.003| +|pypi|[stack-data](https://pypi.org/project/stack-data)|0.003| +|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|0.003| +|pypi|[pickleshare](https://pypi.org/project/pickleshare)|0.003| +|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|0.003| +|pypi|[jedi](https://pypi.org/project/jedi)|0.003| +|pypi|[decorator](https://pypi.org/project/decorator)|0.003| +|pypi|[backcall](https://pypi.org/project/backcall)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.001| +|pypi|[coveralls](http://github.com/TheKevJames/coveralls-python)|0.001| +|pypi|[ipython](https://ipython.org)|0.001| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.001| +|pypi|[twine](https://twine.readthedocs.io/)|0.001| +|pypi|[autopep8](https://github.com/hhatto/autopep8)|0.001| +|pypi|[prospector](http://prospector.readthedocs.io)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/DeepRank/pdb2sql/badge.png b/_repos/github/DeepRank/pdb2sql/badge.png index ab9f9e84..21075b72 100644 Binary files a/_repos/github/DeepRank/pdb2sql/badge.png and b/_repos/github/DeepRank/pdb2sql/badge.png differ diff --git a/_repos/github/DeepRank/pdb2sql/data.json b/_repos/github/DeepRank/pdb2sql/data.json index 2fb9af0e..cda3a00f 100644 --- a/_repos/github/DeepRank/pdb2sql/data.json +++ b/_repos/github/DeepRank/pdb2sql/data.json @@ -6,205 +6,445 @@ } }, "pypi": { - "numpy": { - "credit": 0.581167125, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.00944212500000001, - "url": "https://pandas.pydata.org" + "pdb2sql": { + "credit": 0.00990000000000002, + "url": "https://github.com/DeepRank/pdb2sql" }, - "pytest-xdist": { - "credit": 0.000816750000000005, - "url": "https://github.com/pytest-dev/pytest-xdist" + "pytest-cov": { + "credit": 0.0008910000000000029, + "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.04046536828125, + "credit": 0.033087285, "url": "https://docs.pytest.org/en/latest/" }, - "hypothesis": { - "credit": 0.0058703906250000045, - "url": "https://hypothesis.works" + "coveralls": { + "credit": 0.0008910000000000029, + "url": "http://github.com/TheKevJames/coveralls-python" }, - "pytz": { - "credit": 0.086167125, - "url": "http://pythonhosted.org/pytz" + "ipython": { + "credit": 0.0008910000000000029, + "url": "https://ipython.org" }, - "python-dateutil": { - "credit": 0.086167125, - "url": "https://github.com/dateutil/dateutil" + "sphinx": { + "credit": 0.0008910000000000029, + "url": "https://www.sphinx-doc.org/" + }, + "twine": { + "credit": 0.0008910000000000029, + "url": "https://twine.readthedocs.io/" }, - "filelock": { - "credit": 0.0001347637500000009, - "url": "https://github.com/tox-dev/py-filelock" + "isort": { + "credit": 0.004419360000000002, + "url": "https://pycqa.github.io/isort/" + }, + "autopep8": { + "credit": 0.0008910000000000029, + "url": "https://github.com/hhatto/autopep8" + }, + "prospector": { + "credit": 0.000890999999999989, + "url": "http://prospector.readthedocs.io" + }, + "pandas": { + "credit": 0.0038313000000000028, + "url": "https://pandas.pydata.org" + }, + "numpy": { + "credit": 0.1067418, + "url": "https://www.numpy.org" + }, + "virtualenv": { + "credit": 0.011026125, + "url": "https://virtualenv.pypa.io/" + }, + "pytest-xdist": { + "credit": 0.025727624999999997, + "url": "https://pypi.org/project/pytest-xdist" }, - "setproctitle": { - "credit": 0.0001347637500000009, - "url": "https://github.com/dvarrazzo/py-setproctitle" + "six": { + "credit": 0.011026125, + "url": "https://pypi.org/project/six" }, - "psutil": { - "credit": 0.00013476375000000262, - "url": "https://github.com/giampaolo/psutil" + "process-tests": { + "credit": 0.011026125, + "url": "https://pypi.org/project/process-tests" }, - "pytest-forked": { - "credit": 0.0001347637500000009, - "url": "https://github.com/pytest-dev/pytest-forked" + "hunter": { + "credit": 0.011026125, + "url": "https://pypi.org/project/hunter" }, - "execnet": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/execnet" + "fields": { + "credit": 0.011026125, + "url": "https://pypi.org/project/fields" + }, + "coverage": { + "credit": 0.033078375, + "url": "https://pypi.org/project/coverage" }, "xmlschema": { - "credit": 0.0050536406249999995, + "credit": 0.0055130625, "url": "https://pypi.org/project/xmlschema" }, "requests": { - "credit": 0.0050536406249999995, + "credit": 0.0408946725, "url": "https://pypi.org/project/requests" }, "pygments": { - "credit": 0.0050536406249999995, + "credit": 0.008453362499999999, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0050536406249999995, + "credit": 0.0055130625, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.0072772424999999995, + "credit": 0.0055130625, "url": "https://pypi.org/project/mock" }, + "hypothesis": { + "credit": 0.020214562499999998, + "url": "https://pypi.org/project/hypothesis" + }, "argcomplete": { - "credit": 0.0050536406249999995, + "credit": 0.0055130625, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.0050536406249999995, + "credit": 0.0296235225, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.0050536406249999995, + "credit": 0.0055130625, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.009545765624999999, + "credit": 0.018842422499999997, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.0050536406249999995, + "credit": 0.0055130625, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.01172444625, + "credit": 0.0055130625, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0050536406249999995, + "credit": 0.0055130625, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.0050536406249999995, + "credit": 0.0090414225, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.0050536406249999995, + "credit": 0.0055130625, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.009545765624999999, + "credit": 0.0055130625, "url": "https://pypi.org/project/attrs" }, - "tzdata": { - "credit": 0.004492125, - "url": "https://pypi.org/project/tzdata" + "PyYAML": { + "credit": 0.02669482894736842, + "url": "https://pypi.org/project/PyYAML" }, - "backports.zoneinfo": { - "credit": 0.004492125, - "url": "https://pypi.org/project/backports.zoneinfo" + "docopt": { + "credit": 0.02205225, + "url": "https://pypi.org/project/docopt" }, - "rich": { - "credit": 0.004492125, - "url": "https://pypi.org/project/rich" + "trio": { + "credit": 0.0029403, + "url": "https://pypi.org/project/trio" + }, + "matplotlib": { + "credit": 0.0029403, + "url": "https://pypi.org/project/matplotlib" + }, + "curio": { + "credit": 0.0029403, + "url": "https://pypi.org/project/curio" + }, + "testpath": { + "credit": 0.0029403, + "url": "https://pypi.org/project/testpath" + }, + "pytest-asyncio": { + "credit": 0.0029403, + "url": "https://pypi.org/project/pytest-asyncio" }, - "redis": { - "credit": 0.004492125, - "url": "https://pypi.org/project/redis" + "qtconsole": { + "credit": 0.0029403, + "url": "https://pypi.org/project/qtconsole" }, - "libcst": { - "credit": 0.004492125, - "url": "https://pypi.org/project/libcst" + "ipyparallel": { + "credit": 0.0029403, + "url": "https://pypi.org/project/ipyparallel" }, - "lark-parser": { - "credit": 0.004492125, - "url": "https://pypi.org/project/lark-parser" + "notebook": { + "credit": 0.0029403, + "url": "https://pypi.org/project/notebook" }, - "dpcontracts": { - "credit": 0.004492125, - "url": "https://pypi.org/project/dpcontracts" + "ipywidgets": { + "credit": 0.0029403, + "url": "https://pypi.org/project/ipywidgets" }, - "django": { - "credit": 0.004492125, - "url": "https://pypi.org/project/django" + "nbformat": { + "credit": 0.0029403, + "url": "https://pypi.org/project/nbformat" }, - "click": { - "credit": 0.004492125, - "url": "https://pypi.org/project/click" + "nbconvert": { + "credit": 0.0029403, + "url": "https://pypi.org/project/nbconvert" + }, + "ipykernel": { + "credit": 0.0029403, + "url": "https://pypi.org/project/ipykernel" + }, + "Sphinx": { + "credit": 0.0029403, + "url": "https://pypi.org/project/Sphinx" }, "black": { - "credit": 0.004492125, + "credit": 0.0029403, "url": "https://pypi.org/project/black" }, - "sortedcontainers": { - "credit": 0.004492125, - "url": "https://pypi.org/project/sortedcontainers" + "appnope": { + "credit": 0.0029403, + "url": "https://pypi.org/project/appnope" }, - "pytest-timeout": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/pytest-timeout" + "pexpect": { + "credit": 0.0029403, + "url": "https://pypi.org/project/pexpect" }, - "pytest-cov": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/pytest-cov" + "traitlets": { + "credit": 0.0029403, + "url": "https://pypi.org/project/traitlets" }, - "coverage": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/coverage" + "stack-data": { + "credit": 0.0029403, + "url": "https://pypi.org/project/stack-data" }, - "covdefaults": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/covdefaults" + "setuptools": { + "credit": 0.0205821, + "url": "https://pypi.org/project/setuptools" }, - "sphinx-autodoc-typehints": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" + "prompt-toolkit": { + "credit": 0.0029403, + "url": "https://pypi.org/project/prompt-toolkit" }, - "sphinx": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/sphinx" + "pickleshare": { + "credit": 0.0029403, + "url": "https://pypi.org/project/pickleshare" + }, + "matplotlib-inline": { + "credit": 0.0029403, + "url": "https://pypi.org/project/matplotlib-inline" + }, + "jedi": { + "credit": 0.0029403, + "url": "https://pypi.org/project/jedi" + }, + "decorator": { + "credit": 0.0029403, + "url": "https://pypi.org/project/decorator" + }, + "backcall": { + "credit": 0.0029403, + "url": "https://pypi.org/project/backcall" + }, + "types-requests": { + "credit": 0.00352836, + "url": "https://pypi.org/project/types-requests" }, - "furo": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/furo" + "types-typed-ast": { + "credit": 0.00352836, + "url": "https://pypi.org/project/types-typed-ast" }, - "wmi": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/wmi" + "docutils-stubs": { + "credit": 0.00352836, + "url": "https://pypi.org/project/docutils-stubs" }, - "pywin32": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/pywin32" + "mypy": { + "credit": 0.00817093894736842, + "url": "https://pypi.org/project/mypy" }, - "enum34": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/enum34" + "flake8": { + "credit": 0.00352836, + "url": "https://pypi.org/project/flake8" }, - "unittest2": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/unittest2" + "sphinxcontrib-websupport": { + "credit": 0.00352836, + "url": "https://pypi.org/project/sphinxcontrib-websupport" }, - "ipaddress": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/ipaddress" + "imagesize": { + "credit": 0.00352836, + "url": "https://pypi.org/project/imagesize" + }, + "alabaster": { + "credit": 0.00352836, + "url": "https://pypi.org/project/alabaster" + }, + "babel": { + "credit": 0.00352836, + "url": "https://pypi.org/project/babel" + }, + "snowballstemmer": { + "credit": 0.00352836, + "url": "https://pypi.org/project/snowballstemmer" + }, + "docutils": { + "credit": 0.00352836, + "url": "https://pypi.org/project/docutils" + }, + "Pygments": { + "credit": 0.00352836, + "url": "https://pypi.org/project/Pygments" + }, + "Jinja2": { + "credit": 0.00352836, + "url": "https://pypi.org/project/Jinja2" + }, + "sphinxcontrib-qthelp": { + "credit": 0.00352836, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" + }, + "sphinxcontrib-serializinghtml": { + "credit": 0.00352836, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + }, + "sphinxcontrib-htmlhelp": { + "credit": 0.00352836, + "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + }, + "sphinxcontrib-jsmath": { + "credit": 0.00352836, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" + }, + "sphinxcontrib-devhelp": { + "credit": 0.00352836, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" + }, + "sphinxcontrib-applehelp": { + "credit": 0.00352836, + "url": "https://pypi.org/project/sphinxcontrib-applehelp" + }, + "rich": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/rich" + }, + "rfc3986": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/rfc3986" + }, + "keyring": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/keyring" + }, + "urllib3": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/urllib3" + }, + "requests-toolbelt": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/requests-toolbelt" + }, + "readme-renderer": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/readme-renderer" + }, + "pkginfo": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/pkginfo" + }, + "pip-api": { + "credit": 0.0176418, + "url": "https://pypi.org/project/pip-api" + }, + "requirementslib": { + "credit": 0.0176418, + "url": "https://pypi.org/project/requirementslib" + }, + "pipreqs": { + "credit": 0.0176418, + "url": "https://pypi.org/project/pipreqs" + }, + "toml": { + "credit": 0.04874707894736842, + "url": "https://pypi.org/project/toml" + }, + "pycodestyle": { + "credit": 0.04874707894736842, + "url": "https://pypi.org/project/pycodestyle" + }, + "vulture": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/vulture" + }, + "setoptconf-tmp": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/setoptconf-tmp" + }, + "requirements-detector": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/requirements-detector" + }, + "pyroma": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pyroma" + }, + "pylint-plugin-utils": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pylint-plugin-utils" + }, + "pylint-flask": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pylint-flask" + }, + "pylint-django": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pylint-django" + }, + "pylint-celery": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pylint-celery" + }, + "pylint": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pylint" + }, + "pyflakes": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pyflakes" + }, + "pydocstyle": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pydocstyle" + }, + "pep8-naming": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/pep8-naming" + }, + "mccabe": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/mccabe" + }, + "dodgy": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/dodgy" + }, + "bandit": { + "credit": 0.004642578947368421, + "url": "https://pypi.org/project/bandit" + }, + "pytz": { + "credit": 0.0147015, + "url": "https://pypi.org/project/pytz" + }, + "python-dateutil": { + "credit": 0.0147015, + "url": "https://pypi.org/project/python-dateutil" } } } \ No newline at end of file diff --git a/_repos/github/DeepRank/pssmgen/README.md b/_repos/github/DeepRank/pssmgen/README.md index 44c30830..f8c2e2db 100644 --- a/_repos/github/DeepRank/pssmgen/README.md +++ b/_repos/github/DeepRank/pssmgen/README.md @@ -8,44 +8,47 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.515| -|pypi|[biopython](https://biopython.org/)|0.247| -|pypi|[ipython](https://ipython.org)|0.022| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.022| -|pypi|[twine](https://pypi.org/project/twine)|0.022| -|pypi|[isort](https://pypi.org/project/isort)|0.022| -|pypi|[autopep8](https://pypi.org/project/autopep8)|0.022| -|pypi|[prospector](https://pypi.org/project/prospector)|0.022| -|pypi|[pandas](https://pypi.org/project/pandas)|0.022| +|pypi|[biopython](https://biopython.org/)|0.363| +|pypi|[numpy](https://www.numpy.org)|0.098| +|pypi|[nose](http://readthedocs.org/docs/nose/)|0.037| +|pypi|[tomli](https://pypi.org/project/tomli)|0.036| +|pypi|[codacy-coverage](https://github.com/codacy/python-codacy-coverage)|0.033| +|pypi|[ipython](https://ipython.org)|0.033| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.033| +|pypi|[twine](https://pypi.org/project/twine)|0.033| +|pypi|[isort](https://pypi.org/project/isort)|0.033| +|pypi|[autopep8](https://pypi.org/project/autopep8)|0.033| +|pypi|[prospector](https://pypi.org/project/prospector)|0.033| +|pypi|[pandas](https://pypi.org/project/pandas)|0.033| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.023| +|pypi|[requests](https://pypi.org/project/requests)|0.019| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.015| +|pypi|[docopt](https://pypi.org/project/docopt)|0.015| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.011| |setup.py|github/DeepRank/pssmgen|0.01| -|pypi|[coverage](https://pypi.org/project/coverage)|0.008| -|pypi|[requests](https://pypi.org/project/requests)|0.007| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.006| -|pypi|[docopt](https://pypi.org/project/docopt)|0.006| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| -|pypi|[six](https://pypi.org/project/six)|0.003| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| -|pypi|[hunter](https://pypi.org/project/hunter)|0.003| -|pypi|[fields](https://pypi.org/project/fields)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[attrs](https://pypi.org/project/attrs)|0.001| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| +|pypi|[six](https://pypi.org/project/six)|0.008| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.008| +|pypi|[hunter](https://pypi.org/project/hunter)|0.008| +|pypi|[fields](https://pypi.org/project/fields)|0.008| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.004| +|pypi|[pygments](https://pypi.org/project/pygments)|0.004| +|pypi|[mock](https://pypi.org/project/mock)|0.004| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.004| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.004| +|pypi|[colorama](https://pypi.org/project/colorama)|0.004| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.004| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| +|pypi|[py](https://pypi.org/project/py)|0.004| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.004| +|pypi|[attrs](https://pypi.org/project/attrs)|0.004| +|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|0.004| +|pypi|[coveralls](http://github.com/TheKevJames/coveralls-python)|0.004| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.004| +|pypi|[PSSMGen](https://github.com/DeepRank/PSSMGen)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/DeepRank/pssmgen/badge.png b/_repos/github/DeepRank/pssmgen/badge.png index aa50bdeb..277188e9 100644 Binary files a/_repos/github/DeepRank/pssmgen/badge.png and b/_repos/github/DeepRank/pssmgen/badge.png differ diff --git a/_repos/github/DeepRank/pssmgen/data.json b/_repos/github/DeepRank/pssmgen/data.json index b063b058..d7b122ad 100644 --- a/_repos/github/DeepRank/pssmgen/data.json +++ b/_repos/github/DeepRank/pssmgen/data.json @@ -6,161 +6,169 @@ } }, "pypi": { - "numpy": { - "credit": 0.5148, - "url": "https://www.numpy.org" + "PSSMGen": { + "credit": 0.003300000000000025, + "url": "https://github.com/DeepRank/PSSMGen" }, - "scipy": { - "credit": 0.002475000000000005, - "url": "https://www.scipy.org" + "pdb2sql": { + "credit": 0.0036267000000000243, + "url": "https://github.com/DeepRank/pdb2sql" }, "biopython": { - "credit": 0.2475, + "credit": 0.36267, "url": "https://biopython.org/" }, - "pdb2sql": { - "credit": 0.002475000000000005, - "url": "https://github.com/DeepRank/pdb2sql" + "coveralls": { + "credit": 0.0035639999999999977, + "url": "http://github.com/TheKevJames/coveralls-python" + }, + "codacy-coverage": { + "credit": 0.03267, + "url": "https://github.com/codacy/python-codacy-coverage" }, "pytest-cov": { - "credit": 0.00022275000000000073, + "credit": 0.0035639999999999977, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.0029792812500000006, + "credit": 0.011282287499999998, "url": "https://docs.pytest.org/en/latest/" }, - "coveralls": { - "credit": 0.00022275000000000073, - "url": "http://github.com/TheKevJames/coveralls-python" + "coverage": { + "credit": 0.0234815625, + "url": "https://github.com/nedbat/coveragepy" + }, + "nose": { + "credit": 0.03652914374999999, + "url": "http://readthedocs.org/docs/nose/" + }, + "scipy": { + "credit": 0.0003266999999999992, + "url": "https://www.scipy.org" + }, + "numpy": { + "credit": 0.09765359999999998, + "url": "https://www.numpy.org" }, "ipython": { - "credit": 0.022275, + "credit": 0.0326403, "url": "https://ipython.org" }, "sphinx": { - "credit": 0.022275, + "credit": 0.0326403, "url": "https://pypi.org/project/sphinx" }, "twine": { - "credit": 0.022275, + "credit": 0.0326403, "url": "https://pypi.org/project/twine" }, "isort": { - "credit": 0.022275, + "credit": 0.0326403, "url": "https://pypi.org/project/isort" }, "autopep8": { - "credit": 0.022275, + "credit": 0.0326403, "url": "https://pypi.org/project/autopep8" }, "prospector": { - "credit": 0.022275, + "credit": 0.0326403, "url": "https://pypi.org/project/prospector" }, "pandas": { - "credit": 0.022275, + "credit": 0.0326403, "url": "https://pypi.org/project/pandas" }, + "PyYAML": { + "credit": 0.015436575000000001, + "url": "https://pypi.org/project/PyYAML" + }, + "requests": { + "credit": 0.01929571875, + "url": "https://pypi.org/project/requests" + }, + "docopt": { + "credit": 0.015436575000000001, + "url": "https://pypi.org/project/docopt" + }, "virtualenv": { - "credit": 0.00275653125, + "credit": 0.0077182875000000005, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.00275653125, + "credit": 0.0077182875000000005, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.00275653125, + "credit": 0.0077182875000000005, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.00275653125, + "credit": 0.0077182875000000005, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.00275653125, + "credit": 0.0077182875000000005, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.00275653125, + "credit": 0.0077182875000000005, "url": "https://pypi.org/project/fields" }, - "coverage": { - "credit": 0.00826959375, - "url": "https://pypi.org/project/coverage" - }, "xmlschema": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/xmlschema" }, - "requests": { - "credit": 0.0068913281249999995, - "url": "https://pypi.org/project/requests" - }, "pygments": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/pygments" }, - "nose": { - "credit": 0.001378265625, - "url": "https://pypi.org/project/nose" - }, "mock": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.001378265625, + "credit": 0.036202443749999993, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.001378265625, + "credit": 0.0038591437500000002, "url": "https://pypi.org/project/attrs" - }, - "PyYAML": { - "credit": 0.0055130625, - "url": "https://pypi.org/project/PyYAML" - }, - "docopt": { - "credit": 0.0055130625, - "url": "https://pypi.org/project/docopt" } } } \ No newline at end of file diff --git a/_repos/github/DeltaRCM/pyDeltaRCM/badge.png b/_repos/github/DeltaRCM/pyDeltaRCM/badge.png index e0b05594..2ebc7abc 100644 Binary files a/_repos/github/DeltaRCM/pyDeltaRCM/badge.png and b/_repos/github/DeltaRCM/pyDeltaRCM/badge.png differ diff --git a/_repos/github/DrMarc/slab/README.md b/_repos/github/DrMarc/slab/README.md index 0547a2b0..46203ac4 100644 --- a/_repos/github/DrMarc/slab/README.md +++ b/_repos/github/DrMarc/slab/README.md @@ -8,14 +8,48 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.197| +|pypi|[matplotlib](https://matplotlib.org)|0.117| +|pypi|[numpy](https://pypi.org/project/numpy)|0.109| +|pypi|[cffi](http://cffi.readthedocs.org)|0.099| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.099| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.098| +|pypi|[scipy](https://pypi.org/project/scipy)|0.018| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.017| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.017| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.017| +|pypi|[SoundCard](https://github.com/bastibe/SoundCard)|0.012| +|pypi|[SoundFile](https://github.com/bastibe/PySoundFile)|0.012| +|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|0.011| |setup.py|github/DrMarc/slab|0.01| -|pypi|[numpy](https://www.numpy.org)|0.005| -|pypi|[matplotlib](https://matplotlib.org)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[SoundFile](https://github.com/bastibe/PySoundFile)|0.002| -|pypi|[SoundCard](https://github.com/bastibe/SoundCard)|0.002| -|pypi|[cffi](http://cffi.readthedocs.org)|0.002| -|pypi|[pycparser](https://github.com/eliben/pycparser)|0.002| +|pypi|[xattr](https://pypi.org/project/xattr)|0.008| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.008| +|pypi|[munkres](https://pypi.org/project/munkres)|0.008| +|pypi|[brotli](https://pypi.org/project/brotli)|0.008| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.008| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.008| +|pypi|[sympy](https://pypi.org/project/sympy)|0.008| +|pypi|[lz4](https://pypi.org/project/lz4)|0.008| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.008| +|pypi|[lxml](https://pypi.org/project/lxml)|0.008| +|pypi|[fs](https://pypi.org/project/fs)|0.008| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.006| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[coverage](https://pypi.org/project/coverage)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[slab](http://github.com/DrMarc/slab.git)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/DrMarc/slab/badge.png b/_repos/github/DrMarc/slab/badge.png index 225b1019..93078a7f 100644 Binary files a/_repos/github/DrMarc/slab/badge.png and b/_repos/github/DrMarc/slab/badge.png differ diff --git a/_repos/github/DrMarc/slab/data.json b/_repos/github/DrMarc/slab/data.json index bbda274f..ae67a5c8 100644 --- a/_repos/github/DrMarc/slab/data.json +++ b/_repos/github/DrMarc/slab/data.json @@ -6,33 +6,169 @@ } }, "pypi": { - "numpy": { - "credit": 0.0049169999999999995, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.0016500000000000002, - "url": "https://www.scipy.org" + "slab": { + "credit": 0.0009900000000000048, + "url": "http://github.com/DrMarc/slab.git" }, - "SoundFile": { - "credit": 0.0016500000000000002, - "url": "https://github.com/bastibe/PySoundFile" + "matplotlib": { + "credit": 0.11742923076923077, + "url": "https://matplotlib.org" }, "SoundCard": { - "credit": 0.0016500000000000002, + "credit": 0.011880000000000005, "url": "https://github.com/bastibe/SoundCard" }, - "matplotlib": { - "credit": 0.0033000000000000004, - "url": "https://matplotlib.org" + "SoundFile": { + "credit": 0.011880000000000005, + "url": "https://github.com/bastibe/PySoundFile" }, "cffi": { - "credit": 0.0016335, + "credit": 0.099, "url": "http://cffi.readthedocs.org" }, + "cycler": { + "credit": 0.099, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0009900000000000048, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0009900000000000048, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0009900000000000048, + "url": "https://python-pillow.org" + }, "pycparser": { - "credit": 0.0016171649999999998, + "credit": 0.19701000000000002, "url": "https://github.com/eliben/pycparser" + }, + "pytest": { + "credit": 0.017015625, + "url": "https://docs.pytest.org/en/latest/" + }, + "h5netcdf": { + "credit": 0.01089, + "url": "https://pypi.org/project/h5netcdf" + }, + "sphinx-rtd-theme": { + "credit": 0.017015625, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx": { + "credit": 0.017015625, + "url": "https://pypi.org/project/sphinx" + }, + "scipy": { + "credit": 0.01842923076923077, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.1089, + "url": "https://pypi.org/project/numpy" + }, + "xattr": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.09801, + "url": "https://pypi.org/project/typing-extensions" + }, + "pytest-timeout": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pytest-cov" + }, + "pyroma": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.006125625, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.006125625, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.006125625, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.006125625, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.006125625, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-removed-in": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.006125625, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/DrafProject/elmada/README.md b/_repos/github/DrafProject/elmada/README.md index 1d10fe8a..73aee981 100644 --- a/_repos/github/DrafProject/elmada/README.md +++ b/_repos/github/DrafProject/elmada/README.md @@ -8,69 +8,69 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.256| -|pypi|[lxml](https://lxml.de/)|0.108| -|pypi|[matplotlib](https://matplotlib.org)|0.079| -|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.076| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.035| -|pypi|[pytest](https://pypi.org/project/pytest)|0.033| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.026| -|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.025| -|pypi|[six](https://pypi.org/project/six)|0.023| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.016| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.016| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.015| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.015| -|pypi|[twine](https://pypi.org/project/twine)|0.015| -|pypi|[wheel](https://pypi.org/project/wheel)|0.015| -|pypi|[pandas](https://pandas.pydata.org)|0.014| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.013| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.013| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.013| -|pypi|[idna](https://pypi.org/project/idna)|0.013| -|pypi|[chardet](https://pypi.org/project/chardet)|0.013| -|pypi|[certifi](https://pypi.org/project/certifi)|0.013| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.013| -|pypi|[webencodings](https://pypi.org/project/webencodings)|0.012| -|pypi|[requests](https://requests.readthedocs.io)|0.012| -|pypi|[more-itertools](https://pypi.org/project/more-itertools)|0.011| -|pypi|[inflection](https://pypi.org/project/inflection)|0.011| +|pypi|[lxml](https://lxml.de/)|0.09| +|pypi|[numpy](https://pypi.org/project/numpy)|0.073| +|pypi|[inflection](https://github.com/jpvanhal/inflection)|0.071| +|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.071| +|pypi|[matplotlib](https://matplotlib.org)|0.069| +|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.065| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.062| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.061| +|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.061| +|pypi|[requests](https://pypi.org/project/requests)|0.027| +|pypi|[pandas](https://pypi.org/project/pandas)|0.027| +|pypi|[soupsieve](https://facelessuser.github.io/soupsieve/)|0.021| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.02| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.019| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.019| +|pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.019| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.016| +|pypi|[pytz](https://pypi.org/project/pytz)|0.015| +|pypi|[twine](https://pypi.org/project/twine)|0.012| +|pypi|[wheel](https://pypi.org/project/wheel)|0.012| |setup.py|github/DrafProject/elmada|0.01| -|pypi|[html5lib](https://github.com/html5lib/html5lib-python)|0.006| -|pypi|[soupsieve](https://facelessuser.github.io/soupsieve/)|0.006| -|pypi|[trio](https://github.com/python-trio/trio)|0.003| -|pypi|[curio](https://pypi.org/project/curio)|0.003| -|pypi|[testpath](https://pypi.org/project/testpath)|0.003| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.003| -|pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.003| -|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|0.003| -|pypi|[notebook](https://pypi.org/project/notebook)|0.003| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.003| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.003| -|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.003| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.003| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.003| +|pypi|[six](https://pypi.org/project/six)|0.009| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.009| +|pypi|[scipy](https://pypi.org/project/scipy)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.005| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.005| +|pypi|[munkres](https://pypi.org/project/munkres)|0.005| +|pypi|[brotli](https://pypi.org/project/brotli)|0.005| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.005| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| +|pypi|[lz4](https://pypi.org/project/lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.004| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[entsoe-py](https://github.com/EnergieID/entsoe-py)|0.003| +|pypi|[pyarrow](https://arrow.apache.org/)|0.003| +|pypi|[quandl](https://github.com/quandl/quandl-python)|0.003| +|pypi|[xlrd](http://www.python-excel.org/)|0.003| +|pypi|[pytest-responsemock](https://pypi.org/project/pytest-responsemock)|0.003| +|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.003| +|pypi|[plotly](https://pypi.org/project/plotly)|0.003| +|pypi|[mypy](https://pypi.org/project/mypy)|0.003| +|pypi|[isort](https://pypi.org/project/isort)|0.003| +|pypi|[iso3166](https://pypi.org/project/iso3166)|0.003| |pypi|[black](https://pypi.org/project/black)|0.003| -|pypi|[colorama](https://pypi.org/project/colorama)|0.003| -|pypi|[appnope](https://pypi.org/project/appnope)|0.003| -|pypi|[pexpect](https://pypi.org/project/pexpect)|0.003| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.003| -|pypi|[stack-data](https://pypi.org/project/stack-data)|0.003| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.003| -|pypi|[pygments](https://pypi.org/project/pygments)|0.003| -|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|0.003| -|pypi|[pickleshare](https://pypi.org/project/pickleshare)|0.003| -|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|0.003| -|pypi|[jedi](https://pypi.org/project/jedi)|0.003| -|pypi|[decorator](https://pypi.org/project/decorator)|0.003| -|pypi|[backcall](https://pypi.org/project/backcall)|0.003| -|pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.001| -|pypi|[entsoe-py](https://github.com/EnergieID/entsoe-py)|0.001| -|pypi|[ipython](https://ipython.org)|0.001| -|pypi|[pyarrow](https://arrow.apache.org/)|0.001| -|pypi|[quandl](https://github.com/quandl/quandl-python)|0.001| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[xlrd](http://www.python-excel.org/)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.003| +|pypi|[elmada](https://github.com/DrafProject/elmada)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/DrafProject/elmada/badge.png b/_repos/github/DrafProject/elmada/badge.png index e9fa498b..ba9fd0c4 100644 Binary files a/_repos/github/DrafProject/elmada/badge.png and b/_repos/github/DrafProject/elmada/badge.png differ diff --git a/_repos/github/DrafProject/elmada/data.json b/_repos/github/DrafProject/elmada/data.json index 8cde749f..75c94a24 100644 --- a/_repos/github/DrafProject/elmada/data.json +++ b/_repos/github/DrafProject/elmada/data.json @@ -6,252 +6,252 @@ } }, "pypi": { + "elmada": { + "credit": 0.0006187500000000012, + "url": "https://github.com/DrafProject/elmada" + }, + "entsoe-py": { + "credit": 0.003403125000000001, + "url": "https://github.com/EnergieID/entsoe-py" + }, "appdirs": { - "credit": 0.07615384615384616, + "credit": 0.064659375, "url": "http://github.com/ActiveState/appdirs" }, "beautifulsoup4": { - "credit": 0.0009500192307692369, + "credit": 0.0187171875, "url": "http://www.crummy.com/software/BeautifulSoup/bs4/" }, - "entsoe-py": { - "credit": 0.0007615384615384663, - "url": "https://github.com/EnergieID/entsoe-py" - }, - "ipython": { - "credit": 0.0007615384615384663, - "url": "https://ipython.org" - }, "lxml": { - "credit": 0.10750448076923078, + "credit": 0.08979014423076924, "url": "https://lxml.de/" }, "matplotlib": { - "credit": 0.07866692307692308, + "credit": 0.06937139423076924, "url": "https://matplotlib.org" }, - "numpy": { - "credit": 0.2558971854395604, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.014233425824175831, - "url": "https://pandas.pydata.org" - }, "pyarrow": { - "credit": 0.0007615384615384663, + "credit": 0.003403125000000001, "url": "https://arrow.apache.org/" }, "quandl": { - "credit": 0.0007615384615384663, + "credit": 0.003403125000000001, "url": "https://github.com/quandl/quandl-python" }, - "requests": { - "credit": 0.011720348901098908, - "url": "https://requests.readthedocs.io" - }, - "scipy": { - "credit": 0.0007615384615384663, - "url": "https://www.scipy.org" - }, "xlrd": { - "credit": 0.0007615384615384663, + "credit": 0.003403125000000001, "url": "http://www.python-excel.org/" }, - "html5lib": { - "credit": 0.006471173076923077, - "url": "https://github.com/html5lib/html5lib-python" + "cycler": { + "credit": 0.061875, + "url": "https://github.com/matplotlib/cycler" }, - "soupsieve": { - "credit": 0.006471173076923077, - "url": "https://facelessuser.github.io/soupsieve/" + "fonttools": { + "credit": 0.0006187500000000012, + "url": "http://github.com/fonttools/fonttools" }, - "pytz": { - "credit": 0.03452339423076923, - "url": "http://pythonhosted.org/pytz" + "inflection": { + "credit": 0.07062589285714285, + "url": "https://github.com/jpvanhal/inflection" }, - "trio": { - "credit": 0.002513076923076923, - "url": "https://github.com/python-trio/trio" + "kiwisolver": { + "credit": 0.0006187500000000012, + "url": "https://github.com/nucleic/kiwi" }, - "curio": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/curio" + "pillow": { + "credit": 0.0006187500000000012, + "url": "https://python-pillow.org" }, - "testpath": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/testpath" + "soupsieve": { + "credit": 0.0210375, + "url": "https://facelessuser.github.io/soupsieve/" }, - "pytest-asyncio": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pytest-asyncio" + "more-itertools": { + "credit": 0.07062589285714285, + "url": "https://github.com/more-itertools/more-itertools" }, "pytest": { - "credit": 0.03326685576923077, - "url": "https://pypi.org/project/pytest" - }, - "qtconsole": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/qtconsole" + "credit": 0.018864140625, + "url": "https://docs.pytest.org/en/latest/" }, - "ipyparallel": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/ipyparallel" + "pytest-responsemock": { + "credit": 0.002784375, + "url": "https://pypi.org/project/pytest-responsemock" }, - "notebook": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/notebook" + "pytest-mock": { + "credit": 0.002784375, + "url": "https://pypi.org/project/pytest-mock" }, - "ipywidgets": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/ipywidgets" + "pytest-cov": { + "credit": 0.018864140625, + "url": "https://pypi.org/project/pytest-cov" }, - "nbformat": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/nbformat" + "plotly": { + "credit": 0.002784375, + "url": "https://pypi.org/project/plotly" }, - "nbconvert": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/nbconvert" + "mypy": { + "credit": 0.002784375, + "url": "https://pypi.org/project/mypy" }, - "ipykernel": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/ipykernel" + "isort": { + "credit": 0.002784375, + "url": "https://pypi.org/project/isort" }, - "Sphinx": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/Sphinx" + "iso3166": { + "credit": 0.002784375, + "url": "https://pypi.org/project/iso3166" }, "black": { - "credit": 0.002513076923076923, + "credit": 0.002784375, "url": "https://pypi.org/project/black" }, - "colorama": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/colorama" + "scipy": { + "credit": 0.00749639423076923, + "url": "https://pypi.org/project/scipy" + }, + "requests": { + "credit": 0.026849330357142855, + "url": "https://pypi.org/project/requests" + }, + "pandas": { + "credit": 0.026849330357142855, + "url": "https://pypi.org/project/pandas" }, - "appnope": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/appnope" + "numpy": { + "credit": 0.07279151785714286, + "url": "https://pypi.org/project/numpy" }, - "pexpect": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pexpect" + "ipython": { + "credit": 0.002784375, + "url": "https://pypi.org/project/ipython" }, - "traitlets": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/traitlets" + "pytz": { + "credit": 0.0153140625, + "url": "https://pypi.org/project/pytz" }, - "stack-data": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/stack-data" + "html5lib": { + "credit": 0.02041875, + "url": "https://pypi.org/project/html5lib" }, - "setuptools": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/setuptools" + "six": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/six" }, - "pygments": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pygments" + "python-dateutil": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/python-dateutil" }, - "prompt-toolkit": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/prompt-toolkit" + "sphinx": { + "credit": 0.016079765625, + "url": "https://pypi.org/project/sphinx" }, - "pickleshare": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pickleshare" + "twine": { + "credit": 0.01225125, + "url": "https://pypi.org/project/twine" }, - "matplotlib-inline": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/matplotlib-inline" + "wheel": { + "credit": 0.01225125, + "url": "https://pypi.org/project/wheel" }, - "jedi": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/jedi" + "xattr": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/xattr" }, - "decorator": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/decorator" + "unicodedata2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/unicodedata2" }, - "backcall": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/backcall" + "munkres": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/munkres" }, - "pytest-xdist": { - "credit": 0.015675317307692307, - "url": "https://pypi.org/project/pytest-xdist" + "brotli": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/brotli" }, - "hypothesis": { - "credit": 0.015675317307692307, - "url": "https://pypi.org/project/hypothesis" + "brotlicffi": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/brotlicffi" }, - "python-dateutil": { - "credit": 0.02644564697802198, - "url": "https://pypi.org/project/python-dateutil" + "skia-pathops": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/skia-pathops" }, - "more-itertools": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/more-itertools" + "sympy": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sympy" }, - "six": { - "credit": 0.02321006043956044, - "url": "https://pypi.org/project/six" + "lz4": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/lz4" }, - "inflection": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/inflection" + "zopfli": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/zopfli" }, - "win-inet-pton": { - "credit": 0.013435986263736264, - "url": "https://pypi.org/project/win-inet-pton" + "fs": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/fs" }, - "PySocks": { - "credit": 0.013435986263736264, - "url": "https://pypi.org/project/PySocks" + "typing-extensions": { + "credit": 0.06125625, + "url": "https://pypi.org/project/typing-extensions" }, - "charset-normalizer": { - "credit": 0.013435986263736264, - "url": "https://pypi.org/project/charset-normalizer" + "pytest-timeout": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/pytest-timeout" }, - "idna": { - "credit": 0.013435986263736264, - "url": "https://pypi.org/project/idna" + "pyroma": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/pyroma" }, - "chardet": { - "credit": 0.013435986263736264, - "url": "https://pypi.org/project/chardet" + "packaging": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/packaging" }, - "certifi": { - "credit": 0.013435986263736264, - "url": "https://pypi.org/project/certifi" + "markdown2": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/markdown2" }, - "urllib3": { - "credit": 0.013435986263736264, - "url": "https://pypi.org/project/urllib3" + "defusedxml": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/defusedxml" }, - "pytest-cov": { - "credit": 0.015078461538461537, - "url": "https://pypi.org/project/pytest-cov" + "coverage": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/coverage" }, - "sphinx": { - "credit": 0.015078461538461537, - "url": "https://pypi.org/project/sphinx" + "check-manifest": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/check-manifest" }, - "twine": { - "credit": 0.015078461538461537, - "url": "https://pypi.org/project/twine" + "sphinxext-opengraph": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "wheel": { - "credit": 0.015078461538461537, - "url": "https://pypi.org/project/wheel" + "sphinx-rtd-theme": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "webencodings": { - "credit": 0.012439730769230769, - "url": "https://pypi.org/project/webencodings" + "olefile": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/olefile" }, "backports-functools-lru-cache": { - "credit": 0.024879461538461538, + "credit": 0.06125625, "url": "https://pypi.org/project/backports-functools-lru-cache" } } diff --git a/_repos/github/DynaSlum/satsense/badge.png b/_repos/github/DynaSlum/satsense/badge.png index d62757d8..239977e1 100644 Binary files a/_repos/github/DynaSlum/satsense/badge.png and b/_repos/github/DynaSlum/satsense/badge.png differ diff --git a/_repos/github/ECSHackWeek/impedance.py/README.md b/_repos/github/ECSHackWeek/impedance.py/README.md index 4ec8937b..d60840dd 100644 --- a/_repos/github/ECSHackWeek/impedance.py/README.md +++ b/_repos/github/ECSHackWeek/impedance.py/README.md @@ -8,25 +8,60 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.508| -|pypi|[matplotlib](https://matplotlib.org)|0.247| -|pypi|[pandas](https://pypi.org/project/pandas)|0.03| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.02| -|pypi|[docutils](https://pypi.org/project/docutils)|0.02| -|pypi|[m2r](https://github.com/miyakogi/m2r)|0.015| -|pypi|[mistune](https://github.com/lepture/mistune)|0.015| -|pypi|[pytest](https://pypi.org/project/pytest)|0.015| -|pypi|[flake8](https://pypi.org/project/flake8)|0.015| -|pypi|[ipython](https://pypi.org/project/ipython)|0.015| -|pypi|[black](https://pypi.org/project/black)|0.015| -|pypi|[toolz](https://pypi.org/project/toolz)|0.015| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.015| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.015| -|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.015| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.135| +|pypi|[matplotlib](https://matplotlib.org)|0.119| +|pypi|[entrypoints](https://github.com/takluyver/entrypoints)|0.097| +|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.097| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.09| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.089| +|pypi|[numpy](https://www.numpy.org)|0.051| +|pypi|[Babel](https://pypi.org/project/Babel)|0.045| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.014| +|pypi|[pytest](https://pypi.org/project/pytest)|0.013| +|pypi|[pandas](https://pypi.org/project/pandas)|0.012| |setup.py|github/ECSHackWeek/impedance.py|0.01| -|pypi|[commonmark](https://pypi.org/project/commonmark)|0.005| -|pypi|[altair](http://altair-viz.github.io)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| +|pypi|[docutils](https://pypi.org/project/docutils)|0.009| +|pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.008| +|pypi|[scipy](https://www.scipy.org)|0.007| +|pypi|[m2r](https://github.com/miyakogi/m2r)|0.007| +|pypi|[mistune](https://github.com/lepture/mistune)|0.007| +|pypi|[flake8](https://pypi.org/project/flake8)|0.007| +|pypi|[ipython](https://pypi.org/project/ipython)|0.007| +|pypi|[black](https://pypi.org/project/black)|0.007| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.007| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.007| +|pypi|[munkres](https://pypi.org/project/munkres)|0.007| +|pypi|[brotli](https://pypi.org/project/brotli)|0.007| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.007| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.007| +|pypi|[sympy](https://pypi.org/project/sympy)|0.007| +|pypi|[lz4](https://pypi.org/project/lz4)|0.007| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.007| +|pypi|[lxml](https://pypi.org/project/lxml)|0.007| +|pypi|[fs](https://pypi.org/project/fs)|0.007| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.006| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[coverage](https://pypi.org/project/coverage)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[commonmark](https://pypi.org/project/commonmark)|0.002| +|pypi|[recommonmark](https://github.com/rtfd/recommonmark)|0.001| +|pypi|[vega-datasets](http://github.com/altair-viz/vega_datasets)|0.001| +|pypi|[altair](http://altair-viz.github.io)|0.001| +|pypi|[impedance](https://impedancepy.readthedocs.io/en/latest/)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/ECSHackWeek/impedance.py/badge.png b/_repos/github/ECSHackWeek/impedance.py/badge.png index 0d6cc591..306d3227 100644 Binary files a/_repos/github/ECSHackWeek/impedance.py/badge.png and b/_repos/github/ECSHackWeek/impedance.py/badge.png differ diff --git a/_repos/github/ECSHackWeek/impedance.py/data.json b/_repos/github/ECSHackWeek/impedance.py/data.json index 1a243049..80795ba9 100644 --- a/_repos/github/ECSHackWeek/impedance.py/data.json +++ b/_repos/github/ECSHackWeek/impedance.py/data.json @@ -6,84 +6,216 @@ } }, "pypi": { + "impedance": { + "credit": 0.000899999999999998, + "url": "https://impedancepy.readthedocs.io/en/latest/" + }, "altair": { - "credit": 0.002475000000000005, + "credit": 0.0011227499999999987, "url": "http://altair-viz.github.io" }, "matplotlib": { - "credit": 0.2475, + "credit": 0.11912884615384615, "url": "https://matplotlib.org" }, - "numpy": { - "credit": 0.5078390625, - "url": "https://www.numpy.org" + "cycler": { + "credit": 0.09, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.000899999999999998, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.000899999999999998, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.000899999999999998, + "url": "https://python-pillow.org" + }, + "entrypoints": { + "credit": 0.096947015625, + "url": "https://github.com/takluyver/entrypoints" + }, + "jinja2": { + "credit": 0.007847015624999999, + "url": "https://palletsprojects.com/p/jinja/" + }, + "toolz": { + "credit": 0.096947015625, + "url": "https://github.com/pytoolz/toolz/" + }, + "MarkupSafe": { + "credit": 0.13455, + "url": "https://palletsprojects.com/p/markupsafe/" }, "scipy": { - "credit": 0.002475000000000005, + "credit": 0.007076596153846155, "url": "https://www.scipy.org" }, + "numpy": { + "credit": 0.051274265624999996, + "url": "https://www.numpy.org" + }, "recommonmark": { - "credit": 0.00015314062500000093, + "credit": 0.0014339531250000001, "url": "https://github.com/rtfd/recommonmark" }, "vega-datasets": { - "credit": 0.00015314062500000093, + "credit": 0.0014339531250000001, "url": "http://github.com/altair-viz/vega_datasets" }, "m2r": { - "credit": 0.0153140625, + "credit": 0.006947015625, "url": "https://github.com/miyakogi/m2r" }, "mistune": { - "credit": 0.0153140625, + "credit": 0.006947015625, "url": "https://github.com/lepture/mistune" }, "sphinx": { - "credit": 0.020367703124999997, + "credit": 0.014353453124999999, "url": "https://www.sphinx-doc.org/" }, "pytest": { - "credit": 0.0153140625, + "credit": 0.012515765625, "url": "https://pypi.org/project/pytest" }, "flake8": { - "credit": 0.0153140625, + "credit": 0.006947015625, "url": "https://pypi.org/project/flake8" }, "ipython": { - "credit": 0.0153140625, + "credit": 0.006947015625, "url": "https://pypi.org/project/ipython" }, "docutils": { - "credit": 0.020367703124999997, + "credit": 0.008784703125, "url": "https://pypi.org/project/docutils" }, "black": { - "credit": 0.0153140625, + "credit": 0.006947015625, "url": "https://pypi.org/project/black" }, - "toolz": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/toolz" - }, "pandas": { - "credit": 0.030474984375, + "credit": 0.012460078125, "url": "https://pypi.org/project/pandas" }, "jsonschema": { - "credit": 0.0153140625, + "credit": 0.006947015625, "url": "https://pypi.org/project/jsonschema" }, - "jinja2": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/jinja2" + "xattr": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/xattr" }, - "entrypoints": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/entrypoints" + "unicodedata2": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.0891, + "url": "https://pypi.org/project/typing-extensions" + }, + "pytest-timeout": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pytest-cov" + }, + "pyroma": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.00556875, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00556875, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00556875, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.00556875, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.00556875, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.00556875, + "url": "https://pypi.org/project/olefile" + }, + "Babel": { + "credit": 0.04455, + "url": "https://pypi.org/project/Babel" }, "commonmark": { - "credit": 0.0050536406249999995, + "credit": 0.0018376875, "url": "https://pypi.org/project/commonmark" } } diff --git a/_repos/github/EISy-as-Py/hardy/badge.png b/_repos/github/EISy-as-Py/hardy/badge.png index ba784d23..9f84d246 100644 Binary files a/_repos/github/EISy-as-Py/hardy/badge.png and b/_repos/github/EISy-as-Py/hardy/badge.png differ diff --git a/_repos/github/ERA-URBAN/fm128_radar/README.md b/_repos/github/ERA-URBAN/fm128_radar/README.md index 36dd7ed8..728f111d 100644 --- a/_repos/github/ERA-URBAN/fm128_radar/README.md +++ b/_repos/github/ERA-URBAN/fm128_radar/README.md @@ -9,6 +9,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/ERA-URBAN/fm128_radar|0.01| +|pypi|[fm128-radar](https://github.com/ERA-URBAN/fm128_radar)|0.01| |pypi|[numpy](https://www.numpy.org)|0.01| diff --git a/_repos/github/ERA-URBAN/fm128_radar/badge.png b/_repos/github/ERA-URBAN/fm128_radar/badge.png index fba44d3a..75ff30cf 100644 Binary files a/_repos/github/ERA-URBAN/fm128_radar/badge.png and b/_repos/github/ERA-URBAN/fm128_radar/badge.png differ diff --git a/_repos/github/ERA-URBAN/fm128_radar/data.json b/_repos/github/ERA-URBAN/fm128_radar/data.json index 15f7ffe9..c576a269 100644 --- a/_repos/github/ERA-URBAN/fm128_radar/data.json +++ b/_repos/github/ERA-URBAN/fm128_radar/data.json @@ -6,8 +6,12 @@ } }, "pypi": { - "numpy": { + "fm128-radar": { "credit": 0.0099, + "url": "https://github.com/ERA-URBAN/fm128_radar" + }, + "numpy": { + "credit": 0.009801, "url": "https://www.numpy.org" } } diff --git a/_repos/github/Effective-Quadratures/Effective-Quadratures/README.md b/_repos/github/Effective-Quadratures/Effective-Quadratures/README.md index f443cecb..a7676430 100644 --- a/_repos/github/Effective-Quadratures/Effective-Quadratures/README.md +++ b/_repos/github/Effective-Quadratures/Effective-Quadratures/README.md @@ -8,48 +8,62 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.416| -|pypi|[matplotlib](https://matplotlib.org)|0.206| -|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.026| -|pypi|[idna](https://github.com/kjd/idna)|0.026| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.026| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.024| -|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.023| -|pypi|[chardet](https://github.com/chardet/chardet)|0.023| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.023| -|pypi|[tox](https://pypi.org/project/tox)|0.016| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.013| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.013| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.013| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.013| -|pypi|[twine](https://pypi.org/project/twine)|0.013| -|pypi|[wheel](https://pypi.org/project/wheel)|0.013| -|pypi|[pep8-naming](https://pypi.org/project/pep8-naming)|0.013| -|pypi|[flake8](https://pypi.org/project/flake8)|0.013| -|pypi|[tomli](https://pypi.org/project/tomli)|0.012| +|pypi|[matplotlib](https://matplotlib.org)|0.164| +|pypi|[equadratures](https://github.com/Effective-Quadratures/equadratures)|0.124| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.123| +|pypi|[scipy](https://pypi.org/project/scipy)|0.04| +|pypi|[pandas](https://pypi.org/project/pandas)|0.031| +|pypi|[numpy](https://pypi.org/project/numpy)|0.031| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.021| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.017| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.017| +|pypi|[tox](https://pypi.org/project/tox)|0.012| |setup.py|github/Effective-Quadratures/Effective-Quadratures|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[pytz](https://pypi.org/project/pytz)|0.007| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.007| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.003| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.003| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.003| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.003| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.003| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.003| -|pypi|[brotli](https://pypi.org/project/brotli)|0.003| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.002| -|pypi|[seaborn](https://seaborn.pydata.org)|0.002| -|pypi|[requests](https://requests.readthedocs.io)|0.002| -|pypi|[graphviz](https://github.com/xflr6/graphviz)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| +|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.009| +|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.009| +|pypi|[twine](https://pypi.org/project/twine)|0.009| +|pypi|[wheel](https://pypi.org/project/wheel)|0.009| +|pypi|[pep8-naming](https://pypi.org/project/pep8-naming)|0.009| +|pypi|[flake8](https://pypi.org/project/flake8)|0.009| +|pypi|[xattr](https://pypi.org/project/xattr)|0.009| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.009| +|pypi|[munkres](https://pypi.org/project/munkres)|0.009| +|pypi|[brotli](https://pypi.org/project/brotli)|0.009| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.009| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.009| +|pypi|[sympy](https://pypi.org/project/sympy)|0.009| +|pypi|[lz4](https://pypi.org/project/lz4)|0.009| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.009| +|pypi|[lxml](https://pypi.org/project/lxml)|0.009| +|pypi|[fs](https://pypi.org/project/fs)|0.009| +|pypi|[tomli](https://pypi.org/project/tomli)|0.009| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.009| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.008| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.008| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.002| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| +|pypi|[graphviz](https://github.com/xflr6/graphviz)|0.001| +|pypi|[seaborn](https://seaborn.pydata.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Effective-Quadratures/Effective-Quadratures/badge.png b/_repos/github/Effective-Quadratures/Effective-Quadratures/badge.png index 1f0826c8..cc07a9b9 100644 Binary files a/_repos/github/Effective-Quadratures/Effective-Quadratures/badge.png and b/_repos/github/Effective-Quadratures/Effective-Quadratures/badge.png differ diff --git a/_repos/github/Effective-Quadratures/Effective-Quadratures/data.json b/_repos/github/Effective-Quadratures/Effective-Quadratures/data.json index f7cf9796..178f1e4d 100644 --- a/_repos/github/Effective-Quadratures/Effective-Quadratures/data.json +++ b/_repos/github/Effective-Quadratures/Effective-Quadratures/data.json @@ -6,188 +6,228 @@ } }, "pypi": { - "numpy": { - "credit": 0.4163548125, - "url": "https://www.numpy.org" + "equadratures": { + "credit": 0.12375, + "url": "https://github.com/Effective-Quadratures/equadratures" }, - "scipy": { - "credit": 0.002058375000000015, - "url": "https://www.scipy.org" + "graphviz": { + "credit": 0.0012375000000000025, + "url": "https://github.com/xflr6/graphviz" }, "matplotlib": { - "credit": 0.2058375, + "credit": 0.16380216346153847, "url": "https://matplotlib.org" }, "seaborn": { - "credit": 0.0016500000000000126, + "credit": 0.0012375000000000025, "url": "https://seaborn.pydata.org" }, - "requests": { - "credit": 0.0016500000000000126, - "url": "https://requests.readthedocs.io" - }, - "graphviz": { - "credit": 0.0016500000000000126, - "url": "https://github.com/xflr6/graphviz" - }, - "pandas": { - "credit": 0.0004083750000000025, - "url": "https://pandas.pydata.org" - }, - "win-inet-pton": { - "credit": 0.023335714285714286, - "url": "https://github.com/hickeroar/win_inet_pton" - }, - "PySocks": { - "credit": 0.025902642857142857, - "url": "https://github.com/Anorov/PySocks" + "cycler": { + "credit": 0.12375, + "url": "https://github.com/matplotlib/cycler" }, - "charset-normalizer": { - "credit": 0.0002333571428571428, - "url": "https://github.com/ousret/charset_normalizer" + "fonttools": { + "credit": 0.0012375000000000025, + "url": "http://github.com/fonttools/fonttools" }, - "idna": { - "credit": 0.025902642857142857, - "url": "https://github.com/kjd/idna" + "kiwisolver": { + "credit": 0.0012375000000000025, + "url": "https://github.com/nucleic/kiwi" }, - "chardet": { - "credit": 0.023335714285714286, - "url": "https://github.com/chardet/chardet" - }, - "certifi": { - "credit": 0.025902642857142857, - "url": "https://certifiio.readthedocs.io/en/latest/" - }, - "urllib3": { - "credit": 0.0002333571428571428, - "url": "https://urllib3.readthedocs.io/" + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" }, "coverage": { - "credit": 0.0016806201923076926, + "credit": 0.00891749639423077, "url": "https://github.com/nedbat/coveragepy" }, "pytest-cov": { - "credit": 0.00012565384615384652, + "credit": 0.007751271634615385, "url": "https://github.com/pytest-dev/pytest-cov" }, "mock": { - "credit": 0.012565384615384615, + "credit": 0.009424038461538461, "url": "http://mock.readthedocs.org/en/latest/" }, "pytest-mock": { - "credit": 0.00012565384615384652, + "credit": 9.424038461538532e-05, "url": "https://github.com/pytest-dev/pytest-mock/" }, "pytest": { - "credit": 0.023968471153846156, + "credit": 0.020579743990384616, "url": "https://docs.pytest.org/en/latest/" }, "sphinx-rtd-theme": { - "credit": 0.012565384615384615, + "credit": 0.01708106971153846, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx-autodoc-typehints": { - "credit": 0.012565384615384615, + "credit": 0.009424038461538461, "url": "https://pypi.org/project/sphinx-autodoc-typehints" }, "sphinx": { - "credit": 0.012565384615384615, + "credit": 0.01708106971153846, "url": "https://pypi.org/project/sphinx" }, "twine": { - "credit": 0.012565384615384615, + "credit": 0.009424038461538461, "url": "https://pypi.org/project/twine" }, "wheel": { - "credit": 0.012565384615384615, + "credit": 0.009424038461538461, "url": "https://pypi.org/project/wheel" }, "pep8-naming": { - "credit": 0.012565384615384615, + "credit": 0.009424038461538461, "url": "https://pypi.org/project/pep8-naming" }, "flake8": { - "credit": 0.012565384615384615, + "credit": 0.009424038461538461, "url": "https://pypi.org/project/flake8" }, "tox": { - "credit": 0.015675317307692307, + "credit": 0.01175648798076923, "url": "https://pypi.org/project/tox" }, - "pytest-xdist": { - "credit": 0.008293153846153846, - "url": "https://pypi.org/project/pytest-xdist" + "pandas": { + "credit": 0.030628125, + "url": "https://pypi.org/project/pandas" }, - "hypothesis": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/hypothesis" + "scipy": { + "credit": 0.04005216346153846, + "url": "https://pypi.org/project/scipy" }, - "pytz": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/pytz" + "numpy": { + "credit": 0.030628125, + "url": "https://pypi.org/project/numpy" }, - "python-dateutil": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/python-dateutil" + "xattr": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/xattr" }, "unicodedata2": { - "credit": 0.023102357142857143, + "credit": 0.009424038461538461, "url": "https://pypi.org/project/unicodedata2" }, - "ipaddress": { - "credit": 0.0025669285714285716, - "url": "https://pypi.org/project/ipaddress" - }, - "cryptography": { - "credit": 0.0025669285714285716, - "url": "https://pypi.org/project/cryptography" - }, - "pyOpenSSL": { - "credit": 0.0025669285714285716, - "url": "https://pypi.org/project/pyOpenSSL" - }, - "brotlipy": { - "credit": 0.0025669285714285716, - "url": "https://pypi.org/project/brotlipy" + "munkres": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/munkres" }, "brotli": { - "credit": 0.0025669285714285716, + "credit": 0.009424038461538461, "url": "https://pypi.org/project/brotli" }, "brotlicffi": { - "credit": 0.0025669285714285716, + "credit": 0.009424038461538461, "url": "https://pypi.org/project/brotlicffi" }, + "skia-pathops": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.1225125, + "url": "https://pypi.org/project/typing-extensions" + }, + "pytest-timeout": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" + }, "tomli": { - "credit": 0.012439730769230769, + "credit": 0.009329798076923076, "url": "https://pypi.org/project/tomli" }, "virtualenv": { - "credit": 0.0015549663461538461, + "credit": 0.0011662247596153845, "url": "https://pypi.org/project/virtualenv" }, + "pytest-xdist": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/pytest-xdist" + }, "six": { - "credit": 0.0015549663461538461, + "credit": 0.0011662247596153845, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.0015549663461538461, + "credit": 0.0011662247596153845, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.0015549663461538461, + "credit": 0.0011662247596153845, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.0015549663461538461, + "credit": 0.0011662247596153845, "url": "https://pypi.org/project/fields" }, "pytest-asyncio": { - "credit": 0.0031099326923076922, + "credit": 0.002332449519230769, "url": "https://pypi.org/project/pytest-asyncio" }, "pre-commit": { - "credit": 0.0031099326923076922, + "credit": 0.002332449519230769, "url": "https://pypi.org/project/pre-commit" } } diff --git a/_repos/github/ElectionDataAnalysis/electiondata/README.md b/_repos/github/ElectionDataAnalysis/electiondata/README.md index eba5a194..0f531097 100644 --- a/_repos/github/ElectionDataAnalysis/electiondata/README.md +++ b/_repos/github/ElectionDataAnalysis/electiondata/README.md @@ -8,54 +8,10 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[sqlalchemy](http://www.sqlalchemy.org)|0.495| -|pypi|[numpy](https://www.numpy.org)|0.086| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.086| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.086| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.04| -|pypi|[execnet](https://pypi.org/project/execnet)|0.013| -|pypi|[py](https://pypi.org/project/py)|0.012| |setup.py|github/ElectionDataAnalysis/electiondata|0.01| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| -|pypi|[attrs](https://pypi.org/project/attrs)|0.01| -|pypi|[pandas](https://pandas.pydata.org)|0.009| -|pypi|[mock](https://pypi.org/project/mock)|0.007| -|pypi|[hypothesis](https://hypothesis.works)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.005| -|pypi|[pygments](https://pypi.org/project/pygments)|0.005| -|pypi|[nose](https://pypi.org/project/nose)|0.005| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.005| -|pypi|[colorama](https://pypi.org/project/colorama)|0.005| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.005| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.005| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.004| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.004| -|pypi|[rich](https://pypi.org/project/rich)|0.004| -|pypi|[redis](https://pypi.org/project/redis)|0.004| -|pypi|[libcst](https://pypi.org/project/libcst)|0.004| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.004| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.004| -|pypi|[django](https://pypi.org/project/django)|0.004| -|pypi|[click](https://pypi.org/project/click)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.004| -|pypi|[wmi](https://pypi.org/project/wmi)|0.002| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.002| -|pypi|[enum34](https://pypi.org/project/enum34)|0.002| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.002| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.002| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| -|pypi|[furo](https://pypi.org/project/furo)|0.002| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.001| +|pypi|[electiondata](https://github.com/kavigupta/electiondata)|0.003| +|pypi|[sqlalchemy](http://www.sqlalchemy.org)|0.003| +|pypi|[greenlet](https://greenlet.readthedocs.io/)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/ElectionDataAnalysis/electiondata/badge.png b/_repos/github/ElectionDataAnalysis/electiondata/badge.png index 2b7bf547..5a513238 100644 Binary files a/_repos/github/ElectionDataAnalysis/electiondata/badge.png and b/_repos/github/ElectionDataAnalysis/electiondata/badge.png differ diff --git a/_repos/github/ElectionDataAnalysis/electiondata/data.json b/_repos/github/ElectionDataAnalysis/electiondata/data.json index 0c7f689b..ae7f4f05 100644 --- a/_repos/github/ElectionDataAnalysis/electiondata/data.json +++ b/_repos/github/ElectionDataAnalysis/electiondata/data.json @@ -6,209 +6,17 @@ } }, "pypi": { + "electiondata": { + "credit": 0.0033000000000000004, + "url": "https://github.com/kavigupta/electiondata" + }, "sqlalchemy": { - "credit": 0.495, + "credit": 0.0033000000000000004, "url": "http://www.sqlalchemy.org" }, - "pandas": { - "credit": 0.00944212500000001, - "url": "https://pandas.pydata.org" - }, - "pytest-xdist": { - "credit": 0.000816750000000005, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.04046536828125, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.0058703906250000045, - "url": "https://hypothesis.works" - }, - "numpy": { - "credit": 0.086167125, - "url": "https://www.numpy.org" - }, - "pytz": { - "credit": 0.086167125, - "url": "http://pythonhosted.org/pytz" - }, - "python-dateutil": { - "credit": 0.086167125, - "url": "https://github.com/dateutil/dateutil" - }, - "filelock": { - "credit": 0.0001347637500000009, - "url": "https://github.com/tox-dev/py-filelock" - }, - "setproctitle": { - "credit": 0.0001347637500000009, - "url": "https://github.com/dvarrazzo/py-setproctitle" - }, - "psutil": { - "credit": 0.00013476375000000262, - "url": "https://github.com/giampaolo/psutil" - }, - "pytest-forked": { - "credit": 0.0001347637500000009, - "url": "https://github.com/pytest-dev/pytest-forked" - }, - "execnet": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/execnet" - }, - "xmlschema": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.0072772424999999995, - "url": "https://pypi.org/project/mock" - }, - "argcomplete": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.009545765624999999, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.01172444625, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.009545765624999999, - "url": "https://pypi.org/project/attrs" - }, - "tzdata": { - "credit": 0.004492125, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.004492125, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.004492125, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.004492125, - "url": "https://pypi.org/project/redis" - }, - "libcst": { - "credit": 0.004492125, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.004492125, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.004492125, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.004492125, - "url": "https://pypi.org/project/django" - }, - "click": { - "credit": 0.004492125, - "url": "https://pypi.org/project/click" - }, - "black": { - "credit": 0.004492125, - "url": "https://pypi.org/project/black" - }, - "sortedcontainers": { - "credit": 0.004492125, - "url": "https://pypi.org/project/sortedcontainers" - }, - "pytest-timeout": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/pytest-timeout" - }, - "pytest-cov": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/pytest-cov" - }, - "coverage": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/coverage" - }, - "covdefaults": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/covdefaults" - }, - "sphinx-autodoc-typehints": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "sphinx": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/sphinx" - }, - "furo": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/furo" - }, - "wmi": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/wmi" - }, - "pywin32": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/pywin32" - }, - "enum34": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/enum34" - }, - "unittest2": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/unittest2" - }, - "ipaddress": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/ipaddress" + "greenlet": { + "credit": 0.0033000000000000004, + "url": "https://greenlet.readthedocs.io/" } } } \ No newline at end of file diff --git a/_repos/github/Electrostatics/apbs/README.md b/_repos/github/Electrostatics/apbs/README.md index ef98d270..1bd9e554 100644 --- a/_repos/github/Electrostatics/apbs/README.md +++ b/_repos/github/Electrostatics/apbs/README.md @@ -9,8 +9,6 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/Electrostatics/apbs|0.01| -|pypi|[numpy](https://www.numpy.org)|0.005| -|pypi|[pyyaml](https://pyyaml.org/)|0.005| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Electrostatics/apbs/badge.png b/_repos/github/Electrostatics/apbs/badge.png index b7e88c2c..55ebcb8c 100644 Binary files a/_repos/github/Electrostatics/apbs/badge.png and b/_repos/github/Electrostatics/apbs/badge.png differ diff --git a/_repos/github/Electrostatics/apbs/data.json b/_repos/github/Electrostatics/apbs/data.json index 4ae5e86b..eb3bbd01 100644 --- a/_repos/github/Electrostatics/apbs/data.json +++ b/_repos/github/Electrostatics/apbs/data.json @@ -4,15 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "numpy": { - "credit": 0.00495, - "url": "https://www.numpy.org" - }, - "pyyaml": { - "credit": 0.00495, - "url": "https://pyyaml.org/" - } } } \ No newline at end of file diff --git a/_repos/github/EpistasisLab/regens/badge.png b/_repos/github/EpistasisLab/regens/badge.png index dbe00af0..81c082f6 100644 Binary files a/_repos/github/EpistasisLab/regens/badge.png and b/_repos/github/EpistasisLab/regens/badge.png differ diff --git a/_repos/github/EpistasisLab/tpot/README.md b/_repos/github/EpistasisLab/tpot/README.md index 921e2c9e..fad4bc0c 100644 --- a/_repos/github/EpistasisLab/tpot/README.md +++ b/_repos/github/EpistasisLab/tpot/README.md @@ -8,49 +8,29 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.23| -|pypi|[requests](https://pypi.org/project/requests)|0.11| -|pypi|[joblib](https://joblib.readthedocs.io)|0.104| -|pypi|[deap](https://www.github.com/deap)|0.099| -|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.099| -|pypi|[pytest](https://pypi.org/project/pytest)|0.023| -|pypi|[scipy](https://www.scipy.org)|0.018| -|pypi|[pandas](https://pandas.pydata.org)|0.017| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.016| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.016| -|pypi|[pytz](https://pypi.org/project/pytz)|0.016| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.016| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.016| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.012| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.012| -|pypi|[wheel](https://pypi.org/project/wheel)|0.012| -|pypi|[twine](https://pypi.org/project/twine)|0.012| -|pypi|[py-make](https://pypi.org/project/py-make)|0.012| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.012| -|pypi|[colorama](https://pypi.org/project/colorama)|0.012| -|pypi|[scikit-learn](http://scikit-learn.org)|0.012| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.011| -|pypi|[datatable](https://pypi.org/project/datatable)|0.011| -|pypi|[distributed](https://pypi.org/project/distributed)|0.011| -|pypi|[dask](https://pypi.org/project/dask)|0.011| +|pypi|[deap](https://www.github.com/deap)|0.21| +|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.21| +|pypi|[requests](https://pypi.org/project/requests)|0.196| +|pypi|[numpy](https://pypi.org/project/numpy)|0.045| +|pypi|[distributed](https://pypi.org/project/distributed)|0.033| +|pypi|[dask](https://pypi.org/project/dask)|0.033| +|pypi|[pandas](https://pypi.org/project/pandas)|0.033| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.033| +|pypi|[scipy](https://pypi.org/project/scipy)|0.033| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.022| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.022| +|pypi|[datatable](https://pypi.org/project/datatable)|0.022| +|pypi|[xgboost](https://github.com/dmlc/xgboost)|0.014| +|pypi|[skrebate](https://github.com/EpistasisLab/scikit-rebate)|0.012| +|pypi|[imbalanced-learn](https://github.com/scikit-learn-contrib/imbalanced-learn)|0.012| +|pypi|[dask-ml](https://pypi.org/project/dask-ml)|0.012| +|pypi|[joblib](https://pypi.org/project/joblib)|0.012| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.012| +|pypi|[update-checker](https://pypi.org/project/update-checker)|0.012| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.011| |setup.py|github/EpistasisLab/tpot|0.01| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[black](https://pypi.org/project/black)|0.005| -|pypi|[flake8](https://pypi.org/project/flake8)|0.005| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.005| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.005| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.005| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.005| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.005| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.005| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.005| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.005| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.005| -|pypi|[update_checker](https://github.com/bboe/update_checker)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[xgboost](https://github.com/dmlc/xgboost)|0.001| +|pypi|[TPOT](https://github.com/EpistasisLab/tpot)|0.002| +|pypi|[update_checker](https://github.com/bboe/update_checker)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/EpistasisLab/tpot/badge.png b/_repos/github/EpistasisLab/tpot/badge.png index 5fe497ea..dc65984a 100644 Binary files a/_repos/github/EpistasisLab/tpot/badge.png and b/_repos/github/EpistasisLab/tpot/badge.png differ diff --git a/_repos/github/EpistasisLab/tpot/data.json b/_repos/github/EpistasisLab/tpot/data.json index b55c1f2c..a0adf728 100644 --- a/_repos/github/EpistasisLab/tpot/data.json +++ b/_repos/github/EpistasisLab/tpot/data.json @@ -6,177 +6,101 @@ } }, "pypi": { - "numpy": { - "credit": 0.23044230000000004, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.018087300000000008, - "url": "https://www.scipy.org" - }, - "scikit-learn": { - "credit": 0.011879999999999991, - "url": "http://scikit-learn.org" + "TPOT": { + "credit": 0.0019800000000000095, + "url": "https://github.com/EpistasisLab/tpot" }, "deap": { - "credit": 0.099, + "credit": 0.20953058823529414, "url": "https://www.github.com/deap" }, - "update_checker": { - "credit": 0.0009900000000000048, - "url": "https://github.com/bboe/update_checker" - }, - "tqdm": { - "credit": 0.0009900000000000048, - "url": "https://tqdm.github.io" - }, "stopit": { - "credit": 0.099, + "credit": 0.20953058823529414, "url": "http://pypi.python.org/pypi/stopit" }, - "pandas": { - "credit": 0.01654714285714288, - "url": "https://pandas.pydata.org" - }, - "joblib": { - "credit": 0.10366714285714286, - "url": "https://joblib.readthedocs.io" + "update_checker": { + "credit": 0.0019800000000000095, + "url": "https://github.com/bboe/update_checker" }, "xgboost": { - "credit": 0.0009900000000000048, + "credit": 0.013510588235294127, "url": "https://github.com/dmlc/xgboost" }, - "pyamg": { - "credit": 4.667142857142821e-05, - "url": "https://github.com/pyamg/pyamg" - }, - "mypy": { - "credit": 0.0046671428571428576, - "url": "http://www.mypy-lang.org/" - }, - "black": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/black" - }, - "flake8": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/flake8" + "torch": { + "credit": 0.00011530588235294202, + "url": "https://pytorch.org/" }, - "pytest-cov": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/pytest-cov" + "skrebate": { + "credit": 0.011530588235294117, + "url": "https://github.com/EpistasisLab/scikit-rebate" }, - "pytest": { - "credit": 0.0225423, - "url": "https://pypi.org/project/pytest" + "scikit-mdr": { + "credit": 0.00011530588235294202, + "url": "https://github.com/EpistasisLab/scikit-mdr" }, - "sphinxext-opengraph": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinxext-opengraph" + "imbalanced-learn": { + "credit": 0.011530588235294117, + "url": "https://github.com/scikit-learn-contrib/imbalanced-learn" }, - "sphinx-prompt": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinx-prompt" + "dask-ml": { + "credit": 0.011530588235294117, + "url": "https://pypi.org/project/dask-ml" }, - "Pillow": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/Pillow" + "distributed": { + "credit": 0.03331058823529412, + "url": "https://pypi.org/project/distributed" }, - "numpydoc": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/numpydoc" + "dask": { + "credit": 0.03331058823529412, + "url": "https://pypi.org/project/dask" }, - "sphinx-gallery": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinx-gallery" + "joblib": { + "credit": 0.011530588235294117, + "url": "https://pypi.org/project/joblib" }, - "sphinx": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinx" + "pandas": { + "credit": 0.03331058823529412, + "url": "https://pypi.org/project/pandas" }, - "seaborn": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/seaborn" + "tqdm": { + "credit": 0.011530588235294117, + "url": "https://pypi.org/project/tqdm" }, - "scikit-image": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/scikit-image" + "update-checker": { + "credit": 0.011530588235294117, + "url": "https://pypi.org/project/update-checker" }, - "memory-profiler": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/memory-profiler" + "scikit-learn": { + "credit": 0.03331058823529412, + "url": "https://pypi.org/project/scikit-learn" }, - "matplotlib": { - "credit": 0.015557142857142858, - "url": "https://pypi.org/project/matplotlib" + "scipy": { + "credit": 0.03331058823529412, + "url": "https://pypi.org/project/scipy" }, - "threadpoolctl": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/threadpoolctl" + "numpy": { + "credit": 0.044725870588235295, + "url": "https://pypi.org/project/numpy" }, "requests": { - "credit": 0.11026125, + "credit": 0.19602, "url": "https://pypi.org/project/requests" }, - "slack-sdk": { - "credit": 0.01225125, - "url": "https://pypi.org/project/slack-sdk" - }, - "ipywidgets": { - "credit": 0.01225125, - "url": "https://pypi.org/project/ipywidgets" - }, - "wheel": { - "credit": 0.01225125, - "url": "https://pypi.org/project/wheel" - }, - "twine": { - "credit": 0.01225125, - "url": "https://pypi.org/project/twine" - }, - "py-make": { - "credit": 0.01225125, - "url": "https://pypi.org/project/py-make" - }, - "importlib-resources": { - "credit": 0.01225125, - "url": "https://pypi.org/project/importlib-resources" - }, - "colorama": { - "credit": 0.01225125, - "url": "https://pypi.org/project/colorama" - }, - "pytest-xdist": { - "credit": 0.016335, - "url": "https://pypi.org/project/pytest-xdist" - }, - "hypothesis": { - "credit": 0.016335, - "url": "https://pypi.org/project/hypothesis" - }, - "pytz": { - "credit": 0.016335, - "url": "https://pypi.org/project/pytz" - }, - "python-dateutil": { - "credit": 0.016335, - "url": "https://pypi.org/project/python-dateutil" + "matplotlib": { + "credit": 0.02178, + "url": "https://pypi.org/project/matplotlib" }, "graphviz": { - "credit": 0.01089, + "credit": 0.02178, "url": "https://pypi.org/project/graphviz" }, "datatable": { - "credit": 0.01089, + "credit": 0.02178, "url": "https://pypi.org/project/datatable" }, - "distributed": { - "credit": 0.01089, - "url": "https://pypi.org/project/distributed" - }, - "dask": { - "credit": 0.01089, - "url": "https://pypi.org/project/dask" + "typing-extensions": { + "credit": 0.011415282352941175, + "url": "https://pypi.org/project/typing-extensions" } } } \ No newline at end of file diff --git a/_repos/github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY/badge.png b/_repos/github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY/badge.png index f7d0952f..f3b14148 100644 Binary files a/_repos/github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY/badge.png and b/_repos/github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY/badge.png differ diff --git a/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/README.md b/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/README.md index 6c283b47..b75d5502 100644 --- a/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/README.md +++ b/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/README.md @@ -8,77 +8,50 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.145| -|pypi|[numpy](https://www.numpy.org)|0.144| +|pypi|[matplotlib](https://matplotlib.org)|0.133| +|pypi|[pvrpm](https://github.com/FSEC-Photovoltaics/pvrpm-lcoe)|0.124| |pypi|[nrel-pysam](https://nrel-pysam.readthedocs.io)|0.124| -|pypi|[pyyaml](https://pyyaml.org/)|0.124| -|pypi|[matplotlib](https://matplotlib.org)|0.124| -|pypi|[colorama](https://github.com/tartley/colorama)|0.078| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.022| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.019| -|pypi|[slack-sdk](https://github.com/slackapi/python-slack-sdk)|0.015| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.015| -|pypi|[wheel](https://pypi.org/project/wheel)|0.015| -|pypi|[twine](https://pypi.org/project/twine)|0.015| -|pypi|[py-make](https://pypi.org/project/py-make)|0.015| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[NREL-PySAM-stubs](http://www.github.com/nrel/pysam)|0.124| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[pytest](https://pypi.org/project/pytest)|0.031| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| +|pypi|[coverage](https://pypi.org/project/coverage)|0.012| |setup.py|github/FSEC-Photovoltaics/pvrpm-lcoe|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.008| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[filelock](https://pypi.org/project/filelock)|0.003| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.003| -|pypi|[execnet](https://pypi.org/project/execnet)|0.003| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.003| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.003| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.003| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.003| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.003| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.003| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.003| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.003| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.003| -|pypi|[ipython](https://pypi.org/project/ipython)|0.003| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.003| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.003| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[zipp](https://pypi.org/project/zipp)|0.003| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.002| -|pypi|[pandas](https://pandas.pydata.org)|0.002| -|pypi|[click](https://palletsprojects.com/p/click/)|0.002| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[idna](https://pypi.org/project/idna)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[certifi](https://pypi.org/project/certifi)|0.002| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| -|pypi|[hypothesis](https://hypothesis.works)|0.001| -|pypi|[requests](https://requests.readthedocs.io)|0.001| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.009| +|pypi|[brotli](https://github.com/google/brotli)|0.009| +|pypi|[lxml](https://lxml.de/)|0.009| +|pypi|[numpy](https://pypi.org/project/numpy)|0.009| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.009| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[enum34](https://pypi.org/project/enum34)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/badge.png b/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/badge.png index 8520a8cd..77bad980 100644 Binary files a/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/badge.png and b/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/badge.png differ diff --git a/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/data.json b/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/data.json index 0eac4396..d7661a13 100644 --- a/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/data.json +++ b/_repos/github/FSEC-Photovoltaics/pvrpm-lcoe/data.json @@ -6,289 +6,217 @@ } }, "pypi": { + "pvrpm": { + "credit": 0.12375, + "url": "https://github.com/FSEC-Photovoltaics/pvrpm-lcoe" + }, "nrel-pysam": { "credit": 0.12375, "url": "https://nrel-pysam.readthedocs.io" }, - "pandas": { - "credit": 0.0023605312500000024, - "url": "https://pandas.pydata.org" - }, - "click": { - "credit": 0.0023605312500000024, - "url": "https://palletsprojects.com/p/click/" + "matplotlib": { + "credit": 0.13317403846153847, + "url": "https://matplotlib.org" }, - "pyyaml": { + "cycler": { "credit": 0.12375, - "url": "https://pyyaml.org/" + "url": "https://github.com/matplotlib/cycler" }, - "scipy": { + "fonttools": { "credit": 0.0012375000000000025, - "url": "https://www.scipy.org" + "url": "http://github.com/fonttools/fonttools" }, - "tqdm": { + "kiwisolver": { "credit": 0.0012375000000000025, - "url": "https://tqdm.github.io" - }, - "matplotlib": { - "credit": 0.12375, - "url": "https://matplotlib.org" - }, - "python-dateutil": { - "credit": 0.14529178125, - "url": "https://github.com/dateutil/dateutil" - }, - "pytest-xdist": { - "credit": 0.00020418750000000124, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.00806540625, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.0014675976562500011, - "url": "https://hypothesis.works" + "url": "https://github.com/nucleic/kiwi" }, - "numpy": { - "credit": 0.14405428125, - "url": "https://www.numpy.org" - }, - "pytz": { - "credit": 0.02154178125, - "url": "http://pythonhosted.org/pytz" - }, - "importlib-metadata": { - "credit": 0.0029990039062500035, - "url": "https://github.com/python/importlib_metadata" - }, - "colorama": { - "credit": 0.07783372265625, - "url": "https://github.com/tartley/colorama" - }, - "requests": { - "credit": 0.001416550781249999, - "url": "https://requests.readthedocs.io" - }, - "slack-sdk": { - "credit": 0.0153140625, - "url": "https://github.com/slackapi/python-slack-sdk" - }, - "ipywidgets": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/ipywidgets" + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" }, - "wheel": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/wheel" + "NREL-PySAM-stubs": { + "credit": 0.12375, + "url": "http://www.github.com/nrel/pysam" }, - "twine": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/twine" + "xattr": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/xattr/xattr" }, - "py-make": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/py-make" + "unicodedata2": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/mikekap/unicodedata2" }, - "importlib-resources": { - "credit": 0.01868315625, - "url": "https://pypi.org/project/importlib-resources" + "munkres": { + "credit": 0.009424038461538461, + "url": "https://software.clapper.org/munkres/" }, - "filelock": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/filelock" + "brotli": { + "credit": 0.009424038461538461, + "url": "https://github.com/google/brotli" }, - "setproctitle": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/setproctitle" + "scipy": { + "credit": 9.424038461538532e-05, + "url": "https://www.scipy.org" }, - "psutil": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/psutil" + "brotlicffi": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-hyper/brotlicffi" }, - "pytest-forked": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-forked" + "skia-pathops": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/skia-pathops" }, - "execnet": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/execnet" + "sympy": { + "credit": 9.424038461538532e-05, + "url": "https://sympy.org" }, - "xmlschema": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/xmlschema" + "lz4": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-lz4/python-lz4" }, - "pygments": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/pygments" + "zopfli": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/py-zopfli" }, - "nose": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/nose" + "lxml": { + "credit": 0.009424038461538461, + "url": "https://lxml.de/" }, - "mock": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/mock" + "fs": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" }, - "argcomplete": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/argcomplete" + "typing-extensions": { + "credit": 0.1225125, + "url": "https://typing.readthedocs.io/" }, - "atomicwrites": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/atomicwrites" + "pytest-timeout": { + "credit": 7.657031250000047e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" }, - "tomli": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/tomli" + "pytest-cov": { + "credit": 0.009211997596153846, + "url": "https://github.com/pytest-dev/pytest-cov" }, - "py": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/py" + "pytest": { + "credit": 0.03078715564903846, + "url": "https://pypi.org/project/pytest" }, - "pluggy": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.00463250390625, + "credit": 0.00765703125, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.0023864414062499998, - "url": "https://pypi.org/project/attrs" - }, - "tzdata": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/redis" + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" }, - "libcst": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/libcst" + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" }, - "lark-parser": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/lark-parser" + "coverage": { + "credit": 0.012321930288461538, + "url": "https://pypi.org/project/coverage" }, - "dpcontracts": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/dpcontracts" + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" }, - "django": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/django" + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "black": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/black" + "sphinx-rtd-theme": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "sortedcontainers": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/sortedcontainers" + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "pytest-mypy": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-mypy" + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" }, - "pytest-black": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-black" + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "pytest-perf": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-perf" - }, - "flufl.flake8": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/flufl.flake8" + "sphinx": { + "credit": 0.009211997596153846, + "url": "https://pypi.org/project/sphinx" }, - "pyfakefs": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pyfakefs" + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" }, - "pytest-enabler": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-enabler" + "cffi": { + "credit": 0.013994697115384614, + "url": "https://pypi.org/project/cffi" }, - "pytest-cov": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-cov" + "pytest-randomly": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-randomly" }, - "pytest-flake8": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-checkdocs" + "pytest-xdist": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-xdist" }, - "ipython": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/ipython" + "numpy": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/numpy" }, - "rst.linker": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/rst.linker" + "enum34": { + "credit": 0.005831123798076923, + "url": "https://pypi.org/project/enum34" }, - "jaraco.packaging": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/jaraco.packaging" + "mpmath": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/mpmath" }, - "sphinx": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/sphinx" + "psutil": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/psutil" }, - "typing-extensions": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/typing-extensions" + "flake8": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/flake8" }, - "zipp": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/zipp" + "sphinx-bootstrap-theme": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" }, - "win-inet-pton": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/win-inet-pton" + "scandir": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/scandir" }, - "PySocks": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/PySocks" + "typing": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/typing" }, - "charset-normalizer": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/charset-normalizer" + "backports.os": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/backports.os" }, - "idna": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/idna" + "six": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/six" }, - "chardet": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/chardet" + "setuptools": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/setuptools" }, - "certifi": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/certifi" + "pytz": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/pytz" }, - "urllib3": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/urllib3" + "appdirs": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/appdirs" } } } \ No newline at end of file diff --git a/_repos/github/Filter-Bubble/e2e-Dutch/README.md b/_repos/github/Filter-Bubble/e2e-Dutch/README.md index 67ab4e02..dc284863 100644 --- a/_repos/github/Filter-Bubble/e2e-Dutch/README.md +++ b/_repos/github/Filter-Bubble/e2e-Dutch/README.md @@ -13,9 +13,9 @@ exclude_from_search: true |pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.114| |pypi|[pyhocon](http://github.com/chimpler/pyhocon/)|0.11| |pypi|[KafNafParserPy](https://github.com/cltl/KafNafParserPy)|0.11| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.018| |pypi|[pytest](https://pypi.org/project/pytest)|0.018| -|pypi|[six](https://pypi.org/project/six)|0.017| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.018| +|pypi|[six](https://pypi.org/project/six)|0.016| |pypi|[torch](https://pytorch.org/)|0.014| |pypi|[tqdm](https://pypi.org/project/tqdm)|0.013| |pypi|[requests](https://pypi.org/project/requests)|0.013| @@ -26,21 +26,8 @@ exclude_from_search: true |pypi|[black](https://pypi.org/project/black)|0.007| |pypi|[flake8](https://pypi.org/project/flake8)|0.007| |pypi|[Pillow](https://pypi.org/project/Pillow)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| |pypi|[scipy](https://www.scipy.org)|0.006| -|pypi|[keras](https://keras.io/)|0.005| -|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.005| -|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|0.005| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.005| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.005| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.005| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.005| -|pypi|[libclang](https://pypi.org/project/libclang)|0.005| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.005| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.005| -|pypi|[gast](https://pypi.org/project/gast)|0.005| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.005| -|pypi|[astunparse](https://pypi.org/project/astunparse)|0.005| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.005| |pypi|[pyamg](https://pypi.org/project/pyamg)|0.005| |pypi|[mypy](https://pypi.org/project/mypy)|0.005| |pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.005| @@ -56,9 +43,25 @@ exclude_from_search: true |pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.005| |pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.005| |pypi|[joblib](https://pypi.org/project/joblib)|0.005| -|pypi|[tensorflow](https://www.tensorflow.org/)|0.004| +|pypi|[keras](https://keras.io/)|0.005| +|pypi|[tensorflow-estimator](https://www.tensorflow.org/)|0.005| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|0.005| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.005| +|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.005| +|pypi|[wrapt](https://pypi.org/project/wrapt)|0.005| +|pypi|[termcolor](https://pypi.org/project/termcolor)|0.005| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.005| +|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.005| +|pypi|[libclang](https://pypi.org/project/libclang)|0.005| +|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.005| +|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.005| +|pypi|[gast](https://pypi.org/project/gast)|0.005| +|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.005| +|pypi|[astunparse](https://pypi.org/project/astunparse)|0.005| +|pypi|[absl-py](https://pypi.org/project/absl-py)|0.005| +|pypi|[tensorflow](https://www.tensorflow.org/)|0.003| |pypi|[scikit-learn](http://scikit-learn.org)|0.003| -|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|0.003| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|0.002| |pypi|[starlette](https://pypi.org/project/starlette)|0.002| |pypi|[fastapi](https://pypi.org/project/fastapi)|0.002| |pypi|[uvicorn](https://pypi.org/project/uvicorn)|0.002| @@ -108,17 +111,10 @@ exclude_from_search: true |pypi|[sacremoses](https://pypi.org/project/sacremoses)|0.002| |pypi|[regex](https://pypi.org/project/regex)|0.002| |pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| |pypi|[huggingface-hub](https://pypi.org/project/huggingface-hub)|0.002| |pypi|[filelock](https://pypi.org/project/filelock)|0.002| -|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.001| -|pypi|[enum34](https://pypi.org/project/enum34)|0.001| -|pypi|[futures](https://pypi.org/project/futures)|0.001| |pypi|[transformers](https://github.com/huggingface/transformers)|0.001| |pypi|[stanza](https://github.com/stanfordnlp/stanza)|0.001| -|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|0.001| -|pypi|[tensorflow-gpu](https://pypi.org/project/tensorflow-gpu)|0.001| -|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Filter-Bubble/e2e-Dutch/badge.png b/_repos/github/Filter-Bubble/e2e-Dutch/badge.png index a55d8472..c4ef4494 100644 Binary files a/_repos/github/Filter-Bubble/e2e-Dutch/badge.png and b/_repos/github/Filter-Bubble/e2e-Dutch/badge.png differ diff --git a/_repos/github/Filter-Bubble/e2e-Dutch/data.json b/_repos/github/Filter-Bubble/e2e-Dutch/data.json index fd77c7c2..3db87ac8 100644 --- a/_repos/github/Filter-Bubble/e2e-Dutch/data.json +++ b/_repos/github/Filter-Bubble/e2e-Dutch/data.json @@ -7,11 +7,11 @@ }, "pypi": { "tensorflow": { - "credit": 0.003828333928571432, + "credit": 0.0028015625000000037, "url": "https://www.tensorflow.org/" }, "h5py": { - "credit": 0.11518571428571428, + "credit": 0.11495, "url": "http://www.h5py.org" }, "pyhocon": { @@ -42,84 +42,88 @@ "credit": 0.0011000000000000038, "url": "https://github.com/stanfordnlp/stanza" }, - "grpcio": { - "credit": 5.185714285714255e-05, - "url": "https://grpc.io" - }, - "tensorflow-io-gcs-filesystem": { - "credit": 5.185714285714255e-05, - "url": "https://github.com/tensorflow/io" - }, "keras": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://keras.io/" }, - "tf-estimator-nightly": { - "credit": 0.005185714285714286, + "tensorflow-estimator": { + "credit": 0.0049499999999999995, "url": "https://www.tensorflow.org/" }, "tensorboard": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://github.com/tensorflow/tensorboard" }, + "grpcio": { + "credit": 0.0049499999999999995, + "url": "https://pypi.org/project/grpcio" + }, + "tensorflow-io-gcs-filesystem": { + "credit": 0.0049499999999999995, + "url": "https://pypi.org/project/tensorflow-io-gcs-filesystem" + }, "wrapt": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/wrapt" }, "typing-extensions": { - "credit": 0.11408571428571428, + "credit": 0.11384999999999999, "url": "https://pypi.org/project/typing-extensions" }, "termcolor": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/termcolor" }, "six": { - "credit": 0.017359178571428574, + "credit": 0.01584, "url": "https://pypi.org/project/six" }, "setuptools": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/setuptools" }, "protobuf": { - "credit": 0.017777276785714287, + "credit": 0.0175415625, "url": "https://pypi.org/project/protobuf" }, + "packaging": { + "credit": 0.0066515624999999995, + "url": "https://pypi.org/project/packaging" + }, "opt-einsum": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/opt-einsum" }, "numpy": { - "credit": 0.13186299107142857, + "credit": 0.1316272767857143, "url": "https://pypi.org/project/numpy" }, "libclang": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/libclang" }, "keras-preprocessing": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/keras-preprocessing" }, "google-pasta": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/google-pasta" }, "gast": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/gast" }, "flatbuffers": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/flatbuffers" }, "astunparse": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/astunparse" }, "absl-py": { - "credit": 0.005185714285714286, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/absl-py" }, "pyamg": { @@ -199,7 +203,7 @@ "url": "https://pypi.org/project/joblib" }, "tensorflow-cpu": { - "credit": 0.0027283339285714284, + "credit": 0.0017015625, "url": "https://pypi.org/project/tensorflow-cpu" }, "starlette": { @@ -406,10 +410,6 @@ "credit": 0.0017015625, "url": "https://pypi.org/project/pyyaml" }, - "packaging": { - "credit": 0.0017015625, - "url": "https://pypi.org/project/packaging" - }, "huggingface-hub": { "credit": 0.0017015625, "url": "https://pypi.org/project/huggingface-hub" @@ -429,30 +429,6 @@ "emoji": { "credit": 0.01089, "url": "https://pypi.org/project/emoji" - }, - "grpcio-tools": { - "credit": 0.0012834642857142858, - "url": "https://pypi.org/project/grpcio-tools" - }, - "enum34": { - "credit": 0.0012834642857142858, - "url": "https://pypi.org/project/enum34" - }, - "futures": { - "credit": 0.0012834642857142858, - "url": "https://pypi.org/project/futures" - }, - "tensorflow-rocm": { - "credit": 0.0010267714285714287, - "url": "https://pypi.org/project/tensorflow-rocm" - }, - "tensorflow-gpu": { - "credit": 0.0010267714285714287, - "url": "https://pypi.org/project/tensorflow-gpu" - }, - "tensorflow-aarch64": { - "credit": 0.0010267714285714287, - "url": "https://pypi.org/project/tensorflow-aarch64" } } } \ No newline at end of file diff --git a/_repos/github/FlowModelingControl/flowtorch/README.md b/_repos/github/FlowModelingControl/flowtorch/README.md index 0c0827a4..40cc9b79 100644 --- a/_repos/github/FlowModelingControl/flowtorch/README.md +++ b/_repos/github/FlowModelingControl/flowtorch/README.md @@ -8,64 +8,81 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.139| -|pypi|[matplotlib](https://matplotlib.org)|0.124| -|pypi|[h5py](http://www.h5py.org)|0.09| -|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.09| -|pypi|[numpy-stl](https://github.com/WoLpH/numpy-stl/)|0.09| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.089| -|pypi|[six](https://pypi.org/project/six)|0.045| -|pypi|[tenacity](https://pypi.org/project/tenacity)|0.045| -|pypi|[wslink](https://pypi.org/project/wslink)|0.03| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.026| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.015| -|pypi|[pytz](https://pypi.org/project/pytz)|0.015| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.015| +|pypi|[h5py](http://www.h5py.org)|0.015| +|pypi|[jupyterlab](https://jupyter.org)|0.015| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.015| +|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.015| +|pypi|[numpy-stl](https://pypi.org/project/numpy-stl)|0.015| +|pypi|[vtk](https://pypi.org/project/vtk)|0.015| +|pypi|[cycler](https://pypi.org/project/cycler)|0.015| +|pypi|[fonttools](https://pypi.org/project/fonttools)|0.015| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.015| +|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|0.015| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.015| +|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|0.015| +|pypi|[kiwisolver](https://pypi.org/project/kiwisolver)|0.015| +|pypi|[nbclassic](https://pypi.org/project/nbclassic)|0.015| +|pypi|[pillow](https://pypi.org/project/pillow)|0.015| +|pypi|[python-utils](https://pypi.org/project/python-utils)|0.015| +|pypi|[tornado](https://pypi.org/project/tornado)|0.015| +|pypi|[wslink](https://pypi.org/project/wslink)|0.015| +|pypi|[cftime](https://pypi.org/project/cftime)|0.015| +|pypi|[anyio](https://pypi.org/project/anyio)|0.015| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.015| +|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.015| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.015| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.015| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.015| +|pypi|[notebook](https://pypi.org/project/notebook)|0.015| +|pypi|[notebook-shim](https://pypi.org/project/notebook-shim)|0.015| +|pypi|[pyzmq](https://pypi.org/project/pyzmq)|0.015| +|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|0.015| +|pypi|[terminado](https://pypi.org/project/terminado)|0.015| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.015| +|pypi|[argon2-cffi](https://pypi.org/project/argon2-cffi)|0.015| +|pypi|[babel](https://pypi.org/project/babel)|0.015| +|pypi|[json5](https://pypi.org/project/json5)|0.015| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.015| +|pypi|[websocket-client](https://pypi.org/project/websocket-client)|0.015| +|pypi|[aiosignal](https://pypi.org/project/aiosignal)|0.015| +|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.015| +|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.015| +|pypi|[frozenlist](https://pypi.org/project/frozenlist)|0.015| +|pypi|[mistune](https://pypi.org/project/mistune)|0.015| +|pypi|[multidict](https://pypi.org/project/multidict)|0.015| +|pypi|[nbclient](https://pypi.org/project/nbclient)|0.015| +|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|0.015| +|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|0.015| +|pypi|[sniffio](https://pypi.org/project/sniffio)|0.015| +|pypi|[yarl](https://pypi.org/project/yarl)|0.015| +|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|0.015| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.015| +|pypi|[bleach](https://pypi.org/project/bleach)|0.015| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.015| +|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|0.015| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.015| +|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.015| +|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|0.015| +|pypi|[tinycss2](https://pypi.org/project/tinycss2)|0.015| +|pypi|[cffi](https://pypi.org/project/cffi)|0.015| +|pypi|[debugpy](https://pypi.org/project/debugpy)|0.015| +|pypi|[soupsieve](https://pypi.org/project/soupsieve)|0.015| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.015| +|pypi|[psutil](https://pypi.org/project/psutil)|0.015| +|pypi|[pycparser](https://pypi.org/project/pycparser)|0.015| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.015| |setup.py|github/FlowModelingControl/flowtorch|0.01| -|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|0.009| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| -|pypi|[pandas](https://pandas.pydata.org)|0.005| -|pypi|[build](https://pypi.org/project/build)|0.005| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.005| -|pypi|[requests-cache](https://pypi.org/project/requests-cache)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.005| -|pypi|[pytest-check-links](https://pypi.org/project/pytest-check-links)|0.005| -|pypi|[pytest-console-scripts](https://pypi.org/project/pytest-console-scripts)|0.005| -|pypi|[coverage](https://pypi.org/project/coverage)|0.005| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.005| -|pypi|[nbclassic](https://pypi.org/project/nbclassic)|0.005| -|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|0.005| -|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.005| -|pypi|[tornado](https://pypi.org/project/tornado)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[ipython](https://pypi.org/project/ipython)|0.005| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.004| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| -|pypi|[flake8](https://pypi.org/project/flake8)|0.004| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.004| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.004| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.004| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.004| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.004| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.004| -|pypi|[joblib](https://pypi.org/project/joblib)|0.004| -|pypi|[scipy](https://pypi.org/project/scipy)|0.004| -|pypi|[filelock](https://pypi.org/project/filelock)|0.002| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| -|pypi|[psutil](https://pypi.org/project/psutil)|0.002| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.002| -|pypi|[execnet](https://pypi.org/project/execnet)|0.002| -|pypi|[plotly](https://plotly.com/python/)|0.001| -|pypi|[torch](https://pytorch.org/)|0.001| -|pypi|[jupyterlab](https://jupyter.org)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| -|pypi|[vtk](https://vtk.org)|0.001| +|pypi|[torch](https://pytorch.org/)|0.002| +|pypi|[usort](https://pypi.org/project/usort)|0.001| +|pypi|[toml](https://pypi.org/project/toml)|0.001| +|pypi|[mypy](https://pypi.org/project/mypy)|0.001| +|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.001| +|pypi|[flake8](https://pypi.org/project/flake8)|0.001| +|pypi|[black](https://pypi.org/project/black)|0.001| +|pypi|[scipy](https://pypi.org/project/scipy)|0.001| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.001| +|pypi|[pytest](https://pypi.org/project/pytest)|0.001| +|pypi|[numpy](https://pypi.org/project/numpy)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/FlowModelingControl/flowtorch/badge.png b/_repos/github/FlowModelingControl/flowtorch/badge.png index 40f186a6..aba82554 100644 Binary files a/_repos/github/FlowModelingControl/flowtorch/badge.png and b/_repos/github/FlowModelingControl/flowtorch/badge.png differ diff --git a/_repos/github/FlowModelingControl/flowtorch/data.json b/_repos/github/FlowModelingControl/flowtorch/data.json index e7cbb94f..e954ec1f 100644 --- a/_repos/github/FlowModelingControl/flowtorch/data.json +++ b/_repos/github/FlowModelingControl/flowtorch/data.json @@ -6,237 +6,305 @@ } }, "pypi": { + "flowTorch": { + "credit": 0.0001546875000000003, + "url": "https://flowtorch.ai/users" + }, + "torch": { + "credit": 0.0015468750000000003, + "url": "https://pytorch.org/" + }, "h5py": { - "credit": 0.09, + "credit": 0.01546875, "url": "http://www.h5py.org" }, - "netCDF4": { - "credit": 0.09, - "url": "http://github.com/Unidata/netcdf4-python" + "jupyterlab": { + "credit": 0.01546875, + "url": "https://jupyter.org" }, "matplotlib": { - "credit": 0.12394285714285715, - "url": "https://matplotlib.org" + "credit": 0.01546875, + "url": "https://pypi.org/project/matplotlib" }, - "numpy": { - "credit": 0.13879285714285713, - "url": "https://www.numpy.org" + "netCDF4": { + "credit": 0.01546875, + "url": "https://pypi.org/project/netCDF4" }, "numpy-stl": { - "credit": 0.09, - "url": "https://github.com/WoLpH/numpy-stl/" + "credit": 0.01546875, + "url": "https://pypi.org/project/numpy-stl" }, - "pandas": { - "credit": 0.005142857142857141, - "url": "https://pandas.pydata.org" + "vtk": { + "credit": 0.01546875, + "url": "https://pypi.org/project/vtk" }, - "plotly": { - "credit": 0.000899999999999998, - "url": "https://plotly.com/python/" + "cycler": { + "credit": 0.01546875, + "url": "https://pypi.org/project/cycler" }, - "torch": { - "credit": 0.000899999999999998, - "url": "https://pytorch.org/" + "fonttools": { + "credit": 0.01546875, + "url": "https://pypi.org/project/fonttools" }, - "jupyterlab": { - "credit": 0.000899999999999998, - "url": "https://jupyter.org" + "jinja2": { + "credit": 0.01546875, + "url": "https://pypi.org/project/jinja2" }, - "scikit-learn": { - "credit": 0.000899999999999998, - "url": "http://scikit-learn.org" + "jupyter-server": { + "credit": 0.01546875, + "url": "https://pypi.org/project/jupyter-server" }, - "vtk": { - "credit": 0.000899999999999998, - "url": "https://vtk.org" + "jupyter-core": { + "credit": 0.01546875, + "url": "https://pypi.org/project/jupyter-core" }, - "pytest-xdist": { - "credit": 0.00014849999999999933, - "url": "https://github.com/pytest-dev/pytest-xdist" + "jupyterlab-server": { + "credit": 0.01546875, + "url": "https://pypi.org/project/jupyterlab-server" }, - "pytest": { - "credit": 0.02623258082706767, - "url": "https://docs.pytest.org/en/latest/" + "kiwisolver": { + "credit": 0.01546875, + "url": "https://pypi.org/project/kiwisolver" }, - "hypothesis": { - "credit": 0.01485, - "url": "https://pypi.org/project/hypothesis" + "nbclassic": { + "credit": 0.01546875, + "url": "https://pypi.org/project/nbclassic" }, - "pytz": { - "credit": 0.01485, - "url": "https://pypi.org/project/pytz" + "pillow": { + "credit": 0.01546875, + "url": "https://pypi.org/project/pillow" }, - "python-dateutil": { - "credit": 0.01485, - "url": "https://pypi.org/project/python-dateutil" + "python-utils": { + "credit": 0.01546875, + "url": "https://pypi.org/project/python-utils" }, - "six": { - "credit": 0.04455, - "url": "https://pypi.org/project/six" + "tornado": { + "credit": 0.01546875, + "url": "https://pypi.org/project/tornado" }, - "tenacity": { - "credit": 0.04455, - "url": "https://pypi.org/project/tenacity" + "wslink": { + "credit": 0.01546875, + "url": "https://pypi.org/project/wslink" }, - "typing-extensions": { - "credit": 0.0891, - "url": "https://pypi.org/project/typing-extensions" + "cftime": { + "credit": 0.01546875, + "url": "https://pypi.org/project/cftime" }, - "build": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/build" + "anyio": { + "credit": 0.01546875, + "url": "https://pypi.org/project/anyio" }, - "check-manifest": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/check-manifest" + "importlib-metadata": { + "credit": 0.01546875, + "url": "https://pypi.org/project/importlib-metadata" }, - "virtualenv": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/virtualenv" + "jupyter-client": { + "credit": 0.01546875, + "url": "https://pypi.org/project/jupyter-client" }, - "requests-cache": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/requests-cache" + "MarkupSafe": { + "credit": 0.01546875, + "url": "https://pypi.org/project/MarkupSafe" }, - "requests": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/requests" + "nbconvert": { + "credit": 0.01546875, + "url": "https://pypi.org/project/nbconvert" }, - "jupyterlab-server": { - "credit": 0.009378947368421053, - "url": "https://pypi.org/project/jupyterlab-server" + "nbformat": { + "credit": 0.01546875, + "url": "https://pypi.org/project/nbformat" }, - "pytest-check-links": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/pytest-check-links" + "notebook": { + "credit": 0.01546875, + "url": "https://pypi.org/project/notebook" }, - "pytest-console-scripts": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/pytest-console-scripts" + "notebook-shim": { + "credit": 0.01546875, + "url": "https://pypi.org/project/notebook-shim" }, - "pytest-cov": { - "credit": 0.00893233082706767, - "url": "https://pypi.org/project/pytest-cov" + "pyzmq": { + "credit": 0.01546875, + "url": "https://pypi.org/project/pyzmq" }, - "coverage": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/coverage" + "Send2Trash": { + "credit": 0.01546875, + "url": "https://pypi.org/project/Send2Trash" }, - "jinja2": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/jinja2" + "terminado": { + "credit": 0.01546875, + "url": "https://pypi.org/project/terminado" }, - "nbclassic": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/nbclassic" + "aiohttp": { + "credit": 0.01546875, + "url": "https://pypi.org/project/aiohttp" }, - "jupyter-server": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/jupyter-server" + "argon2-cffi": { + "credit": 0.01546875, + "url": "https://pypi.org/project/argon2-cffi" }, - "jupyter-core": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/jupyter-core" + "babel": { + "credit": 0.01546875, + "url": "https://pypi.org/project/babel" }, - "tornado": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/tornado" + "json5": { + "credit": 0.01546875, + "url": "https://pypi.org/project/json5" }, - "packaging": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/packaging" + "prometheus-client": { + "credit": 0.01546875, + "url": "https://pypi.org/project/prometheus-client" }, - "ipython": { - "credit": 0.004689473684210526, - "url": "https://pypi.org/project/ipython" + "websocket-client": { + "credit": 0.01546875, + "url": "https://pypi.org/project/websocket-client" }, - "pyamg": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/pyamg" + "aiosignal": { + "credit": 0.01546875, + "url": "https://pypi.org/project/aiosignal" }, - "mypy": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/mypy" + "async-timeout": { + "credit": 0.01546875, + "url": "https://pypi.org/project/async-timeout" }, - "black": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/black" + "entrypoints": { + "credit": 0.01546875, + "url": "https://pypi.org/project/entrypoints" }, - "flake8": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/flake8" + "frozenlist": { + "credit": 0.01546875, + "url": "https://pypi.org/project/frozenlist" }, - "sphinxext-opengraph": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/sphinxext-opengraph" + "mistune": { + "credit": 0.01546875, + "url": "https://pypi.org/project/mistune" }, - "sphinx-prompt": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/sphinx-prompt" + "multidict": { + "credit": 0.01546875, + "url": "https://pypi.org/project/multidict" }, - "Pillow": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/Pillow" + "nbclient": { + "credit": 0.01546875, + "url": "https://pypi.org/project/nbclient" }, - "numpydoc": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/numpydoc" + "nest-asyncio": { + "credit": 0.01546875, + "url": "https://pypi.org/project/nest-asyncio" }, - "sphinx-gallery": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/sphinx-gallery" + "pandocfilters": { + "credit": 0.01546875, + "url": "https://pypi.org/project/pandocfilters" }, - "sphinx": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/sphinx" + "sniffio": { + "credit": 0.01546875, + "url": "https://pypi.org/project/sniffio" }, - "seaborn": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/seaborn" + "yarl": { + "credit": 0.01546875, + "url": "https://pypi.org/project/yarl" }, - "scikit-image": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/scikit-image" + "argon2-cffi-bindings": { + "credit": 0.01546875, + "url": "https://pypi.org/project/argon2-cffi-bindings" }, - "memory-profiler": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/memory-profiler" + "beautifulsoup4": { + "credit": 0.01546875, + "url": "https://pypi.org/project/beautifulsoup4" }, - "threadpoolctl": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/threadpoolctl" + "bleach": { + "credit": 0.01546875, + "url": "https://pypi.org/project/bleach" }, - "joblib": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/joblib" + "defusedxml": { + "credit": 0.01546875, + "url": "https://pypi.org/project/defusedxml" }, - "scipy": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/scipy" + "fastjsonschema": { + "credit": 0.01546875, + "url": "https://pypi.org/project/fastjsonschema" }, - "wslink": { - "credit": 0.0297, - "url": "https://pypi.org/project/wslink" + "ipykernel": { + "credit": 0.01546875, + "url": "https://pypi.org/project/ipykernel" + }, + "ipython-genutils": { + "credit": 0.01546875, + "url": "https://pypi.org/project/ipython-genutils" + }, + "jupyterlab-pygments": { + "credit": 0.01546875, + "url": "https://pypi.org/project/jupyterlab-pygments" + }, + "tinycss2": { + "credit": 0.01546875, + "url": "https://pypi.org/project/tinycss2" }, - "filelock": { - "credit": 0.00245025, - "url": "https://pypi.org/project/filelock" + "cffi": { + "credit": 0.01546875, + "url": "https://pypi.org/project/cffi" }, - "setproctitle": { - "credit": 0.00245025, - "url": "https://pypi.org/project/setproctitle" + "debugpy": { + "credit": 0.01546875, + "url": "https://pypi.org/project/debugpy" + }, + "soupsieve": { + "credit": 0.01546875, + "url": "https://pypi.org/project/soupsieve" + }, + "webencodings": { + "credit": 0.01546875, + "url": "https://pypi.org/project/webencodings" }, "psutil": { - "credit": 0.00245025, + "credit": 0.01546875, "url": "https://pypi.org/project/psutil" }, - "pytest-forked": { - "credit": 0.00245025, - "url": "https://pypi.org/project/pytest-forked" + "pycparser": { + "credit": 0.01546875, + "url": "https://pypi.org/project/pycparser" + }, + "usort": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/usort" + }, + "toml": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/toml" + }, + "mypy": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/mypy" + }, + "flake8-bugbear": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/flake8-bugbear" + }, + "flake8": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/flake8" }, - "execnet": { - "credit": 0.00245025, - "url": "https://pypi.org/project/execnet" + "black": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/black" + }, + "scipy": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/scipy" + }, + "pytest-cov": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/pytest" + }, + "numpy": { + "credit": 0.0013921875, + "url": "https://pypi.org/project/numpy" + }, + "typing-extensions": { + "credit": 0.0153140625, + "url": "https://pypi.org/project/typing-extensions" } } } \ No newline at end of file diff --git a/_repos/github/FreBio/komics/README.md b/_repos/github/FreBio/komics/README.md index 79cad829..df1824c6 100644 --- a/_repos/github/FreBio/komics/README.md +++ b/_repos/github/FreBio/komics/README.md @@ -9,7 +9,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/FreBio/komics|0.01| -|pypi|[biopython](https://biopython.org/)|0.01| +|pypi|[komics](http://github.com/frebio/komics)|0.005| +|pypi|[biopython](https://biopython.org/)|0.005| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/FreBio/komics/badge.png b/_repos/github/FreBio/komics/badge.png index d05e0406..14b90dde 100644 Binary files a/_repos/github/FreBio/komics/badge.png and b/_repos/github/FreBio/komics/badge.png differ diff --git a/_repos/github/FreBio/komics/data.json b/_repos/github/FreBio/komics/data.json index fe687012..e1d0a44b 100644 --- a/_repos/github/FreBio/komics/data.json +++ b/_repos/github/FreBio/komics/data.json @@ -6,8 +6,12 @@ } }, "pypi": { + "komics": { + "credit": 0.00495, + "url": "http://github.com/frebio/komics" + }, "biopython": { - "credit": 0.0099, + "credit": 0.00495, "url": "https://biopython.org/" } } diff --git a/_repos/github/GilbertLabUCSF/CanDI/badge.png b/_repos/github/GilbertLabUCSF/CanDI/badge.png index 5c9bf369..99a6c9f1 100644 Binary files a/_repos/github/GilbertLabUCSF/CanDI/badge.png and b/_repos/github/GilbertLabUCSF/CanDI/badge.png differ diff --git a/_repos/github/HIPS/autograd/README.md b/_repos/github/HIPS/autograd/README.md index ea9f935a..4898cc14 100644 --- a/_repos/github/HIPS/autograd/README.md +++ b/_repos/github/HIPS/autograd/README.md @@ -9,8 +9,9 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/HIPS/autograd|0.01| -|pypi|[numpy](https://www.numpy.org)|0.005| -|pypi|[future](https://python-future.org)|0.005| +|pypi|[future](https://python-future.org)|0.007| +|pypi|[autograd](https://github.com/HIPS/autograd)|0.005| +|pypi|[numpy](https://www.numpy.org)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/HIPS/autograd/badge.png b/_repos/github/HIPS/autograd/badge.png index 5b4fb5fe..9a48cef9 100644 Binary files a/_repos/github/HIPS/autograd/badge.png and b/_repos/github/HIPS/autograd/badge.png differ diff --git a/_repos/github/HIPS/autograd/data.json b/_repos/github/HIPS/autograd/data.json index 52dd96ff..282932cf 100644 --- a/_repos/github/HIPS/autograd/data.json +++ b/_repos/github/HIPS/autograd/data.json @@ -6,13 +6,17 @@ } }, "pypi": { - "numpy": { + "autograd": { "credit": 0.00495, - "url": "https://www.numpy.org" + "url": "https://github.com/HIPS/autograd" }, "future": { - "credit": 0.00495, + "credit": 0.007400250000000001, "url": "https://python-future.org" + }, + "numpy": { + "credit": 0.00245025, + "url": "https://www.numpy.org" } } } \ No newline at end of file diff --git a/_repos/github/HillLab/SomaticSiMu/README.md b/_repos/github/HillLab/SomaticSiMu/README.md index 6ec78f60..df70a853 100644 --- a/_repos/github/HillLab/SomaticSiMu/README.md +++ b/_repos/github/HillLab/SomaticSiMu/README.md @@ -8,108 +8,86 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.291| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.064| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.043| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.043| -|pypi|[colorama](https://github.com/tartley/colorama)|0.033| -|pypi|[docopt](https://pypi.org/project/docopt)|0.03| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.023| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.018| -|pypi|[packaging](https://pypi.org/project/packaging)|0.018| -|pypi|[coverage](https://pypi.org/project/coverage)|0.017| -|pypi|[pyroma](https://pypi.org/project/pyroma)|0.015| -|pypi|[markdown2](https://pypi.org/project/markdown2)|0.015| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.015| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.015| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.015| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.015| -|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.015| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.015| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.015| -|pypi|[olefile](https://pypi.org/project/olefile)|0.015| +|pypi|[numpy](https://www.numpy.org)|0.143| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.086| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.049| +|pypi|[tomli](https://pypi.org/project/tomli)|0.038| +|pypi|[markdown2](https://github.com/trentm/python-markdown2)|0.038| +|pypi|[defusedxml](https://github.com/tiran/defusedxml)|0.038| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.038| +|pypi|[olefile](https://www.decalage.info/python/olefileio)|0.038| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.03| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.03| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.024| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.022| +|pypi|[requests](https://pypi.org/project/requests)|0.022| +|pypi|[pytz](https://pypi.org/project/pytz)|0.02| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.02| +|pypi|[wheel](https://pypi.org/project/wheel)|0.019| +|pypi|[colorama](https://pypi.org/project/colorama)|0.018| +|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.015| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.015| +|pypi|[twine](https://pypi.org/project/twine)|0.015| +|pypi|[py-make](https://pypi.org/project/py-make)|0.015| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.015| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.012| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.012| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.011| +|pypi|[packaging](https://github.com/pypa/packaging)|0.011| |setup.py|github/HillLab/SomaticSiMu|0.01| -|pypi|[psutil](https://pypi.org/project/psutil)|0.008| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.008| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.008| -|pypi|[filelock](https://pypi.org/project/filelock)|0.007| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.007| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.007| -|pypi|[execnet](https://pypi.org/project/execnet)|0.007| -|pypi|[requests](https://requests.readthedocs.io)|0.006| -|pypi|[rich](https://pypi.org/project/rich)|0.006| -|pypi|[mock](https://pypi.org/project/mock)|0.006| -|pypi|[attrs](https://pypi.org/project/attrs)|0.005| -|pypi|[pandas](https://pandas.pydata.org)|0.005| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.004| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.004| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.004| -|pypi|[idna](https://pypi.org/project/idna)|0.004| -|pypi|[chardet](https://pypi.org/project/chardet)|0.004| -|pypi|[certifi](https://pypi.org/project/certifi)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| -|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.003| -|pypi|[keyring](https://pypi.org/project/keyring)|0.003| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.003| -|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.003| -|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.003| -|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.003| -|pypi|[ipython](https://pypi.org/project/ipython)|0.003| -|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|0.003| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.003| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.003| -|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.003| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.003| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.003| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.003| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.003| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.003| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.003| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.003| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.003| -|pypi|[zipp](https://pypi.org/project/zipp)|0.003| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.003| -|pypi|[pygments](https://pypi.org/project/pygments)|0.003| -|pypi|[nose](https://pypi.org/project/nose)|0.003| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.003| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[py](https://pypi.org/project/py)|0.003| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.003| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.003| -|pypi|[tqdm](https://tqdm.github.io)|0.002| -|pypi|[pillow](https://python-pillow.org)|0.002| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[libcst](https://pypi.org/project/libcst)|0.002| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.002| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.002| -|pypi|[django](https://pypi.org/project/django)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| -|pypi|[moto](https://pypi.org/project/moto)|0.002| -|pypi|[databases](https://pypi.org/project/databases)|0.002| -|pypi|[flake8](https://pypi.org/project/flake8)|0.002| -|pypi|[codecov](https://pypi.org/project/codecov)|0.002| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.002| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.002| -|pypi|[Flask](https://pypi.org/project/Flask)|0.002| -|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|0.002| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.002| -|pypi|[websocket-client](https://pypi.org/project/websocket-client)|0.002| -|pypi|[websockets](https://pypi.org/project/websockets)|0.002| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.002| -|pypi|[boto3](https://pypi.org/project/boto3)|0.002| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.002| -|pypi|[aiodns](https://pypi.org/project/aiodns)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.01| +|pypi|[build](https://pypi.org/project/build)|0.01| +|pypi|[mock](https://pypi.org/project/mock)|0.008| +|pypi|[pyroma](https://github.com/regebro/pyroma)|0.008| +|pypi|[check-manifest](https://github.com/mgedmin/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://github.com/wpilibsuite/sphinxext-opengraph)|0.008| +|pypi|[sphinx-removed-in](https://github.com/MrSenko/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://github.com/sloria/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://github.com/executablebooks/sphinx-copybutton)|0.008| +|pypi|[flake8](https://pypi.org/project/flake8)|0.006| +|pypi|[pillow](https://python-pillow.org)|0.006| +|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|0.006| +|pypi|[myst-nb](https://pypi.org/project/myst-nb)|0.006| +|pypi|[ipython](https://pypi.org/project/ipython)|0.006| +|pypi|[pygments](https://pypi.org/project/pygments)|0.006| +|pypi|[tox](https://pypi.org/project/tox)|0.005| +|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.005| +|pypi|[docutils](https://pypi.org/project/docutils)|0.005| +|pypi|[SomaticSiMu](https://github.com/HillLab/SomaticSiMu)|0.005| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.004| +|pypi|[six](https://pypi.org/project/six)|0.004| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.004| +|pypi|[hunter](https://pypi.org/project/hunter)|0.004| +|pypi|[fields](https://pypi.org/project/fields)|0.004| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| +|pypi|[nose](https://pypi.org/project/nose)|0.002| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| +|pypi|[py](https://pypi.org/project/py)|0.002| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| +|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[tqdm](https://tqdm.github.io)|0.001| +|pypi|[pandas](https://pandas.pydata.org)|0.001| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.001| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.001| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.001| +|pypi|[mypy](https://pypi.org/project/mypy)|0.001| +|pypi|[isort](https://pypi.org/project/isort)|0.001| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.001| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.001| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.001| +|pypi|[babel](https://pypi.org/project/babel)|0.001| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.001| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.001| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.001| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.001| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.001| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.001| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.001| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.001| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/HillLab/SomaticSiMu/badge.png b/_repos/github/HillLab/SomaticSiMu/badge.png index 293abd55..97f7c556 100644 Binary files a/_repos/github/HillLab/SomaticSiMu/badge.png and b/_repos/github/HillLab/SomaticSiMu/badge.png differ diff --git a/_repos/github/HillLab/SomaticSiMu/data.json b/_repos/github/HillLab/SomaticSiMu/data.json index a8eaf3b3..ff1fb4bd 100644 --- a/_repos/github/HillLab/SomaticSiMu/data.json +++ b/_repos/github/HillLab/SomaticSiMu/data.json @@ -6,437 +6,325 @@ } }, "pypi": { - "pandas": { - "credit": 0.004721062500000005, - "url": "https://pandas.pydata.org" - }, - "numpy": { - "credit": 0.2905835625, - "url": "https://www.numpy.org" - }, - "tqdm": { - "credit": 0.002475000000000005, - "url": "https://tqdm.github.io" + "SomaticSiMu": { + "credit": 0.00495000000000001, + "url": "https://github.com/HillLab/SomaticSiMu" }, "pillow": { - "credit": 0.002475000000000005, + "credit": 0.006175125000000017, "url": "https://python-pillow.org" }, - "pytest-xdist": { - "credit": 0.002303490234375002, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.06430824862253288, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.0029351953125000023, - "url": "https://hypothesis.works" - }, - "pytz": { - "credit": 0.0430835625, - "url": "http://pythonhosted.org/pytz" - }, - "python-dateutil": { - "credit": 0.0430835625, - "url": "https://github.com/dateutil/dateutil" - }, - "requests": { - "credit": 0.006202195312499998, - "url": "https://requests.readthedocs.io" - }, - "slack-sdk": { - "credit": 0.00030628125000000186, - "url": "https://github.com/slackapi/python-slack-sdk" - }, - "ipywidgets": { - "credit": 0.00030628125000000186, - "url": "http://ipython.org" - }, - "wheel": { - "credit": 0.00030628125000000186, - "url": "https://github.com/pypa/wheel" - }, - "twine": { - "credit": 0.00030628125000000186, - "url": "https://twine.readthedocs.io/" - }, - "py-make": { - "credit": 0.00030628125000000186, - "url": "https://github.com/tqdm/pymake" + "tqdm": { + "credit": 0.0012251250000000075, + "url": "https://tqdm.github.io" }, - "importlib-resources": { - "credit": 0.00030628125000000186, - "url": "https://github.com/python/importlib_resources" + "numpy": { + "credit": 0.1427270625, + "url": "https://www.numpy.org" }, - "colorama": { - "credit": 0.033154945312499996, - "url": "https://github.com/tartley/colorama" + "pandas": { + "credit": 0.0012251250000000075, + "url": "https://pandas.pydata.org" }, "pytest-timeout": { - "credit": 0.00015314062500000093, + "credit": 0.0003820858593750016, "url": "https://github.com/pytest-dev/pytest-timeout" }, "pytest-cov": { - "credit": 0.022698664638157895, + "credit": 0.01167697265625, "url": "https://github.com/pytest-dev/pytest-cov" }, + "pytest": { + "credit": 0.08583914882812498, + "url": "https://docs.pytest.org/en/latest/" + }, "pyroma": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/pyroma" + "credit": 0.0078867421875, + "url": "https://github.com/regebro/pyroma" }, "packaging": { - "credit": 0.0178408828125, - "url": "https://pypi.org/project/packaging" + "credit": 0.010994731171875, + "url": "https://github.com/pypa/packaging" }, "markdown2": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/markdown2" + "credit": 0.0382085859375, + "url": "https://github.com/trentm/python-markdown2" }, "defusedxml": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/defusedxml" + "credit": 0.0382085859375, + "url": "https://github.com/tiran/defusedxml" }, "coverage": { - "credit": 0.017209177734375, - "url": "https://pypi.org/project/coverage" + "credit": 0.01167697265625, + "url": "https://github.com/nedbat/coveragepy" }, "check-manifest": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/check-manifest" + "credit": 0.0078867421875, + "url": "https://github.com/mgedmin/check-manifest" }, "sphinxext-opengraph": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/sphinxext-opengraph" + "credit": 0.0078867421875, + "url": "https://github.com/wpilibsuite/sphinxext-opengraph" }, "sphinx-rtd-theme": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/sphinx-rtd-theme" + "credit": 0.0382085859375, + "url": "https://github.com/readthedocs/sphinx_rtd_theme" }, "sphinx-removed-in": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/sphinx-removed-in" + "credit": 0.0078867421875, + "url": "https://github.com/MrSenko/sphinx-removed-in" }, "sphinx-issues": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/sphinx-issues" + "credit": 0.0078867421875, + "url": "https://github.com/sloria/sphinx-issues" }, "sphinx-copybutton": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/sphinx-copybutton" + "credit": 0.0078867421875, + "url": "https://github.com/executablebooks/sphinx-copybutton" }, "sphinx": { - "credit": 0.01807059375, - "url": "https://pypi.org/project/sphinx" + "credit": 0.0493265953125, + "url": "https://www.sphinx-doc.org/" }, "olefile": { - "credit": 0.0153140625, - "url": "https://pypi.org/project/olefile" + "credit": 0.0382085859375, + "url": "https://www.decalage.info/python/olefileio" + }, + "requests": { + "credit": 0.022059141328124997, + "url": "https://pypi.org/project/requests" + }, + "slack-sdk": { + "credit": 0.015160921874999999, + "url": "https://pypi.org/project/slack-sdk" + }, + "ipywidgets": { + "credit": 0.015160921874999999, + "url": "https://pypi.org/project/ipywidgets" + }, + "wheel": { + "credit": 0.01895115234375, + "url": "https://pypi.org/project/wheel" + }, + "twine": { + "credit": 0.015160921874999999, + "url": "https://pypi.org/project/twine" + }, + "py-make": { + "credit": 0.015160921874999999, + "url": "https://pypi.org/project/py-make" + }, + "importlib-resources": { + "credit": 0.015160921874999999, + "url": "https://pypi.org/project/importlib-resources" + }, + "colorama": { + "credit": 0.018268910859374998, + "url": "https://pypi.org/project/colorama" + }, + "pytest-xdist": { + "credit": 0.024004792968749997, + "url": "https://pypi.org/project/pytest-xdist" + }, + "hypothesis": { + "credit": 0.022109677734375, + "url": "https://pypi.org/project/hypothesis" + }, + "pytz": { + "credit": 0.020214562499999998, + "url": "https://pypi.org/project/pytz" + }, + "python-dateutil": { + "credit": 0.020214562499999998, + "url": "https://pypi.org/project/python-dateutil" }, - "filelock": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/filelock" + "virtualenv": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/virtualenv" }, - "setproctitle": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/setproctitle" + "six": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/six" }, - "psutil": { - "credit": 0.008334074013157894, - "url": "https://pypi.org/project/psutil" + "process-tests": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/process-tests" }, - "pytest-forked": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/pytest-forked" + "hunter": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/hunter" }, - "execnet": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/execnet" + "fields": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/fields" }, "xmlschema": { - "credit": 0.0025268203124999998, + "credit": 0.0018951152343749998, "url": "https://pypi.org/project/xmlschema" }, "pygments": { - "credit": 0.0025268203124999998, + "credit": 0.005685345703125, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0025268203124999998, + "credit": 0.0018951152343749998, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.005559004687499999, + "credit": 0.007959483984375, "url": "https://pypi.org/project/mock" }, "argcomplete": { - "credit": 0.0025268203124999998, + "credit": 0.0018951152343749998, "url": "https://pypi.org/project/argcomplete" }, "atomicwrites": { - "credit": 0.0025268203124999998, + "credit": 0.0018951152343749998, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.0081419765625, + "credit": 0.003107988984375, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.0025268203124999998, + "credit": 0.038281327734374995, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.0025268203124999998, + "credit": 0.0018951152343749998, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0025268203124999998, + "credit": 0.0018951152343749998, "url": "https://pypi.org/project/pluggy" }, "iniconfig": { - "credit": 0.0025268203124999998, + "credit": 0.0018951152343749998, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.0047728828124999996, + "credit": 0.0018951152343749998, "url": "https://pypi.org/project/attrs" }, - "tzdata": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.0056151562499999995, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/redis" - }, - "libcst": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/django" + "setuptools": { + "credit": 0.00985459921875, + "url": "https://pypi.org/project/setuptools" }, - "click": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/click" + "docutils": { + "credit": 0.005003104218749999, + "url": "https://pypi.org/project/docutils" }, - "black": { - "credit": 0.0038419490131578944, - "url": "https://pypi.org/project/black" + "build": { + "credit": 0.00985459921875, + "url": "https://pypi.org/project/build" }, - "sortedcontainers": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/sortedcontainers" - }, - "win-inet-pton": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/idna" - }, - "chardet": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/chardet" + "pyparsing": { + "credit": 0.030321843749999997, + "url": "https://pypi.org/project/pyparsing" }, - "certifi": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/certifi" + "Sphinx": { + "credit": 0.030321843749999997, + "url": "https://pypi.org/project/Sphinx" }, - "urllib3": { - "credit": 0.007700785714285714, - "url": "https://pypi.org/project/urllib3" + "tox": { + "credit": 0.0050536406249999995, + "url": "https://pypi.org/project/tox" }, - "moto": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/moto" + "pre-commit": { + "credit": 0.011118009374999998, + "url": "https://pypi.org/project/pre-commit" }, - "databases": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/databases" + "flake8-bugbear": { + "credit": 0.0050536406249999995, + "url": "https://pypi.org/project/flake8-bugbear" }, "flake8": { - "credit": 0.0015958865131578946, + "credit": 0.006266514375, "url": "https://pypi.org/project/flake8" }, - "codecov": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/codecov" - }, - "itsdangerous": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/itsdangerous" + "sphinx-book-theme": { + "credit": 0.006064368749999999, + "url": "https://pypi.org/project/sphinx-book-theme" }, - "Werkzeug": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/Werkzeug" - }, - "Flask": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/Flask" - }, - "Flask-Sockets": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/Flask-Sockets" - }, - "pytest-asyncio": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/pytest-asyncio" - }, - "websocket-client": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/websocket-client" - }, - "websockets": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/websockets" - }, - "SQLAlchemy": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/SQLAlchemy" - }, - "boto3": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/boto3" - }, - "aiohttp": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/aiohttp" - }, - "aiodns": { - "credit": 0.0015958865131578946, - "url": "https://pypi.org/project/aiodns" - }, - "jupyterlab-widgets": { - "credit": 0.0030321843749999996, - "url": "https://pypi.org/project/jupyterlab-widgets" + "myst-nb": { + "credit": 0.006064368749999999, + "url": "https://pypi.org/project/myst-nb" }, "ipython": { - "credit": 0.0030321843749999996, + "credit": 0.006064368749999999, "url": "https://pypi.org/project/ipython" }, - "widgetsnbextension": { - "credit": 0.0030321843749999996, - "url": "https://pypi.org/project/widgetsnbextension" - }, - "nbformat": { - "credit": 0.0030321843749999996, - "url": "https://pypi.org/project/nbformat" - }, - "traitlets": { - "credit": 0.0030321843749999996, - "url": "https://pypi.org/project/traitlets" - }, - "ipython-genutils": { - "credit": 0.0030321843749999996, - "url": "https://pypi.org/project/ipython-genutils" - }, - "ipykernel": { - "credit": 0.0030321843749999996, - "url": "https://pypi.org/project/ipykernel" - }, - "rfc3986": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/rfc3986" - }, - "keyring": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/keyring" + "types-requests": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/types-requests" }, - "requests-toolbelt": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/requests-toolbelt" + "types-typed-ast": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/types-typed-ast" }, - "readme-renderer": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/readme-renderer" + "docutils-stubs": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/docutils-stubs" }, - "pkginfo": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pkginfo" + "mypy": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/mypy" }, - "docopt": { - "credit": 0.030321843749999997, - "url": "https://pypi.org/project/docopt" + "isort": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/isort" }, - "pytest-mypy": { - "credit": 0.00275653125, - "url": "https://pypi.org/project/pytest-mypy" + "sphinxcontrib-websupport": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/sphinxcontrib-websupport" }, - "pytest-black": { - "credit": 0.00275653125, - "url": "https://pypi.org/project/pytest-black" + "imagesize": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/imagesize" }, - "pytest-enabler": { - "credit": 0.00275653125, - "url": "https://pypi.org/project/pytest-enabler" + "alabaster": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/alabaster" }, - "pytest-flake8": { - "credit": 0.00275653125, - "url": "https://pypi.org/project/pytest-flake8" + "babel": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/babel" }, - "pytest-checkdocs": { - "credit": 0.00275653125, - "url": "https://pypi.org/project/pytest-checkdocs" + "snowballstemmer": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/snowballstemmer" }, - "rst.linker": { - "credit": 0.00275653125, - "url": "https://pypi.org/project/rst.linker" + "Pygments": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/Pygments" }, - "jaraco.packaging": { - "credit": 0.00275653125, - "url": "https://pypi.org/project/jaraco.packaging" + "Jinja2": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/Jinja2" }, - "zipp": { - "credit": 0.00275653125, - "url": "https://pypi.org/project/zipp" + "sphinxcontrib-qthelp": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" }, - "virtualenv": { - "credit": 0.0018951152343749998, - "url": "https://pypi.org/project/virtualenv" + "sphinxcontrib-serializinghtml": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" }, - "six": { - "credit": 0.0018951152343749998, - "url": "https://pypi.org/project/six" + "sphinxcontrib-htmlhelp": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" }, - "process-tests": { - "credit": 0.0018951152343749998, - "url": "https://pypi.org/project/process-tests" + "sphinxcontrib-jsmath": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" }, - "hunter": { - "credit": 0.0018951152343749998, - "url": "https://pypi.org/project/hunter" + "sphinxcontrib-devhelp": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" }, - "fields": { - "credit": 0.0018951152343749998, - "url": "https://pypi.org/project/fields" + "sphinxcontrib-applehelp": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/sphinxcontrib-applehelp" } } } \ No newline at end of file diff --git a/_repos/github/IKNL/vantage6/badge.png b/_repos/github/IKNL/vantage6/badge.png index b28a10df..b219e795 100644 Binary files a/_repos/github/IKNL/vantage6/badge.png and b/_repos/github/IKNL/vantage6/badge.png differ diff --git a/_repos/github/IMMM-SFA/mosartwmpy/badge.png b/_repos/github/IMMM-SFA/mosartwmpy/badge.png index a8e4382b..4a17bc66 100644 Binary files a/_repos/github/IMMM-SFA/mosartwmpy/badge.png and b/_repos/github/IMMM-SFA/mosartwmpy/badge.png differ diff --git a/_repos/github/ImperialCollegeLondon/champ/badge.png b/_repos/github/ImperialCollegeLondon/champ/badge.png index 2b1eeeaa..1a852331 100644 Binary files a/_repos/github/ImperialCollegeLondon/champ/badge.png and b/_repos/github/ImperialCollegeLondon/champ/badge.png differ diff --git a/_repos/github/JLBLine/WODEN/badge.png b/_repos/github/JLBLine/WODEN/badge.png index ef8b8cd6..68d5fe40 100644 Binary files a/_repos/github/JLBLine/WODEN/badge.png and b/_repos/github/JLBLine/WODEN/badge.png differ diff --git a/_repos/github/JLiangLab/TransVW/badge.png b/_repos/github/JLiangLab/TransVW/badge.png index baad6365..f6090218 100644 Binary files a/_repos/github/JLiangLab/TransVW/badge.png and b/_repos/github/JLiangLab/TransVW/badge.png differ diff --git a/_repos/github/JohannesBuchner/BXA/README.md b/_repos/github/JohannesBuchner/BXA/README.md index 9379cc3a..d56b94f9 100644 --- a/_repos/github/JohannesBuchner/BXA/README.md +++ b/_repos/github/JohannesBuchner/BXA/README.md @@ -8,70 +8,85 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[matplotlib](https://matplotlib.org)|0.155| -|pypi|[numpy](https://www.numpy.org)|0.145| -|pypi|[h5py](http://www.h5py.org)|0.145| -|pypi|[ultranest](https://github.com/JohannesBuchner/ultranest)|0.141| -|pypi|[twine](https://pypi.org/project/twine)|0.027| -|pypi|[slack-sdk](https://github.com/slackapi/python-slack-sdk)|0.018| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.018| -|pypi|[wheel](https://pypi.org/project/wheel)|0.018| -|pypi|[py-make](https://pypi.org/project/py-make)|0.018| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.018| -|pypi|[colorama](https://pypi.org/project/colorama)|0.018| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.013| -|pypi|[pytest](https://pypi.org/project/pytest)|0.013| +|pypi|[matplotlib](https://matplotlib.org)|0.105| +|pypi|[h5py](http://www.h5py.org)|0.093| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.092| +|pypi|[bxa](https://github.com/JohannesBuchner/BXA/)|0.09| +|pypi|[ultranest](https://github.com/JohannesBuchner/ultranest)|0.09| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.09| +|pypi|[pytest](https://pypi.org/project/pytest)|0.036| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.025| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.025| +|pypi|[numpy](https://pypi.org/project/numpy)|0.025| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.014| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.012| |setup.py|github/JohannesBuchner/BXA|0.01| -|pypi|[pep517](https://pypi.org/project/pep517)|0.009| -|pypi|[flake8](https://pypi.org/project/flake8)|0.009| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.009| -|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|0.009| -|pypi|[myst-nb](https://pypi.org/project/myst-nb)|0.009| -|pypi|[pandoc](https://pypi.org/project/pandoc)|0.009| -|pypi|[toml](https://pypi.org/project/toml)|0.009| -|pypi|[isort](https://pypi.org/project/isort)|0.009| -|pypi|[black](https://pypi.org/project/black)|0.009| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| -|pypi|[arviz](https://pypi.org/project/arviz)|0.009| -|pypi|[certifi](https://pypi.org/project/certifi)|0.006| -|pypi|[sgp4](https://pypi.org/project/sgp4)|0.004| -|pypi|[skyfield](https://pypi.org/project/skyfield)|0.004| -|pypi|[coverage](https://pypi.org/project/coverage)|0.004| -|pypi|[objgraph](https://pypi.org/project/objgraph)|0.004| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.004| -|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.004| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.004| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.004| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.004| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.004| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.004| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.004| -|pypi|[ipython](https://pypi.org/project/ipython)|0.004| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.004| -|pypi|[asdf](https://pypi.org/project/asdf)|0.004| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.004| -|pypi|[jplephem](https://pypi.org/project/jplephem)|0.004| -|pypi|[pytz](https://pypi.org/project/pytz)|0.004| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.004| -|pypi|[pandas](https://pypi.org/project/pandas)|0.004| -|pypi|[bleach](https://pypi.org/project/bleach)|0.004| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.004| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.004| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.004| -|pypi|[dask](https://pypi.org/project/dask)|0.004| -|pypi|[scipy](https://pypi.org/project/scipy)|0.004| -|pypi|[packaging](https://pypi.org/project/packaging)|0.004| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.004| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.004| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[idna](https://pypi.org/project/idna)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| +|pypi|[scipy](https://pypi.org/project/scipy)|0.009| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| +|pypi|[xattr](https://pypi.org/project/xattr)|0.007| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.007| +|pypi|[munkres](https://pypi.org/project/munkres)|0.007| +|pypi|[brotli](https://pypi.org/project/brotli)|0.007| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.007| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.007| +|pypi|[sympy](https://pypi.org/project/sympy)|0.007| +|pypi|[lz4](https://pypi.org/project/lz4)|0.007| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.007| +|pypi|[lxml](https://pypi.org/project/lxml)|0.007| +|pypi|[fs](https://pypi.org/project/fs)|0.007| +|pypi|[twine](https://pypi.org/project/twine)|0.006| +|pypi|[pep517](https://pypi.org/project/pep517)|0.006| +|pypi|[flake8](https://pypi.org/project/flake8)|0.006| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.006| +|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|0.006| +|pypi|[myst-nb](https://pypi.org/project/myst-nb)|0.006| +|pypi|[pandoc](https://pypi.org/project/pandoc)|0.006| +|pypi|[toml](https://pypi.org/project/toml)|0.006| +|pypi|[isort](https://pypi.org/project/isort)|0.006| +|pypi|[black](https://pypi.org/project/black)|0.006| +|pypi|[arviz](https://pypi.org/project/arviz)|0.006| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.003| +|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.003| +|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.003| +|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.003| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.003| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.003| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.003| +|pypi|[ipython](https://pypi.org/project/ipython)|0.003| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.003| +|pypi|[asdf](https://pypi.org/project/asdf)|0.003| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.003| +|pypi|[jplephem](https://pypi.org/project/jplephem)|0.003| +|pypi|[pytz](https://pypi.org/project/pytz)|0.003| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.003| +|pypi|[pandas](https://pypi.org/project/pandas)|0.003| +|pypi|[bleach](https://pypi.org/project/bleach)|0.003| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.003| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.003| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.003| +|pypi|[dask](https://pypi.org/project/dask)|0.003| +|pypi|[certifi](https://pypi.org/project/certifi)|0.003| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.003| +|pypi|[tomli](https://pypi.org/project/tomli)|0.003| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.003| |pypi|[astropy](http://astropy.org)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| |pypi|[corner](https://corner.readthedocs.io)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/JohannesBuchner/BXA/badge.png b/_repos/github/JohannesBuchner/BXA/badge.png index 45931e97..875edf9a 100644 Binary files a/_repos/github/JohannesBuchner/BXA/badge.png and b/_repos/github/JohannesBuchner/BXA/badge.png differ diff --git a/_repos/github/JohannesBuchner/BXA/data.json b/_repos/github/JohannesBuchner/BXA/data.json index 12ef40d6..ec23bf8b 100644 --- a/_repos/github/JohannesBuchner/BXA/data.json +++ b/_repos/github/JohannesBuchner/BXA/data.json @@ -6,261 +6,321 @@ } }, "pypi": { - "ultranest": { - "credit": 0.14142857142857143, - "url": "https://github.com/JohannesBuchner/ultranest" - }, - "numpy": { - "credit": 0.14542897959183673, - "url": "https://www.numpy.org" + "bxa": { + "credit": 0.09, + "url": "https://github.com/JohannesBuchner/BXA/" }, - "tqdm": { - "credit": 0.001414285714285729, - "url": "https://tqdm.github.io" + "astropy": { + "credit": 0.000899999999999998, + "url": "http://astropy.org" }, "corner": { - "credit": 0.001414285714285729, + "credit": 0.000899999999999998, "url": "https://corner.readthedocs.io" }, - "h5py": { - "credit": 0.14542897959183673, - "url": "http://www.h5py.org" - }, "matplotlib": { - "credit": 0.15476326530612244, + "credit": 0.10533956043956044, "url": "https://matplotlib.org" }, - "astropy": { - "credit": 0.0014142857142857568, - "url": "http://astropy.org" - }, - "requests": { - "credit": 0.00017501785714285623, - "url": "https://requests.readthedocs.io" - }, - "slack-sdk": { - "credit": 0.017501785714285713, - "url": "https://github.com/slackapi/python-slack-sdk" - }, - "ipywidgets": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/ipywidgets" - }, - "wheel": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/wheel" - }, - "twine": { - "credit": 0.026836071428571424, - "url": "https://pypi.org/project/twine" - }, - "py-make": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/py-make" - }, - "importlib-resources": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/importlib-resources" - }, - "colorama": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/colorama" - }, - "pep517": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/pep517" - }, - "flake8": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/flake8" - }, - "pre-commit": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-book-theme": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/sphinx-book-theme" - }, - "myst-nb": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/myst-nb" - }, - "pandoc": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/pandoc" - }, - "sphinx": { - "credit": 0.01333469387755102, - "url": "https://pypi.org/project/sphinx" + "h5py": { + "credit": 0.09254571428571429, + "url": "http://www.h5py.org" }, - "toml": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/toml" + "ultranest": { + "credit": 0.09, + "url": "https://github.com/JohannesBuchner/ultranest" }, - "isort": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/isort" + "cycler": { + "credit": 0.09, + "url": "https://github.com/matplotlib/cycler" }, - "black": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/black" + "fonttools": { + "credit": 0.000899999999999998, + "url": "http://github.com/fonttools/fonttools" }, - "pytest-cov": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/pytest-cov" + "kiwisolver": { + "credit": 0.000899999999999998, + "url": "https://github.com/nucleic/kiwi" }, - "pytest": { - "credit": 0.01333469387755102, - "url": "https://pypi.org/project/pytest" + "pillow": { + "credit": 0.000899999999999998, + "url": "https://python-pillow.org" }, - "arviz": { - "credit": 0.009334285714285713, - "url": "https://pypi.org/project/arviz" + "pyerfa": { + "credit": 0.0034457142857142837, + "url": "https://github.com/liberfa/pyerfa" }, "sgp4": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/sgp4" + "credit": 0.0025457142857142857, + "url": "https://github.com/brandon-rhodes/python-sgp4" }, "skyfield": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/skyfield" + "credit": 0.0025457142857142857, + "url": "http://github.com/brandon-rhodes/python-skyfield/" }, "coverage": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/coverage" + "credit": 0.005594207142857143, + "url": "https://github.com/nedbat/coveragepy" }, "objgraph": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/objgraph" + "credit": 2.545714285714278e-05, + "url": "https://mg.pov.lt/objgraph/" }, "pytest-xdist": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/pytest-xdist" + "credit": 0.0025457142857142857, + "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest-astropy": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/pytest-astropy" }, "pytest-astropy-header": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/pytest-astropy-header" }, "pytest-doctestplus": { - "credit": 0.004000408163265305, + "credit": 0.024820714285714286, "url": "https://pypi.org/project/pytest-doctestplus" }, "Jinja2": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/Jinja2" }, "sphinx-changelog": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/sphinx-changelog" }, "sphinx-astropy": { - "credit": 0.004000408163265305, + "credit": 0.024820714285714286, "url": "https://pypi.org/project/sphinx-astropy" }, + "sphinx": { + "credit": 0.014054464285714285, + "url": "https://pypi.org/project/sphinx" + }, "typing-extensions": { - "credit": 0.004000408163265305, + "credit": 0.09164571428571429, "url": "https://pypi.org/project/typing-extensions" }, + "pytest": { + "credit": 0.036329464285714284, + "url": "https://pypi.org/project/pytest" + }, "ipython": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/ipython" }, "bottleneck": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/bottleneck" }, "asdf": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/asdf" }, "mpmath": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/mpmath" }, "jplephem": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/jplephem" }, "pytz": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/pytz" }, "sortedcontainers": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/sortedcontainers" }, "pandas": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/pandas" }, "bleach": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/bleach" }, "html5lib": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/html5lib" }, "beautifulsoup4": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/beautifulsoup4" }, "pyarrow": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/pyarrow" }, "dask": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/dask" }, "certifi": { - "credit": 0.006475660714285713, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/certifi" }, "scipy": { - "credit": 0.004000408163265305, + "credit": 0.00939956043956044, "url": "https://pypi.org/project/scipy" }, "packaging": { - "credit": 0.004000408163265305, + "credit": 0.008114464285714286, "url": "https://pypi.org/project/packaging" }, "PyYAML": { - "credit": 0.004000408163265305, + "credit": 0.0025457142857142857, "url": "https://pypi.org/project/PyYAML" }, - "pyerfa": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/pyerfa" + "numpy": { + "credit": 0.024820714285714286, + "url": "https://pypi.org/project/numpy" + }, + "twine": { + "credit": 0.00594, + "url": "https://pypi.org/project/twine" + }, + "pep517": { + "credit": 0.00594, + "url": "https://pypi.org/project/pep517" + }, + "flake8": { + "credit": 0.00594, + "url": "https://pypi.org/project/flake8" + }, + "pre-commit": { + "credit": 0.00594, + "url": "https://pypi.org/project/pre-commit" + }, + "sphinx-book-theme": { + "credit": 0.00594, + "url": "https://pypi.org/project/sphinx-book-theme" + }, + "myst-nb": { + "credit": 0.00594, + "url": "https://pypi.org/project/myst-nb" + }, + "pandoc": { + "credit": 0.00594, + "url": "https://pypi.org/project/pandoc" + }, + "toml": { + "credit": 0.00594, + "url": "https://pypi.org/project/toml" + }, + "isort": { + "credit": 0.00594, + "url": "https://pypi.org/project/isort" + }, + "black": { + "credit": 0.00594, + "url": "https://pypi.org/project/black" + }, + "pytest-cov": { + "credit": 0.01150875, + "url": "https://pypi.org/project/pytest-cov" + }, + "arviz": { + "credit": 0.00594, + "url": "https://pypi.org/project/arviz" + }, + "xattr": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.00556875, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00556875, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.00556875, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "win-inet-pton": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/win-inet-pton" + "sphinx-removed-in": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "PySocks": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/PySocks" + "sphinx-issues": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-issues" }, - "charset-normalizer": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/charset-normalizer" + "sphinx-copybutton": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "idna": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/idna" + "olefile": { + "credit": 0.00556875, + "url": "https://pypi.org/project/olefile" }, - "chardet": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/chardet" + "tomli": { + "credit": 0.002520257142857143, + "url": "https://pypi.org/project/tomli" }, - "urllib3": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/urllib3" + "graphviz": { + "credit": 0.002520257142857143, + "url": "https://pypi.org/project/graphviz" } } } \ No newline at end of file diff --git a/_repos/github/JuliaHCI/ADI.jl/badge.png b/_repos/github/JuliaHCI/ADI.jl/badge.png index 1c5552e1..d2353e39 100644 Binary files a/_repos/github/JuliaHCI/ADI.jl/badge.png and b/_repos/github/JuliaHCI/ADI.jl/badge.png differ diff --git a/_repos/github/Julian/jsonschema/README.md b/_repos/github/Julian/jsonschema/README.md index 679537e5..d997ba3e 100644 --- a/_repos/github/Julian/jsonschema/README.md +++ b/_repos/github/Julian/jsonschema/README.md @@ -8,54 +8,55 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[mypy](https://pypi.org/project/mypy)|0.059| -|pypi|[pytest](https://pypi.org/project/pytest)|0.052| -|pypi|[flake8](https://pypi.org/project/flake8)|0.05| -|pypi|[lxml](https://lxml.de/)|0.042| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.04| -|pypi|[idna](https://github.com/kjd/idna)|0.04| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.038| -|pypi|[alabaster](https://alabaster.readthedocs.io)|0.033| -|pypi|[babel](http://babel.pocoo.org/)|0.033| -|pypi|[docutils](http://docutils.sourceforge.net/)|0.033| -|pypi|[imagesize](https://github.com/shibukawa/imagesize_py)|0.033| -|pypi|[snowballstemmer](https://github.com/snowballstem/snowball)|0.033| -|pypi|[markupsafe](https://palletsprojects.com/p/markupsafe/)|0.032| -|pypi|[pyenchant](https://pyenchant.github.io/pyenchant/)|0.032| -|pypi|[pygments](https://pygments.org/)|0.032| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.032| -|pypi|[pyrsistent](http://github.com/tobgu/pyrsistent/)|0.032| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.032| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.032| -|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.032| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.017| +|pypi|[mypy](https://pypi.org/project/mypy)|0.057| +|pypi|[pytest](https://pypi.org/project/pytest)|0.05| +|pypi|[flake8](https://pypi.org/project/flake8)|0.049| +|pypi|[lxml](https://lxml.de/)|0.041| +|pypi|[idna](https://github.com/kjd/idna)|0.041| +|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.039| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.036| +|pypi|[pyrsistent](http://github.com/tobgu/pyrsistent/)|0.033| +|pypi|[alabaster](https://alabaster.readthedocs.io)|0.032| +|pypi|[babel](http://babel.pocoo.org/)|0.032| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.032| +|pypi|[imagesize](https://github.com/shibukawa/imagesize_py)|0.032| +|pypi|[snowballstemmer](https://github.com/snowballstem/snowball)|0.032| +|pypi|[markupsafe](https://palletsprojects.com/p/markupsafe/)|0.031| +|pypi|[pyenchant](https://pyenchant.github.io/pyenchant/)|0.031| +|pypi|[pygments](https://pygments.org/)|0.031| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.031| +|pypi|[pytz](http://pythonhosted.org/pytz)|0.031| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.031| +|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.031| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.016| |pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.016| -|pypi|[Babel](https://pypi.org/project/Babel)|0.016| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.016| -|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.016| +|pypi|[Babel](https://pypi.org/project/Babel)|0.015| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.015| +|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.015| |pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.011| |pypi|[soupsieve](https://facelessuser.github.io/soupsieve/)|0.011| -|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|0.011| -|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|0.011| +|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|0.01| +|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|0.01| |requirements.txt|github/Julian/jsonschema|0.01| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.009| |pypi|[PySocks](https://pypi.org/project/PySocks)|0.008| -|pypi|[coverage](https://pypi.org/project/coverage)|0.008| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.007| +|pypi|[coverage](https://pypi.org/project/coverage)|0.007| |pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.005| |pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.005| |pypi|[PyEnchant](https://pypi.org/project/PyEnchant)|0.005| |pypi|[charset-normalizer](https://github.com/ousret/charset_normalizer)|0.005| |pypi|[urllib3](https://urllib3.readthedocs.io/)|0.005| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.005| -|pypi|[chardet](https://pypi.org/project/chardet)|0.005| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.004| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.004| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.004| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.004| -|pypi|[brotli](https://pypi.org/project/brotli)|0.004| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.004| -|pypi|[furo](https://pradyunsg.me/furo/quickstart)|0.003| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.004| +|pypi|[chardet](https://pypi.org/project/chardet)|0.004| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.003| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.003| +|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.003| +|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.003| +|pypi|[brotli](https://pypi.org/project/brotli)|0.003| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| |pypi|[sphinx](https://www.sphinx-doc.org/)|0.003| +|pypi|[furo](https://pradyunsg.me/furo/quickstart)|0.003| +|pypi|[attrs](https://www.attrs.org/)|0.002| |pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.002| |pypi|[pre-commit](https://github.com/pre-commit/pre-commit)|0.002| |pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.002| @@ -64,6 +65,16 @@ exclude_from_search: true |pypi|[six](https://pypi.org/project/six)|0.002| |pypi|[pympler](https://pypi.org/project/pympler)|0.002| |pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| +|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|0.002| +|pypi|[webcolors](https://pypi.org/project/webcolors)|0.002| +|pypi|[uri-template](https://pypi.org/project/uri-template)|0.002| +|pypi|[rfc3987](https://pypi.org/project/rfc3987)|0.002| +|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|0.002| +|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|0.002| +|pypi|[isoduration](https://pypi.org/project/isoduration)|0.002| +|pypi|[fqdn](https://pypi.org/project/fqdn)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| |pypi|[packaging](https://github.com/pypa/packaging)|0.002| |pypi|[requests](https://requests.readthedocs.io)|0.002| |pypi|[sphinxcontrib-applehelp](http://sphinx-doc.org/)|0.002| diff --git a/_repos/github/Julian/jsonschema/badge.png b/_repos/github/Julian/jsonschema/badge.png index 48cbe061..1e32a637 100644 Binary files a/_repos/github/Julian/jsonschema/badge.png and b/_repos/github/Julian/jsonschema/badge.png differ diff --git a/_repos/github/Julian/jsonschema/data.json b/_repos/github/Julian/jsonschema/data.json index ae532a7d..20b620f4 100644 --- a/_repos/github/Julian/jsonschema/data.json +++ b/_repos/github/Julian/jsonschema/data.json @@ -7,291 +7,335 @@ }, "pypi": { "alabaster": { - "credit": 0.033200129032258066, + "credit": 0.032162625, "url": "https://alabaster.readthedocs.io" }, "attrs": { - "credit": 0.00031935483870967896, + "credit": 0.0024970982142857147, "url": "https://www.attrs.org/" }, "babel": { - "credit": 0.033200129032258066, + "credit": 0.032162625, "url": "http://babel.pocoo.org/" }, "beautifulsoup4": { - "credit": 0.010858064516129034, + "credit": 0.01051875, "url": "http://www.crummy.com/software/BeautifulSoup/bs4/" }, "certifi": { - "credit": 0.03996497695852535, + "credit": 0.038716071428571426, "url": "https://certifiio.readthedocs.io/en/latest/" }, "charset-normalizer": { - "credit": 0.004835944700460831, + "credit": 0.004684821428571429, "url": "https://github.com/ousret/charset_normalizer" }, "docutils": { - "credit": 0.033200129032258066, + "credit": 0.032162625, "url": "http://docutils.sourceforge.net/" }, "furo": { - "credit": 0.0027513647642679914, + "credit": 0.002665384615384616, "url": "https://pradyunsg.me/furo/quickstart" }, "idna": { - "credit": 0.03996497695852535, + "credit": 0.04090379464285714, "url": "https://github.com/kjd/idna" }, "imagesize": { - "credit": 0.033200129032258066, + "credit": 0.032162625, "url": "https://github.com/shibukawa/imagesize_py" }, "jinja2": { - "credit": 0.01612741935483871, + "credit": 0.0156234375, "url": "https://palletsprojects.com/p/jinja/" }, + "jsonschema": { + "credit": 0.0003093750000000006, + "url": "https://github.com/Julian/jsonschema" + }, "lxml": { - "credit": 0.0424741935483871, + "credit": 0.041146875, "url": "https://lxml.de/" }, "markupsafe": { - "credit": 0.03193548387096774, + "credit": 0.0309375, "url": "https://palletsprojects.com/p/markupsafe/" }, "packaging": { - "credit": 0.0015840000000000014, + "credit": 0.0015345000000000005, "url": "https://github.com/pypa/packaging" }, "pyenchant": { - "credit": 0.03193548387096774, + "credit": 0.0309375, "url": "https://pyenchant.github.io/pyenchant/" }, "pygments": { - "credit": 0.03193548387096774, + "credit": 0.0309375, "url": "https://pygments.org/" }, "pyparsing": { - "credit": 0.03193548387096774, + "credit": 0.0309375, "url": "https://pypi.org/project/pyparsing" }, "pyrsistent": { - "credit": 0.03193548387096774, + "credit": 0.033125223214285716, "url": "http://github.com/tobgu/pyrsistent/" }, "pytz": { - "credit": 0.03193548387096774, + "credit": 0.0309375, "url": "http://pythonhosted.org/pytz" }, "requests": { - "credit": 0.0015840000000000014, + "credit": 0.0015345000000000005, "url": "https://requests.readthedocs.io" }, "snowballstemmer": { - "credit": 0.033200129032258066, + "credit": 0.032162625, "url": "https://github.com/snowballstem/snowball" }, "soupsieve": { - "credit": 0.010858064516129034, + "credit": 0.01051875, "url": "https://facelessuser.github.io/soupsieve/" }, "sphinx": { - "credit": 0.0027513647642679914, + "credit": 0.0026653846153846194, "url": "https://www.sphinx-doc.org/" }, "sphinxcontrib-applehelp": { - "credit": 0.0015840000000000014, + "credit": 0.0015345000000000005, "url": "http://sphinx-doc.org/" }, "sphinxcontrib-devhelp": { - "credit": 0.0015840000000000014, + "credit": 0.0015345000000000005, "url": "http://sphinx-doc.org/" }, "sphinxcontrib-htmlhelp": { - "credit": 0.0015840000000000014, + "credit": 0.0015345000000000005, "url": "http://sphinx-doc.org/" }, "sphinxcontrib-jsmath": { - "credit": 0.0015840000000000014, + "credit": 0.0015345000000000005, "url": "http://sphinx-doc.org/" }, "sphinxcontrib-qthelp": { - "credit": 0.0015840000000000014, + "credit": 0.0015345000000000005, "url": "http://sphinx-doc.org/" }, "sphinxcontrib-serializinghtml": { - "credit": 0.0015840000000000014, + "credit": 0.0015345000000000005, "url": "http://sphinx-doc.org/" }, "sphinxcontrib-spelling": { - "credit": 0.00031935483870967896, + "credit": 0.0003093750000000006, "url": "https://github.com/sphinx-contrib/spelling" }, "urllib3": { - "credit": 0.004835944700460831, + "credit": 0.004684821428571429, "url": "https://urllib3.readthedocs.io/" }, "cloudpickle": { - "credit": 0.0024320099255583125, + "credit": 0.0023560096153846153, "url": "https://github.com/cloudpipe/cloudpickle" }, "pre-commit": { - "credit": 0.0024320099255583125, + "credit": 0.0023560096153846153, "url": "https://github.com/pre-commit/pre-commit" }, "sphinx-notfound-page": { - "credit": 0.0024320099255583125, + "credit": 0.0023560096153846153, "url": "https://pypi.org/project/sphinx-notfound-page" }, "zope.interface": { - "credit": 0.0024320099255583125, + "credit": 0.0023560096153846153, "url": "https://pypi.org/project/zope.interface" }, "pytest-mypy-plugins": { - "credit": 0.0024320099255583125, + "credit": 0.0023560096153846153, "url": "https://pypi.org/project/pytest-mypy-plugins" }, "mypy": { - "credit": 0.059024880893300255, + "credit": 0.05718035336538462, "url": "https://pypi.org/project/mypy" }, "six": { - "credit": 0.0024320099255583125, + "credit": 0.0023560096153846153, "url": "https://pypi.org/project/six" }, "pytest": { - "credit": 0.0516477841191067, + "credit": 0.05003379086538462, "url": "https://pypi.org/project/pytest" }, "pympler": { - "credit": 0.0024320099255583125, + "credit": 0.0023560096153846153, "url": "https://pypi.org/project/pympler" }, "hypothesis": { - "credit": 0.0024320099255583125, + "credit": 0.0023560096153846153, "url": "https://pypi.org/project/hypothesis" }, "coverage": { - "credit": 0.00770136476426799, + "credit": 0.0074606971153846156, "url": "https://pypi.org/project/coverage" }, "html5lib": { - "credit": 0.01686193548387097, + "credit": 0.016335, "url": "https://pypi.org/project/html5lib" }, "unicodedata2": { - "credit": 0.031616129032258064, + "credit": 0.030628125, "url": "https://pypi.org/project/unicodedata2" }, "pygments~=2.7": { - "credit": 0.010538709677419355, + "credit": 0.010209375, "url": "https://pypi.org/project/pygments~=2.7" }, "sphinx~=4.0": { - "credit": 0.010538709677419355, + "credit": 0.010209375, "url": "https://pypi.org/project/sphinx~=4.0" }, "Babel": { - "credit": 0.015808064516129032, + "credit": 0.0153140625, "url": "https://pypi.org/project/Babel" }, "MarkupSafe": { - "credit": 0.015808064516129032, + "credit": 0.0153140625, "url": "https://pypi.org/project/MarkupSafe" }, + "rfc3986-validator": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/rfc3986-validator" + }, + "webcolors": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/webcolors" + }, + "uri-template": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/uri-template" + }, + "rfc3987": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/rfc3987" + }, + "rfc3339-validator": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/rfc3339-validator" + }, + "jsonpointer": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/jsonpointer" + }, + "isoduration": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/isoduration" + }, + "fqdn": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/fqdn" + }, + "importlib-resources": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/importlib-resources" + }, + "typing-extensions": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/typing-extensions" + }, + "importlib-metadata": { + "credit": 0.008517535714285714, + "url": "https://pypi.org/project/importlib-metadata" + }, "railroad-diagrams": { - "credit": 0.015808064516129032, + "credit": 0.0153140625, "url": "https://pypi.org/project/railroad-diagrams" }, "win-inet-pton": { - "credit": 0.004516589861751152, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/win-inet-pton" }, "PySocks": { - "credit": 0.008029493087557604, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/PySocks" }, "chardet": { - "credit": 0.004516589861751152, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/chardet" }, "backports-functools-lru-cache": { - "credit": 0.031616129032258064, + "credit": 0.030628125, "url": "https://pypi.org/project/backports-functools-lru-cache" }, "types-requests": { - "credit": 0.0012646451612903225, + "credit": 0.0012251249999999999, "url": "https://pypi.org/project/types-requests" }, "types-typed-ast": { - "credit": 0.0012646451612903225, + "credit": 0.0012251249999999999, "url": "https://pypi.org/project/types-typed-ast" }, "docutils-stubs": { - "credit": 0.0376231935483871, + "credit": 0.03644746875, "url": "https://pypi.org/project/docutils-stubs" }, "isort": { - "credit": 0.0012646451612903225, + "credit": 0.0012251249999999999, "url": "https://pypi.org/project/isort" }, "flake8": { - "credit": 0.05026964516129033, + "credit": 0.04869871875, "url": "https://pypi.org/project/flake8" }, "sphinxcontrib-websupport": { - "credit": 0.0012646451612903225, + "credit": 0.0012251249999999999, "url": "https://pypi.org/project/sphinxcontrib-websupport" }, "colorama": { - "credit": 0.0012646451612903225, + "credit": 0.0012251249999999999, "url": "https://pypi.org/project/colorama" }, - "importlib-metadata": { - "credit": 0.006534, - "url": "https://pypi.org/project/importlib-metadata" - }, "Pygments": { - "credit": 0.0012646451612903225, + "credit": 0.0012251249999999999, "url": "https://pypi.org/project/Pygments" }, "Jinja2": { - "credit": 0.0012646451612903225, + "credit": 0.0012251249999999999, "url": "https://pypi.org/project/Jinja2" }, "pytest-cov": { - "credit": 0.005269354838709678, + "credit": 0.0051046875, "url": "https://pypi.org/project/pytest-cov" }, "Sphinx": { - "credit": 0.005269354838709678, + "credit": 0.0051046875, "url": "https://pypi.org/project/Sphinx" }, "PyEnchant": { - "credit": 0.005269354838709678, + "credit": 0.0051046875, "url": "https://pypi.org/project/PyEnchant" }, "ipaddress": { - "credit": 0.0035129032258064516, + "credit": 0.003403125, "url": "https://pypi.org/project/ipaddress" }, "cryptography": { - "credit": 0.0035129032258064516, + "credit": 0.003403125, "url": "https://pypi.org/project/cryptography" }, "pyOpenSSL": { - "credit": 0.0035129032258064516, + "credit": 0.003403125, "url": "https://pypi.org/project/pyOpenSSL" }, "brotlipy": { - "credit": 0.0035129032258064516, + "credit": 0.003403125, "url": "https://pypi.org/project/brotlipy" }, "brotli": { - "credit": 0.0035129032258064516, + "credit": 0.003403125, "url": "https://pypi.org/project/brotli" }, "brotlicffi": { - "credit": 0.0035129032258064516, + "credit": 0.003403125, "url": "https://pypi.org/project/brotlicffi" } } diff --git a/_repos/github/KALMUS-Color-Toolkit/KALMUS/README.md b/_repos/github/KALMUS-Color-Toolkit/KALMUS/README.md index e267b591..11c50a18 100644 --- a/_repos/github/KALMUS-Color-Toolkit/KALMUS/README.md +++ b/_repos/github/KALMUS-Color-Toolkit/KALMUS/README.md @@ -8,58 +8,93 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.354| -|pypi|[matplotlib](https://matplotlib.org)|0.118| -|pypi|[biopython](https://biopython.org/)|0.11| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.109| -|pypi|[pytest](https://pypi.org/project/pytest)|0.03| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.018| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.018| -|pypi|[pytz](https://pypi.org/project/pytz)|0.018| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.018| +|pypi|[numpy](https://pypi.org/project/numpy)|0.198| +|pypi|[matplotlib](https://matplotlib.org)|0.115| +|pypi|[biopython](https://biopython.org/)|0.085| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.084| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.076| +|pypi|[lxml](https://pypi.org/project/lxml)|0.028| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.019| +|pypi|[pytest](https://pypi.org/project/pytest)|0.016| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.015| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.015| +|pypi|[scipy](https://www.scipy.org)|0.012| +|pypi|[pillow](https://python-pillow.org)|0.011| +|pypi|[scikit-learn](http://scikit-learn.org)|0.011| |setup.py|github/KALMUS-Color-Toolkit/KALMUS|0.01| -|pypi|[scipy](https://www.scipy.org)|0.009| -|pypi|[pandas](https://pandas.pydata.org)|0.009| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.008| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.008| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.008| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.008| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.008| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| -|pypi|[scikit-image](https://scikit-image.org)|0.006| -|pypi|[mypy](https://pypi.org/project/mypy)|0.005| -|pypi|[black](https://pypi.org/project/black)|0.005| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.01| +|pypi|[sympy](https://pypi.org/project/sympy)|0.01| +|pypi|[scikit-image](https://scikit-image.org)|0.009| +|pypi|[opencv-python](https://github.com/skvark/opencv-python)|0.009| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.008| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.007| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[flake8](https://pypi.org/project/flake8)|0.006| +|pypi|[astropy](https://pypi.org/project/astropy)|0.006| +|pypi|[pandas](https://pandas.pydata.org)|0.006| +|pypi|[codecov](https://pypi.org/project/codecov)|0.006| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.006| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[coverage](https://pypi.org/project/coverage)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| |pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.005| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.005| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.005| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.005| -|pypi|[joblib](https://pypi.org/project/joblib)|0.005| -|pypi|[scikit-learn](http://scikit-learn.org)|0.004| -|pypi|[codecov](https://pypi.org/project/codecov)|0.003| -|pypi|[asv](https://pypi.org/project/asv)|0.003| -|pypi|[qtpy](https://pypi.org/project/qtpy)|0.003| -|pypi|[astropy](https://pypi.org/project/astropy)|0.003| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.003| -|pypi|[kaleido](https://pypi.org/project/kaleido)|0.003| -|pypi|[plotly](https://pypi.org/project/plotly)|0.003| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.003| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.003| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.003| -|pypi|[dask](https://pypi.org/project/dask)|0.003| -|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.003| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| -|pypi|[pooch](https://pypi.org/project/pooch)|0.003| -|pypi|[packaging](https://pypi.org/project/packaging)|0.003| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.003| -|pypi|[tifffile](https://pypi.org/project/tifffile)|0.003| -|pypi|[imageio](https://pypi.org/project/imageio)|0.003| -|pypi|[pillow](https://pypi.org/project/pillow)|0.003| -|pypi|[networkx](https://pypi.org/project/networkx)|0.003| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|0.003| -|pypi|[opencv-python](https://github.com/skvark/opencv-python)|0.001| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[itk](https://pypi.org/project/itk)|0.004| +|pypi|[gdal](https://pypi.org/project/gdal)|0.004| +|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.004| +|pypi|[invoke](https://pypi.org/project/invoke)|0.004| +|pypi|[wheel](https://pypi.org/project/wheel)|0.004| +|pypi|[psutil](https://pypi.org/project/psutil)|0.004| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.004| +|pypi|[av](https://pypi.org/project/av)|0.004| +|pypi|[pydot](https://pypi.org/project/pydot)|0.004| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.004| +|pypi|[texext](https://pypi.org/project/texext)|0.004| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.004| +|pypi|[mypy](https://pypi.org/project/mypy)|0.004| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| +|pypi|[imageio](https://github.com/imageio/imageio)|0.003| +|pypi|[networkx](https://networkx.org/)|0.003| +|pypi|[PyWavelets](https://github.com/PyWavelets/pywt)|0.003| +|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|0.002| +|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|0.002| +|pypi|[asv](https://pypi.org/project/asv)|0.002| +|pypi|[qtpy](https://pypi.org/project/qtpy)|0.002| +|pypi|[pyamg](https://pypi.org/project/pyamg)|0.002| +|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.002| +|pypi|[kaleido](https://pypi.org/project/kaleido)|0.002| +|pypi|[plotly](https://pypi.org/project/plotly)|0.002| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.002| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.002| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.002| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.002| +|pypi|[dask](https://pypi.org/project/dask)|0.002| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.002| +|pypi|[pooch](https://pypi.org/project/pooch)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.001| |pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[kalmus](https://github.com/KALMUS-Color-Toolkit/KALMUS)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/KALMUS-Color-Toolkit/KALMUS/badge.png b/_repos/github/KALMUS-Color-Toolkit/KALMUS/badge.png index eed78f34..e4063950 100644 Binary files a/_repos/github/KALMUS-Color-Toolkit/KALMUS/badge.png and b/_repos/github/KALMUS-Color-Toolkit/KALMUS/badge.png differ diff --git a/_repos/github/KALMUS-Color-Toolkit/KALMUS/data.json b/_repos/github/KALMUS-Color-Toolkit/KALMUS/data.json index 1501b65d..2128d1b6 100644 --- a/_repos/github/KALMUS-Color-Toolkit/KALMUS/data.json +++ b/_repos/github/KALMUS-Color-Toolkit/KALMUS/data.json @@ -6,217 +6,349 @@ } }, "pypi": { - "numpy": { - "credit": 0.35424714285714287, - "url": "https://www.numpy.org" + "kalmus": { + "credit": 0.0007615384615384663, + "url": "https://github.com/KALMUS-Color-Toolkit/KALMUS" }, - "opencv-python": { - "credit": 0.0011000000000000038, - "url": "https://github.com/skvark/opencv-python" - }, - "scikit-image": { - "credit": 0.0062857142857142894, - "url": "https://scikit-image.org" + "kiwisolver": { + "credit": 0.0008453076923076973, + "url": "https://github.com/nucleic/kiwi" }, "matplotlib": { - "credit": 0.11829714285714285, + "credit": 0.11510193575655114, "url": "https://matplotlib.org" }, - "scikit-learn": { - "credit": 0.004211428571428575, - "url": "http://scikit-learn.org" + "scikit-image": { + "credit": 0.009138461538461543, + "url": "https://scikit-image.org" }, "biopython": { - "credit": 0.11, + "credit": 0.08453076923076923, "url": "https://biopython.org/" }, - "scipy": { - "credit": 0.00939714285714286, - "url": "https://www.scipy.org" + "opencv-python": { + "credit": 0.009138461538461543, + "url": "https://github.com/skvark/opencv-python" }, - "kiwisolver": { - "credit": 0.0011000000000000038, - "url": "https://github.com/nucleic/kiwi" + "cycler": { + "credit": 0.07615384615384616, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0007615384615384663, + "url": "http://github.com/fonttools/fonttools" + }, + "imageio": { + "credit": 0.0029156043956044143, + "url": "https://github.com/imageio/imageio" + }, + "networkx": { + "credit": 0.0029156043956044004, + "url": "https://networkx.org/" + }, + "pillow": { + "credit": 0.010653235974551768, + "url": "https://python-pillow.org" + }, + "PyWavelets": { + "credit": 0.0029156043956044004, + "url": "https://github.com/PyWavelets/pywt" + }, + "tifffile": { + "credit": 0.006883620589936384, + "url": "https://www.lfd.uci.edu/~gohlke/" }, "pandas": { - "credit": 0.00939714285714286, + "credit": 0.006007450549450549, "url": "https://pandas.pydata.org" }, + "scipy": { + "credit": 0.011806858833474217, + "url": "https://www.scipy.org" + }, + "scikit-learn": { + "credit": 0.010530989010989011, + "url": "http://scikit-learn.org" + }, + "numpy": { + "credit": 0.1975766590514748, + "url": "https://pypi.org/project/numpy" + }, + "typing-extensions": { + "credit": 0.08368546153846154, + "url": "https://pypi.org/project/typing-extensions" + }, "pytest-faulthandler": { - "credit": 3.111428571428562e-05, - "url": "https://github.com/pytest-dev/pytest-faulthandler" + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/pytest-faulthandler" }, "pytest-localserver": { - "credit": 3.111428571428562e-05, - "url": "https://github.com/pytest-dev/pytest-localserver" + "credit": 0.002154065934065934, + "url": "https://pypi.org/project/pytest-localserver" }, "pytest-cov": { - "credit": 0.008297142857142857, - "url": "https://github.com/pytest-dev/pytest-cov" + "credit": 0.014603716743782531, + "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.029527457142857143, + "credit": 0.015985909051474838, "url": "https://pypi.org/project/pytest" }, "flake8": { - "credit": 0.008297142857142857, + "credit": 0.006122082128397917, "url": "https://pypi.org/project/flake8" }, "codecov": { - "credit": 0.0031114285714285714, + "credit": 0.005923681318681318, "url": "https://pypi.org/project/codecov" }, "asv": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/asv" }, "qtpy": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/qtpy" }, "pyamg": { - "credit": 0.008297142857142857, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/pyamg" }, "astropy": { - "credit": 0.0031114285714285714, + "credit": 0.006122082128397917, "url": "https://pypi.org/project/astropy" }, "SimpleITK": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/SimpleITK" }, "kaleido": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/kaleido" }, "plotly": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/plotly" }, "ipywidgets": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/ipywidgets" }, "myst-parser": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/myst-parser" }, "seaborn": { - "credit": 0.008297142857142857, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/seaborn" }, "cloudpickle": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/cloudpickle" }, "dask": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/dask" }, "pytest-runner": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/pytest-runner" }, "sphinx-copybutton": { - "credit": 0.0031114285714285714, + "credit": 0.006866085164835165, "url": "https://pypi.org/project/sphinx-copybutton" }, "numpydoc": { - "credit": 0.008297142857142857, + "credit": 0.009891697513013302, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.008297142857142857, + "credit": 0.005923681318681318, "url": "https://pypi.org/project/sphinx-gallery" }, "sphinx": { - "credit": 0.008297142857142857, + "credit": 0.014603716743782531, "url": "https://pypi.org/project/sphinx" }, "pooch": { - "credit": 0.0031114285714285714, + "credit": 0.002154065934065934, "url": "https://pypi.org/project/pooch" }, "packaging": { - "credit": 0.0031114285714285714, + "credit": 0.006866085164835165, "url": "https://pypi.org/project/packaging" }, - "PyWavelets": { - "credit": 0.0031114285714285714, - "url": "https://pypi.org/project/PyWavelets" + "xattr": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/xattr" }, - "tifffile": { - "credit": 0.0031114285714285714, - "url": "https://pypi.org/project/tifffile" + "unicodedata2": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/unicodedata2" }, - "imageio": { - "credit": 0.0031114285714285714, - "url": "https://pypi.org/project/imageio" + "munkres": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/munkres" }, - "pillow": { - "credit": 0.0031114285714285714, - "url": "https://pypi.org/project/pillow" + "brotli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotli" }, - "networkx": { - "credit": 0.0031114285714285714, - "url": "https://pypi.org/project/networkx" + "brotlicffi": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotlicffi" }, - "mypy": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/mypy" + "skia-pathops": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.009569023668639053, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.028417100591715976, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/fs" + }, + "itk": { + "credit": 0.003968016194331983, + "url": "https://pypi.org/project/itk" + }, + "gdal": { + "credit": 0.003968016194331983, + "url": "https://pypi.org/project/gdal" + }, + "pydata-sphinx-theme": { + "credit": 0.0077376315789473675, + "url": "https://pypi.org/project/pydata-sphinx-theme" }, "black": { - "credit": 0.005185714285714286, + "credit": 0.003968016194331983, "url": "https://pypi.org/project/black" }, + "fsspec": { + "credit": 0.003968016194331983, + "url": "https://pypi.org/project/fsspec" + }, + "invoke": { + "credit": 0.003968016194331983, + "url": "https://pypi.org/project/invoke" + }, + "wheel": { + "credit": 0.003968016194331983, + "url": "https://pypi.org/project/wheel" + }, + "psutil": { + "credit": 0.003968016194331983, + "url": "https://pypi.org/project/psutil" + }, + "imageio-ffmpeg": { + "credit": 0.003968016194331983, + "url": "https://pypi.org/project/imageio-ffmpeg" + }, + "av": { + "credit": 0.003968016194331983, + "url": "https://pypi.org/project/av" + }, + "pydot": { + "credit": 0.0037696153846153843, + "url": "https://pypi.org/project/pydot" + }, + "pygraphviz": { + "credit": 0.0037696153846153843, + "url": "https://pypi.org/project/pygraphviz" + }, + "texext": { + "credit": 0.0037696153846153843, + "url": "https://pypi.org/project/texext" + }, + "nb2plots": { + "credit": 0.0037696153846153843, + "url": "https://pypi.org/project/nb2plots" + }, + "mypy": { + "credit": 0.0037696153846153843, + "url": "https://pypi.org/project/mypy" + }, + "pre-commit": { + "credit": 0.0037696153846153843, + "url": "https://pypi.org/project/pre-commit" + }, + "pytest-timeout": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/check-manifest" + }, "sphinxext-opengraph": { - "credit": 0.005185714285714286, + "credit": 0.0047120192307692306, "url": "https://pypi.org/project/sphinxext-opengraph" }, - "sphinx-prompt": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/sphinx-prompt" + "sphinx-rtd-theme": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "Pillow": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/Pillow" + "sphinx-removed-in": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "memory-profiler": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/memory-profiler" + "sphinx-issues": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-issues" }, - "threadpoolctl": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/threadpoolctl" + "olefile": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/olefile" }, - "joblib": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/joblib" - }, - "typing-extensions": { - "credit": 0.1089, - "url": "https://pypi.org/project/typing-extensions" + "imagecodecs": { + "credit": 0.018848076923076922, + "url": "https://pypi.org/project/imagecodecs" }, "pytest-xdist": { - "credit": 0.01815, + "credit": 0.0013821923076923076, "url": "https://pypi.org/project/pytest-xdist" }, "hypothesis": { - "credit": 0.01815, + "credit": 0.0013821923076923076, "url": "https://pypi.org/project/hypothesis" }, "pytz": { - "credit": 0.01815, + "credit": 0.0013821923076923076, "url": "https://pypi.org/project/pytz" }, "python-dateutil": { - "credit": 0.01815, + "credit": 0.0013821923076923076, "url": "https://pypi.org/project/python-dateutil" - }, - "werkzeug": { - "credit": 0.003080314285714286, - "url": "https://pypi.org/project/werkzeug" } } } \ No newline at end of file diff --git a/_repos/github/KALMUS-Color-Toolkit/KALMUS/setup.py b/_repos/github/KALMUS-Color-Toolkit/KALMUS/setup.py index f6806448..a8db1aee 100644 --- a/_repos/github/KALMUS-Color-Toolkit/KALMUS/setup.py +++ b/_repos/github/KALMUS-Color-Toolkit/KALMUS/setup.py @@ -9,7 +9,7 @@ f.close() setup(name='kalmus', - version='1.3.9', + version='1.3.10', description='kalmus film color analysis tool', keywords='film, color analysis, data visualization', long_description=readme, diff --git a/_repos/github/KBNLresearch/ochre/badge.png b/_repos/github/KBNLresearch/ochre/badge.png index 1019716e..d8d77825 100644 Binary files a/_repos/github/KBNLresearch/ochre/badge.png and b/_repos/github/KBNLresearch/ochre/badge.png differ diff --git a/_repos/github/KIT-MBS/pyREX/README.md b/_repos/github/KIT-MBS/pyREX/README.md index 358c9954..e902b02f 100644 --- a/_repos/github/KIT-MBS/pyREX/README.md +++ b/_repos/github/KIT-MBS/pyREX/README.md @@ -8,86 +8,101 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.074| -|pypi|[matplotlib](https://matplotlib.org)|0.069| -|pypi|[h5py](http://www.h5py.org)|0.049| -|pypi|[biopython](https://biopython.org/)|0.045| -|pypi|[future](https://python-future.org)|0.045| -|pypi|[jupyter](http://jupyter.org)|0.045| -|pypi|[nglview](https://github.com/arose/nglview)|0.045| -|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.045| -|pypi|[pyperclip](https://github.com/asweigart/pyperclip)|0.045| -|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.045| -|pypi|[notebook](https://pypi.org/project/notebook)|0.045| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.043| -|pypi|[six](https://pypi.org/project/six)|0.024| -|pypi|[toml](https://pypi.org/project/toml)|0.022| -|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.022| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.018| -|pypi|[scipy](https://pypi.org/project/scipy)|0.018| -|pypi|[requests](https://pypi.org/project/requests)|0.015| -|pypi|[pandas](https://pypi.org/project/pandas)|0.013| -|pypi|[numkit](https://pypi.org/project/numkit)|0.011| +|pypi|[lxml](https://pypi.org/project/lxml)|0.029| +|pypi|[notebook](https://pypi.org/project/notebook)|0.028| +|pypi|[numpy](https://pypi.org/project/numpy)|0.026| +|pypi|[matplotlib](https://matplotlib.org)|0.022| +|pypi|[numkit](https://pypi.org/project/numkit)|0.017| +|pypi|[mrcfile](https://pypi.org/project/mrcfile)|0.017| +|pypi|[coverage](https://pypi.org/project/coverage)|0.016| +|pypi|[h5py](http://www.h5py.org)|0.015| +|pypi|[ipykernel](https://ipython.org)|0.015| +|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.015| +|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.015| +|pypi|[mpi4py](https://pypi.org/project/mpi4py)|0.015| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.015| +|pypi|[pillow](https://pypi.org/project/pillow)|0.015| +|pypi|[torch](https://pypi.org/project/torch)|0.015| +|pypi|[torchvision](https://pypi.org/project/torchvision)|0.015| +|pypi|[biopython](https://biopython.org/)|0.014| +|pypi|[nglview](https://github.com/arose/nglview)|0.014| +|pypi|[future](https://python-future.org)|0.014| +|pypi|[jupyter](http://jupyter.org)|0.014| +|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.014| +|pypi|[pyperclip](https://github.com/asweigart/pyperclip)|0.014| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.014| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.014| +|pypi|[kiwisolver](https://pypi.org/project/kiwisolver)|0.014| +|pypi|[mmtf-python](https://pypi.org/project/mmtf-python)|0.014| +|pypi|[networkx](https://pypi.org/project/networkx)|0.014| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.014| +|pypi|[jupyter-console](https://pypi.org/project/jupyter-console)|0.014| +|pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.014| +|pypi|[debugpy](https://pypi.org/project/debugpy)|0.014| +|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.014| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.014| +|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.014| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.014| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.014| +|pypi|[mistune](https://pypi.org/project/mistune)|0.014| +|pypi|[msgpack](https://pypi.org/project/msgpack)|0.014| +|pypi|[nbclient](https://pypi.org/project/nbclient)|0.014| +|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|0.014| +|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|0.014| +|pypi|[pyzmq](https://pypi.org/project/pyzmq)|0.014| +|pypi|[qtpy](https://pypi.org/project/qtpy)|0.014| +|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|0.014| +|pypi|[terminado](https://pypi.org/project/terminado)|0.014| +|pypi|[tornado](https://pypi.org/project/tornado)|0.014| +|pypi|[argon2-cffi](https://pypi.org/project/argon2-cffi)|0.014| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.014| +|pypi|[bleach](https://pypi.org/project/bleach)|0.014| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.014| +|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|0.014| +|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|0.014| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.014| +|pypi|[psutil](https://pypi.org/project/psutil)|0.014| +|pypi|[tinycss2](https://pypi.org/project/tinycss2)|0.014| +|pypi|[soupsieve](https://pypi.org/project/soupsieve)|0.014| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.014| +|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|0.014| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| +|pypi|[pycparser](https://pypi.org/project/pycparser)|0.014| +|pypi|[six](https://pypi.org/project/six)|0.011| |setup.py|github/KIT-MBS/pyREX|0.01| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.008| -|pypi|[mock](https://pypi.org/project/mock)|0.007| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.007| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.007| -|pypi|[hunter](https://pypi.org/project/hunter)|0.007| -|pypi|[fields](https://pypi.org/project/fields)|0.007| -|pypi|[coverage](https://pypi.org/project/coverage)|0.007| -|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.006| -|pypi|[vcrpy](https://pypi.org/project/vcrpy)|0.006| -|pypi|[citeproc-py](https://pypi.org/project/citeproc-py)|0.006| -|pypi|[wheel](https://github.com/pypa/wheel)|0.006| -|pypi|[ipywidgets](http://ipython.org)|0.006| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.006| -|pypi|[twine](https://pypi.org/project/twine)|0.006| -|pypi|[py-make](https://pypi.org/project/py-make)|0.006| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.006| -|pypi|[widgetsnbextension](http://ipython.org)|0.005| -|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.004| -|pypi|[docutils](https://pypi.org/project/docutils)|0.004| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| -|pypi|[torchvision](https://pypi.org/project/torchvision)|0.004| -|pypi|[pillow](https://pypi.org/project/pillow)|0.004| -|pypi|[torch](https://pypi.org/project/torch)|0.004| -|pypi|[mpi4py](https://pypi.org/project/mpi4py)|0.004| -|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.004| -|pypi|[ipython](https://pypi.org/project/ipython)|0.004| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.004| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.004| -|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.004| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.004| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.003| -|pypi|[pygments](https://pypi.org/project/pygments)|0.003| -|pypi|[nose](https://pypi.org/project/nose)|0.003| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.003| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.003| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[py](https://pypi.org/project/py)|0.003| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.003| -|pypi|[packaging](https://pypi.org/project/packaging)|0.003| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[seaborn](https://seaborn.pydata.org)|0.003| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.002| -|pypi|[mypy](https://pypi.org/project/mypy)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[flake8](https://pypi.org/project/flake8)|0.002| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.002| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.002| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.002| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.002| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.002| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.002| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.002| -|pypi|[joblib](https://pypi.org/project/joblib)|0.002| +|pypi|[scipy](https://pypi.org/project/scipy)|0.009| +|pypi|[toml](https://pypi.org/project/toml)|0.007| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.007| +|pypi|[pytest](https://pypi.org/project/pytest)|0.005| +|pypi|[pandas](https://pypi.org/project/pandas)|0.003| +|pypi|[citeproc-py](https://github.com/brechtm/citeproc-py)|0.002| +|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.002| +|pypi|[vcrpy](https://pypi.org/project/vcrpy)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[requests](https://pypi.org/project/requests)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| +|pypi|[hunter](https://pypi.org/project/hunter)|0.002| +|pypi|[fields](https://pypi.org/project/fields)|0.002| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[widgetsnbextension](http://ipython.org)|0.002| +|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.001| +|pypi|[docutils](https://pypi.org/project/docutils)|0.001| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| +|pypi|[mock](https://pypi.org/project/mock)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.001| +|pypi|[xattr](https://pypi.org/project/xattr)|0.001| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.001| +|pypi|[munkres](https://pypi.org/project/munkres)|0.001| +|pypi|[brotli](https://pypi.org/project/brotli)|0.001| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.001| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.001| +|pypi|[sympy](https://pypi.org/project/sympy)|0.001| +|pypi|[lz4](https://pypi.org/project/lz4)|0.001| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.001| +|pypi|[fs](https://pypi.org/project/fs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/KIT-MBS/pyREX/badge.png b/_repos/github/KIT-MBS/pyREX/badge.png index 35f778af..83ba163a 100644 Binary files a/_repos/github/KIT-MBS/pyREX/badge.png and b/_repos/github/KIT-MBS/pyREX/badge.png differ diff --git a/_repos/github/KIT-MBS/pyREX/data.json b/_repos/github/KIT-MBS/pyREX/data.json index 9367e6a2..51e5d9db 100644 --- a/_repos/github/KIT-MBS/pyREX/data.json +++ b/_repos/github/KIT-MBS/pyREX/data.json @@ -6,345 +6,417 @@ } }, "pypi": { - "wheel": { - "credit": 0.006018749999999999, - "url": "https://github.com/pypa/wheel" + "biopython": { + "credit": 0.013943661971830985, + "url": "https://biopython.org/" + }, + "GromacsWrapper": { + "credit": 0.00013943661971830938, + "url": "https://github.com/Becksteinlab/GromacsWrapper" + }, + "heat": { + "credit": 0.00013943661971830938, + "url": "https://github.com/helmholtz-analytics/heat" + }, + "nglview": { + "credit": 0.013943661971830985, + "url": "https://github.com/arose/nglview" }, "autopep8": { - "credit": 0.000449999999999999, + "credit": 0.00013943661971830938, "url": "https://github.com/hhatto/autopep8" }, - "biopython": { - "credit": 0.045, - "url": "https://biopython.org/" - }, "duecredit": { - "credit": 0.000449999999999999, + "credit": 0.00013943661971830938, "url": "https://github.com/duecredit/duecredit" }, "future": { - "credit": 0.045, + "credit": 0.013943661971830985, "url": "https://python-future.org" }, - "GromacsWrapper": { - "credit": 0.000449999999999999, - "url": "https://github.com/Becksteinlab/GromacsWrapper" - }, "h5py": { - "credit": 0.049455, + "credit": 0.015324084507042252, "url": "http://www.h5py.org" }, - "heat": { - "credit": 0.000449999999999999, - "url": "https://github.com/helmholtz-analytics/heat" - }, "ipywidgets": { - "credit": 0.006018749999999999, + "credit": 0.00013943661971830938, "url": "http://ipython.org" }, "jupyter": { - "credit": 0.045, + "credit": 0.013943661971830985, "url": "http://jupyter.org" }, - "scikit-learn": { - "credit": 0.000449999999999999, - "url": "http://scikit-learn.org" - }, - "nglview": { - "credit": 0.045, - "url": "https://github.com/arose/nglview" - }, "matplotlib": { - "credit": 0.06939642857142857, + "credit": 0.021907638136511375, "url": "https://matplotlib.org" }, "MDAnalysis": { - "credit": 0.045, + "credit": 0.013943661971830985, "url": "https://www.mdanalysis.org" }, - "numpy": { - "credit": 0.07385142857142855, - "url": "https://www.numpy.org" - }, "pyperclip": { - "credit": 0.045, + "credit": 0.013943661971830985, "url": "https://github.com/asweigart/pyperclip" }, - "pytest": { - "credit": 0.04261272991071428, - "url": "https://docs.pytest.org/en/latest/" - }, "pytest-cov": { - "credit": 0.01827530357142857, + "credit": 0.001519859154929577, "url": "https://github.com/pytest-dev/pytest-cov" }, "seaborn": { - "credit": 0.0025714285714285704, + "credit": 0.00013943661971830938, "url": "https://seaborn.pydata.org" }, "termcolor": { - "credit": 0.045, + "credit": 0.013943661971830985, "url": "http://pypi.python.org/pypi/termcolor" }, - "tqdm": { - "credit": 0.000449999999999999, - "url": "https://tqdm.github.io" - }, "widgetsnbextension": { - "credit": 0.004904999999999999, + "credit": 0.001519859154929577, "url": "http://ipython.org" }, - "toml": { - "credit": 0.022275, - "url": "https://pypi.org/project/toml" + "citeproc-py": { + "credit": 0.002111468812877263, + "url": "https://github.com/brechtm/citeproc-py" }, - "pycodestyle": { - "credit": 0.022275, - "url": "https://pypi.org/project/pycodestyle" + "cycler": { + "credit": 0.013943661971830985, + "url": "https://github.com/matplotlib/cycler" }, - "contextlib2": { - "credit": 0.006364285714285714, - "url": "https://pypi.org/project/contextlib2" + "fonttools": { + "credit": 0.00013943661971830938, + "url": "http://github.com/fonttools/fonttools" }, - "vcrpy": { - "credit": 0.006364285714285714, - "url": "https://pypi.org/project/vcrpy" + "GridDataFormats": { + "credit": 0.00013943661971830938, + "url": "https://github.com/MDAnalysis/GridDataFormats" }, - "importlib-metadata": { - "credit": 0.009148660714285713, - "url": "https://pypi.org/project/importlib-metadata" + "gsd": { + "credit": 0.00013943661971830938, + "url": "https://gsd.readthedocs.io" }, - "six": { - "credit": 0.024448801339285713, - "url": "https://pypi.org/project/six" + "ipykernel": { + "credit": 0.015324084507042252, + "url": "https://ipython.org" }, - "citeproc-py": { - "credit": 0.006364285714285714, - "url": "https://pypi.org/project/citeproc-py" + "ipython-genutils": { + "credit": 0.015324084507042252, + "url": "https://pypi.org/project/ipython-genutils" }, - "requests": { - "credit": 0.014717410714285714, - "url": "https://pypi.org/project/requests" + "jupyterlab-widgets": { + "credit": 0.015324084507042252, + "url": "https://pypi.org/project/jupyterlab-widgets" }, - "numkit": { - "credit": 0.0111375, - "url": "https://pypi.org/project/numkit" + "kiwisolver": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/kiwisolver" }, - "netCDF4": { - "credit": 0.004455, - "url": "https://pypi.org/project/netCDF4" + "mmtf-python": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/mmtf-python" }, - "docutils": { - "credit": 0.004455, - "url": "https://pypi.org/project/docutils" + "mpi4py": { + "credit": 0.015324084507042252, + "url": "https://pypi.org/project/mpi4py" }, - "pre-commit": { - "credit": 0.004455, - "url": "https://pypi.org/project/pre-commit" + "nbformat": { + "credit": 0.015324084507042252, + "url": "https://pypi.org/project/nbformat" }, - "torchvision": { - "credit": 0.004455, - "url": "https://pypi.org/project/torchvision" + "networkx": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/networkx" + }, + "notebook": { + "credit": 0.027747887323943662, + "url": "https://pypi.org/project/notebook" + }, + "nbconvert": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/nbconvert" }, "pillow": { - "credit": 0.004455, + "credit": 0.015324084507042252, "url": "https://pypi.org/project/pillow" }, - "scipy": { - "credit": 0.01771392857142857, - "url": "https://pypi.org/project/scipy" - }, "torch": { - "credit": 0.004455, + "credit": 0.015324084507042252, "url": "https://pypi.org/project/torch" }, - "mpi4py": { - "credit": 0.004455, - "url": "https://pypi.org/project/mpi4py" + "torchvision": { + "credit": 0.015324084507042252, + "url": "https://pypi.org/project/torchvision" }, - "mock": { - "credit": 0.007239375, - "url": "https://pypi.org/project/mock" + "jupyter-console": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/jupyter-console" }, - "jupyterlab-widgets": { - "credit": 0.004455, - "url": "https://pypi.org/project/jupyterlab-widgets" + "numkit": { + "credit": 0.017394718309859156, + "url": "https://pypi.org/project/numkit" }, - "ipython": { - "credit": 0.004455, - "url": "https://pypi.org/project/ipython" + "qtconsole": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/qtconsole" }, - "nbformat": { - "credit": 0.004455, - "url": "https://pypi.org/project/nbformat" + "debugpy": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/debugpy" }, - "traitlets": { - "credit": 0.004455, - "url": "https://pypi.org/project/traitlets" + "entrypoints": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/entrypoints" }, - "ipython-genutils": { - "credit": 0.004455, - "url": "https://pypi.org/project/ipython-genutils" + "jinja2": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/jinja2" }, - "ipykernel": { - "credit": 0.004455, - "url": "https://pypi.org/project/ipykernel" + "jupyter-client": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/jupyter-client" }, - "pyamg": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/pyamg" + "jupyter-core": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/jupyter-core" }, - "mypy": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/mypy" + "MarkupSafe": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/MarkupSafe" }, - "black": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/black" + "mistune": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/mistune" }, - "flake8": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/flake8" + "msgpack": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/msgpack" }, - "sphinxext-opengraph": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/sphinxext-opengraph" + "nbclient": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/nbclient" }, - "sphinx-prompt": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/sphinx-prompt" + "nest-asyncio": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/nest-asyncio" }, - "Pillow": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/Pillow" + "pandocfilters": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/pandocfilters" }, - "numpydoc": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/numpydoc" + "pyzmq": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/pyzmq" }, - "sphinx-gallery": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/sphinx-gallery" + "qtpy": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/qtpy" }, - "sphinx": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/sphinx" + "Send2Trash": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/Send2Trash" }, - "scikit-image": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/scikit-image" + "terminado": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/terminado" }, - "memory-profiler": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/memory-profiler" + "tornado": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/tornado" }, - "pandas": { - "credit": 0.01325892857142857, - "url": "https://pypi.org/project/pandas" + "argon2-cffi": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/argon2-cffi" + }, + "beautifulsoup4": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/beautifulsoup4" + }, + "bleach": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/bleach" + }, + "coverage": { + "credit": 0.01566919014084507, + "url": "https://pypi.org/project/coverage" + }, + "defusedxml": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/defusedxml" + }, + "fastjsonschema": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/fastjsonschema" + }, + "jupyterlab-pygments": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/jupyterlab-pygments" + }, + "lxml": { + "credit": 0.028809750812567713, + "url": "https://pypi.org/project/lxml" + }, + "mrcfile": { + "credit": 0.017394718309859156, + "url": "https://pypi.org/project/mrcfile" + }, + "prometheus-client": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/prometheus-client" + }, + "psutil": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/psutil" + }, + "tinycss2": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/tinycss2" }, - "threadpoolctl": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/threadpoolctl" + "soupsieve": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/soupsieve" + }, + "webencodings": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/webencodings" + }, + "argon2-cffi-bindings": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/argon2-cffi-bindings" + }, + "cffi": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/cffi" + }, + "pycparser": { + "credit": 0.013943661971830985, + "url": "https://pypi.org/project/pycparser" + }, + "six": { + "credit": 0.010599673038229375, + "url": "https://pypi.org/project/six" + }, + "numpy": { + "credit": 0.02553781690140845, + "url": "https://pypi.org/project/numpy" }, - "joblib": { - "credit": 0.0021214285714285714, - "url": "https://pypi.org/project/joblib" + "netCDF4": { + "credit": 0.0013804225352112675, + "url": "https://pypi.org/project/netCDF4" }, - "xmlschema": { - "credit": 0.002784375, - "url": "https://pypi.org/project/xmlschema" + "docutils": { + "credit": 0.0013804225352112675, + "url": "https://pypi.org/project/docutils" }, - "pygments": { - "credit": 0.002784375, - "url": "https://pypi.org/project/pygments" + "pre-commit": { + "credit": 0.0013804225352112675, + "url": "https://pypi.org/project/pre-commit" }, - "nose": { - "credit": 0.002784375, - "url": "https://pypi.org/project/nose" + "scipy": { + "credit": 0.009344398699891657, + "url": "https://pypi.org/project/scipy" }, - "hypothesis": { - "credit": 0.002784375, - "url": "https://pypi.org/project/hypothesis" + "toml": { + "credit": 0.006902112676056338, + "url": "https://pypi.org/project/toml" }, - "argcomplete": { - "credit": 0.002784375, - "url": "https://pypi.org/project/argcomplete" + "pycodestyle": { + "credit": 0.006902112676056338, + "url": "https://pypi.org/project/pycodestyle" }, - "colorama": { - "credit": 0.008353125, - "url": "https://pypi.org/project/colorama" + "contextlib2": { + "credit": 0.0019720321931589535, + "url": "https://pypi.org/project/contextlib2" }, - "atomicwrites": { - "credit": 0.002784375, - "url": "https://pypi.org/project/atomicwrites" + "vcrpy": { + "credit": 0.0019720321931589535, + "url": "https://pypi.org/project/vcrpy" }, - "tomli": { - "credit": 0.002784375, - "url": "https://pypi.org/project/tomli" + "pytest": { + "credit": 0.005077982897384306, + "url": "https://pypi.org/project/pytest" }, - "py": { - "credit": 0.002784375, - "url": "https://pypi.org/project/py" + "importlib-metadata": { + "credit": 0.0019720321931589535, + "url": "https://pypi.org/project/importlib-metadata" }, - "pluggy": { - "credit": 0.002784375, - "url": "https://pypi.org/project/pluggy" + "requests": { + "credit": 0.0019720321931589535, + "url": "https://pypi.org/project/requests" }, - "packaging": { - "credit": 0.002784375, - "url": "https://pypi.org/project/packaging" + "mock": { + "credit": 0.0013804225352112675, + "url": "https://pypi.org/project/mock" }, - "iniconfig": { - "credit": 0.002784375, - "url": "https://pypi.org/project/iniconfig" + "ipython": { + "credit": 0.0013804225352112675, + "url": "https://pypi.org/project/ipython" }, - "attrs": { - "credit": 0.002784375, - "url": "https://pypi.org/project/attrs" + "traitlets": { + "credit": 0.0013804225352112675, + "url": "https://pypi.org/project/traitlets" }, "virtualenv": { - "credit": 0.006947015625, + "credit": 0.0017255281690140845, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.006947015625, + "credit": 0.0017255281690140845, "url": "https://pypi.org/project/pytest-xdist" }, "process-tests": { - "credit": 0.006947015625, + "credit": 0.0017255281690140845, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.006947015625, + "credit": 0.0017255281690140845, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.006947015625, + "credit": 0.0017255281690140845, "url": "https://pypi.org/project/fields" }, - "coverage": { - "credit": 0.006947015625, - "url": "https://pypi.org/project/coverage" + "pandas": { + "credit": 0.003451056338028169, + "url": "https://pypi.org/project/pandas" }, - "slack-sdk": { - "credit": 0.00556875, - "url": "https://pypi.org/project/slack-sdk" + "xattr": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/xattr" }, - "twine": { - "credit": 0.00556875, - "url": "https://pypi.org/project/twine" + "unicodedata2": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/unicodedata2" }, - "py-make": { - "credit": 0.00556875, - "url": "https://pypi.org/project/py-make" + "munkres": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/munkres" }, - "importlib-resources": { - "credit": 0.00556875, - "url": "https://pypi.org/project/importlib-resources" + "brotli": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/brotli" }, - "notebook": { - "credit": 0.04455, - "url": "https://pypi.org/project/notebook" + "brotlicffi": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/zopfli" + }, + "fs": { + "credit": 0.001061863488624052, + "url": "https://pypi.org/project/fs" } } } \ No newline at end of file diff --git a/_repos/github/KathrynJones1/catwoman/badge.png b/_repos/github/KathrynJones1/catwoman/badge.png index e177e8fe..4d9e3886 100644 Binary files a/_repos/github/KathrynJones1/catwoman/badge.png and b/_repos/github/KathrynJones1/catwoman/badge.png differ diff --git a/_repos/github/Kuifje02/vrpy/badge.png b/_repos/github/Kuifje02/vrpy/badge.png index b53b4386..e6e80d96 100644 Binary files a/_repos/github/Kuifje02/vrpy/badge.png and b/_repos/github/Kuifje02/vrpy/badge.png differ diff --git a/_repos/github/LBNL-ETA/MSWH/README.md b/_repos/github/LBNL-ETA/MSWH/README.md index 5a5559d5..70c707ec 100644 --- a/_repos/github/LBNL-ETA/MSWH/README.md +++ b/_repos/github/LBNL-ETA/MSWH/README.md @@ -8,88 +8,74 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.194| -|pypi|[six](https://github.com/benjaminp/six)|0.082| -|pypi|[tzdata](https://github.com/python/tzdata)|0.042| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.031| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.029| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.029| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.029| -|pypi|[wmi](http://timgolden.me.uk/python/wmi.html)|0.027| -|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.027| -|pypi|[enum34](https://bitbucket.org/stoneleaf/enum34)|0.027| -|pypi|[unittest2](http://pypi.python.org/pypi/unittest2)|0.027| -|pypi|[ipaddress](https://github.com/phihag/ipaddress)|0.027| -|pypi|[bcrypt](https://github.com/pyca/bcrypt/)|0.027| -|pypi|[sqlparse](https://github.com/andialbrecht/sqlparse)|0.027| -|pypi|[tornado](https://pypi.org/project/tornado)|0.027| -|pypi|[reno](https://pypi.org/project/reno)|0.027| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.022| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.013| -|pypi|[mypy](https://pypi.org/project/mypy)|0.013| +|pypi|[mypy](https://pypi.org/project/mypy)|0.083| +|pypi|[pytest](https://pypi.org/project/pytest)|0.08| +|pypi|[flake8](https://pypi.org/project/flake8)|0.065| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.062| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.049| +|pypi|[sqlparse](https://github.com/andialbrecht/sqlparse)|0.048| +|pypi|[fastjsonschema](https://github.com/seznam/python-fastjsonschema)|0.046| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.044| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.043| +|pypi|[alabaster](https://alabaster.readthedocs.io)|0.043| +|pypi|[snowballstemmer](https://github.com/snowballstem/snowball)|0.043| +|pypi|[imagesize](https://github.com/shibukawa/imagesize_py)|0.043| +|pypi|[pytz](https://pypi.org/project/pytz)|0.041| +|pypi|[tzdata](https://pypi.org/project/tzdata)|0.027| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.023| +|pypi|[Babel](https://pypi.org/project/Babel)|0.02| +|pypi|[pywin32](https://pypi.org/project/pywin32)|0.013| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.012| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.011| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.011| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.01| |setup.py|github/LBNL-ETA/MSWH|0.01| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.008| -|pypi|[colorama](https://pypi.org/project/colorama)|0.008| -|pypi|[packaging](https://pypi.org/project/packaging)|0.008| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.007| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.006| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.006| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.006| -|pypi|[isort](https://pypi.org/project/isort)|0.006| -|pypi|[flake8](https://pypi.org/project/flake8)|0.006| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.006| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.006| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.006| -|pypi|[babel](https://pypi.org/project/babel)|0.006| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.006| -|pypi|[docutils](https://pypi.org/project/docutils)|0.006| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.006| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.006| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.006| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.006| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.006| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.006| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.006| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.006| -|pypi|[psutil](https://github.com/giampaolo/psutil)|0.006| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[hypothesis](https://hypothesis.works)|0.004| -|pypi|[tomli](https://pypi.org/project/tomli)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[pandas](https://pandas.pydata.org)|0.003| -|pypi|[django](https://www.djangoproject.com/)|0.003| -|pypi|[furo](https://pypi.org/project/furo)|0.002| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[cogapp](https://pypi.org/project/cogapp)|0.002| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.002| -|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|0.002| -|pypi|[backports.zoneinfo](https://github.com/pganssle/zoneinfo)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[plotly](https://plotly.com/python/)|0.002| -|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|0.002| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| -|pypi|[tenacity](https://github.com/jd/tenacity)|0.001| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.008| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008| +|pypi|[asgiref](https://github.com/django/asgiref/)|0.007| +|pypi|[backports.zoneinfo](https://github.com/pganssle/zoneinfo)|0.007| +|pypi|[bcrypt](https://github.com/pyca/bcrypt/)|0.007| +|pypi|[argon2-cffi](https://argon2-cffi.readthedocs.io/)|0.007| +|pypi|[wmi](https://pypi.org/project/wmi)|0.007| +|pypi|[enum34](https://pypi.org/project/enum34)|0.007| +|pypi|[unittest2](https://pypi.org/project/unittest2)|0.007| +|pypi|[mock](https://pypi.org/project/mock)|0.007| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.007| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.006| +|pypi|[jupyter-core](https://jupyter.org)|0.006| +|pypi|[testpath](https://pypi.org/project/testpath)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.005| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.002| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.002| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.002| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.002| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.002| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| +|pypi|[zipp](https://pypi.org/project/zipp)|0.002| +|pypi|[babel](https://babel.pocoo.org/)|0.002| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.002| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.002| +|pypi|[sphinxcontrib-htmlhelp](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-serializinghtml](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-applehelp](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-devhelp](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-jsmath](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-qthelp](http://sphinx-doc.org/)|0.002| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.002| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.002| +|pypi|[isort](https://pypi.org/project/isort)|0.002| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[requests](https://pypi.org/project/requests)|0.002| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/LBNL-ETA/MSWH/badge.png b/_repos/github/LBNL-ETA/MSWH/badge.png index 70d61ecd..a6bbe097 100644 Binary files a/_repos/github/LBNL-ETA/MSWH/badge.png and b/_repos/github/LBNL-ETA/MSWH/badge.png differ diff --git a/_repos/github/LBNL-ETA/MSWH/data.json b/_repos/github/LBNL-ETA/MSWH/data.json index d92437b3..25c54466 100644 --- a/_repos/github/LBNL-ETA/MSWH/data.json +++ b/_repos/github/LBNL-ETA/MSWH/data.json @@ -6,341 +6,289 @@ } }, "pypi": { - "pandas": { - "credit": 0.003147375000000012, - "url": "https://pandas.pydata.org" - }, - "numpy": { - "credit": 0.193722375, - "url": "https://www.numpy.org" + "django": { + "credit": 0.00041250000000000314, + "url": "https://www.djangoproject.com/" }, - "plotly": { - "credit": 0.0016500000000000126, - "url": "https://plotly.com/python/" + "nbformat": { + "credit": 0.00041250000000000314, + "url": "http://jupyter.org" }, "psutil": { - "credit": 0.006142125000000012, + "credit": 0.00041250000000000314, "url": "https://github.com/giampaolo/psutil" }, - "django": { - "credit": 0.003147375000000012, - "url": "https://www.djangoproject.com/" - }, "sphinx_rtd_theme": { - "credit": 0.0016500000000000126, + "credit": 0.00041250000000000314, "url": "https://github.com/rtfd/sphinx_rtd_theme/" }, - "pytest-xdist": { - "credit": 0.00027225000000000166, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.021714659999999997, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.004202859375000001, - "url": "https://hypothesis.works" - }, - "pytz": { - "credit": 0.028722374999999998, - "url": "http://pythonhosted.org/pytz" - }, - "python-dateutil": { - "credit": 0.028722374999999998, - "url": "https://github.com/dateutil/dateutil" - }, - "six": { - "credit": 0.081675, - "url": "https://github.com/benjaminp/six" - }, - "tenacity": { - "credit": 0.000816750000000005, - "url": "https://github.com/jd/tenacity" - }, - "wmi": { - "credit": 0.027225, - "url": "http://timgolden.me.uk/python/wmi.html" - }, - "pywin32": { - "credit": 0.027225, - "url": "https://github.com/mhammond/pywin32" - }, - "enum34": { - "credit": 0.027225, - "url": "https://bitbucket.org/stoneleaf/enum34" - }, - "unittest2": { - "credit": 0.027225, - "url": "http://pypi.python.org/pypi/unittest2" - }, - "mock": { - "credit": 0.028909546874999997, - "url": "http://mock.readthedocs.org/en/latest/" - }, - "ipaddress": { - "credit": 0.027225, - "url": "https://github.com/phihag/ipaddress" - }, - "bcrypt": { - "credit": 0.027225, - "url": "https://github.com/pyca/bcrypt/" - }, - "argon2-cffi": { - "credit": 0.00027225000000000166, - "url": "https://argon2-cffi.readthedocs.io/" - }, - "tzdata": { - "credit": 0.04219874999999999, - "url": "https://github.com/python/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.0017696250000000014, - "url": "https://github.com/pganssle/zoneinfo" - }, - "sqlparse": { - "credit": 0.027225, - "url": "https://github.com/andialbrecht/sqlparse" - }, "asgiref": { - "credit": 0.00027225000000000166, + "credit": 0.007218750000000003, "url": "https://github.com/django/asgiref/" }, + "docutils": { + "credit": 0.042883500000000005, + "url": "http://docutils.sourceforge.net/" + }, "sphinx": { - "credit": 0.030832312500000007, + "credit": 0.04351875, "url": "https://www.sphinx-doc.org/" }, - "filelock": { - "credit": 0.004492125, - "url": "https://github.com/tox-dev/py-filelock" - }, - "setproctitle": { - "credit": 0.004492125, - "url": "https://pypi.org/project/setproctitle" - }, - "pytest-forked": { - "credit": 0.004492125, - "url": "https://pypi.org/project/pytest-forked" - }, - "execnet": { - "credit": 0.004492125, - "url": "https://pypi.org/project/execnet" - }, - "xmlschema": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.008153206875, - "url": "https://pypi.org/project/requests" + "sqlparse": { + "credit": 0.04805625, + "url": "https://github.com/andialbrecht/sqlparse" }, - "pygments": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/pygments" + "backports.zoneinfo": { + "credit": 0.007218750000000003, + "url": "https://github.com/pganssle/zoneinfo" }, - "nose": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/nose" + "fastjsonschema": { + "credit": 0.046354687500000005, + "url": "https://github.com/seznam/python-fastjsonschema" }, - "argcomplete": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/argcomplete" + "jupyter-core": { + "credit": 0.005517187500000003, + "url": "https://jupyter.org" }, - "colorama": { - "credit": 0.008153206875, - "url": "https://pypi.org/project/colorama" + "alabaster": { + "credit": 0.042883500000000005, + "url": "https://alabaster.readthedocs.io" }, - "atomicwrites": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/atomicwrites" + "babel": { + "credit": 0.002046000000000003, + "url": "https://babel.pocoo.org/" }, "importlib-metadata": { - "credit": 0.009650581874999998, - "url": "https://pypi.org/project/importlib-metadata" + "credit": 0.002046000000000003, + "url": "https://github.com/python/importlib_metadata" }, - "tomli": { - "credit": 0.003930609375, - "url": "https://pypi.org/project/tomli" + "Jinja2": { + "credit": 0.002046000000000003, + "url": "https://palletsprojects.com/p/jinja/" }, - "py": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/py" + "snowballstemmer": { + "credit": 0.042883500000000005, + "url": "https://github.com/snowballstem/snowball" }, - "pluggy": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/pluggy" + "sphinxcontrib-htmlhelp": { + "credit": 0.002046000000000003, + "url": "http://sphinx-doc.org/" }, - "packaging": { - "credit": 0.008153206875, - "url": "https://pypi.org/project/packaging" + "sphinxcontrib-serializinghtml": { + "credit": 0.002046000000000003, + "url": "http://sphinx-doc.org/" }, - "iniconfig": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/iniconfig" + "imagesize": { + "credit": 0.042883500000000005, + "url": "https://github.com/shibukawa/imagesize_py" }, - "attrs": { - "credit": 0.0031819218749999994, - "url": "https://pypi.org/project/attrs" + "sphinxcontrib-applehelp": { + "credit": 0.002046000000000003, + "url": "http://sphinx-doc.org/" }, - "rich": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/rich" + "sphinxcontrib-devhelp": { + "credit": 0.002046000000000003, + "url": "http://sphinx-doc.org/" }, - "redis": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/redis" + "sphinxcontrib-jsmath": { + "credit": 0.002046000000000003, + "url": "http://sphinx-doc.org/" }, - "libcst": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/libcst" + "sphinxcontrib-qthelp": { + "credit": 0.002046000000000003, + "url": "http://sphinx-doc.org/" }, - "lark-parser": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/lark-parser" + "MarkupSafe": { + "credit": 0.06166875, + "url": "https://palletsprojects.com/p/markupsafe/" }, - "dpcontracts": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/dpcontracts" + "bcrypt": { + "credit": 0.00680625, + "url": "https://github.com/pyca/bcrypt/" }, - "click": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/click" + "argon2-cffi": { + "credit": 0.00680625, + "url": "https://argon2-cffi.readthedocs.io/" }, - "black": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/black" + "tzdata": { + "credit": 0.027225, + "url": "https://pypi.org/project/tzdata" }, - "sortedcontainers": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/sortedcontainers" + "pre-commit": { + "credit": 0.010938616071428571, + "url": "https://pypi.org/project/pre-commit" }, - "tornado": { - "credit": 0.026952749999999998, - "url": "https://pypi.org/project/tornado" + "pytest": { + "credit": 0.08018086607142857, + "url": "https://pypi.org/project/pytest" }, - "reno": { - "credit": 0.026952749999999998, - "url": "https://pypi.org/project/reno" + "testpath": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/testpath" }, - "furo": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/furo" + "check-manifest": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/check-manifest" }, - "sphinx-notfound-page": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/sphinx-notfound-page" + "jsonschema": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/jsonschema" }, - "coverage": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/coverage" + "traitlets": { + "credit": 0.010938616071428571, + "url": "https://pypi.org/project/traitlets" }, - "cogapp": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/cogapp" + "wmi": { + "credit": 0.00680625, + "url": "https://pypi.org/project/wmi" }, - "pre-commit": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pre-commit" + "pywin32": { + "credit": 0.012640178571428571, + "url": "https://pypi.org/project/pywin32" }, - "typing-extensions": { - "credit": 0.00898425, - "url": "https://pypi.org/project/typing-extensions" + "enum34": { + "credit": 0.00680625, + "url": "https://pypi.org/project/enum34" }, - "dataclasses": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/dataclasses" + "unittest2": { + "credit": 0.00680625, + "url": "https://pypi.org/project/unittest2" }, - "argon2-cffi-bindings": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/argon2-cffi-bindings" + "mock": { + "credit": 0.00680625, + "url": "https://pypi.org/project/mock" }, - "importlib-resources": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/importlib-resources" + "ipaddress": { + "credit": 0.00680625, + "url": "https://pypi.org/project/ipaddress" }, "mypy": { - "credit": 0.013206847499999999, + "credit": 0.08330849999999998, "url": "https://pypi.org/project/mypy" }, "pytest-asyncio": { - "credit": 0.006738187499999999, + "credit": 0.010209375, "url": "https://pypi.org/project/pytest-asyncio" }, + "typing-extensions": { + "credit": 0.012478125, + "url": "https://pypi.org/project/typing-extensions" + }, "types-requests": { - "credit": 0.006468659999999999, + "credit": 0.0016335, "url": "https://pypi.org/project/types-requests" }, "types-typed-ast": { - "credit": 0.006468659999999999, + "credit": 0.0016335, "url": "https://pypi.org/project/types-typed-ast" }, "docutils-stubs": { - "credit": 0.006468659999999999, + "credit": 0.048596625, "url": "https://pypi.org/project/docutils-stubs" }, "isort": { - "credit": 0.006468659999999999, + "credit": 0.0016335, "url": "https://pypi.org/project/isort" }, "flake8": { - "credit": 0.006468659999999999, + "credit": 0.06493162499999999, "url": "https://pypi.org/project/flake8" }, "sphinxcontrib-websupport": { - "credit": 0.006468659999999999, + "credit": 0.0016335, "url": "https://pypi.org/project/sphinxcontrib-websupport" }, - "imagesize": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/babel" + "colorama": { + "credit": 0.0016335, + "url": "https://pypi.org/project/colorama" }, - "snowballstemmer": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/snowballstemmer" + "packaging": { + "credit": 0.00390225, + "url": "https://pypi.org/project/packaging" }, - "docutils": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/docutils" + "requests": { + "credit": 0.0016335, + "url": "https://pypi.org/project/requests" }, "Pygments": { - "credit": 0.006468659999999999, + "credit": 0.0016335, "url": "https://pypi.org/project/Pygments" }, - "Jinja2": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/Jinja2" + "importlib-resources": { + "credit": 0.0226875, + "url": "https://pypi.org/project/importlib-resources" }, - "sphinxcontrib-qthelp": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" + "pytest-timeout": { + "credit": 0.0058339285714285715, + "url": "https://pypi.org/project/pytest-timeout" }, - "sphinxcontrib-serializinghtml": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + "pytest-cov": { + "credit": 0.008102678571428571, + "url": "https://pypi.org/project/pytest-cov" }, - "sphinxcontrib-htmlhelp": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + "ipykernel": { + "credit": 0.0058339285714285715, + "url": "https://pypi.org/project/ipykernel" }, - "sphinxcontrib-jsmath": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" + "pytz": { + "credit": 0.0408375, + "url": "https://pypi.org/project/pytz" }, - "sphinxcontrib-devhelp": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" + "pytest-mypy": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pytest-mypy" }, - "sphinxcontrib-applehelp": { - "credit": 0.006468659999999999, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" + "pytest-black": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pytest-black" + }, + "pytest-perf": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pytest-perf" + }, + "flufl.flake8": { + "credit": 0.00226875, + "url": "https://pypi.org/project/flufl.flake8" + }, + "pyfakefs": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pyfakefs" + }, + "pytest-enabler": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pytest-enabler" + }, + "pytest-flake8": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pytest-flake8" + }, + "pytest-checkdocs": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pytest-checkdocs" + }, + "ipython": { + "credit": 0.00226875, + "url": "https://pypi.org/project/ipython" + }, + "rst.linker": { + "credit": 0.00226875, + "url": "https://pypi.org/project/rst.linker" + }, + "jaraco.packaging": { + "credit": 0.00226875, + "url": "https://pypi.org/project/jaraco.packaging" + }, + "zipp": { + "credit": 0.00226875, + "url": "https://pypi.org/project/zipp" + }, + "Babel": { + "credit": 0.02041875, + "url": "https://pypi.org/project/Babel" + }, + "html5lib": { + "credit": 0.0081675, + "url": "https://pypi.org/project/html5lib" } } } \ No newline at end of file diff --git a/_repos/github/LINNAE-project/SFB-Annotator/README.md b/_repos/github/LINNAE-project/SFB-Annotator/README.md index 862c6925..1ab4da1d 100644 --- a/_repos/github/LINNAE-project/SFB-Annotator/README.md +++ b/_repos/github/LINNAE-project/SFB-Annotator/README.md @@ -8,7 +8,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[matplotlib](https://matplotlib.org)|0.207| +|pypi|[matplotlib](https://matplotlib.org)|0.208| |pypi|[jq](http://github.com/mwilliamson/jq.py)|0.198| |pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.196| |pypi|[pytest](https://docs.pytest.org/en/latest/)|0.028| @@ -22,24 +22,23 @@ exclude_from_search: true |pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.016| |pypi|[isodate](https://pypi.org/project/isodate)|0.016| |requirements.txt|github/LINNAE-project/SFB-Annotator|0.01| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.009| -|pypi|[codecov](https://pypi.org/project/codecov)|0.009| -|pypi|[pydot](https://pypi.org/project/pydot)|0.009| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.009| -|pypi|[lxml](https://pypi.org/project/lxml)|0.009| -|pypi|[texext](https://pypi.org/project/texext)|0.009| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.009| -|pypi|[pillow](https://pypi.org/project/pillow)|0.009| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.009| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.009| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.009| -|pypi|[mypy](https://pypi.org/project/mypy)|0.009| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.009| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.009| -|pypi|[black](https://pypi.org/project/black)|0.009| -|pypi|[pandas](https://pypi.org/project/pandas)|0.009| -|pypi|[scipy](https://pypi.org/project/scipy)|0.009| -|pypi|[numpy](https://pypi.org/project/numpy)|0.009| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.01| +|pypi|[codecov](https://pypi.org/project/codecov)|0.01| +|pypi|[sympy](https://pypi.org/project/sympy)|0.01| +|pypi|[pydot](https://pypi.org/project/pydot)|0.01| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.01| +|pypi|[lxml](https://pypi.org/project/lxml)|0.01| +|pypi|[texext](https://pypi.org/project/texext)|0.01| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.01| +|pypi|[pillow](https://pypi.org/project/pillow)|0.01| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.01| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.01| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.01| +|pypi|[mypy](https://pypi.org/project/mypy)|0.01| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.01| +|pypi|[pandas](https://pypi.org/project/pandas)|0.01| +|pypi|[scipy](https://pypi.org/project/scipy)|0.01| +|pypi|[numpy](https://pypi.org/project/numpy)|0.01| |pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| |pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| |pypi|[six](https://pypi.org/project/six)|0.002| diff --git a/_repos/github/LINNAE-project/SFB-Annotator/badge.png b/_repos/github/LINNAE-project/SFB-Annotator/badge.png index 88e71cb3..02f775bb 100644 Binary files a/_repos/github/LINNAE-project/SFB-Annotator/badge.png and b/_repos/github/LINNAE-project/SFB-Annotator/badge.png differ diff --git a/_repos/github/LINNAE-project/SFB-Annotator/data.json b/_repos/github/LINNAE-project/SFB-Annotator/data.json index ca7b3b42..d31d8396 100644 --- a/_repos/github/LINNAE-project/SFB-Annotator/data.json +++ b/_repos/github/LINNAE-project/SFB-Annotator/data.json @@ -15,7 +15,7 @@ "url": "https://networkx.org/" }, "matplotlib": { - "credit": 0.20733428571428572, + "credit": 0.207801, "url": "https://matplotlib.org" }, "jq": { @@ -31,11 +31,11 @@ "url": "https://github.com/pytest-dev/pytest-subtests" }, "pytest-cov": { - "credit": 0.009497635714285715, + "credit": 0.00996435, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.027690741964285715, + "credit": 0.02815745625, "url": "https://docs.pytest.org/en/latest/" }, "berkeleydb": { @@ -51,7 +51,7 @@ "url": "https://pypi.org/project/sphinxcontrib-apidoc" }, "sphinx": { - "credit": 0.025669285714285714, + "credit": 0.026136, "url": "https://pypi.org/project/sphinx" }, "importlib-metadata": { @@ -71,71 +71,67 @@ "url": "https://pypi.org/project/isodate" }, "codecov": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/codecov" }, + "sympy": { + "credit": 0.009801, + "url": "https://pypi.org/project/sympy" + }, "pydot": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/nb2plots" }, "pillow": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/pillow" }, "numpydoc": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "mypy": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/pre-commit" }, - "pyupgrade": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/pyupgrade" - }, - "black": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/black" - }, "pandas": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/pandas" }, "scipy": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/scipy" }, "numpy": { - "credit": 0.009334285714285715, + "credit": 0.009801, "url": "https://pypi.org/project/numpy" }, "defusedxml": { diff --git a/_repos/github/LSARP/ProteomicsQC/badge.png b/_repos/github/LSARP/ProteomicsQC/badge.png index 536abf42..ba8e6e42 100644 Binary files a/_repos/github/LSARP/ProteomicsQC/badge.png and b/_repos/github/LSARP/ProteomicsQC/badge.png differ diff --git a/_repos/github/LiberTEM/LiberTEM/README.md b/_repos/github/LiberTEM/LiberTEM/README.md index 3c00e791..d06f6742 100644 --- a/_repos/github/LiberTEM/LiberTEM/README.md +++ b/_repos/github/LiberTEM/LiberTEM/README.md @@ -8,38 +8,37 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.089| -|pypi|[matplotlib](https://matplotlib.org)|0.047| -|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.044| -|pypi|[h5py](http://www.h5py.org)|0.042| -|pypi|[tornado](http://www.tornadoweb.org/)|0.042| -|pypi|[defusedxml](https://github.com/tiran/defusedxml)|0.042| -|pypi|[numba](https://numba.pydata.org)|0.042| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.042| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.041| -|pypi|[threadpoolctl](https://github.com/joblib/threadpoolctl)|0.04| -|pypi|[primesieve](https://github.com/kimwalisch/primesieve-python)|0.038| -|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.038| -|pypi|[colorama](https://pypi.org/project/colorama)|0.024| +|pypi|[numpy](https://www.numpy.org)|0.092| +|pypi|[matplotlib](https://matplotlib.org)|0.049| +|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.046| +|pypi|[h5py](http://www.h5py.org)|0.044| +|pypi|[tornado](http://www.tornadoweb.org/)|0.044| +|pypi|[defusedxml](https://github.com/tiran/defusedxml)|0.044| +|pypi|[numba](https://numba.pydata.org)|0.044| +|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.044| +|pypi|[threadpoolctl](https://github.com/joblib/threadpoolctl)|0.041| +|pypi|[primesieve](https://github.com/kimwalisch/primesieve-python)|0.04| +|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.04| +|pypi|[colorama](https://pypi.org/project/colorama)|0.025| |pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.022| -|pypi|[toml](https://pypi.org/project/toml)|0.019| -|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.019| -|pypi|[scipy](https://www.scipy.org)|0.013| +|pypi|[toml](https://pypi.org/project/toml)|0.02| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.02| +|pypi|[scipy](https://www.scipy.org)|0.014| |pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.013| |pypi|[pytest](https://pypi.org/project/pytest)|0.013| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.01| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.011| |setup.py|github/LiberTEM/LiberTEM|0.01| |pypi|[scikit-image](https://scikit-image.org)|0.009| |pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.008| |pypi|[dask](https://pypi.org/project/dask)|0.008| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.007| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.007| -|pypi|[hyperspy](https://pypi.org/project/hyperspy)|0.006| -|pypi|[wmi](https://pypi.org/project/wmi)|0.006| -|pypi|[enum34](https://pypi.org/project/enum34)|0.006| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.006| -|pypi|[mock](https://pypi.org/project/mock)|0.006| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.006| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.008| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.008| +|pypi|[hyperspy](https://pypi.org/project/hyperspy)|0.007| +|pypi|[wmi](https://pypi.org/project/wmi)|0.007| +|pypi|[enum34](https://pypi.org/project/enum34)|0.007| +|pypi|[unittest2](https://pypi.org/project/unittest2)|0.007| +|pypi|[mock](https://pypi.org/project/mock)|0.007| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.007| |pypi|[packaging](https://pypi.org/project/packaging)|0.006| |pypi|[requests](https://pypi.org/project/requests)|0.005| |pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.005| @@ -56,7 +55,7 @@ exclude_from_search: true |pypi|[Pillow](https://pypi.org/project/Pillow)|0.004| |pypi|[tox](https://pypi.org/project/tox)|0.004| |pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| |pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.003| |pypi|[click](https://palletsprojects.com/p/click/)|0.003| |pypi|[psutil](https://github.com/giampaolo/psutil)|0.003| @@ -82,6 +81,7 @@ exclude_from_search: true |pypi|[isoduration](https://pypi.org/project/isoduration)|0.003| |pypi|[idna](https://pypi.org/project/idna)|0.003| |pypi|[fqdn](https://pypi.org/project/fqdn)|0.003| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| |pypi|[pyrsistent](https://pypi.org/project/pyrsistent)|0.003| |pypi|[attrs](https://pypi.org/project/attrs)|0.003| |pypi|[tqdm](https://tqdm.github.io)|0.003| @@ -101,26 +101,26 @@ exclude_from_search: true |pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.002| |pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.002| |pypi|[joblib](https://pypi.org/project/joblib)|0.002| -|pypi|[pillow](https://python-pillow.org)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| -|pypi|[ipython](https://pypi.org/project/ipython)|0.001| -|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.001| -|pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|0.001| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.001| -|pypi|[pytest-dependency](https://pypi.org/project/pytest-dependency)|0.001| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.001| -|pypi|[nbclient](https://pypi.org/project/nbclient)|0.001| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.001| -|pypi|[testpath](https://pypi.org/project/testpath)|0.001| -|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|0.001| -|pypi|[bleach](https://pypi.org/project/bleach)|0.001| -|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.001| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.001| -|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.001| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.001| -|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[mistune](https://pypi.org/project/mistune)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scikit-learn](http://scikit-learn.org)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.002| +|pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|0.002| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.002| +|pypi|[pytest-dependency](https://pypi.org/project/pytest-dependency)|0.002| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.002| +|pypi|[nbclient](https://pypi.org/project/nbclient)|0.002| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.002| +|pypi|[testpath](https://pypi.org/project/testpath)|0.002| +|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|0.002| +|pypi|[bleach](https://pypi.org/project/bleach)|0.002| +|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.002| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.002| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.002| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.002| +|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|0.002| +|pypi|[pygments](https://pypi.org/project/pygments)|0.002| +|pypi|[mistune](https://pypi.org/project/mistune)|0.002| |pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|0.001| |pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|0.001| |pypi|[codecov](https://pypi.org/project/codecov)|0.001| diff --git a/_repos/github/LiberTEM/LiberTEM/badge.png b/_repos/github/LiberTEM/LiberTEM/badge.png index efca252d..84137a8c 100644 Binary files a/_repos/github/LiberTEM/LiberTEM/badge.png and b/_repos/github/LiberTEM/LiberTEM/badge.png differ diff --git a/_repos/github/LiberTEM/LiberTEM/data.json b/_repos/github/LiberTEM/LiberTEM/data.json index f266d68a..6e8f903b 100644 --- a/_repos/github/LiberTEM/LiberTEM/data.json +++ b/_repos/github/LiberTEM/LiberTEM/data.json @@ -7,539 +7,539 @@ }, "pypi": { "numpy": { - "credit": 0.08882066257272139, + "credit": 0.09237348907563024, "url": "https://www.numpy.org" }, "scipy": { - "credit": 0.013428354880413704, + "credit": 0.013965489075630251, "url": "https://www.scipy.org" }, "sparse": { - "credit": 0.00038076923076923314, + "credit": 0.00039600000000000746, "url": "https://github.com/pydata/sparse/" }, "distributed": { - "credit": 0.00038076923076923314, + "credit": 0.0003960000000000005, "url": "https://distributed.dask.org" }, "click": { - "credit": 0.003073351648351651, + "credit": 0.0031962857142857144, "url": "https://palletsprojects.com/p/click/" }, "tornado": { - "credit": 0.042219357565511414, + "credit": 0.04390813186813186, "url": "http://www.tornadoweb.org/" }, "matplotlib": { - "credit": 0.04735489334195217, + "credit": 0.04924908907563025, "url": "https://matplotlib.org" }, "pillow": { - "credit": 0.0014578021978022002, + "credit": 0.001516114285714286, "url": "https://python-pillow.org" }, "h5py": { - "credit": 0.042265384615384614, + "credit": 0.043955999999999995, "url": "http://www.h5py.org" }, "psutil": { - "credit": 0.003073351648351651, + "credit": 0.0031962857142857144, "url": "https://github.com/giampaolo/psutil" }, "numba": { - "credit": 0.04184653846153846, + "credit": 0.043520399999999994, "url": "https://numba.pydata.org" }, "ncempy": { - "credit": 0.00038076923076923314, + "credit": 0.0003960000000000005, "url": "https://github.com/ercius/openNCEM" }, "pywin32": { - "credit": 0.044359615384615386, + "credit": 0.046133999999999994, "url": "https://github.com/mhammond/pywin32" }, "scikit-image": { - "credit": 0.008581706528765354, + "credit": 0.008924974789915966, "url": "https://scikit-image.org" }, "cloudpickle": { - "credit": 0.04184653846153846, + "credit": 0.043520399999999994, "url": "https://github.com/cloudpipe/cloudpickle" }, "jsonschema": { - "credit": 0.00038076923076923314, + "credit": 0.0003960000000000005, "url": "https://github.com/Julian/jsonschema" }, "scikit-learn": { - "credit": 0.0014578021978022002, + "credit": 0.001516114285714286, "url": "http://scikit-learn.org" }, "tqdm": { - "credit": 0.002598190045248871, + "credit": 0.0027021176470588236, "url": "https://tqdm.github.io" }, "threadpoolctl": { - "credit": 0.039871978021978026, + "credit": 0.04146685714285714, "url": "https://github.com/joblib/threadpoolctl" }, "primesieve": { - "credit": 0.03807692307692308, + "credit": 0.039599999999999996, "url": "https://github.com/kimwalisch/primesieve-python" }, "nbconvert": { - "credit": 0.00038076923076923314, + "credit": 0.0003960000000000005, "url": "https://jupyter.org" }, "autopep8": { - "credit": 0.00038076923076923314, + "credit": 0.0003960000000000005, "url": "https://github.com/hhatto/autopep8" }, "empyre": { - "credit": 0.0003807692307692401, + "credit": 0.00039600000000000746, "url": "https://iffgit.fz-juelich.de/empyre/empyre" }, "defusedxml": { - "credit": 0.04188278476331361, + "credit": 0.04355809615384615, "url": "https://github.com/tiran/defusedxml" }, "async_generator": { - "credit": 0.03807692307692308, + "credit": 0.039599999999999996, "url": "https://github.com/python-trio/async_generator" }, - "typing-extensions": { - "credit": 0.0407695054945055, - "url": "https://typing.readthedocs.io/" - }, "sphinx-rtd-theme": { - "credit": 0.007575477071005916, + "credit": 0.007878496153846152, "url": "https://github.com/readthedocs/sphinx_rtd_theme" }, "sphinx": { - "credit": 0.010447564983093828, + "credit": 0.01086546758241758, "url": "https://www.sphinx-doc.org/" }, "tox": { - "credit": 0.0037696153846153843, + "credit": 0.003920399999999999, "url": "https://pypi.org/project/tox" }, "pytest-cov": { - "credit": 0.012664985797573466, + "credit": 0.013171585229476403, "url": "https://pypi.org/project/pytest-cov" }, "pytest-black": { - "credit": 0.0037696153846153843, + "credit": 0.003920399999999999, "url": "https://pypi.org/project/pytest-black" }, "pytest": { - "credit": 0.012664985797573466, + "credit": 0.013171585229476403, "url": "https://pypi.org/project/pytest" }, "dask": { - "credit": 0.007539230769230769, + "credit": 0.007840799999999998, "url": "https://pypi.org/project/dask" }, "pyyaml": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/pyyaml" }, "zict": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/zict" }, "urllib3": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/urllib3" }, "toolz": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/toolz" }, "tblib": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/tblib" }, "sortedcontainers": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/sortedcontainers" }, "packaging": { - "credit": 0.006125625, + "credit": 0.006370649999999999, "url": "https://pypi.org/project/packaging" }, "msgpack": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/msgpack" }, "jinja2": { - "credit": 0.004142434488588335, + "credit": 0.004308131868131867, "url": "https://pypi.org/project/jinja2" }, "importlib-metadata": { - "credit": 0.02154065934065934, + "credit": 0.02240228571428571, "url": "https://pypi.org/project/importlib-metadata" }, "colorama": { - "credit": 0.023560096153846154, + "credit": 0.024502499999999997, "url": "https://pypi.org/project/colorama" }, "pytest-timeout": { - "credit": 0.0023560096153846153, + "credit": 0.0024502499999999997, "url": "https://pypi.org/project/pytest-timeout" }, "pyroma": { - "credit": 0.004573430429864253, + "credit": 0.004756367647058822, "url": "https://pypi.org/project/pyroma" }, "markdown2": { - "credit": 0.0023560096153846153, + "credit": 0.0024502499999999997, "url": "https://pypi.org/project/markdown2" }, "coverage": { - "credit": 0.004573430429864253, + "credit": 0.004756367647058822, "url": "https://pypi.org/project/coverage" }, "check-manifest": { - "credit": 0.0023560096153846153, + "credit": 0.0024502499999999997, "url": "https://pypi.org/project/check-manifest" }, "sphinxext-opengraph": { - "credit": 0.0041510645604395605, + "credit": 0.0043171071428571425, "url": "https://pypi.org/project/sphinxext-opengraph" }, "sphinx-removed-in": { - "credit": 0.0023560096153846153, + "credit": 0.0024502499999999997, "url": "https://pypi.org/project/sphinx-removed-in" }, "sphinx-issues": { - "credit": 0.0023560096153846153, + "credit": 0.0024502499999999997, "url": "https://pypi.org/project/sphinx-issues" }, "sphinx-copybutton": { - "credit": 0.0034330425824175823, + "credit": 0.003570364285714285, "url": "https://pypi.org/project/sphinx-copybutton" }, "olefile": { - "credit": 0.0023560096153846153, + "credit": 0.0024502499999999997, "url": "https://pypi.org/project/olefile" }, "wmi": { - "credit": 0.006282692307692308, + "credit": 0.006533999999999999, "url": "https://pypi.org/project/wmi" }, "enum34": { - "credit": 0.006282692307692308, + "credit": 0.006533999999999999, "url": "https://pypi.org/project/enum34" }, "unittest2": { - "credit": 0.006282692307692308, + "credit": 0.006533999999999999, "url": "https://pypi.org/project/unittest2" }, "mock": { - "credit": 0.006282692307692308, + "credit": 0.006533999999999999, "url": "https://pypi.org/project/mock" }, "ipaddress": { - "credit": 0.006282692307692308, + "credit": 0.006533999999999999, "url": "https://pypi.org/project/ipaddress" }, "ipyvolume": { - "credit": 0.0041884615384615385, + "credit": 0.004356, "url": "https://pypi.org/project/ipyvolume" }, "hyperspy": { - "credit": 0.006405882352941176, + "credit": 0.006662117647058823, "url": "https://pypi.org/project/hyperspy" }, "genfire": { - "credit": 0.0041884615384615385, + "credit": 0.004356, "url": "https://pypi.org/project/genfire" }, "glob2": { - "credit": 0.0041884615384615385, + "credit": 0.004356, "url": "https://pypi.org/project/glob2" }, "pytest-faulthandler": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/pytest-faulthandler" }, "pytest-localserver": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/pytest-localserver" }, "flake8": { - "credit": 0.002872087912087912, + "credit": 0.002986971428571428, "url": "https://pypi.org/project/flake8" }, "codecov": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/codecov" }, "asv": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/asv" }, "qtpy": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/qtpy" }, "pyamg": { - "credit": 0.002872087912087912, + "credit": 0.002986971428571428, "url": "https://pypi.org/project/pyamg" }, "astropy": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/astropy" }, "SimpleITK": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/SimpleITK" }, "kaleido": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/kaleido" }, "plotly": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/plotly" }, "ipywidgets": { - "credit": 0.007238904268808115, + "credit": 0.007528460439560439, "url": "https://pypi.org/project/ipywidgets" }, "myst-parser": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/myst-parser" }, "seaborn": { - "credit": 0.002872087912087912, + "credit": 0.002986971428571428, "url": "https://pypi.org/project/seaborn" }, "pandas": { - "credit": 0.002872087912087912, + "credit": 0.002986971428571428, "url": "https://pypi.org/project/pandas" }, "pytest-runner": { - "credit": 0.0032944537815126048, + "credit": 0.003426231932773109, "url": "https://pypi.org/project/pytest-runner" }, "numpydoc": { - "credit": 0.002872087912087912, + "credit": 0.002986971428571428, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.002872087912087912, + "credit": 0.002986971428571428, "url": "https://pypi.org/project/sphinx-gallery" }, "pooch": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/pooch" }, "PyWavelets": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/PyWavelets" }, "tifffile": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/tifffile" }, "imageio": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/imageio" }, "networkx": { - "credit": 0.001077032967032967, + "credit": 0.0011201142857142855, "url": "https://pypi.org/project/networkx" }, "rfc3986-validator": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/rfc3986-validator" }, "webcolors": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/webcolors" }, "uri-template": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/uri-template" }, "rfc3987": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/rfc3987" }, "rfc3339-validator": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/rfc3339-validator" }, "jsonpointer": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/jsonpointer" }, "isoduration": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/isoduration" }, "idna": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/idna" }, "fqdn": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/fqdn" }, "importlib-resources": { - "credit": 0.007404601648351649, + "credit": 0.007700785714285714, "url": "https://pypi.org/project/importlib-resources" }, + "typing-extensions": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/typing-extensions" + }, "pyrsistent": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/pyrsistent" }, "attrs": { - "credit": 0.0026925824175824177, + "credit": 0.002800285714285714, "url": "https://pypi.org/project/attrs" }, "mypy": { - "credit": 0.001795054945054945, + "credit": 0.0018668571428571428, "url": "https://pypi.org/project/mypy" }, "black": { - "credit": 0.001795054945054945, + "credit": 0.0018668571428571428, "url": "https://pypi.org/project/black" }, "sphinx-prompt": { - "credit": 0.001795054945054945, + "credit": 0.0018668571428571428, "url": "https://pypi.org/project/sphinx-prompt" }, "Pillow": { - "credit": 0.0040124757595345825, + "credit": 0.004172974789915965, "url": "https://pypi.org/project/Pillow" }, "memory-profiler": { - "credit": 0.001795054945054945, + "credit": 0.0018668571428571428, "url": "https://pypi.org/project/memory-profiler" }, "joblib": { - "credit": 0.001795054945054945, + "credit": 0.0018668571428571428, "url": "https://pypi.org/project/joblib" }, "requests": { - "credit": 0.0047120192307692306, + "credit": 0.0049004999999999995, "url": "https://pypi.org/project/requests" }, "slack-sdk": { - "credit": 0.0047120192307692306, + "credit": 0.0049004999999999995, "url": "https://pypi.org/project/slack-sdk" }, "wheel": { - "credit": 0.0047120192307692306, + "credit": 0.0049004999999999995, "url": "https://pypi.org/project/wheel" }, "twine": { - "credit": 0.0047120192307692306, + "credit": 0.0049004999999999995, "url": "https://pypi.org/project/twine" }, "py-make": { - "credit": 0.0047120192307692306, + "credit": 0.0049004999999999995, "url": "https://pypi.org/project/py-make" }, "ipython": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/ipython" }, "nbsphinx": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/nbsphinx" }, "pyppeteer": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/pyppeteer" }, "ipykernel": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/ipykernel" }, "pytest-dependency": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/pytest-dependency" }, "MarkupSafe": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/MarkupSafe" }, "nbclient": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/nbclient" }, "beautifulsoup4": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/beautifulsoup4" }, "testpath": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/testpath" }, "pandocfilters": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/pandocfilters" }, "bleach": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/bleach" }, "entrypoints": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/entrypoints" }, "nbformat": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/nbformat" }, "jupyter-core": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/jupyter-core" }, "traitlets": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/traitlets" }, "jupyterlab-pygments": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/jupyterlab-pygments" }, "pygments": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/pygments" }, "mistune": { - "credit": 0.001449852071005917, + "credit": 0.0015078461538461537, "url": "https://pypi.org/project/mistune" }, "toml": { - "credit": 0.018848076923076922, + "credit": 0.019601999999999998, "url": "https://pypi.org/project/toml" }, "pycodestyle": { - "credit": 0.018848076923076922, + "credit": 0.019601999999999998, "url": "https://pypi.org/project/pycodestyle" }, "pytest-flake8": { - "credit": 0.0022174208144796377, + "credit": 0.002306117647058823, "url": "https://pypi.org/project/pytest-flake8" }, "tvtk": { - "credit": 0.0022174208144796377, + "credit": 0.002306117647058823, "url": "https://pypi.org/project/tvtk" }, "cmocean": { - "credit": 0.0022174208144796377, + "credit": 0.002306117647058823, "url": "https://pypi.org/project/cmocean" }, "pyfftw": { - "credit": 0.0022174208144796377, + "credit": 0.002306117647058823, "url": "https://pypi.org/project/pyfftw" }, "mayavi": { - "credit": 0.0022174208144796377, + "credit": 0.002306117647058823, "url": "https://pypi.org/project/mayavi" } } diff --git a/_repos/github/MD-Studio/MDStudio/README.md b/_repos/github/MD-Studio/MDStudio/README.md index d973c8c2..5e8e00f2 100644 --- a/_repos/github/MD-Studio/MDStudio/README.md +++ b/_repos/github/MD-Studio/MDStudio/README.md @@ -8,131 +8,77 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.03| -|pypi|[pycparser](https://github.com/eliben/pycparser)|0.029| -|pypi|[cryptography](https://github.com/pyca/cryptography)|0.028| -|pypi|[hiredis](https://github.com/redis/hiredis-py)|0.023| -|pypi|[pytest](https://pypi.org/project/pytest)|0.023| -|pypi|[twisted](https://twistedmatrix.com/)|0.021| -|pypi|[idna](https://github.com/kjd/idna)|0.019| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.018| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.017| -|pypi|[six](https://github.com/benjaminp/six)|0.017| -|pypi|[chardet](https://github.com/chardet/chardet)|0.016| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.016| -|pypi|[hyperlink](https://github.com/python-hyper/hyperlink)|0.016| -|pypi|[rfc3987](http://pypi.python.org/pypi/rfc3987)|0.015| -|pypi|[webcolors](https://pypi.org/project/webcolors)|0.015| -|pypi|[argh](http://github.com/neithere/argh/)|0.014| -|pypi|[asn1crypto](https://github.com/wbond/asn1crypto)|0.014| -|pypi|[asq](https://github.com/sixty-north/asq)|0.014| -|pypi|[autobahn](http://crossbar.io/autobahn)|0.014| -|pypi|[automat](https://github.com/glyph/Automat)|0.014| -|pypi|[bitstring](https://github.com/scott-griffiths/bitstring)|0.014| -|pypi|[cbor](https://bitbucket.org/bodhisnarkva/cbor)|0.014| -|pypi|[constantly](https://github.com/twisted/constantly)|0.014| -|pypi|[h2](https://github.com/python-hyper/h2)|0.014| -|pypi|[hpack](https://github.com/python-hyper/hpack)|0.014| -|pypi|[hyperframe](https://github.com/python-hyper/hyperframe/)|0.014| -|pypi|[lmdb](http://github.com/jnwatson/py-lmdb/)|0.014| -|pypi|[markupsafe](https://palletsprojects.com/p/markupsafe/)|0.014| -|pypi|[mistune](https://github.com/lepture/mistune)|0.014| -|pypi|[netaddr](https://github.com/drkjam/netaddr/)|0.014| -|pypi|[node-semver](https://github.com/podhmo/python-semver)|0.014| -|pypi|[pathtools](http://github.com/gorakhargosh/pathtools)|0.014| -|pypi|[priority](https://github.com/python-hyper/priority/)|0.014| -|pypi|[py-ubjson](https://github.com/Iotic-Labs/py-ubjson)|0.014| -|pypi|[pygments](https://pygments.org/)|0.014| -|pypi|[pynacl](https://github.com/pyca/pynacl/)|0.014| -|pypi|[pyqrcode](https://github.com/mnooner256/pyqrcode)|0.014| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.014| -|pypi|[pytrie](https://github.com/gsakkis/pytrie/)|0.014| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.014| -|pypi|[pyyaml](https://pyyaml.org/)|0.014| -|pypi|[sdnotify](https://github.com/bb4242/sdnotify)|0.014| -|pypi|[sortedcontainers](http://www.grantjenks.com/docs/sortedcontainers/)|0.014| -|pypi|[strict-rfc3339](http://www.danielrichman.co.uk/libraries/strict-rfc3339.html)|0.014| +|pypi|[crossbar](http://crossbar.io/)|0.014| +|pypi|[argh](https://pypi.org/project/argh)|0.014| +|pypi|[argon2-cffi](https://pypi.org/project/argon2-cffi)|0.014| +|pypi|[asn1crypto](https://pypi.org/project/asn1crypto)|0.014| +|pypi|[asq](https://pypi.org/project/asq)|0.014| +|pypi|[attrs](https://pypi.org/project/attrs)|0.014| +|pypi|[autobahn](https://pypi.org/project/autobahn)|0.014| +|pypi|[automat](https://pypi.org/project/automat)|0.014| +|pypi|[bitstring](https://pypi.org/project/bitstring)|0.014| +|pypi|[cbor](https://pypi.org/project/cbor)|0.014| +|pypi|[certifi](https://pypi.org/project/certifi)|0.014| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| +|pypi|[chardet](https://pypi.org/project/chardet)|0.014| +|pypi|[click](https://pypi.org/project/click)|0.014| +|pypi|[constantly](https://pypi.org/project/constantly)|0.014| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.014| +|pypi|[dictdiffer](https://pypi.org/project/dictdiffer)|0.014| +|pypi|[h2](https://pypi.org/project/h2)|0.014| +|pypi|[hiredis](https://pypi.org/project/hiredis)|0.014| +|pypi|[hpack](https://pypi.org/project/hpack)|0.014| +|pypi|[hyperframe](https://pypi.org/project/hyperframe)|0.014| +|pypi|[hyperlink](https://pypi.org/project/hyperlink)|0.014| +|pypi|[idna](https://pypi.org/project/idna)|0.014| +|pypi|[incremental](https://pypi.org/project/incremental)|0.014| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.014| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.014| +|pypi|[lmdb](https://pypi.org/project/lmdb)|0.014| +|pypi|[markupsafe](https://pypi.org/project/markupsafe)|0.014| +|pypi|[mistune](https://pypi.org/project/mistune)|0.014| +|pypi|[netaddr](https://pypi.org/project/netaddr)|0.014| +|pypi|[node-semver](https://pypi.org/project/node-semver)|0.014| +|pypi|[oauthlib](https://pypi.org/project/oauthlib)|0.014| +|pypi|[passlib](https://pypi.org/project/passlib)|0.014| +|pypi|[pathtools](https://pypi.org/project/pathtools)|0.014| +|pypi|[priority](https://pypi.org/project/priority)|0.014| +|pypi|[psutil](https://pypi.org/project/psutil)|0.014| +|pypi|[py-ubjson](https://pypi.org/project/py-ubjson)|0.014| +|pypi|[pyasn1-modules](https://pypi.org/project/pyasn1-modules)|0.014| +|pypi|[pyasn1](https://pypi.org/project/pyasn1)|0.014| +|pypi|[pycparser](https://pypi.org/project/pycparser)|0.014| +|pypi|[pygments](https://pypi.org/project/pygments)|0.014| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.014| +|pypi|[pymongo](https://pypi.org/project/pymongo)|0.014| +|pypi|[pynacl](https://pypi.org/project/pynacl)|0.014| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.014| +|pypi|[pyqrcode](https://pypi.org/project/pyqrcode)|0.014| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.014| +|pypi|[pytrie](https://pypi.org/project/pytrie)|0.014| +|pypi|[pytz](https://pypi.org/project/pytz)|0.014| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.014| +|pypi|[redis-py-cluster](https://pypi.org/project/redis-py-cluster)|0.014| +|pypi|[redis](https://pypi.org/project/redis)|0.014| +|pypi|[requests](https://pypi.org/project/requests)|0.014| +|pypi|[rfc3987](https://pypi.org/project/rfc3987)|0.014| +|pypi|[sdnotify](https://pypi.org/project/sdnotify)|0.014| +|pypi|[service-identity](https://pypi.org/project/service-identity)|0.014| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.014| +|pypi|[six](https://pypi.org/project/six)|0.014| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.014| +|pypi|[strict-rfc3339](https://pypi.org/project/strict-rfc3339)|0.014| +|pypi|[treq](https://pypi.org/project/treq)|0.014| +|pypi|[twisted](https://pypi.org/project/twisted)|0.014| |pypi|[txaio](https://pypi.org/project/txaio)|0.014| |pypi|[txtorcon](https://pypi.org/project/txtorcon)|0.014| |pypi|[typing](https://pypi.org/project/typing)|0.014| |pypi|[u-msgpack-python](https://pypi.org/project/u-msgpack-python)|0.014| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.014| |pypi|[watchdog](https://pypi.org/project/watchdog)|0.014| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.013| +|pypi|[webcolors](https://pypi.org/project/webcolors)|0.014| +|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.014| |requirements.txt|github/MD-Studio/MDStudio|0.01| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| -|pypi|[redis](https://github.com/redis/redis-py)|0.007| -|pypi|[click](https://palletsprojects.com/p/click/)|0.007| -|pypi|[colorama](https://pypi.org/project/colorama)|0.007| -|pypi|[Babel](https://pypi.org/project/Babel)|0.007| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.007| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| -|pypi|[coverage](https://pypi.org/project/coverage)|0.005| -|pypi|[pyjwt](https://github.com/jpadilla/pyjwt)|0.005| -|pypi|[blinker](https://pypi.org/project/blinker)|0.005| -|pypi|[requests](https://requests.readthedocs.io)|0.005| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| -|pypi|[attrs](https://www.attrs.org/)|0.004| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.004| -|pypi|[mock](https://pypi.org/project/mock)|0.004| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.004| -|pypi|[furo](https://pypi.org/project/furo)|0.003| -|pypi|[pyopenssl](https://pyopenssl.org/)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[argon2-cffi](https://argon2-cffi.readthedocs.io/)|0.003| -|pypi|[cloud-sptheme](https://pypi.org/project/cloud-sptheme)|0.002| -|pypi|[sphinxcontrib-fulltoc](https://pypi.org/project/sphinxcontrib-fulltoc)|0.002| -|pypi|[bcrypt](https://pypi.org/project/bcrypt)|0.002| -|pypi|[wmi](https://pypi.org/project/wmi)|0.002| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.002| -|pypi|[enum34](https://pypi.org/project/enum34)|0.002| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.002| -|pypi|[pretend](https://pypi.org/project/pretend)|0.002| -|pypi|[flaky](https://pypi.org/project/flaky)|0.002| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.002| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[incremental](https://github.com/twisted/incremental)|0.002| -|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[deprecated](https://pypi.org/project/deprecated)|0.002| -|pypi|[httpbin](https://pypi.org/project/httpbin)|0.002| -|pypi|[pyflakes](https://pypi.org/project/pyflakes)|0.002| -|pypi|[pep8](https://pypi.org/project/pep8)|0.002| -|pypi|[Twisted](https://pypi.org/project/Twisted)|0.002| -|pypi|[service-identity](https://service-identity.readthedocs.io/)|0.002| -|pypi|[zstandard](https://pypi.org/project/zstandard)|0.001| -|pypi|[dnspython](https://pypi.org/project/dnspython)|0.001| -|pypi|[python-snappy](https://pypi.org/project/python-snappy)|0.001| -|pypi|[pykerberos](https://pypi.org/project/pykerberos)|0.001| -|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|0.001| -|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|0.001| -|pypi|[pyasn1-modules](https://github.com/etingof/pyasn1-modules)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[cogapp](https://pypi.org/project/cogapp)|0.001| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.001| -|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|0.001| -|pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|0.001| -|pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|0.001| -|pypi|[numpy](https://pypi.org/project/numpy)|0.001| -|pypi|[tox](https://pypi.org/project/tox)|0.001| -|pypi|[pytest-isort](https://pypi.org/project/pytest-isort)|0.001| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.001| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.001| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.001| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.001| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|0.001| -|pypi|[uri-template](https://pypi.org/project/uri-template)|0.001| -|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|0.001| -|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|0.001| -|pypi|[isoduration](https://pypi.org/project/isoduration)|0.001| -|pypi|[fqdn](https://pypi.org/project/fqdn)|0.001| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| -|pypi|[pyrsistent](https://pypi.org/project/pyrsistent)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/MD-Studio/MDStudio/badge.png b/_repos/github/MD-Studio/MDStudio/badge.png index 532e0c8b..33fce0fe 100644 Binary files a/_repos/github/MD-Studio/MDStudio/badge.png and b/_repos/github/MD-Studio/MDStudio/badge.png differ diff --git a/_repos/github/MD-Studio/MDStudio/data.json b/_repos/github/MD-Studio/MDStudio/data.json index 371e916d..beeeaf63 100644 --- a/_repos/github/MD-Studio/MDStudio/data.json +++ b/_repos/github/MD-Studio/MDStudio/data.json @@ -6,545 +6,285 @@ } }, "pypi": { + "crossbar": { + "credit": 0.014142857142857143, + "url": "http://crossbar.io/" + }, "argh": { - "credit": 0.014347826086956521, - "url": "http://github.com/neithere/argh/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/argh" }, "argon2-cffi": { - "credit": 0.002510869565217392, - "url": "https://argon2-cffi.readthedocs.io/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/argon2-cffi" }, "asn1crypto": { - "credit": 0.014347826086956521, - "url": "https://github.com/wbond/asn1crypto" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/asn1crypto" }, "asq": { - "credit": 0.014347826086956521, - "url": "https://github.com/sixty-north/asq" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/asq" }, "attrs": { - "credit": 0.003920031055900622, - "url": "https://www.attrs.org/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/attrs" }, "autobahn": { - "credit": 0.014347826086956521, - "url": "http://crossbar.io/autobahn" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/autobahn" }, "automat": { - "credit": 0.014347826086956521, - "url": "https://github.com/glyph/Automat" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/automat" }, "bitstring": { - "credit": 0.014347826086956521, - "url": "https://github.com/scott-griffiths/bitstring" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/bitstring" }, "cbor": { - "credit": 0.014347826086956521, - "url": "https://bitbucket.org/bodhisnarkva/cbor" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/cbor" }, "certifi": { - "credit": 0.017797453416149068, - "url": "https://certifiio.readthedocs.io/en/latest/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/certifi" }, "cffi": { - "credit": 0.0001434782608695645, - "url": "http://cffi.readthedocs.org" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/cffi" }, "chardet": { - "credit": 0.016377018633540373, - "url": "https://github.com/chardet/chardet" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/chardet" }, "click": { - "credit": 0.007245652173913043, - "url": "https://palletsprojects.com/p/click/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/click" }, "constantly": { - "credit": 0.014347826086956521, - "url": "https://github.com/twisted/constantly" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/constantly" }, "cryptography": { - "credit": 0.02835489130434782, - "url": "https://github.com/pyca/cryptography" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/cryptography" }, "dictdiffer": { - "credit": 0.00014347826086956623, - "url": "https://github.com/inveniosoftware/dictdiffer" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/dictdiffer" }, "h2": { - "credit": 0.014347826086956521, - "url": "https://github.com/python-hyper/h2" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/h2" }, "hiredis": { - "credit": 0.023028260869565217, - "url": "https://github.com/redis/hiredis-py" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/hiredis" }, "hpack": { - "credit": 0.014347826086956521, - "url": "https://github.com/python-hyper/hpack" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/hpack" }, "hyperframe": { - "credit": 0.014347826086956521, - "url": "https://github.com/python-hyper/hyperframe/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/hyperframe" }, "hyperlink": { - "credit": 0.01592608695652174, - "url": "https://github.com/python-hyper/hyperlink" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/hyperlink" }, "idna": { - "credit": 0.01857531055900621, - "url": "https://github.com/kjd/idna" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/idna" }, "incremental": { - "credit": 0.0017217391304347818, - "url": "https://github.com/twisted/incremental" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/incremental" }, "jinja2": { - "credit": 0.0001434782608695645, - "url": "https://palletsprojects.com/p/jinja/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/jinja2" }, "jsonschema": { - "credit": 0.00014347826086956277, - "url": "https://github.com/Julian/jsonschema" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/jsonschema" }, "lmdb": { - "credit": 0.014347826086956521, - "url": "http://github.com/jnwatson/py-lmdb/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/lmdb" }, "markupsafe": { - "credit": 0.014347826086956521, - "url": "https://palletsprojects.com/p/markupsafe/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/markupsafe" }, "mistune": { - "credit": 0.014347826086956521, - "url": "https://github.com/lepture/mistune" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/mistune" }, "netaddr": { - "credit": 0.014347826086956521, - "url": "https://github.com/drkjam/netaddr/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/netaddr" }, "node-semver": { - "credit": 0.014347826086956521, - "url": "https://github.com/podhmo/python-semver" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/node-semver" }, "oauthlib": { - "credit": 0.00014347826086956623, - "url": "https://github.com/oauthlib/oauthlib" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/oauthlib" }, "passlib": { - "credit": 0.00014347826086956623, - "url": "https://passlib.readthedocs.io" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/passlib" }, "pathtools": { - "credit": 0.014347826086956521, - "url": "http://github.com/gorakhargosh/pathtools" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pathtools" }, "priority": { - "credit": 0.014347826086956521, - "url": "https://github.com/python-hyper/priority/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/priority" }, "psutil": { - "credit": 0.00014347826086956623, - "url": "https://github.com/giampaolo/psutil" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/psutil" }, "py-ubjson": { - "credit": 0.014347826086956521, - "url": "https://github.com/Iotic-Labs/py-ubjson" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/py-ubjson" }, "pyasn1-modules": { - "credit": 0.0013271739130434775, - "url": "https://github.com/etingof/pyasn1-modules" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pyasn1-modules" }, "pyasn1": { - "credit": 0.029735869565217392, - "url": "https://github.com/etingof/pyasn1" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pyasn1" }, "pycparser": { - "credit": 0.028552173913043478, - "url": "https://github.com/eliben/pycparser" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pycparser" }, "pygments": { - "credit": 0.014347826086956521, - "url": "https://pygments.org/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pygments" }, "pyjwt": { - "credit": 0.004878260869565216, - "url": "https://github.com/jpadilla/pyjwt" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pyjwt" }, "pymongo": { - "credit": 0.0001434782608695645, - "url": "http://github.com/mongodb/mongo-python-driver" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pymongo" }, "pynacl": { - "credit": 0.014347826086956521, - "url": "https://github.com/pyca/pynacl/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pynacl" }, "pyopenssl": { - "credit": 0.003142173913043479, - "url": "https://pyopenssl.org/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pyopenssl" }, "pyqrcode": { - "credit": 0.014347826086956521, - "url": "https://github.com/mnooner256/pyqrcode" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pyqrcode" }, "python-dateutil": { - "credit": 0.014347826086956521, - "url": "https://github.com/dateutil/dateutil" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/python-dateutil" }, "pytrie": { - "credit": 0.014347826086956521, - "url": "https://github.com/gsakkis/pytrie/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pytrie" }, "pytz": { - "credit": 0.014347826086956521, - "url": "http://pythonhosted.org/pytz" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pytz" }, "pyyaml": { - "credit": 0.014347826086956521, - "url": "https://pyyaml.org/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/pyyaml" }, "redis-py-cluster": { - "credit": 0.0001434782608695645, - "url": "http://github.com/grokzen/redis-py-cluster" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/redis-py-cluster" }, "redis": { - "credit": 0.0072456521739130446, - "url": "https://github.com/redis/redis-py" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/redis" }, "requests": { - "credit": 0.004720434782608693, - "url": "https://requests.readthedocs.io" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/requests" }, "rfc3987": { - "credit": 0.015362422360248446, - "url": "http://pypi.python.org/pypi/rfc3987" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/rfc3987" }, "sdnotify": { - "credit": 0.014347826086956521, - "url": "https://github.com/bb4242/sdnotify" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/sdnotify" }, "service-identity": { - "credit": 0.001563913043478262, - "url": "https://service-identity.readthedocs.io/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/service-identity" }, "setproctitle": { - "credit": 0.0001434782608695645, - "url": "https://github.com/dvarrazzo/py-setproctitle" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/setproctitle" }, "six": { - "credit": 0.016624163879598662, - "url": "https://github.com/benjaminp/six" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/six" }, "sortedcontainers": { - "credit": 0.014347826086956521, - "url": "http://www.grantjenks.com/docs/sortedcontainers/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/sortedcontainers" }, "strict-rfc3339": { - "credit": 0.014347826086956521, - "url": "http://www.danielrichman.co.uk/libraries/strict-rfc3339.html" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/strict-rfc3339" }, "treq": { - "credit": 0.00014347826086956623, - "url": "https://github.com/twisted/treq" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/treq" }, "twisted": { - "credit": 0.02145, - "url": "https://twistedmatrix.com/" + "credit": 0.014142857142857143, + "url": "https://pypi.org/project/twisted" }, "txaio": { - "credit": 0.014347826086956521, + "credit": 0.014142857142857143, "url": "https://pypi.org/project/txaio" }, "txtorcon": { - "credit": 0.014347826086956521, + "credit": 0.014142857142857143, "url": "https://pypi.org/project/txtorcon" }, "typing": { - "credit": 0.014347826086956521, + "credit": 0.014142857142857143, "url": "https://pypi.org/project/typing" }, "u-msgpack-python": { - "credit": 0.014347826086956521, + "credit": 0.014142857142857143, "url": "https://pypi.org/project/u-msgpack-python" }, "urllib3": { - "credit": 0.016377018633540373, + "credit": 0.014142857142857143, "url": "https://pypi.org/project/urllib3" }, "watchdog": { - "credit": 0.014347826086956521, + "credit": 0.014142857142857143, "url": "https://pypi.org/project/watchdog" }, "webcolors": { - "credit": 0.015362422360248446, + "credit": 0.014142857142857143, "url": "https://pypi.org/project/webcolors" }, "zope.interface": { - "credit": 0.017216011705685617, + "credit": 0.014142857142857143, "url": "https://pypi.org/project/zope.interface" - }, - "furo": { - "credit": 0.0034600334448160533, - "url": "https://pypi.org/project/furo" - }, - "sphinx-notfound-page": { - "credit": 0.00227633779264214, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "sphinx": { - "credit": 0.012732316053511706, - "url": "https://pypi.org/project/sphinx" - }, - "pytest": { - "credit": 0.02299101170568562, - "url": "https://pypi.org/project/pytest" - }, - "hypothesis": { - "credit": 0.00227633779264214, - "url": "https://pypi.org/project/hypothesis" - }, - "coverage": { - "credit": 0.005235576923076923, - "url": "https://pypi.org/project/coverage" - }, - "tomli": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/tomli" - }, - "cogapp": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/cogapp" - }, - "pre-commit": { - "credit": 0.0040518812709030095, - "url": "https://pypi.org/project/pre-commit" - }, - "typing-extensions": { - "credit": 0.0037765527950310556, - "url": "https://pypi.org/project/typing-extensions" - }, - "dataclasses": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/dataclasses" - }, - "argon2-cffi-bindings": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/argon2-cffi-bindings" - }, - "cloudpickle": { - "credit": 0.0010926421404682273, - "url": "https://pypi.org/project/cloudpickle" - }, - "pytest-mypy-plugins": { - "credit": 0.0010926421404682273, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "mypy": { - "credit": 0.002868185618729097, - "url": "https://pypi.org/project/mypy" - }, - "pympler": { - "credit": 0.0010926421404682273, - "url": "https://pypi.org/project/pympler" - }, - "importlib-metadata": { - "credit": 0.00969503105590062, - "url": "https://pypi.org/project/importlib-metadata" - }, - "colorama": { - "credit": 0.007102173913043478, - "url": "https://pypi.org/project/colorama" - }, - "pytest-pydocstyle": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/pytest-pydocstyle" - }, - "pytest-pycodestyle": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/pytest-pycodestyle" - }, - "numpy": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/numpy" - }, - "tox": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/tox" - }, - "pytest-isort": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/pytest-isort" - }, - "pytest-cov": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/pytest-cov" - }, - "mock": { - "credit": 0.0035510869565217387, - "url": "https://pypi.org/project/mock" - }, - "check-manifest": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/check-manifest" - }, - "sphinx-rtd-theme": { - "credit": 0.005326630434782608, - "url": "https://pypi.org/project/sphinx-rtd-theme" - }, - "Sphinx": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/Sphinx" - }, - "Babel": { - "credit": 0.007102173913043478, - "url": "https://pypi.org/project/Babel" - }, - "MarkupSafe": { - "credit": 0.007102173913043478, - "url": "https://pypi.org/project/MarkupSafe" - }, - "rfc3986-validator": { - "credit": 0.0010145962732919255, - "url": "https://pypi.org/project/rfc3986-validator" - }, - "uri-template": { - "credit": 0.0010145962732919255, - "url": "https://pypi.org/project/uri-template" - }, - "rfc3339-validator": { - "credit": 0.0010145962732919255, - "url": "https://pypi.org/project/rfc3339-validator" - }, - "jsonpointer": { - "credit": 0.0010145962732919255, - "url": "https://pypi.org/project/jsonpointer" - }, - "isoduration": { - "credit": 0.0010145962732919255, - "url": "https://pypi.org/project/isoduration" - }, - "fqdn": { - "credit": 0.0010145962732919255, - "url": "https://pypi.org/project/fqdn" - }, - "importlib-resources": { - "credit": 0.0010145962732919255, - "url": "https://pypi.org/project/importlib-resources" - }, - "pyrsistent": { - "credit": 0.0010145962732919255, - "url": "https://pypi.org/project/pyrsistent" - }, - "blinker": { - "credit": 0.004734782608695652, - "url": "https://pypi.org/project/blinker" - }, - "cloud-sptheme": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/cloud-sptheme" - }, - "sphinxcontrib-fulltoc": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/sphinxcontrib-fulltoc" - }, - "bcrypt": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/bcrypt" - }, - "wmi": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/wmi" - }, - "pywin32": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/pywin32" - }, - "enum34": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/enum34" - }, - "unittest2": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/unittest2" - }, - "ipaddress": { - "credit": 0.0035510869565217387, - "url": "https://pypi.org/project/ipaddress" - }, - "zstandard": { - "credit": 0.0014204347826086957, - "url": "https://pypi.org/project/zstandard" - }, - "dnspython": { - "credit": 0.0014204347826086957, - "url": "https://pypi.org/project/dnspython" - }, - "python-snappy": { - "credit": 0.0014204347826086957, - "url": "https://pypi.org/project/python-snappy" - }, - "pykerberos": { - "credit": 0.0014204347826086957, - "url": "https://pypi.org/project/pykerberos" - }, - "pymongocrypt": { - "credit": 0.0014204347826086957, - "url": "https://pypi.org/project/pymongocrypt" - }, - "pymongo-auth-aws": { - "credit": 0.0014204347826086957, - "url": "https://pypi.org/project/pymongo-auth-aws" - }, - "pretend": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/pretend" - }, - "flaky": { - "credit": 0.002367391304347826, - "url": "https://pypi.org/project/flaky" - }, - "async-timeout": { - "credit": 0.0015782608695652173, - "url": "https://pypi.org/project/async-timeout" - }, - "packaging": { - "credit": 0.0015782608695652173, - "url": "https://pypi.org/project/packaging" - }, - "deprecated": { - "credit": 0.0015782608695652173, - "url": "https://pypi.org/project/deprecated" - }, - "win-inet-pton": { - "credit": 0.002029192546583851, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.002029192546583851, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.002029192546583851, - "url": "https://pypi.org/project/charset-normalizer" - }, - "pyOpenSSL": { - "credit": 0.001183695652173913, - "url": "https://pypi.org/project/pyOpenSSL" - }, - "httpbin": { - "credit": 0.0015782608695652173, - "url": "https://pypi.org/project/httpbin" - }, - "pyflakes": { - "credit": 0.0015782608695652173, - "url": "https://pypi.org/project/pyflakes" - }, - "pep8": { - "credit": 0.0015782608695652173, - "url": "https://pypi.org/project/pep8" - }, - "Twisted": { - "credit": 0.0015782608695652173, - "url": "https://pypi.org/project/Twisted" } } } \ No newline at end of file diff --git a/_repos/github/MD-Studio/cerulean/README.md b/_repos/github/MD-Studio/cerulean/README.md index 3d141c81..e26ba5c3 100644 --- a/_repos/github/MD-Studio/cerulean/README.md +++ b/_repos/github/MD-Studio/cerulean/README.md @@ -8,57 +8,56 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[defusedxml](https://github.com/tiran/defusedxml)|0.124| -|pypi|[typing](https://docs.python.org/3/library/typing.html)|0.124| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.124| -|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.124| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.051| -|pypi|[docutils](https://pypi.org/project/docutils)|0.046| -|pypi|[commonmark](https://pypi.org/project/commonmark)|0.041| -|pypi|[pytest](https://pypi.org/project/pytest)|0.019| -|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.015| -|pypi|[invoke](http://docs.pyinvoke.org)|0.015| -|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.015| -|pypi|[six](https://github.com/benjaminp/six)|0.015| -|pypi|[pynacl](https://github.com/pyca/pynacl/)|0.015| -|pypi|[cryptography](https://github.com/pyca/cryptography)|0.015| -|pypi|[bcrypt](https://github.com/pyca/bcrypt/)|0.015| -|pypi|[decorator](https://pypi.org/project/decorator)|0.015| +|pypi|[defusedxml](https://github.com/tiran/defusedxml)|0.141| +|pypi|[typing](https://docs.python.org/3/library/typing.html)|0.141| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.141| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.059| +|pypi|[docutils](https://pypi.org/project/docutils)|0.052| +|pypi|[commonmark](https://pypi.org/project/commonmark)|0.047| +|pypi|[pytest](https://pypi.org/project/pytest)|0.021| +|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.018| +|pypi|[invoke](http://docs.pyinvoke.org)|0.018| +|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.018| +|pypi|[six](https://github.com/benjaminp/six)|0.018| +|pypi|[pynacl](https://github.com/pyca/pynacl/)|0.018| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.018| +|pypi|[bcrypt](https://github.com/pyca/bcrypt/)|0.018| +|pypi|[decorator](https://pypi.org/project/decorator)|0.017| +|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.011| +|pypi|[types-setuptools](https://github.com/python/typeshed)|0.011| +|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.011| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.011| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.011| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.011| +|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.011| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.011| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.011| |setup.py|github/MD-Studio/cerulean|0.01| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.009| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.009| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.009| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.009| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.009| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.009| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.009| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.009| -|pypi|[mypy](https://pypi.org/project/mypy)|0.007| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.005| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.005| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.005| -|pypi|[isort](https://pypi.org/project/isort)|0.005| -|pypi|[flake8](https://pypi.org/project/flake8)|0.005| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.005| -|pypi|[colorama](https://pypi.org/project/colorama)|0.005| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.005| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.005| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.005| -|pypi|[babel](https://pypi.org/project/babel)|0.005| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.005| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.005| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.005| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.005| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.005| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.005| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.005| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.005| -|pypi|[filelock](https://pypi.org/project/filelock)|0.002| -|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[mypy](https://pypi.org/project/mypy)|0.008| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.006| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.006| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.006| +|pypi|[isort](https://pypi.org/project/isort)|0.006| +|pypi|[flake8](https://pypi.org/project/flake8)|0.006| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.006| +|pypi|[colorama](https://pypi.org/project/colorama)|0.006| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[requests](https://pypi.org/project/requests)|0.006| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.006| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.006| +|pypi|[babel](https://pypi.org/project/babel)|0.006| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.006| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.006| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.006| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.006| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.006| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.006| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.006| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.006| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.006| +|pypi|[filelock](https://pypi.org/project/filelock)|0.003| +|pypi|[attrs](https://pypi.org/project/attrs)|0.003| |pypi|[mock](https://pypi.org/project/mock)|0.002| |pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| |pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.002| diff --git a/_repos/github/MD-Studio/cerulean/badge.png b/_repos/github/MD-Studio/cerulean/badge.png index 2c6e321f..bce3bb62 100644 Binary files a/_repos/github/MD-Studio/cerulean/badge.png and b/_repos/github/MD-Studio/cerulean/badge.png differ diff --git a/_repos/github/MD-Studio/cerulean/data.json b/_repos/github/MD-Studio/cerulean/data.json index 701687fe..fa254435 100644 --- a/_repos/github/MD-Studio/cerulean/data.json +++ b/_repos/github/MD-Studio/cerulean/data.json @@ -7,243 +7,239 @@ }, "pypi": { "defusedxml": { - "credit": 0.12375, + "credit": 0.14142857142857143, "url": "https://github.com/tiran/defusedxml" }, "paramiko": { - "credit": 0.0012375000000000025, + "credit": 0.001414285714285729, "url": "https://paramiko.org" }, "typing": { - "credit": 0.12375, + "credit": 0.14142857142857143, "url": "https://docs.python.org/3/library/typing.html" }, - "typing-extensions": { - "credit": 0.12375, - "url": "https://typing.readthedocs.io/" - }, "pytest-runner": { - "credit": 0.0012375000000000025, + "credit": 0.001414285714285729, "url": "https://github.com/pytest-dev/pytest-runner/" }, "sphinx": { - "credit": 0.05149903846153848, + "credit": 0.05885604395604396, "url": "https://www.sphinx-doc.org/" }, "sphinx-rtd-theme": { - "credit": 0.12375, + "credit": 0.14142857142857143, "url": "https://github.com/readthedocs/sphinx_rtd_theme" }, "recommonmark": { - "credit": 0.0012375000000000025, + "credit": 0.001414285714285729, "url": "https://github.com/rtfd/recommonmark" }, "pywin32": { - "credit": 0.0153140625, + "credit": 0.017501785714285713, "url": "https://github.com/mhammond/pywin32" }, "gssapi": { - "credit": 0.00015314062500000093, + "credit": 0.00017501785714285623, "url": "https://github.com/pythongssapi/python-gssapi" }, "invoke": { - "credit": 0.0153140625, + "credit": 0.017501785714285713, "url": "http://docs.pyinvoke.org" }, "pyasn1": { - "credit": 0.0153140625, + "credit": 0.017501785714285713, "url": "https://github.com/etingof/pyasn1" }, "six": { - "credit": 0.0153140625, + "credit": 0.017501785714285713, "url": "https://github.com/benjaminp/six" }, "pynacl": { - "credit": 0.0153140625, + "credit": 0.017501785714285713, "url": "https://github.com/pyca/pynacl/" }, "cryptography": { - "credit": 0.0153140625, + "credit": 0.017501785714285713, "url": "https://github.com/pyca/cryptography" }, "bcrypt": { - "credit": 0.0153140625, + "credit": 0.017501785714285713, "url": "https://github.com/pyca/bcrypt/" }, "pytest-mypy": { - "credit": 9.424038461538532e-05, + "credit": 0.00010770329670329627, "url": "https://github.com/dbader/pytest-mypy" }, "pytest-black": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://github.com/shopkeep/pytest-black" }, "types-setuptools": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://github.com/python/typeshed" }, "pytest-virtualenv": { - "credit": 9.424038461538532e-05, + "credit": 0.00010770329670329801, "url": "https://github.com/manahl/pytest-plugins" }, "pytest-enabler": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://github.com/jaraco/pytest-enabler" }, "pytest-cov": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://pypi.org/project/pytest-cov" }, "pytest-flake8": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://pypi.org/project/pytest-checkdocs" }, "pytest": { - "credit": 0.018522947596153846, + "credit": 0.021169082967032963, "url": "https://pypi.org/project/pytest" }, "jaraco.tidelift": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://pypi.org/project/jaraco.tidelift" }, "rst.linker": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.009424038461538461, + "credit": 0.010770329670329669, "url": "https://pypi.org/project/jaraco.packaging" }, "types-requests": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/types-requests" }, "types-typed-ast": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/types-typed-ast" }, "docutils-stubs": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/docutils-stubs" }, "mypy": { - "credit": 0.007232949519230768, + "credit": 0.00826622802197802, "url": "https://pypi.org/project/mypy" }, "isort": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/isort" }, "flake8": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/flake8" }, "sphinxcontrib-websupport": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/sphinxcontrib-websupport" }, "colorama": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/colorama" }, "importlib-metadata": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/importlib-metadata" }, "packaging": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/packaging" }, "requests": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/requests" }, "imagesize": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/imagesize" }, "alabaster": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/alabaster" }, "babel": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/babel" }, "snowballstemmer": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/snowballstemmer" }, "docutils": { - "credit": 0.045738, + "credit": 0.05227199999999999, "url": "https://pypi.org/project/docutils" }, "Pygments": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/Pygments" }, "Jinja2": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/Jinja2" }, "sphinxcontrib-qthelp": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/sphinxcontrib-qthelp" }, "sphinxcontrib-serializinghtml": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" }, "sphinxcontrib-htmlhelp": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" }, "sphinxcontrib-jsmath": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/sphinxcontrib-jsmath" }, "sphinxcontrib-devhelp": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/sphinxcontrib-devhelp" }, "sphinxcontrib-applehelp": { - "credit": 0.0049004999999999995, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/sphinxcontrib-applehelp" }, "commonmark": { - "credit": 0.0408375, + "credit": 0.046671428571428565, "url": "https://pypi.org/project/commonmark" }, "decorator": { - "credit": 0.015160921874999999, + "credit": 0.017326767857142857, "url": "https://pypi.org/project/decorator" }, "filelock": { - "credit": 0.002332449519230769, + "credit": 0.002665656593406593, "url": "https://pypi.org/project/filelock" }, "attrs": { - "credit": 0.002332449519230769, + "credit": 0.002665656593406593, "url": "https://pypi.org/project/attrs" }, "mock": { - "credit": 0.0018659596153846152, + "credit": 0.0021325252747252743, "url": "https://pypi.org/project/mock" }, "virtualenv": { - "credit": 0.0018659596153846152, + "credit": 0.0021325252747252743, "url": "https://pypi.org/project/virtualenv" }, "pytest-shutil": { - "credit": 0.0018659596153846152, + "credit": 0.0021325252747252743, "url": "https://pypi.org/project/pytest-shutil" }, "pytest-fixture-config": { - "credit": 0.0018659596153846152, + "credit": 0.0021325252747252743, "url": "https://pypi.org/project/pytest-fixture-config" } } diff --git a/_repos/github/MDAnalysis/mdanalysis/README.md b/_repos/github/MDAnalysis/mdanalysis/README.md index afa57dbd..e922d0f9 100644 --- a/_repos/github/MDAnalysis/mdanalysis/README.md +++ b/_repos/github/MDAnalysis/mdanalysis/README.md @@ -8,49 +8,68 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.25| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.151| -|pypi|[matplotlib](https://matplotlib.org)|0.08| +|pypi|[numpy](https://www.numpy.org)|0.211| +|pypi|[msgpack](https://msgpack.org/)|0.101| +|pypi|[matplotlib](https://matplotlib.org)|0.086| +|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.076| |pypi|[biopython](https://biopython.org/)|0.076| -|pypi|[joblib](https://joblib.readthedocs.io)|0.076| -|pypi|[threadpoolctl](https://github.com/joblib/threadpoolctl)|0.076| -|pypi|[coverage](https://pypi.org/project/coverage)|0.027| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.025| -|pypi|[msgpack](https://pypi.org/project/msgpack)|0.025| -|pypi|[scipy](https://www.scipy.org)|0.023| -|pypi|[mrcfile](https://pypi.org/project/mrcfile)|0.019| -|pypi|[six](https://pypi.org/project/six)|0.019| -|pypi|[requests](https://pypi.org/project/requests)|0.011| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.076| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.075| +|pypi|[tomli](https://pypi.org/project/tomli)|0.03| +|pypi|[six](https://github.com/benjaminp/six)|0.019| +|pypi|[pytest](https://pypi.org/project/pytest)|0.013| |setup.py|github/MDAnalysis/mdanalysis|0.01| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.009| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.009| -|pypi|[wheel](https://pypi.org/project/wheel)|0.009| -|pypi|[twine](https://pypi.org/project/twine)|0.009| -|pypi|[py-make](https://pypi.org/project/py-make)|0.009| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.004| -|pypi|[pytest](https://pypi.org/project/pytest)|0.004| +|pypi|[scipy](https://www.scipy.org)|0.01| +|pypi|[lxml](https://pypi.org/project/lxml)|0.009| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.008| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[mock](https://pypi.org/project/mock)|0.005| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.005| +|pypi|[build](https://pypi.org/project/build)|0.005| +|pypi|[check-manifest](https://github.com/mgedmin/check-manifest)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[packaging](https://pypi.org/project/packaging)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[pillow](https://python-pillow.org)|0.004| |pypi|[pydot](https://pypi.org/project/pydot)|0.004| |pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.004| |pypi|[texext](https://pypi.org/project/texext)|0.004| |pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.004| -|pypi|[pillow](https://pypi.org/project/pillow)|0.004| |pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| |pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| |pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| |pypi|[mypy](https://pypi.org/project/mypy)|0.004| |pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| |pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.004| |pypi|[black](https://pypi.org/project/black)|0.004| |pypi|[pandas](https://pypi.org/project/pandas)|0.004| -|pypi|[packaging](https://github.com/pypa/packaging)|0.002| -|pypi|[networkx](https://networkx.org/)|0.001| +|pypi|[requests](https://pypi.org/project/requests)|0.002| +|pypi|[mrcfile](https://github.com/ccpem/mrcfile)|0.001| |pypi|[GridDataFormats](https://github.com/MDAnalysis/GridDataFormats)|0.001| +|pypi|[gsd](https://gsd.readthedocs.io)|0.001| |pypi|[mmtf-python](https://github.com/rcsb/mmtf-python.git)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| +|pypi|[networkx](https://networkx.org/)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/MDAnalysis/mdanalysis/badge.png b/_repos/github/MDAnalysis/mdanalysis/badge.png index d4b6be87..1ef63309 100644 Binary files a/_repos/github/MDAnalysis/mdanalysis/badge.png and b/_repos/github/MDAnalysis/mdanalysis/badge.png differ diff --git a/_repos/github/MDAnalysis/mdanalysis/data.json b/_repos/github/MDAnalysis/mdanalysis/data.json index f3e46670..5cecd7bb 100644 --- a/_repos/github/MDAnalysis/mdanalysis/data.json +++ b/_repos/github/MDAnalysis/mdanalysis/data.json @@ -6,60 +6,88 @@ } }, "pypi": { - "numpy": { - "credit": 0.2501381868131868, - "url": "https://www.numpy.org" + "MDAnalysis": { + "credit": 0.07615384615384616, + "url": "https://www.mdanalysis.org" }, "biopython": { "credit": 0.07615384615384616, "url": "https://biopython.org/" }, - "networkx": { - "credit": 0.0007615384615384663, - "url": "https://networkx.org/" - }, "GridDataFormats": { "credit": 0.0007615384615384663, "url": "https://github.com/MDAnalysis/GridDataFormats" }, + "gsd": { + "credit": 0.0007615384615384663, + "url": "https://gsd.readthedocs.io" + }, + "matplotlib": { + "credit": 0.08554336432797972, + "url": "https://matplotlib.org" + }, "mmtf-python": { "credit": 0.0007615384615384663, "url": "https://github.com/rcsb/mmtf-python.git" }, - "joblib": { + "networkx": { + "credit": 0.0007615384615384663, + "url": "https://networkx.org/" + }, + "cycler": { "credit": 0.07615384615384616, - "url": "https://joblib.readthedocs.io" + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0007615384615384663, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0007615384615384663, + "url": "https://github.com/nucleic/kiwi" + }, + "msgpack": { + "credit": 0.10128461538461539, + "url": "https://msgpack.org/" + }, + "pillow": { + "credit": 0.004351648351648356, + "url": "https://python-pillow.org" + }, + "mrcfile": { + "credit": 0.0009500192307692369, + "url": "https://github.com/ccpem/mrcfile" }, "scipy": { - "credit": 0.023199725274725278, + "credit": 0.009577998943364328, "url": "https://www.scipy.org" }, - "matplotlib": { - "credit": 0.07974395604395605, - "url": "https://matplotlib.org" + "six": { + "credit": 0.018848076923076922, + "url": "https://github.com/benjaminp/six" }, - "tqdm": { - "credit": 0.0007615384615384663, - "url": "https://tqdm.github.io" + "numpy": { + "credit": 0.21054199450549452, + "url": "https://www.numpy.org" }, - "threadpoolctl": { - "credit": 0.07615384615384616, - "url": "https://github.com/joblib/threadpoolctl" + "coverage": { + "credit": 0.006740431318681319, + "url": "https://github.com/nedbat/coveragepy" }, - "packaging": { - "credit": 0.0015230769230769325, - "url": "https://github.com/pypa/packaging" + "check-manifest": { + "credit": 0.004963326923076924, + "url": "https://github.com/mgedmin/check-manifest" }, "codecov": { "credit": 3.590109890109876e-05, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.00359010989010989, + "credit": 0.008302129120879121, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.00359010989010989, + "credit": 0.01327802142857143, "url": "https://pypi.org/project/pytest" }, "pydot": { @@ -71,7 +99,7 @@ "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.00359010989010989, + "credit": 0.009389518174133558, "url": "https://pypi.org/project/lxml" }, "texext": { @@ -82,10 +110,6 @@ "credit": 0.00359010989010989, "url": "https://pypi.org/project/nb2plots" }, - "pillow": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pillow" - }, "numpydoc": { "credit": 0.00359010989010989, "url": "https://pypi.org/project/numpydoc" @@ -99,7 +123,7 @@ "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.00359010989010989, + "credit": 0.008302129120879121, "url": "https://pypi.org/project/sphinx" }, "mypy": { @@ -122,61 +146,113 @@ "credit": 0.00359010989010989, "url": "https://pypi.org/project/pandas" }, - "mrcfile": { - "credit": 0.018848076923076922, - "url": "https://pypi.org/project/mrcfile" + "xattr": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/xattr" }, - "six": { - "credit": 0.018848076923076922, - "url": "https://pypi.org/project/six" + "unicodedata2": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/unicodedata2" }, - "coverage": { - "credit": 0.026907873626373625, - "url": "https://pypi.org/project/coverage" + "munkres": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/munkres" }, - "check-manifest": { - "credit": 0.02513076923076923, - "url": "https://pypi.org/project/check-manifest" + "brotli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotli" }, - "msgpack": { - "credit": 0.02513076923076923, - "url": "https://pypi.org/project/msgpack" + "brotlicffi": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotlicffi" }, - "requests": { - "credit": 0.011201142857142857, - "url": "https://pypi.org/project/requests" + "skia-pathops": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/zopfli" + }, + "fs": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/fs" }, - "slack-sdk": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/slack-sdk" + "typing-extensions": { + "credit": 0.07539230769230769, + "url": "https://pypi.org/project/typing-extensions" + }, + "pytest-timeout": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/packaging" }, - "ipywidgets": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/ipywidgets" + "markdown2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/markdown2" }, - "wheel": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/wheel" + "defusedxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/defusedxml" }, - "twine": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/twine" + "sphinxext-opengraph": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "py-make": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/py-make" + "sphinx-rtd-theme": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "importlib-resources": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/importlib-resources" + "sphinx-removed-in": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "colorama": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/colorama" + "sphinx-issues": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-issues" }, - "pyparsing": { - "credit": 0.15078461538461538, - "url": "https://pypi.org/project/pyparsing" + "sphinx-copybutton": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/olefile" + }, + "tomli": { + "credit": 0.029855353846153846, + "url": "https://pypi.org/project/tomli" + }, + "mock": { + "credit": 0.004975892307692307, + "url": "https://pypi.org/project/mock" + }, + "setuptools": { + "credit": 0.004975892307692307, + "url": "https://pypi.org/project/setuptools" + }, + "build": { + "credit": 0.004975892307692307, + "url": "https://pypi.org/project/build" + }, + "requests": { + "credit": 0.0017771043956043956, + "url": "https://pypi.org/project/requests" } } } \ No newline at end of file diff --git a/_repos/github/MRChemSoft/mrchem/badge.png b/_repos/github/MRChemSoft/mrchem/badge.png index b4c5703e..fe9bf035 100644 Binary files a/_repos/github/MRChemSoft/mrchem/badge.png and b/_repos/github/MRChemSoft/mrchem/badge.png differ diff --git a/_repos/github/Magritte-code/Magritte/badge.png b/_repos/github/Magritte-code/Magritte/badge.png index 9643a787..691c854e 100644 Binary files a/_repos/github/Magritte-code/Magritte/badge.png and b/_repos/github/Magritte-code/Magritte/badge.png differ diff --git a/_repos/github/Materials-Consortia/optimade-python-tools/README.md b/_repos/github/Materials-Consortia/optimade-python-tools/README.md index 40ebad65..2b714741 100644 --- a/_repos/github/Materials-Consortia/optimade-python-tools/README.md +++ b/_repos/github/Materials-Consortia/optimade-python-tools/README.md @@ -8,55 +8,76 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.206| -|pypi|[lark-parser](https://github.com/lark-parser/lark)|0.165| -|pypi|[idna](https://pypi.org/project/idna)|0.105| -|pypi|[dnspython](https://pypi.org/project/dnspython)|0.082| -|pypi|[email-validator](https://pypi.org/project/email-validator)|0.041| -|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.041| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.041| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.023| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.023| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.023| -|pypi|[chardet](https://pypi.org/project/chardet)|0.023| -|pypi|[certifi](https://pypi.org/project/certifi)|0.023| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.023| +|pypi|[lark-parser](https://github.com/lark-parser/lark)|0.146| +|pypi|[idna](https://pypi.org/project/idna)|0.084| +|pypi|[dnspython](https://pypi.org/project/dnspython)|0.071| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.057| +|pypi|[requests](https://pypi.org/project/requests)|0.04| +|pypi|[email-validator](https://pypi.org/project/email-validator)|0.04| +|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.035| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.035| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.026| +|pypi|[anyio](https://pypi.org/project/anyio)|0.022| +|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.022| +|pypi|[python-multipart](https://pypi.org/project/python-multipart)|0.022| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.022| +|pypi|[httpx](https://pypi.org/project/httpx)|0.018| +|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.018| +|pypi|[wmi](https://pypi.org/project/wmi)|0.014| +|pypi|[trio](https://pypi.org/project/trio)|0.014| +|pypi|[sniffio](https://pypi.org/project/sniffio)|0.014| +|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.014| +|pypi|[h2](https://pypi.org/project/h2)|0.014| +|pypi|[curio](https://pypi.org/project/curio)|0.014| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.014| +|pypi|[pydantic](https://github.com/samuelcolvin/pydantic)|0.01| |setup.py|github/Materials-Consortia/optimade-python-tools|0.01| -|pypi|[pydantic](https://github.com/samuelcolvin/pydantic)|0.006| +|pypi|[uvicorn](https://pypi.org/project/uvicorn)|0.009| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| +|pypi|[pytest](https://pypi.org/project/pytest)|0.009| +|pypi|[mkdocs-material](https://pypi.org/project/mkdocs-material)|0.009| +|pypi|[mkdocs](https://pypi.org/project/mkdocs)|0.009| +|pypi|[fastapi](https://github.com/tiangolo/fastapi)|0.006| |pypi|[email_validator](https://github.com/JoshData/python-email-validator)|0.006| -|pypi|[requests](https://requests.readthedocs.io)|0.006| -|pypi|[types-dataclasses](https://github.com/python/typeshed)|0.005| -|pypi|[types-orjson](https://github.com/python/typeshed)|0.005| -|pypi|[types-ujson](https://github.com/python/typeshed)|0.005| -|pypi|[anyio](https://pypi.org/project/anyio)|0.005| -|pypi|[flask](https://pypi.org/project/flask)|0.005| -|pypi|[databases](https://pypi.org/project/databases)|0.005| -|pypi|[peewee](https://pypi.org/project/peewee)|0.005| -|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.005| -|pypi|[httpx](https://pypi.org/project/httpx)|0.005| -|pypi|[isort](https://pypi.org/project/isort)|0.005| -|pypi|[black](https://pypi.org/project/black)|0.005| -|pypi|[mypy](https://pypi.org/project/mypy)|0.005| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.005| -|pypi|[pytest](https://pypi.org/project/pytest)|0.005| -|pypi|[typer](https://pypi.org/project/typer)|0.005| -|pypi|[mkdocs-markdownextradata-plugin](https://pypi.org/project/mkdocs-markdownextradata-plugin)|0.005| -|pypi|[mdx-include](https://pypi.org/project/mdx-include)|0.005| -|pypi|[mkdocs-material](https://pypi.org/project/mkdocs-material)|0.005| -|pypi|[mkdocs](https://pypi.org/project/mkdocs)|0.005| -|pypi|[flake8](https://pypi.org/project/flake8)|0.005| -|pypi|[autoflake](https://pypi.org/project/autoflake)|0.005| -|pypi|[passlib](https://pypi.org/project/passlib)|0.005| -|pypi|[python-jose](https://pypi.org/project/python-jose)|0.005| -|pypi|[uvicorn](https://pypi.org/project/uvicorn)|0.005| -|pypi|[orjson](https://pypi.org/project/orjson)|0.005| -|pypi|[ujson](https://pypi.org/project/ujson)|0.005| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.005| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.005| -|pypi|[python-multipart](https://pypi.org/project/python-multipart)|0.005| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.005| -|pypi|[starlette](https://pypi.org/project/starlette)|0.005| -|pypi|[fastapi](https://github.com/tiangolo/fastapi)|0.002| +|pypi|[starlette](https://github.com/encode/starlette)|0.006| +|pypi|[jarvis-tools](https://github.com/usnistgov/jarvis)|0.005| +|pypi|[pymatgen](https://pypi.org/project/pymatgen)|0.005| +|pypi|[ase](https://pypi.org/project/ase)|0.005| +|pypi|[elasticsearch-dsl](https://pypi.org/project/elasticsearch-dsl)|0.005| +|pypi|[numpy](https://pypi.org/project/numpy)|0.005| +|pypi|[mongomock](https://pypi.org/project/mongomock)|0.005| +|pypi|[pymongo](https://pypi.org/project/pymongo)|0.005| +|pypi|[jsondiff](https://pypi.org/project/jsondiff)|0.005| +|pypi|[codecov](https://pypi.org/project/codecov)|0.005| +|pypi|[build](https://pypi.org/project/build)|0.005| +|pypi|[mkdocstrings](https://pypi.org/project/mkdocstrings)|0.005| +|pypi|[mkdocs-awesome-pages-plugin](https://pypi.org/project/mkdocs-awesome-pages-plugin)|0.005| +|pypi|[mike](https://pypi.org/project/mike)|0.005| +|pypi|[markupsafe](https://pypi.org/project/markupsafe)|0.005| +|pypi|[invoke](https://pypi.org/project/invoke)|0.005| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.005| +|pypi|[pylint](https://pypi.org/project/pylint)|0.005| +|pypi|[aiida-core](https://pypi.org/project/aiida-core)|0.005| +|pypi|[types-dataclasses](https://pypi.org/project/types-dataclasses)|0.004| +|pypi|[types-orjson](https://pypi.org/project/types-orjson)|0.004| +|pypi|[types-ujson](https://pypi.org/project/types-ujson)|0.004| +|pypi|[flask](https://pypi.org/project/flask)|0.004| +|pypi|[databases](https://pypi.org/project/databases)|0.004| +|pypi|[peewee](https://pypi.org/project/peewee)|0.004| +|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.004| +|pypi|[isort](https://pypi.org/project/isort)|0.004| +|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[mypy](https://pypi.org/project/mypy)|0.004| +|pypi|[typer](https://pypi.org/project/typer)|0.004| +|pypi|[mkdocs-markdownextradata-plugin](https://pypi.org/project/mkdocs-markdownextradata-plugin)|0.004| +|pypi|[mdx-include](https://pypi.org/project/mdx-include)|0.004| +|pypi|[flake8](https://pypi.org/project/flake8)|0.004| +|pypi|[autoflake](https://pypi.org/project/autoflake)|0.004| +|pypi|[passlib](https://pypi.org/project/passlib)|0.004| +|pypi|[python-jose](https://pypi.org/project/python-jose)|0.004| +|pypi|[orjson](https://pypi.org/project/orjson)|0.004| +|pypi|[ujson](https://pypi.org/project/ujson)|0.004| +|pypi|[optimade](https://github.com/Materials-Consortia/optimade-python-tools)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Materials-Consortia/optimade-python-tools/badge.png b/_repos/github/Materials-Consortia/optimade-python-tools/badge.png index 6d38e3b0..37f939fe 100644 Binary files a/_repos/github/Materials-Consortia/optimade-python-tools/badge.png and b/_repos/github/Materials-Consortia/optimade-python-tools/badge.png differ diff --git a/_repos/github/Materials-Consortia/optimade-python-tools/data.json b/_repos/github/Materials-Consortia/optimade-python-tools/data.json index e5a80233..b7ba3824 100644 --- a/_repos/github/Materials-Consortia/optimade-python-tools/data.json +++ b/_repos/github/Materials-Consortia/optimade-python-tools/data.json @@ -6,197 +6,281 @@ } }, "pypi": { - "lark-parser": { - "credit": 0.165, - "url": "https://github.com/lark-parser/lark" + "optimade": { + "credit": 0.001414285714285729, + "url": "https://github.com/Materials-Consortia/optimade-python-tools" + }, + "email_validator": { + "credit": 0.005532352941176485, + "url": "https://github.com/JoshData/python-email-validator" }, "fastapi": { - "credit": 0.0016500000000000126, + "credit": 0.006081428571428586, "url": "https://github.com/tiangolo/fastapi" }, + "starlette": { + "credit": 0.005532352941176485, + "url": "https://github.com/encode/starlette" + }, + "lark-parser": { + "credit": 0.1460957142857143, + "url": "https://github.com/lark-parser/lark" + }, "pydantic": { - "credit": 0.006454411764705895, + "credit": 0.01019949579831934, "url": "https://github.com/samuelcolvin/pydantic" }, - "email_validator": { - "credit": 0.006454411764705895, - "url": "https://github.com/JoshData/python-email-validator" + "dnspython": { + "credit": 0.07142142857142858, + "url": "https://pypi.org/project/dnspython" }, - "requests": { - "credit": 0.006454411764705895, - "url": "https://requests.readthedocs.io" + "jarvis-tools": { + "credit": 0.004667142857142857, + "url": "https://github.com/usnistgov/jarvis" + }, + "pymatgen": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/pymatgen" + }, + "ase": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/ase" + }, + "elasticsearch-dsl": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/elasticsearch-dsl" + }, + "numpy": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/numpy" + }, + "mongomock": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/mongomock" + }, + "pymongo": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/pymongo" + }, + "pyyaml": { + "credit": 0.026286995798319324, + "url": "https://pypi.org/project/pyyaml" + }, + "uvicorn": { + "credit": 0.008785210084033612, + "url": "https://pypi.org/project/uvicorn" + }, + "pytest-cov": { + "credit": 0.008785210084033612, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest": { + "credit": 0.008785210084033612, + "url": "https://pypi.org/project/pytest" + }, + "jsondiff": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/jsondiff" + }, + "codecov": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/codecov" + }, + "build": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/build" + }, + "mkdocstrings": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/mkdocstrings" + }, + "mkdocs-material": { + "credit": 0.008785210084033612, + "url": "https://pypi.org/project/mkdocs-material" + }, + "mkdocs-awesome-pages-plugin": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/mkdocs-awesome-pages-plugin" + }, + "mkdocs": { + "credit": 0.008785210084033612, + "url": "https://pypi.org/project/mkdocs" + }, + "mike": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/mike" + }, + "markupsafe": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/markupsafe" + }, + "invoke": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/invoke" + }, + "pre-commit": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/pre-commit" + }, + "pylint": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/pylint" + }, + "aiida-core": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/aiida-core" }, "typing-extensions": { - "credit": 0.2058375, - "url": "https://typing.readthedocs.io/" + "credit": 0.057172499999999994, + "url": "https://pypi.org/project/typing-extensions" + }, + "requests": { + "credit": 0.040288424369747895, + "url": "https://pypi.org/project/requests" + }, + "email-validator": { + "credit": 0.03967071428571428, + "url": "https://pypi.org/project/email-validator" + }, + "idna": { + "credit": 0.08400857142857142, + "url": "https://pypi.org/project/idna" }, "types-dataclasses": { - "credit": 0.004804411764705883, - "url": "https://github.com/python/typeshed" + "credit": 0.004118067226890756, + "url": "https://pypi.org/project/types-dataclasses" }, "types-orjson": { - "credit": 0.004804411764705883, - "url": "https://github.com/python/typeshed" + "credit": 0.004118067226890756, + "url": "https://pypi.org/project/types-orjson" }, "types-ujson": { - "credit": 0.004804411764705883, - "url": "https://github.com/python/typeshed" + "credit": 0.004118067226890756, + "url": "https://pypi.org/project/types-ujson" }, "anyio": { - "credit": 0.004804411764705883, + "credit": 0.02161985294117647, "url": "https://pypi.org/project/anyio" }, "flask": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/flask" }, "databases": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/databases" }, "peewee": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/peewee" }, "sqlalchemy": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/sqlalchemy" }, "httpx": { - "credit": 0.004804411764705883, + "credit": 0.018119495798319327, "url": "https://pypi.org/project/httpx" }, "isort": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/isort" }, "black": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/black" }, "mypy": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/mypy" }, - "pytest-cov": { - "credit": 0.004804411764705883, - "url": "https://pypi.org/project/pytest-cov" - }, - "pytest": { - "credit": 0.004804411764705883, - "url": "https://pypi.org/project/pytest" - }, "typer": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/typer" }, "mkdocs-markdownextradata-plugin": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/mkdocs-markdownextradata-plugin" }, "mdx-include": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/mdx-include" }, - "mkdocs-material": { - "credit": 0.004804411764705883, - "url": "https://pypi.org/project/mkdocs-material" - }, - "mkdocs": { - "credit": 0.004804411764705883, - "url": "https://pypi.org/project/mkdocs" - }, "flake8": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/flake8" }, "autoflake": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/autoflake" }, "passlib": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/passlib" }, "python-jose": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/python-jose" }, - "uvicorn": { - "credit": 0.004804411764705883, - "url": "https://pypi.org/project/uvicorn" - }, "orjson": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/orjson" }, "ujson": { - "credit": 0.004804411764705883, + "credit": 0.004118067226890756, "url": "https://pypi.org/project/ujson" }, - "pyyaml": { - "credit": 0.004804411764705883, - "url": "https://pypi.org/project/pyyaml" - }, "itsdangerous": { - "credit": 0.004804411764705883, + "credit": 0.02161985294117647, "url": "https://pypi.org/project/itsdangerous" }, "python-multipart": { - "credit": 0.004804411764705883, + "credit": 0.02161985294117647, "url": "https://pypi.org/project/python-multipart" }, "jinja2": { - "credit": 0.004804411764705883, + "credit": 0.02161985294117647, "url": "https://pypi.org/project/jinja2" }, - "starlette": { - "credit": 0.004804411764705883, - "url": "https://pypi.org/project/starlette" - }, - "email-validator": { - "credit": 0.0408375, - "url": "https://pypi.org/project/email-validator" + "contextlib2": { + "credit": 0.017501785714285713, + "url": "https://pypi.org/project/contextlib2" }, "python-dotenv": { - "credit": 0.0408375, + "credit": 0.035003571428571426, "url": "https://pypi.org/project/python-dotenv" }, "dataclasses": { - "credit": 0.0408375, + "credit": 0.035003571428571426, "url": "https://pypi.org/project/dataclasses" }, - "dnspython": { - "credit": 0.081675, - "url": "https://pypi.org/project/dnspython" - }, - "idna": { - "credit": 0.10501071428571429, - "url": "https://pypi.org/project/idna" + "wmi": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/wmi" }, - "win-inet-pton": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/win-inet-pton" + "trio": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/trio" }, - "PySocks": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/PySocks" + "sniffio": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/sniffio" }, - "charset-normalizer": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/charset-normalizer" + "requests-toolbelt": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/requests-toolbelt" }, - "chardet": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/chardet" + "h2": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/h2" }, - "certifi": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/certifi" + "curio": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/curio" }, - "urllib3": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/urllib3" + "cryptography": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/cryptography" } } } \ No newline at end of file diff --git a/_repos/github/MillionConcepts/lhorizon/badge.png b/_repos/github/MillionConcepts/lhorizon/badge.png index 76d5ea00..14019b2d 100644 Binary files a/_repos/github/MillionConcepts/lhorizon/badge.png and b/_repos/github/MillionConcepts/lhorizon/badge.png differ diff --git a/_repos/github/ModellingWebLab/chaste-codegen/badge.png b/_repos/github/ModellingWebLab/chaste-codegen/badge.png index e15686fb..b7a79546 100644 Binary files a/_repos/github/ModellingWebLab/chaste-codegen/badge.png and b/_repos/github/ModellingWebLab/chaste-codegen/badge.png differ diff --git a/_repos/github/MrMinimal64/multivar_horner/README.md b/_repos/github/MrMinimal64/multivar_horner/README.md index 94b7019b..a1375cc4 100644 --- a/_repos/github/MrMinimal64/multivar_horner/README.md +++ b/_repos/github/MrMinimal64/multivar_horner/README.md @@ -9,7 +9,9 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/MrMinimal64/multivar_horner|0.01| -|pypi|[numpy](https://www.numpy.org)|0.01| +|pypi|[multivar-horner](https://github.com/jannikmi/multivar_horner)|0.01| +|pypi|[numba](https://numba.pydata.org)|0.005| +|pypi|[numpy](https://www.numpy.org)|0.005| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/MrMinimal64/multivar_horner/badge.png b/_repos/github/MrMinimal64/multivar_horner/badge.png index 0a422a2c..aeb03ff0 100644 Binary files a/_repos/github/MrMinimal64/multivar_horner/badge.png and b/_repos/github/MrMinimal64/multivar_horner/badge.png differ diff --git a/_repos/github/MrMinimal64/multivar_horner/data.json b/_repos/github/MrMinimal64/multivar_horner/data.json index 327ccd12..854af51a 100644 --- a/_repos/github/MrMinimal64/multivar_horner/data.json +++ b/_repos/github/MrMinimal64/multivar_horner/data.json @@ -6,8 +6,16 @@ } }, "pypi": { - "numpy": { + "multivar-horner": { "credit": 0.0099, + "url": "https://github.com/jannikmi/multivar_horner" + }, + "numba": { + "credit": 0.0049005, + "url": "https://numba.pydata.org" + }, + "numpy": { + "credit": 0.0049005, "url": "https://www.numpy.org" } } diff --git a/_repos/github/NKI-CCB/PRECISE/badge.png b/_repos/github/NKI-CCB/PRECISE/badge.png index 30f36d6d..29321d43 100644 Binary files a/_repos/github/NKI-CCB/PRECISE/badge.png and b/_repos/github/NKI-CCB/PRECISE/badge.png differ diff --git a/_repos/github/NLESC-JCER/QMCTorch/README.md b/_repos/github/NLESC-JCER/QMCTorch/README.md index 6b03c7d5..f37a1607 100644 --- a/_repos/github/NLESC-JCER/QMCTorch/README.md +++ b/_repos/github/NLESC-JCER/QMCTorch/README.md @@ -8,43 +8,70 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.232| -|pypi|[six](https://pypi.org/project/six)|0.097| -|pypi|[matplotlib](https://matplotlib.org)|0.09| -|pypi|[argparse](https://github.com/ThomasWaldmann/argparse/)|0.09| -|pypi|[pyscf](http://www.pyscf.org)|0.09| -|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.09| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.089| -|pypi|[dill](https://pypi.org/project/dill)|0.045| -|pypi|[colorama](https://pypi.org/project/colorama)|0.019| -|pypi|[slack-sdk](https://github.com/slackapi/python-slack-sdk)|0.011| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.011| -|pypi|[wheel](https://pypi.org/project/wheel)|0.011| -|pypi|[twine](https://pypi.org/project/twine)|0.011| -|pypi|[py-make](https://pypi.org/project/py-make)|0.011| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.011| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.103| +|pypi|[matplotlib](https://matplotlib.org)|0.059| +|pypi|[colorama](https://github.com/tartley/colorama)|0.057| +|pypi|[pyfiglet](https://github.com/pwaller/pyfiglet)|0.057| +|pypi|[SQLAlchemy](https://www.sqlalchemy.org)|0.057| +|pypi|[six](https://pypi.org/project/six)|0.056| +|pypi|[argparse](https://github.com/ThomasWaldmann/argparse/)|0.055| +|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.055| +|pypi|[pyscf](http://www.pyscf.org)|0.055| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.052| +|pypi|[h5py](http://www.h5py.org)|0.052| +|pypi|[greenlet](https://greenlet.readthedocs.io/)|0.052| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.052| +|pypi|[numpy](https://pypi.org/project/numpy)|0.033| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.026| |setup.py|github/NLESC-JCER/QMCTorch|0.01| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.008| -|pypi|[pyfiglet](https://pypi.org/project/pyfiglet)|0.008| -|pypi|[plotly](https://pypi.org/project/plotly)|0.008| -|pypi|[pandas](https://pypi.org/project/pandas)|0.008| -|pypi|[jupyter-bokeh](https://pypi.org/project/jupyter-bokeh)|0.008| -|pypi|[bokeh](https://pypi.org/project/bokeh)|0.008| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.008| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.008| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[idna](https://pypi.org/project/idna)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[certifi](https://pypi.org/project/certifi)|0.002| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[torch](https://pytorch.org/)|0.001| -|pypi|[plams](https://www.scm.com/doc/plams/)|0.001| -|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|0.001| -|pypi|[twiggy](https://github.com/wearpants/twiggy/)|0.001| +|pypi|[scipy](https://pypi.org/project/scipy)|0.007| +|pypi|[coverage](https://pypi.org/project/coverage)|0.006| +|pypi|[pytest](https://pypi.org/project/pytest)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.005| +|pypi|[plotly](https://pypi.org/project/plotly)|0.005| +|pypi|[pandas](https://pypi.org/project/pandas)|0.005| +|pypi|[jupyter-bokeh](https://pypi.org/project/jupyter-bokeh)|0.005| +|pypi|[bokeh](https://pypi.org/project/bokeh)|0.005| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.005| +|pypi|[xattr](https://pypi.org/project/xattr)|0.004| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.004| +|pypi|[munkres](https://pypi.org/project/munkres)|0.004| +|pypi|[brotli](https://pypi.org/project/brotli)|0.004| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.004| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.004| +|pypi|[sympy](https://pypi.org/project/sympy)|0.004| +|pypi|[lz4](https://pypi.org/project/lz4)|0.004| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.004| +|pypi|[lxml](https://pypi.org/project/lxml)|0.004| +|pypi|[fs](https://pypi.org/project/fs)|0.004| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.003| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.003| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.003| +|pypi|[packaging](https://pypi.org/project/packaging)|0.003| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.003| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.003| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.003| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.003| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| +|pypi|[olefile](https://pypi.org/project/olefile)|0.003| +|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|0.003| +|pypi|[plams](https://www.scm.com/doc/plams/)|0.003| +|pypi|[torch](https://pytorch.org/)|0.003| +|pypi|[twiggy](https://github.com/wearpants/twiggy/)|0.003| +|pypi|[pycodestyle](https://pycodestyle.pycqa.org/)|0.003| +|pypi|[coveralls](http://github.com/TheKevJames/coveralls-python)|0.003| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.003| +|pypi|[horovod](https://pypi.org/project/horovod)|0.003| +|pypi|[recommonmark](https://pypi.org/project/recommonmark)|0.003| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.003| +|pypi|[qmctorch](https://github.com/NLESC-JCER/QMCTorch)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/NLESC-JCER/QMCTorch/badge.png b/_repos/github/NLESC-JCER/QMCTorch/badge.png index 500985f4..4ed73b52 100644 Binary files a/_repos/github/NLESC-JCER/QMCTorch/badge.png and b/_repos/github/NLESC-JCER/QMCTorch/badge.png differ diff --git a/_repos/github/NLESC-JCER/QMCTorch/data.json b/_repos/github/NLESC-JCER/QMCTorch/data.json index dc3cbdbc..af25662c 100644 --- a/_repos/github/NLESC-JCER/QMCTorch/data.json +++ b/_repos/github/NLESC-JCER/QMCTorch/data.json @@ -6,153 +6,257 @@ } }, "pypi": { - "matplotlib": { - "credit": 0.09, - "url": "https://matplotlib.org" - }, - "numpy": { - "credit": 0.23174999999999998, - "url": "https://www.numpy.org" + "qmctorch": { + "credit": 0.0005210526315789499, + "url": "https://github.com/NLESC-JCER/QMCTorch" }, "argparse": { - "credit": 0.09, + "credit": 0.054684473684210526, "url": "https://github.com/ThomasWaldmann/argparse/" }, - "scipy": { - "credit": 0.000899999999999998, - "url": "https://www.scipy.org" + "matplotlib": { + "credit": 0.05865248987854251, + "url": "https://matplotlib.org" }, - "tqdm": { - "credit": 0.000899999999999998, - "url": "https://tqdm.github.io" + "mendeleev": { + "credit": 0.003100263157894739, + "url": "https://github.com/lmmentel/mendeleev" }, - "torch": { - "credit": 0.000899999999999998, - "url": "https://pytorch.org/" + "mpi4py": { + "credit": 0.054684473684210526, + "url": "https://github.com/mpi4py/mpi4py/" }, "plams": { - "credit": 0.000899999999999998, + "credit": 0.003100263157894739, "url": "https://www.scm.com/doc/plams/" }, "pyscf": { - "credit": 0.09, + "credit": 0.054684473684210526, "url": "http://www.pyscf.org" }, - "mendeleev": { - "credit": 0.000899999999999998, - "url": "https://github.com/lmmentel/mendeleev" + "torch": { + "credit": 0.003100263157894739, + "url": "https://pytorch.org/" }, "twiggy": { - "credit": 0.000899999999999998, + "credit": 0.003100263157894739, "url": "https://github.com/wearpants/twiggy/" }, - "mpi4py": { - "credit": 0.09, - "url": "https://github.com/mpi4py/mpi4py/" + "colorama": { + "credit": 0.056794736842105266, + "url": "https://github.com/tartley/colorama" }, - "requests": { - "credit": 0.00011137500000000036, - "url": "https://requests.readthedocs.io" + "cycler": { + "credit": 0.05210526315789474, + "url": "https://github.com/matplotlib/cycler" }, - "slack-sdk": { - "credit": 0.0111375, - "url": "https://github.com/slackapi/python-slack-sdk" + "dill": { + "credit": 0.026313157894736844, + "url": "https://github.com/uqfoundation/dill" }, - "ipywidgets": { - "credit": 0.0111375, - "url": "https://pypi.org/project/ipywidgets" + "fonttools": { + "credit": 0.0005210526315789429, + "url": "http://github.com/fonttools/fonttools" }, - "wheel": { - "credit": 0.0111375, - "url": "https://pypi.org/project/wheel" + "h5py": { + "credit": 0.05210526315789474, + "url": "http://www.h5py.org" }, - "twine": { - "credit": 0.0111375, - "url": "https://pypi.org/project/twine" + "kiwisolver": { + "credit": 0.0005210526315789499, + "url": "https://github.com/nucleic/kiwi" }, - "py-make": { - "credit": 0.0111375, - "url": "https://pypi.org/project/py-make" + "pillow": { + "credit": 0.0005210526315789499, + "url": "https://python-pillow.org" }, - "importlib-resources": { - "credit": 0.0111375, - "url": "https://pypi.org/project/importlib-resources" + "pyfiglet": { + "credit": 0.056794736842105266, + "url": "https://github.com/pwaller/pyfiglet" }, - "colorama": { - "credit": 0.019237499999999998, - "url": "https://pypi.org/project/colorama" + "SQLAlchemy": { + "credit": 0.056794736842105266, + "url": "https://www.sqlalchemy.org" }, - "typing-extensions": { - "credit": 0.0891, - "url": "https://pypi.org/project/typing-extensions" + "greenlet": { + "credit": 0.05210526315789474, + "url": "https://greenlet.readthedocs.io/" }, - "dill": { - "credit": 0.04455, - "url": "https://pypi.org/project/dill" + "pycodestyle": { + "credit": 0.0025792105263157893, + "url": "https://pycodestyle.pycqa.org/" + }, + "coveralls": { + "credit": 0.0025792105263157893, + "url": "http://github.com/TheKevJames/coveralls-python" + }, + "coverage": { + "credit": 0.0058032236842105265, + "url": "https://pypi.org/project/coverage" + }, + "pytest-runner": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/pytest-runner" + }, + "pytest": { + "credit": 0.0058032236842105265, + "url": "https://pypi.org/project/pytest" + }, + "horovod": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/horovod" + }, + "sphinx-rtd-theme": { + "credit": 0.0058032236842105265, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx": { + "credit": 0.0058032236842105265, + "url": "https://pypi.org/project/sphinx" + }, + "recommonmark": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/recommonmark" + }, + "tqdm": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/tqdm" + }, + "scipy": { + "credit": 0.006547226720647774, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.03306078947368421, + "url": "https://pypi.org/project/numpy" }, "six": { - "credit": 0.0972, + "credit": 0.056273684210526316, "url": "https://pypi.org/project/six" }, "seaborn": { - "credit": 0.0081, + "credit": 0.004689473684210526, "url": "https://pypi.org/project/seaborn" }, - "pyfiglet": { - "credit": 0.0081, - "url": "https://pypi.org/project/pyfiglet" - }, "plotly": { - "credit": 0.0081, + "credit": 0.004689473684210526, "url": "https://pypi.org/project/plotly" }, "pandas": { - "credit": 0.0081, + "credit": 0.004689473684210526, "url": "https://pypi.org/project/pandas" }, "jupyter-bokeh": { - "credit": 0.0081, + "credit": 0.004689473684210526, "url": "https://pypi.org/project/jupyter-bokeh" }, "bokeh": { - "credit": 0.0081, + "credit": 0.004689473684210526, "url": "https://pypi.org/project/bokeh" }, - "SQLAlchemy": { - "credit": 0.0081, - "url": "https://pypi.org/project/SQLAlchemy" - }, "Pygments": { - "credit": 0.0081, + "credit": 0.004689473684210526, "url": "https://pypi.org/project/Pygments" }, - "win-inet-pton": { - "credit": 0.0015751607142857143, - "url": "https://pypi.org/project/win-inet-pton" + "typing-extensions": { + "credit": 0.10316842105263158, + "url": "https://pypi.org/project/typing-extensions" + }, + "objgraph": { + "credit": 0.05158421052631579, + "url": "https://pypi.org/project/objgraph" + }, + "xattr": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/pytest-cov" + }, + "pyroma": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/defusedxml" }, - "PySocks": { - "credit": 0.0015751607142857143, - "url": "https://pypi.org/project/PySocks" + "check-manifest": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/check-manifest" }, - "charset-normalizer": { - "credit": 0.0015751607142857143, - "url": "https://pypi.org/project/charset-normalizer" + "sphinxext-opengraph": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "idna": { - "credit": 0.0015751607142857143, - "url": "https://pypi.org/project/idna" + "sphinx-removed-in": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "chardet": { - "credit": 0.0015751607142857143, - "url": "https://pypi.org/project/chardet" + "sphinx-issues": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinx-issues" }, - "certifi": { - "credit": 0.0015751607142857143, - "url": "https://pypi.org/project/certifi" + "sphinx-copybutton": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "urllib3": { - "credit": 0.0015751607142857143, - "url": "https://pypi.org/project/urllib3" + "olefile": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/NLeSC-GO-common-infrastructure/marzipan/badge.png b/_repos/github/NLeSC-GO-common-infrastructure/marzipan/badge.png index 48fea9cc..fb286220 100644 Binary files a/_repos/github/NLeSC-GO-common-infrastructure/marzipan/badge.png and b/_repos/github/NLeSC-GO-common-infrastructure/marzipan/badge.png differ diff --git a/_repos/github/NLeSC/Massive-PotreeConverter/badge.png b/_repos/github/NLeSC/Massive-PotreeConverter/badge.png index d20aafc3..4abc87ff 100644 Binary files a/_repos/github/NLeSC/Massive-PotreeConverter/badge.png and b/_repos/github/NLeSC/Massive-PotreeConverter/badge.png differ diff --git a/_repos/github/NLeSC/ShiCo/badge.png b/_repos/github/NLeSC/ShiCo/badge.png index 2c9bec44..c40204fe 100644 Binary files a/_repos/github/NLeSC/ShiCo/badge.png and b/_repos/github/NLeSC/ShiCo/badge.png differ diff --git a/_repos/github/NLeSC/boatswain/README.md b/_repos/github/NLeSC/boatswain/README.md index 8a1c8e04..e61a1f13 100644 --- a/_repos/github/NLeSC/boatswain/README.md +++ b/_repos/github/NLeSC/boatswain/README.md @@ -8,55 +8,57 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[PyYAML](https://pyyaml.org/)|0.198| -|pypi|[six](https://github.com/benjaminp/six)|0.198| -|pypi|[pytest](https://pypi.org/project/pytest)|0.036| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.034| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.034| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[idna](https://pypi.org/project/idna)|0.028| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.028| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.028| -|pypi|[paramiko](https://pypi.org/project/paramiko)|0.028| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.028| -|pypi|[requests](https://pypi.org/project/requests)|0.028| -|pypi|[websocket-client](https://pypi.org/project/websocket-client)|0.028| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.028| -|pypi|[flake8](https://pypi.org/project/flake8)|0.028| -|pypi|[python-utils](https://pypi.org/project/python-utils)|0.028| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.063| +|pypi|[flake8](https://pypi.org/project/flake8)|0.06| +|pypi|[python-utils](https://github.com/WoLpH/python-utils)|0.052| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.051| +|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.05| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.05| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.05| +|pypi|[websockets](https://pypi.org/project/websockets)|0.039| +|pypi|[wsaccel](https://pypi.org/project/wsaccel)|0.039| +|pypi|[python-socks](https://pypi.org/project/python-socks)|0.039| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.039| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.039| +|pypi|[websocket-client](https://github.com/websocket-client/websocket-client.git)|0.033| +|pypi|[requests](https://pypi.org/project/requests)|0.032| +|pypi|[idna](https://pypi.org/project/idna)|0.031| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.031| +|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.031| +|pypi|[paramiko](https://pypi.org/project/paramiko)|0.031| +|pypi|[freezegun](https://pypi.org/project/freezegun)|0.031| +|pypi|[six](https://github.com/benjaminp/six)|0.022| +|pypi|[mock](https://pypi.org/project/mock)|0.021| +|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.02| +|pypi|[docker-registry-client](https://github.com/yodle/docker-registry-client)|0.02| +|pypi|[PyYAML](https://pyyaml.org/)|0.02| +|pypi|[setuptools](https://github.com/pypa/setuptools)|0.02| +|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.02| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.02| |setup.py|github/NLeSC/boatswain|0.01| -|pypi|[filelock](https://pypi.org/project/filelock)|0.008| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.006| -|pypi|[tomli](https://pypi.org/project/tomli)|0.006| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.006| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.006| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.006| -|pypi|[build](https://pypi.org/project/build)|0.006| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.006| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.006| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.006| -|pypi|[pip](https://pypi.org/project/pip)|0.006| -|pypi|[wheel](https://pypi.org/project/wheel)|0.006| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.006| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.006| -|pypi|[mock](https://pypi.org/project/mock)|0.006| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.006| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.006| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.006| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.006| -|pypi|[furo](https://pypi.org/project/furo)|0.006| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.006| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.006| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.006| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.006| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.006| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.006| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.006| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| +|pypi|[hunter](https://pypi.org/project/hunter)|0.002| +|pypi|[fields](https://pypi.org/project/fields)|0.002| +|pypi|[coverage](https://pypi.org/project/coverage)|0.002| |pypi|[docker](https://github.com/docker/docker-py)|0.002| |pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|0.002| -|pypi|[mypy](https://pypi.org/project/mypy)|0.002| -|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[boatswain](https://github.com/nlesc-sherlock/boatswain)|0.002| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| +|pypi|[pygments](https://pypi.org/project/pygments)|0.001| +|pypi|[nose](https://pypi.org/project/nose)|0.001| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| +|pypi|[colorama](https://pypi.org/project/colorama)|0.001| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| +|pypi|[tomli](https://pypi.org/project/tomli)|0.001| +|pypi|[py](https://pypi.org/project/py)|0.001| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| +|pypi|[packaging](https://pypi.org/project/packaging)|0.001| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| +|pypi|[attrs](https://pypi.org/project/attrs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/NLeSC/boatswain/badge.png b/_repos/github/NLeSC/boatswain/badge.png index feba44d1..ccca8496 100644 Binary files a/_repos/github/NLeSC/boatswain/badge.png and b/_repos/github/NLeSC/boatswain/badge.png differ diff --git a/_repos/github/NLeSC/boatswain/data.json b/_repos/github/NLeSC/boatswain/data.json index 9c7a9a7b..33c73f4c 100644 --- a/_repos/github/NLeSC/boatswain/data.json +++ b/_repos/github/NLeSC/boatswain/data.json @@ -6,196 +6,204 @@ } }, "pypi": { - "setuptools": { - "credit": 0.0019800000000000095, - "url": "https://github.com/pypa/setuptools" + "boatswain": { + "credit": 0.0019799999999999818, + "url": "https://github.com/nlesc-sherlock/boatswain" }, "docker": { - "credit": 0.0019800000000000095, + "credit": 0.002176020000000011, "url": "https://github.com/docker/docker-py" }, - "PyYAML": { - "credit": 0.198, - "url": "https://pyyaml.org/" - }, "progressbar2": { - "credit": 0.0019800000000000095, + "credit": 0.002176020000000011, "url": "https://github.com/WoLpH/python-progressbar" }, - "six": { - "credit": 0.198, - "url": "https://github.com/benjaminp/six" + "python-utils": { + "credit": 0.05235713999999998, + "url": "https://github.com/WoLpH/python-utils" }, - "pytest-mypy": { - "credit": 0.02806608940092166, - "url": "https://github.com/dbader/pytest-mypy" + "websocket-client": { + "credit": 0.03275513999999998, + "url": "https://github.com/websocket-client/websocket-client.git" + }, + "pywin32": { + "credit": 0.05037714, + "url": "https://github.com/mhammond/pywin32" }, "pytest-cov": { - "credit": 0.03432608294930876, + "credit": 0.050573160000000006, "url": "https://github.com/pytest-dev/pytest-cov" }, - "pytest-black": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pytest-black" + "pytest-flake8": { + "credit": 0.019798020000000003, + "url": "https://github.com/tholo/pytest-flake8" }, - "tomli": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/tomli" + "pytest": { + "credit": 0.0627018975, + "url": "https://docs.pytest.org/en/latest/" }, - "tomli-w": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/tomli-w" + "docker-registry-client": { + "credit": 0.019602, + "url": "https://github.com/yodle/docker-registry-client" }, - "ini2toml": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/ini2toml" + "six": { + "credit": 0.0220277475, + "url": "https://github.com/benjaminp/six" }, - "pip-run": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pip-run" + "PyYAML": { + "credit": 0.019602, + "url": "https://pyyaml.org/" }, - "filelock": { - "credit": 0.007888224193548387, - "url": "https://pypi.org/project/filelock" + "setuptools": { + "credit": 0.019602, + "url": "https://github.com/pypa/setuptools" }, - "build": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/build" + "idna": { + "credit": 0.03077514, + "url": "https://pypi.org/project/idna" }, - "jaraco.path": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/jaraco.path" + "cryptography": { + "credit": 0.03077514, + "url": "https://pypi.org/project/cryptography" }, - "pytest-xdist": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pytest-xdist" + "pyOpenSSL": { + "credit": 0.03077514, + "url": "https://pypi.org/project/pyOpenSSL" }, - "jaraco.envs": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/jaraco.envs" + "paramiko": { + "credit": 0.03077514, + "url": "https://pypi.org/project/paramiko" }, - "pip": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pip" + "requests": { + "credit": 0.031988013749999995, + "url": "https://pypi.org/project/requests" }, - "wheel": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/wheel" + "freezegun": { + "credit": 0.03077514, + "url": "https://pypi.org/project/freezegun" }, - "virtualenv": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/virtualenv" + "pytest-mypy": { + "credit": 0.05037714, + "url": "https://pypi.org/project/pytest-mypy" + }, + "flake8": { + "credit": 0.06008013, + "url": "https://pypi.org/project/flake8" }, - "flake8-2020": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/flake8-2020" + "sphinx": { + "credit": 0.05037714, + "url": "https://pypi.org/project/sphinx" + }, + "types-setuptools": { + "credit": 0.019602, + "url": "https://pypi.org/project/types-setuptools" + }, + "pytest-asyncio": { + "credit": 0.019602, + "url": "https://pypi.org/project/pytest-asyncio" }, "mock": { - "credit": 0.006323225806451613, + "credit": 0.02081487375, "url": "https://pypi.org/project/mock" }, - "pytest-perf": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pytest-perf" + "websockets": { + "credit": 0.039204, + "url": "https://pypi.org/project/websockets" }, - "pytest-enabler": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pytest-enabler" + "wsaccel": { + "credit": 0.039204, + "url": "https://pypi.org/project/wsaccel" }, - "pytest-flake8": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pytest-flake8" + "python-socks": { + "credit": 0.039204, + "url": "https://pypi.org/project/python-socks" }, - "pytest-checkdocs": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pytest-checkdocs" + "sphinx-rtd-theme": { + "credit": 0.039204, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "pytest": { - "credit": 0.035891081336405534, - "url": "https://pypi.org/project/pytest" + "Sphinx": { + "credit": 0.039204, + "url": "https://pypi.org/project/Sphinx" }, - "furo": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/furo" + "virtualenv": { + "credit": 0.0024257475, + "url": "https://pypi.org/project/virtualenv" }, - "sphinxcontrib-towncrier": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" + "pytest-xdist": { + "credit": 0.0024257475, + "url": "https://pypi.org/project/pytest-xdist" }, - "sphinx-inline-tabs": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/sphinx-inline-tabs" + "process-tests": { + "credit": 0.0024257475, + "url": "https://pypi.org/project/process-tests" }, - "sphinx-favicon": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/sphinx-favicon" + "hunter": { + "credit": 0.0024257475, + "url": "https://pypi.org/project/hunter" }, - "pygments-github-lexers": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/pygments-github-lexers" + "fields": { + "credit": 0.0024257475, + "url": "https://pypi.org/project/fields" }, - "jaraco.tidelift": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/jaraco.tidelift" + "coverage": { + "credit": 0.0024257475, + "url": "https://pypi.org/project/coverage" }, - "rst.linker": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/rst.linker" + "xmlschema": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/xmlschema" }, - "jaraco.packaging": { - "credit": 0.006323225806451613, - "url": "https://pypi.org/project/jaraco.packaging" + "pygments": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/pygments" }, - "sphinx": { - "credit": 0.03432608294930876, - "url": "https://pypi.org/project/sphinx" + "nose": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/nose" }, - "idna": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/idna" + "hypothesis": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/hypothesis" }, - "cryptography": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/cryptography" + "argcomplete": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/argcomplete" }, - "pyOpenSSL": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/pyOpenSSL" + "colorama": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/colorama" }, - "paramiko": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/paramiko" - }, - "pywin32": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/pywin32" + "atomicwrites": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/atomicwrites" }, - "requests": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/requests" + "importlib-metadata": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/importlib-metadata" }, - "websocket-client": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/websocket-client" + "tomli": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/tomli" }, - "freezegun": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/freezegun" + "py": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/py" }, - "flake8": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/flake8" + "pluggy": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/pluggy" }, - "python-utils": { - "credit": 0.028002857142857142, - "url": "https://pypi.org/project/python-utils" + "packaging": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/packaging" }, - "mypy": { - "credit": 0.0015649983870967743, - "url": "https://pypi.org/project/mypy" + "iniconfig": { + "credit": 0.00121287375, + "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.0015649983870967743, + "credit": 0.00121287375, "url": "https://pypi.org/project/attrs" } } diff --git a/_repos/github/NLeSC/cptm/README.md b/_repos/github/NLeSC/cptm/README.md index 8f8da97f..9cb8e82d 100644 --- a/_repos/github/NLeSC/cptm/README.md +++ b/_repos/github/NLeSC/cptm/README.md @@ -9,7 +9,6 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/NLeSC/cptm|0.01| -|pypi|[cython](http://cython.org/)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/NLeSC/cptm/badge.png b/_repos/github/NLeSC/cptm/badge.png index c0f718c0..9f303f7e 100644 Binary files a/_repos/github/NLeSC/cptm/badge.png and b/_repos/github/NLeSC/cptm/badge.png differ diff --git a/_repos/github/NLeSC/cptm/data.json b/_repos/github/NLeSC/cptm/data.json index 15570e91..d3c0ae87 100644 --- a/_repos/github/NLeSC/cptm/data.json +++ b/_repos/github/NLeSC/cptm/data.json @@ -4,11 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "cython": { - "credit": 0.0099, - "url": "http://cython.org/" - } } } \ No newline at end of file diff --git a/_repos/github/NLeSC/mcfly/README.md b/_repos/github/NLeSC/mcfly/README.md index 0a858f2a..4d06368e 100644 --- a/_repos/github/NLeSC/mcfly/README.md +++ b/_repos/github/NLeSC/mcfly/README.md @@ -8,53 +8,89 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.416| -|pypi|[h5py](http://www.h5py.org)|0.207| -|pypi|[scipy](https://www.scipy.org)|0.014| -|pypi|[pytest](https://pypi.org/project/pytest)|0.012| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.011| +|pypi|[six](https://pypi.org/project/six)|0.089| +|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.06| +|pypi|[keras](https://keras.io/)|0.034| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.034| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.033| +|pypi|[rsa](https://stuvel.eu/rsa)|0.033| +|pypi|[tensorboard-data-server](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server)|0.032| +|pypi|[tensorboard-plugin-wit](https://whatif-tool.dev)|0.032| +|pypi|[h5py](http://www.h5py.org)|0.031| +|pypi|[flatbuffers](https://google.github.io/flatbuffers/)|0.031| +|pypi|[gast](https://github.com/serge-sans-paille/gast/)|0.031| +|pypi|[libclang](https://github.com/sighingnow/libclang)|0.031| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.031| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.031| +|pypi|[mcfly](https://github.com/NLeSC/mcfly)|0.03| +|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.03| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.03| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.023| +|pypi|[pytest](https://pypi.org/project/pytest)|0.023| +|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|0.02| +|pypi|[wheel](https://github.com/pypa/wheel)|0.017| +|pypi|[requests](https://pypi.org/project/requests)|0.015| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.012| +|pypi|[enum34](https://pypi.org/project/enum34)|0.011| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.01| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.01| +|pypi|[numpy](https://pypi.org/project/numpy)|0.01| |setup.py|github/NLeSC/mcfly|0.01| -|pypi|[black](https://github.com/psf/black)|0.009| -|pypi|[flake8](https://pypi.org/project/flake8)|0.009| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.009| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.009| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.009| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.009| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.009| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.009| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.009| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.009| -|pypi|[pandas](https://pypi.org/project/pandas)|0.009| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.009| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.009| -|pypi|[joblib](https://pypi.org/project/joblib)|0.009| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.009| -|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.009| -|pypi|[keras](https://pypi.org/project/keras)|0.009| -|pypi|[tf-estimator-nightly](https://pypi.org/project/tf-estimator-nightly)|0.009| -|pypi|[tensorboard](https://pypi.org/project/tensorboard)|0.009| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.009| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.009| -|pypi|[six](https://pypi.org/project/six)|0.009| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.009| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.009| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.009| -|pypi|[libclang](https://pypi.org/project/libclang)|0.009| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.009| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.009| -|pypi|[gast](https://pypi.org/project/gast)|0.009| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.009| -|pypi|[astunparse](https://pypi.org/project/astunparse)|0.009| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.009| -|pypi|[scikit-learn](http://scikit-learn.org)|0.002| -|pypi|[tensorflow](https://www.tensorflow.org/)|0.002| -|pypi|[lxml](https://pypi.org/project/lxml)|0.002| -|pypi|[psutil](https://pypi.org/project/psutil)|0.002| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.002| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.002| +|pypi|[click](https://pypi.org/project/click)|0.01| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.01| +|pypi|[coverage](https://pypi.org/project/coverage)|0.01| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.01| +|pypi|[blinker](https://pypi.org/project/blinker)|0.01| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.01| +|pypi|[tensorflow](https://www.tensorflow.org/)|0.009| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.007| +|pypi|[futures](https://pypi.org/project/futures)|0.007| +|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|0.006| +|pypi|[tensorflow-gpu](https://pypi.org/project/tensorflow-gpu)|0.006| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|0.006| +|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|0.006| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| +|pypi|[absl-py](https://github.com/abseil/abseil-py)|0.004| +|pypi|[grpcio](https://grpc.io)|0.004| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|0.004| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|0.004| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.004| +|pypi|[pyasn1-modules](https://github.com/etingof/pyasn1-modules)|0.004| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|0.003| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.003| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.003| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| +|pypi|[packaging](https://pypi.org/project/packaging)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| +|pypi|[pandas](https://pypi.org/project/pandas)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.003| +|pypi|[scipy](https://pypi.org/project/scipy)|0.003| +|pypi|[google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib)|0.003| +|pypi|[markdown](https://Python-Markdown.github.io/)|0.003| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|0.003| +|pypi|[astunparse](https://github.com/simonpercivall/astunparse)|0.002| +|pypi|[google-pasta](https://github.com/google/pasta)|0.002| +|pypi|[keras-preprocessing](https://github.com/keras-team/keras-preprocessing)|0.002| +|pypi|[opt-einsum](https://github.com/dgasmith/opt_einsum)|0.002| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|0.002| +|pypi|[tensorflow-io-gcs-filesystem](https://github.com/tensorflow/io)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.002| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.002| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.002| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.002| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.002| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| +|pypi|[zipp](https://pypi.org/project/zipp)|0.002| +|pypi|[tensorflow-estimator](https://www.tensorflow.org/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/NLeSC/mcfly/badge.png b/_repos/github/NLeSC/mcfly/badge.png index e2425cef..dc9241f3 100644 Binary files a/_repos/github/NLeSC/mcfly/badge.png and b/_repos/github/NLeSC/mcfly/badge.png differ diff --git a/_repos/github/NLeSC/mcfly/data.json b/_repos/github/NLeSC/mcfly/data.json index 4acf51cb..6505e001 100644 --- a/_repos/github/NLeSC/mcfly/data.json +++ b/_repos/github/NLeSC/mcfly/data.json @@ -6,197 +6,333 @@ } }, "pypi": { - "numpy": { - "credit": 0.4157688857142857, - "url": "https://www.numpy.org" - }, - "scikit-learn": { - "credit": 0.0019799999999999818, - "url": "http://scikit-learn.org" - }, - "scipy": { - "credit": 0.01439460000000001, - "url": "https://www.scipy.org" + "mcfly": { + "credit": 0.03, + "url": "https://github.com/NLeSC/mcfly" }, "tensorflow": { - "credit": 0.0019799999999999818, + "credit": 0.00894, + "url": "https://www.tensorflow.org/" + }, + "tf-estimator-nightly": { + "credit": 0.03, "url": "https://www.tensorflow.org/" }, "h5py": { - "credit": 0.20733428571428572, + "credit": 0.031349999999999996, "url": "http://www.h5py.org" }, - "pyamg": { - "credit": 9.334285714285642e-05, - "url": "https://github.com/pyamg/pyamg" + "absl-py": { + "credit": 0.003934615384615386, + "url": "https://github.com/abseil/abseil-py" }, - "mypy": { - "credit": 9.334285714285642e-05, - "url": "http://www.mypy-lang.org/" + "astunparse": { + "credit": 0.0016500000000000015, + "url": "https://github.com/simonpercivall/astunparse" }, - "black": { - "credit": 0.009334285714285715, - "url": "https://github.com/psf/black" + "flatbuffers": { + "credit": 0.031349999999999996, + "url": "https://google.github.io/flatbuffers/" }, - "flake8": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/flake8" + "gast": { + "credit": 0.031349999999999996, + "url": "https://github.com/serge-sans-paille/gast/" + }, + "google-pasta": { + "credit": 0.0016500000000000015, + "url": "https://github.com/google/pasta" + }, + "grpcio": { + "credit": 0.003934615384615386, + "url": "https://grpc.io" + }, + "keras": { + "credit": 0.03405, + "url": "https://keras.io/" + }, + "keras-preprocessing": { + "credit": 0.0016500000000000015, + "url": "https://github.com/keras-team/keras-preprocessing" + }, + "libclang": { + "credit": 0.031349999999999996, + "url": "https://github.com/sighingnow/libclang" + }, + "opt-einsum": { + "credit": 0.0016500000000000015, + "url": "https://github.com/dgasmith/opt_einsum" + }, + "protobuf": { + "credit": 0.03363461538461538, + "url": "https://developers.google.com/protocol-buffers/" + }, + "tensorboard": { + "credit": 0.0016500000000000015, + "url": "https://github.com/tensorflow/tensorboard" + }, + "tensorflow-io-gcs-filesystem": { + "credit": 0.0016500000000000015, + "url": "https://github.com/tensorflow/io" + }, + "termcolor": { + "credit": 0.031349999999999996, + "url": "http://pypi.python.org/pypi/termcolor" + }, + "wrapt": { + "credit": 0.031349999999999996, + "url": "https://github.com/GrahamDumpleton/wrapt" + }, + "google-auth": { + "credit": 0.012484615384615386, + "url": "https://github.com/googleapis/google-auth-library-python" + }, + "google-auth-oauthlib": { + "credit": 0.002584615384615386, + "url": "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib" + }, + "markdown": { + "credit": 0.002584615384615386, + "url": "https://Python-Markdown.github.io/" + }, + "tensorboard-data-server": { + "credit": 0.032284615384615384, + "url": "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server" + }, + "tensorboard-plugin-wit": { + "credit": 0.032284615384615384, + "url": "https://whatif-tool.dev" + }, + "werkzeug": { + "credit": 0.002584615384615386, + "url": "https://palletsprojects.com/p/werkzeug/" + }, + "wheel": { + "credit": 0.017434615384615385, + "url": "https://github.com/pypa/wheel" + }, + "cachetools": { + "credit": 0.033299999999999996, + "url": "https://github.com/tkem/cachetools/" + }, + "importlib-metadata": { + "credit": 0.0102, + "url": "https://github.com/python/importlib_metadata" + }, + "pyasn1-modules": { + "credit": 0.003600000000000001, + "url": "https://github.com/etingof/pyasn1-modules" + }, + "requests-oauthlib": { + "credit": 0.0102, + "url": "https://github.com/requests/requests-oauthlib" + }, + "rsa": { + "credit": 0.033299999999999996, + "url": "https://stuvel.eu/rsa" + }, + "oauthlib": { + "credit": 0.0201, + "url": "https://github.com/oauthlib/oauthlib" + }, + "pyasn1": { + "credit": 0.059699999999999996, + "url": "https://github.com/etingof/pyasn1" + }, + "tensorflow-estimator": { + "credit": 0.0013499999999999999, + "url": "https://www.tensorflow.org/" + }, + "typing-extensions": { + "credit": 0.0029999999999999996, + "url": "https://pypi.org/project/typing-extensions" + }, + "six": { + "credit": 0.08902499999999999, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0036346153846153846, + "url": "https://pypi.org/project/setuptools" + }, + "packaging": { + "credit": 0.0029999999999999996, + "url": "https://pypi.org/project/packaging" + }, + "numpy": { + "credit": 0.010047115384615384, + "url": "https://pypi.org/project/numpy" + }, + "grpcio-tools": { + "credit": 0.007424999999999999, + "url": "https://pypi.org/project/grpcio-tools" + }, + "enum34": { + "credit": 0.010724999999999998, + "url": "https://pypi.org/project/enum34" + }, + "futures": { + "credit": 0.007424999999999999, + "url": "https://pypi.org/project/futures" }, "pytest-cov": { - "credit": 0.009334285714285715, + "credit": 0.022912499999999995, "url": "https://pypi.org/project/pytest-cov" }, + "pytest-xdist": { + "credit": 0.0026999999999999997, + "url": "https://pypi.org/project/pytest-xdist" + }, "pytest": { - "credit": 0.012414600000000001, + "credit": 0.022912499999999995, "url": "https://pypi.org/project/pytest" }, - "sphinxext-opengraph": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/sphinxext-opengraph" + "pandas": { + "credit": 0.0026999999999999997, + "url": "https://pypi.org/project/pandas" }, - "sphinx-prompt": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/sphinx-prompt" + "flake8": { + "credit": 0.0026999999999999997, + "url": "https://pypi.org/project/flake8" }, "Pillow": { - "credit": 0.009334285714285715, + "credit": 0.0026999999999999997, "url": "https://pypi.org/project/Pillow" }, + "scipy": { + "credit": 0.0026999999999999997, + "url": "https://pypi.org/project/scipy" + }, + "pytest-pep8": { + "credit": 0.0037124999999999997, + "url": "https://pypi.org/project/pytest-pep8" + }, "numpydoc": { - "credit": 0.009334285714285715, + "credit": 0.0037124999999999997, "url": "https://pypi.org/project/numpydoc" }, - "sphinx-gallery": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/sphinx-gallery" + "sphinx-rtd-theme": { + "credit": 0.0037124999999999997, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinxcontrib-napoleon": { + "credit": 0.0037124999999999997, + "url": "https://pypi.org/project/sphinxcontrib-napoleon" }, "sphinx": { - "credit": 0.009334285714285715, + "credit": 0.005362499999999999, "url": "https://pypi.org/project/sphinx" }, - "seaborn": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/seaborn" + "requests": { + "credit": 0.015484615384615383, + "url": "https://pypi.org/project/requests" }, - "scikit-image": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/scikit-image" + "tensorflow-rocm": { + "credit": 0.005939999999999999, + "url": "https://pypi.org/project/tensorflow-rocm" }, - "memory-profiler": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/memory-profiler" + "tensorflow-gpu": { + "credit": 0.005939999999999999, + "url": "https://pypi.org/project/tensorflow-gpu" }, - "pandas": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/pandas" + "tensorflow-cpu": { + "credit": 0.005939999999999999, + "url": "https://pypi.org/project/tensorflow-cpu" }, - "matplotlib": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/matplotlib" + "tensorflow-aarch64": { + "credit": 0.005939999999999999, + "url": "https://pypi.org/project/tensorflow-aarch64" }, - "threadpoolctl": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/threadpoolctl" + "pyu2f": { + "credit": 0.0032999999999999995, + "url": "https://pypi.org/project/pyu2f" }, - "joblib": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/joblib" + "pyopenssl": { + "credit": 0.0032999999999999995, + "url": "https://pypi.org/project/pyopenssl" }, - "grpcio": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/grpcio" + "aiohttp": { + "credit": 0.0032999999999999995, + "url": "https://pypi.org/project/aiohttp" }, - "tensorflow-io-gcs-filesystem": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/tensorflow-io-gcs-filesystem" + "click": { + "credit": 0.009899999999999999, + "url": "https://pypi.org/project/click" }, - "keras": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/keras" + "pyyaml": { + "credit": 0.009899999999999999, + "url": "https://pypi.org/project/pyyaml" }, - "tf-estimator-nightly": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/tf-estimator-nightly" + "coverage": { + "credit": 0.009899999999999999, + "url": "https://pypi.org/project/coverage" }, - "tensorboard": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/tensorboard" + "watchdog": { + "credit": 0.029699999999999997, + "url": "https://pypi.org/project/watchdog" }, - "wrapt": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/wrapt" + "importlib-resources": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/importlib-resources" }, - "typing-extensions": { - "credit": 0.010874442857142858, - "url": "https://pypi.org/project/typing-extensions" + "pytest-mypy": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/pytest-mypy" }, - "termcolor": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/termcolor" + "pytest-black": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/pytest-black" }, - "six": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/six" + "pytest-perf": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/pytest-perf" }, - "setuptools": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/setuptools" + "flufl.flake8": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/flufl.flake8" }, - "protobuf": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/protobuf" - }, - "opt-einsum": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/opt-einsum" - }, - "libclang": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/libclang" - }, - "keras-preprocessing": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/keras-preprocessing" + "pyfakefs": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/pyfakefs" }, - "google-pasta": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/google-pasta" + "pytest-enabler": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/pytest-enabler" }, - "gast": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/gast" + "pytest-flake8": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/pytest-flake8" }, - "flatbuffers": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/flatbuffers" + "pytest-checkdocs": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/pytest-checkdocs" }, - "astunparse": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/astunparse" + "ipython": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/ipython" }, - "absl-py": { - "credit": 0.009334285714285715, - "url": "https://pypi.org/project/absl-py" + "rst.linker": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/rst.linker" }, - "lxml": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/lxml" + "jaraco.packaging": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/jaraco.packaging" }, - "psutil": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/psutil" + "zipp": { + "credit": 0.0016499999999999998, + "url": "https://pypi.org/project/zipp" }, - "typed-ast": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/typed-ast" + "pyjwt": { + "credit": 0.009899999999999999, + "url": "https://pypi.org/project/pyjwt" }, - "tomli": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/tomli" + "blinker": { + "credit": 0.009899999999999999, + "url": "https://pypi.org/project/blinker" }, - "mypy-extensions": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/mypy-extensions" + "cryptography": { + "credit": 0.009899999999999999, + "url": "https://pypi.org/project/cryptography" } } } \ No newline at end of file diff --git a/_repos/github/NLeSC/noodles/badge.png b/_repos/github/NLeSC/noodles/badge.png index cb9e7300..666ae588 100644 Binary files a/_repos/github/NLeSC/noodles/badge.png and b/_repos/github/NLeSC/noodles/badge.png differ diff --git a/_repos/github/Narayana-Rao/SAR-tools/README.md b/_repos/github/Narayana-Rao/SAR-tools/README.md index 05b93079..7d54e04e 100644 --- a/_repos/github/Narayana-Rao/SAR-tools/README.md +++ b/_repos/github/Narayana-Rao/SAR-tools/README.md @@ -17,11 +17,11 @@ exclude_from_search: true |pypi|[types-typed-ast](https://github.com/python/typeshed)|0.039| |pypi|[imagesize](https://github.com/shibukawa/imagesize_py)|0.039| |pypi|[alabaster](https://alabaster.readthedocs.io)|0.039| -|pypi|[babel](http://babel.pocoo.org/)|0.039| |pypi|[snowballstemmer](https://github.com/snowballstem/snowball)|0.039| |pypi|[Pygments](https://pygments.org/)|0.039| |pypi|[types-urllib3](https://pypi.org/project/types-urllib3)|0.038| |pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.038| +|pypi|[pytz](https://pypi.org/project/pytz)|0.038| |pypi|[Babel](https://pypi.org/project/Babel)|0.019| |pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.019| |pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.012| diff --git a/_repos/github/Narayana-Rao/SAR-tools/badge.png b/_repos/github/Narayana-Rao/SAR-tools/badge.png index fc407b4d..a5ef9df4 100644 Binary files a/_repos/github/Narayana-Rao/SAR-tools/badge.png and b/_repos/github/Narayana-Rao/SAR-tools/badge.png differ diff --git a/_repos/github/Narayana-Rao/SAR-tools/data.json b/_repos/github/Narayana-Rao/SAR-tools/data.json index f6fc60a7..4518e053 100644 --- a/_repos/github/Narayana-Rao/SAR-tools/data.json +++ b/_repos/github/Narayana-Rao/SAR-tools/data.json @@ -71,8 +71,8 @@ "url": "https://alabaster.readthedocs.io" }, "babel": { - "credit": 0.03881196, - "url": "http://babel.pocoo.org/" + "credit": 0.00038811960000000034, + "url": "https://babel.pocoo.org/" }, "snowballstemmer": { "credit": 0.03881196, @@ -314,6 +314,10 @@ "credit": 0.005489120057142857, "url": "https://pypi.org/project/urllib3" }, + "pytz": { + "credit": 0.0384238404, + "url": "https://pypi.org/project/pytz" + }, "Babel": { "credit": 0.0192119202, "url": "https://pypi.org/project/Babel" diff --git a/_repos/github/NeuralEnsemble/PyNN/README.md b/_repos/github/NeuralEnsemble/PyNN/README.md index 709a0b23..d218ae31 100644 --- a/_repos/github/NeuralEnsemble/PyNN/README.md +++ b/_repos/github/NeuralEnsemble/PyNN/README.md @@ -8,9 +8,10 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.316| |pypi|[quantities](http://python-quantities.readthedocs.io/)|0.278| +|pypi|[PyNN](http://neuralensemble.org/PyNN/)|0.247| |pypi|[lazyarray](http://github.com/NeuralEnsemble/lazyarray/)|0.247| +|pypi|[numpy](https://www.numpy.org)|0.069| |pypi|[stfio](https://pypi.org/project/stfio)|0.031| |pypi|[klusta](https://klusta.cortexlab.net)|0.031| |pypi|[igor](http://blog.tremily.us/posts/igor/)|0.031| diff --git a/_repos/github/NeuralEnsemble/PyNN/badge.png b/_repos/github/NeuralEnsemble/PyNN/badge.png index f3acf980..76ca9ffb 100644 Binary files a/_repos/github/NeuralEnsemble/PyNN/badge.png and b/_repos/github/NeuralEnsemble/PyNN/badge.png differ diff --git a/_repos/github/NeuralEnsemble/PyNN/data.json b/_repos/github/NeuralEnsemble/PyNN/data.json index 4c8462d3..92bc0229 100644 --- a/_repos/github/NeuralEnsemble/PyNN/data.json +++ b/_repos/github/NeuralEnsemble/PyNN/data.json @@ -6,9 +6,9 @@ } }, "pypi": { - "numpy": { - "credit": 0.3160304296875, - "url": "https://www.numpy.org" + "PyNN": { + "credit": 0.2475, + "url": "http://neuralensemble.org/PyNN/" }, "lazyarray": { "credit": 0.2475, @@ -46,6 +46,10 @@ "credit": 0.030628125, "url": "http://blog.tremily.us/posts/igor/" }, + "numpy": { + "credit": 0.06853042968749999, + "url": "https://www.numpy.org" + }, "pytest-timeout": { "credit": 1.8951152343749935e-05, "url": "https://github.com/pytest-dev/pytest-timeout" diff --git a/_repos/github/Nico-Curti/rFBP/README.md b/_repos/github/Nico-Curti/rFBP/README.md index 59116682..0bd40c6e 100644 --- a/_repos/github/Nico-Curti/rFBP/README.md +++ b/_repos/github/Nico-Curti/rFBP/README.md @@ -8,46 +8,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.33| -|pypi|[Cython](http://cython.org/)|0.33| -|pypi|[pytest](https://pypi.org/project/pytest)|0.014| -|pypi|[filelock](https://pypi.org/project/filelock)|0.013| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.012| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.011| -|pypi|[tomli](https://pypi.org/project/tomli)|0.011| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.011| -|pypi|[ini2toml](https://github.com/abravalheri/ini2toml/)|0.011| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.011| -|pypi|[build](https://pypi.org/project/build)|0.011| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.011| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.011| -|pypi|[pip](https://pypi.org/project/pip)|0.011| -|pypi|[wheel](https://pypi.org/project/wheel)|0.011| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.011| -|pypi|[mock](https://pypi.org/project/mock)|0.011| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.011| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.011| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.011| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.011| -|pypi|[furo](https://pypi.org/project/furo)|0.011| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.011| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.011| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.011| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.011| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.011| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.011| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.011| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|github/Nico-Curti/rFBP|0.01| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[six](https://pypi.org/project/six)|0.001| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| -|pypi|[hunter](https://pypi.org/project/hunter)|0.001| -|pypi|[fields](https://pypi.org/project/fields)|0.001| -|pypi|[coverage](https://pypi.org/project/coverage)|0.001| +|pypi|[ReplicatedFocusingBeliefPropagation](https://github.com/Nico-Curti/rFBP)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Nico-Curti/rFBP/badge.png b/_repos/github/Nico-Curti/rFBP/badge.png index 1c717b40..5c304155 100644 Binary files a/_repos/github/Nico-Curti/rFBP/badge.png and b/_repos/github/Nico-Curti/rFBP/badge.png differ diff --git a/_repos/github/Nico-Curti/rFBP/data.json b/_repos/github/Nico-Curti/rFBP/data.json index 6bb30c83..280ff588 100644 --- a/_repos/github/Nico-Curti/rFBP/data.json +++ b/_repos/github/Nico-Curti/rFBP/data.json @@ -6,169 +6,9 @@ } }, "pypi": { - "setuptools": { - "credit": 0.003300000000000025, - "url": "https://github.com/pypa/setuptools" - }, - "numpy": { - "credit": 0.33, - "url": "https://www.numpy.org" - }, - "Cython": { - "credit": 0.33, - "url": "http://cython.org/" - }, - "pytest-mypy": { - "credit": 0.00010538709677419301, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-cov": { - "credit": 0.00010538709677419301, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-black": { - "credit": 0.010538709677419355, - "url": "https://github.com/shopkeep/pytest-black" - }, - "tomli": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/tomli" - }, - "tomli-w": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/tomli-w" - }, - "ini2toml": { - "credit": 0.010538709677419355, - "url": "https://github.com/abravalheri/ini2toml/" - }, - "pip-run": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pip-run" - }, - "filelock": { - "credit": 0.013147040322580645, - "url": "https://pypi.org/project/filelock" - }, - "build": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/build" - }, - "jaraco.path": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.path" - }, - "pytest-xdist": { - "credit": 0.011842875000000001, - "url": "https://pypi.org/project/pytest-xdist" - }, - "jaraco.envs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.envs" - }, - "pip": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pip" - }, - "wheel": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/wheel" - }, - "virtualenv": { - "credit": 0.011842875000000001, - "url": "https://pypi.org/project/virtualenv" - }, - "flake8-2020": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/flake8-2020" - }, - "mock": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/mock" - }, - "pytest-perf": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-perf" - }, - "pytest-enabler": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-flake8": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "pytest": { - "credit": 0.01445120564516129, - "url": "https://pypi.org/project/pytest" - }, - "furo": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/furo" - }, - "sphinxcontrib-towncrier": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" - }, - "sphinx-inline-tabs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx-inline-tabs" - }, - "sphinx-favicon": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx-favicon" - }, - "pygments-github-lexers": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pygments-github-lexers" - }, - "jaraco.tidelift": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx" - }, - "mypy": { - "credit": 0.0026083306451612906, - "url": "https://pypi.org/project/mypy" - }, - "attrs": { - "credit": 0.0026083306451612906, - "url": "https://pypi.org/project/attrs" - }, - "six": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/coverage" + "ReplicatedFocusingBeliefPropagation": { + "credit": 0.0099, + "url": "https://github.com/Nico-Curti/rFBP" } } } \ No newline at end of file diff --git a/_repos/github/ORNL/tx2/badge.png b/_repos/github/ORNL/tx2/badge.png index d4d58ed6..a2f0b84c 100644 Binary files a/_repos/github/ORNL/tx2/badge.png and b/_repos/github/ORNL/tx2/badge.png differ diff --git a/_repos/github/Oftatkofta/cellocity/README.md b/_repos/github/Oftatkofta/cellocity/README.md index 64284b71..84d38b32 100644 --- a/_repos/github/Oftatkofta/cellocity/README.md +++ b/_repos/github/Oftatkofta/cellocity/README.md @@ -8,43 +8,82 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.278| -|pypi|[matplotlib](https://matplotlib.org)|0.164| -|pypi|[docutils](http://docutils.sourceforge.net/)|0.119| -|pypi|[cython](http://cython.org/)|0.099| -|pypi|[scipy](https://pypi.org/project/scipy)|0.034| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.026| -|pypi|[pandas](https://pandas.pydata.org)|0.025| -|pypi|[lxml](https://lxml.de/)|0.025| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.02| -|pypi|[pybtex-docutils](https://pypi.org/project/pybtex-docutils)|0.02| -|pypi|[pybtex](https://pypi.org/project/pybtex)|0.02| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.02| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.016| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.016| -|pypi|[pytz](https://pypi.org/project/pytz)|0.016| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.016| +|pypi|[matplotlib](https://matplotlib.org)|0.049| +|pypi|[numpy](https://pypi.org/project/numpy)|0.047| +|pypi|[docutils](https://pypi.org/project/docutils)|0.043| +|pypi|[latexcodec](https://pypi.org/project/latexcodec)|0.03| +|pypi|[Sphinx](https://www.sphinx-doc.org/)|0.029| +|pypi|[GitPython](https://pypi.org/project/GitPython)|0.027| +|pypi|[imageio](https://pypi.org/project/imageio)|0.027| +|pypi|[natsort](https://pypi.org/project/natsort)|0.027| +|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.027| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.024| +|pypi|[oset](https://gitorious.com/sleipnir/python-oset)|0.024| +|pypi|[progressbar2](https://pypi.org/project/progressbar2)|0.024| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.024| +|pypi|[babel](https://pypi.org/project/babel)|0.024| +|pypi|[gitdb](https://pypi.org/project/gitdb)|0.024| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.024| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.024| +|pypi|[networkx](https://pypi.org/project/networkx)|0.024| +|pypi|[python-utils](https://pypi.org/project/python-utils)|0.024| +|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.024| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.024| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.024| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.024| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.024| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.024| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.024| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.024| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.024| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.024| +|pypi|[smmap](https://pypi.org/project/smmap)|0.024| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.024| +|pypi|[pybtex](https://pybtex.org/)|0.017| +|pypi|[scipy](https://pypi.org/project/scipy)|0.01| |setup.py|github/Oftatkofta/cellocity|0.01| -|pypi|[GitPython](https://pypi.org/project/GitPython)|0.01| -|pypi|[natsort](https://pypi.org/project/natsort)|0.01| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.01| -|pypi|[imageio](https://pypi.org/project/imageio)|0.01| -|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.007| +|pypi|[pytest](https://pypi.org/project/pytest)|0.01| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.009| +|pypi|[pandas](https://pypi.org/project/pandas)|0.008| +|pypi|[lxml](https://pypi.org/project/lxml)|0.008| +|pypi|[imagecodecs](https://www.lfd.uci.edu/~gohlke/)|0.006| |pypi|[numcodecs](https://pypi.org/project/numcodecs)|0.006| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005| -|pypi|[ipython](https://pypi.org/project/ipython)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.001| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.001| -|pypi|[wheel](https://pypi.org/project/wheel)|0.001| -|pypi|[twine](https://pypi.org/project/twine)|0.001| -|pypi|[py-make](https://pypi.org/project/py-make)|0.001| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[opencv-python](https://github.com/skvark/opencv-python)|0.001| -|pypi|[seaborn](https://seaborn.pydata.org)|0.001| -|pypi|[OpenPIV](https://pypi.org/project/OpenPIV)|0.001| -|pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.006| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.006| +|pypi|[pybtex-docutils](https://github.com/mcmtroffaes/pybtex-docutils)|0.005| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.005| +|pypi|[opencv-python](https://github.com/skvark/opencv-python)|0.003| +|pypi|[seaborn](https://seaborn.pydata.org)|0.003| +|pypi|[OpenPIV](https://pypi.org/project/OpenPIV)|0.003| +|pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|0.003| +|pypi|[cython](https://pypi.org/project/cython)|0.002| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.002| +|pypi|[watermark](https://pypi.org/project/watermark)|0.002| +|pypi|[xattr](https://pypi.org/project/xattr)|0.002| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.002| +|pypi|[munkres](https://pypi.org/project/munkres)|0.002| +|pypi|[brotli](https://pypi.org/project/brotli)|0.002| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.002| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.002| +|pypi|[sympy](https://pypi.org/project/sympy)|0.002| +|pypi|[lz4](https://pypi.org/project/lz4)|0.002| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.002| +|pypi|[fs](https://pypi.org/project/fs)|0.002| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.001| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.001| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.001| +|pypi|[packaging](https://pypi.org/project/packaging)|0.001| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.001| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.001| +|pypi|[coverage](https://pypi.org/project/coverage)|0.001| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.001| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.001| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.001| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.001| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.001| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.001| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.001| +|pypi|[olefile](https://pypi.org/project/olefile)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Oftatkofta/cellocity/badge.png b/_repos/github/Oftatkofta/cellocity/badge.png index 8f2504b0..21ba5818 100644 Binary files a/_repos/github/Oftatkofta/cellocity/badge.png and b/_repos/github/Oftatkofta/cellocity/badge.png differ diff --git a/_repos/github/Oftatkofta/cellocity/data.json b/_repos/github/Oftatkofta/cellocity/data.json index f063bb7c..a5956713 100644 --- a/_repos/github/Oftatkofta/cellocity/data.json +++ b/_repos/github/Oftatkofta/cellocity/data.json @@ -6,161 +6,321 @@ } }, "pypi": { - "docutils": { - "credit": 0.11860200000000001, - "url": "http://docutils.sourceforge.net/" - }, - "tifffile": { - "credit": 0.007054368750000005, - "url": "https://www.lfd.uci.edu/~gohlke/" - }, - "opencv-python": { - "credit": 0.0009900000000000048, - "url": "https://github.com/skvark/opencv-python" - }, - "cython": { - "credit": 0.099, - "url": "http://cython.org/" + "cellocity": { + "credit": 0.00024146341463414378, + "url": "https://github.com/oftatkofta/cellocity" }, "OpenPIV": { - "credit": 0.0009899999999999909, + "credit": 0.0026319512195121927, "url": "https://pypi.org/project/OpenPIV" }, - "numpy": { - "credit": 0.27821536874999997, - "url": "https://www.numpy.org" + "sphinxcontrib-bibtex": { + "credit": 0.0026319512195121927, + "url": "https://github.com/mcmtroffaes/sphinxcontrib-bibtex" }, - "pandas": { - "credit": 0.02549250000000002, - "url": "https://pandas.pydata.org" + "tifffile": { + "credit": 0.008608170731707318, + "url": "https://www.lfd.uci.edu/~gohlke/" }, "matplotlib": { - "credit": 0.16387036875, + "credit": 0.04869481238273922, "url": "https://matplotlib.org" }, + "opencv-python": { + "credit": 0.002631951219512196, + "url": "https://github.com/skvark/opencv-python" + }, "seaborn": { - "credit": 0.0009900000000000048, + "credit": 0.002631951219512196, "url": "https://seaborn.pydata.org" }, - "sphinxcontrib-bibtex": { - "credit": 0.0009899999999999909, - "url": "https://github.com/mcmtroffaes/sphinxcontrib-bibtex" + "cycler": { + "credit": 0.024146341463414635, + "url": "https://github.com/matplotlib/cycler" }, - "lxml": { - "credit": 0.0245025, - "url": "https://lxml.de/" + "fonttools": { + "credit": 0.00024146341463414725, + "url": "http://github.com/fonttools/fonttools" }, "imagecodecs": { - "credit": 0.0002450249999999994, + "credit": 0.006217682926829269, "url": "https://www.lfd.uci.edu/~gohlke/" }, - "tqdm": { - "credit": 9.80100000000008e-05, - "url": "https://tqdm.github.io" + "kiwisolver": { + "credit": 0.00024146341463414725, + "url": "https://github.com/nucleic/kiwi" }, - "watermark": { - "credit": 9.80100000000008e-05, - "url": "https://github.com/rasbt/watermark" + "oset": { + "credit": 0.024146341463414635, + "url": "https://gitorious.com/sleipnir/python-oset" }, - "pytest": { - "credit": 0.026136, - "url": "https://docs.pytest.org/en/latest/" + "pillow": { + "credit": 0.00024146341463414725, + "url": "https://python-pillow.org" + }, + "pybtex": { + "credit": 0.01697487804878049, + "url": "https://pybtex.org/" + }, + "pybtex-docutils": { + "credit": 0.005022439024390245, + "url": "https://github.com/mcmtroffaes/pybtex-docutils" + }, + "Sphinx": { + "credit": 0.028927317073170734, + "url": "https://www.sphinx-doc.org/" + }, + "docutils": { + "credit": 0.043270243902439026, + "url": "https://pypi.org/project/docutils" }, "GitPython": { - "credit": 0.009801, + "credit": 0.026536829268292685, "url": "https://pypi.org/project/GitPython" }, + "imageio": { + "credit": 0.026536829268292685, + "url": "https://pypi.org/project/imageio" + }, "natsort": { - "credit": 0.009801, + "credit": 0.026536829268292685, "url": "https://pypi.org/project/natsort" }, - "scipy": { - "credit": 0.0343035, - "url": "https://pypi.org/project/scipy" + "progressbar2": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/progressbar2" }, "scikit-image": { - "credit": 0.009801, + "credit": 0.026536829268292685, "url": "https://pypi.org/project/scikit-image" }, - "imageio": { - "credit": 0.009801, - "url": "https://pypi.org/project/imageio" + "alabaster": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/alabaster" + }, + "babel": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/babel" + }, + "gitdb": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/gitdb" + }, + "importlib-metadata": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/importlib-metadata" + }, + "Jinja2": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/Jinja2" + }, + "latexcodec": { + "credit": 0.030122560975609756, + "url": "https://pypi.org/project/latexcodec" }, - "pytest-xdist": { - "credit": 0.016335, - "url": "https://pypi.org/project/pytest-xdist" + "networkx": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/networkx" }, - "hypothesis": { - "credit": 0.016335, - "url": "https://pypi.org/project/hypothesis" + "python-utils": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/python-utils" }, - "pytz": { - "credit": 0.016335, - "url": "https://pypi.org/project/pytz" + "PyWavelets": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/PyWavelets" }, - "python-dateutil": { - "credit": 0.016335, - "url": "https://pypi.org/project/python-dateutil" + "snowballstemmer": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/snowballstemmer" + }, + "sphinxcontrib-htmlhelp": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + }, + "sphinxcontrib-serializinghtml": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + }, + "imagesize": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/imagesize" + }, + "sphinxcontrib-applehelp": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/sphinxcontrib-applehelp" + }, + "sphinxcontrib-devhelp": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" + }, + "sphinxcontrib-jsmath": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" + }, + "sphinxcontrib-qthelp": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" + }, + "MarkupSafe": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/MarkupSafe" + }, + "smmap": { + "credit": 0.024146341463414635, + "url": "https://pypi.org/project/smmap" + }, + "pandas": { + "credit": 0.00836670731707317, + "url": "https://pypi.org/project/pandas" + }, + "numpy": { + "credit": 0.04661451219512196, + "url": "https://pypi.org/project/numpy" + }, + "cython": { + "credit": 0.002390487804878049, + "url": "https://pypi.org/project/cython" + }, + "tqdm": { + "credit": 0.002390487804878049, + "url": "https://pypi.org/project/tqdm" + }, + "watermark": { + "credit": 0.002390487804878049, + "url": "https://pypi.org/project/watermark" + }, + "pytest": { + "credit": 0.009860762195121952, + "url": "https://pypi.org/project/pytest" + }, + "scipy": { + "credit": 0.010205544090056286, + "url": "https://pypi.org/project/scipy" }, "dataclasses": { - "credit": 0.019602, + "credit": 0.004780975609756098, "url": "https://pypi.org/project/dataclasses" }, - "pybtex-docutils": { - "credit": 0.019602, - "url": "https://pypi.org/project/pybtex-docutils" + "lxml": { + "credit": 0.007815056285178236, + "url": "https://pypi.org/project/lxml" }, - "pybtex": { - "credit": 0.019602, - "url": "https://pypi.org/project/pybtex" + "xattr": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/xattr" }, - "Sphinx": { - "credit": 0.019602, - "url": "https://pypi.org/project/Sphinx" + "unicodedata2": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/zopfli" + }, + "fs": { + "credit": 0.0018388367729831145, + "url": "https://pypi.org/project/fs" }, "numcodecs": { - "credit": 0.00606436875, + "credit": 0.005976219512195122, "url": "https://pypi.org/project/numcodecs" }, - "requests": { - "credit": 0.00121287375, - "url": "https://pypi.org/project/requests" + "typing-extensions": { + "credit": 0.023904878048780488, + "url": "https://pypi.org/project/typing-extensions" }, - "slack-sdk": { - "credit": 0.00121287375, - "url": "https://pypi.org/project/slack-sdk" + "pytest-timeout": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/pytest-timeout" }, - "ipywidgets": { - "credit": 0.00121287375, - "url": "https://pypi.org/project/ipywidgets" + "pytest-cov": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/pytest-cov" }, - "wheel": { - "credit": 0.00121287375, - "url": "https://pypi.org/project/wheel" + "pyroma": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/pyroma" }, - "twine": { - "credit": 0.00121287375, - "url": "https://pypi.org/project/twine" + "packaging": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/packaging" }, - "py-make": { - "credit": 0.00121287375, - "url": "https://pypi.org/project/py-make" + "markdown2": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/markdown2" }, - "importlib-resources": { - "credit": 0.00121287375, - "url": "https://pypi.org/project/importlib-resources" + "defusedxml": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/defusedxml" }, - "colorama": { - "credit": 0.00121287375, - "url": "https://pypi.org/project/colorama" + "coverage": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/coverage" }, - "importlib-metadata": { - "credit": 0.004851495, - "url": "https://pypi.org/project/importlib-metadata" + "check-manifest": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.0014940548780487805, + "url": "https://pypi.org/project/olefile" + }, + "six": { + "credit": 0.005976219512195122, + "url": "https://pypi.org/project/six" }, - "ipython": { - "credit": 0.004851495, - "url": "https://pypi.org/project/ipython" + "PyYAML": { + "credit": 0.005976219512195122, + "url": "https://pypi.org/project/PyYAML" } } } \ No newline at end of file diff --git a/_repos/github/OpenMDAO/dymos/README.md b/_repos/github/OpenMDAO/dymos/README.md index 3aedc8dd..16e57e23 100644 --- a/_repos/github/OpenMDAO/dymos/README.md +++ b/_repos/github/OpenMDAO/dymos/README.md @@ -8,10 +8,37 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[dymos](https://github.com/OpenMDAO/dymos)|0.247| +|pypi|[openmdao](http://openmdao.org)|0.247| +|pypi|[pyDOE2](https://github.com/clicumu/pyDOE2)|0.247| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.014| +|pypi|[sympy](https://pypi.org/project/sympy)|0.012| +|pypi|[pydot](https://pypi.org/project/pydot)|0.012| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.012| +|pypi|[lxml](https://pypi.org/project/lxml)|0.012| +|pypi|[texext](https://pypi.org/project/texext)|0.012| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.012| +|pypi|[pillow](https://pypi.org/project/pillow)|0.012| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.012| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.012| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[mypy](https://pypi.org/project/mypy)|0.012| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.012| +|pypi|[pandas](https://pypi.org/project/pandas)|0.012| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.012| +|pypi|[scipy](https://pypi.org/project/scipy)|0.012| +|pypi|[numpy](https://pypi.org/project/numpy)|0.012| |setup.py|github/OpenMDAO/dymos|0.01| -|pypi|[numpy](https://www.numpy.org)|0.007| -|pypi|[openmdao](http://openmdao.org)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.003| +|pypi|[coverage](https://pypi.org/project/coverage)|0.008| +|pypi|[requests](https://pypi.org/project/requests)|0.006| +|pypi|[networkx](https://networkx.org/)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[six](https://pypi.org/project/six)|0.002| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| +|pypi|[hunter](https://pypi.org/project/hunter)|0.002| +|pypi|[fields](https://pypi.org/project/fields)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/OpenMDAO/dymos/badge.png b/_repos/github/OpenMDAO/dymos/badge.png index e617ee4b..6266fa18 100644 Binary files a/_repos/github/OpenMDAO/dymos/badge.png and b/_repos/github/OpenMDAO/dymos/badge.png differ diff --git a/_repos/github/OpenMDAO/dymos/data.json b/_repos/github/OpenMDAO/dymos/data.json index 2e976a8f..950cc7ff 100644 --- a/_repos/github/OpenMDAO/dymos/data.json +++ b/_repos/github/OpenMDAO/dymos/data.json @@ -6,17 +6,133 @@ } }, "pypi": { + "dymos": { + "credit": 0.2475, + "url": "https://github.com/OpenMDAO/dymos" + }, "openmdao": { - "credit": 0.0033000000000000004, + "credit": 0.2475, "url": "http://openmdao.org" }, - "numpy": { - "credit": 0.006567, - "url": "https://www.numpy.org" + "networkx": { + "credit": 0.002475000000000005, + "url": "https://networkx.org/" + }, + "pyDOE2": { + "credit": 0.2475, + "url": "https://github.com/clicumu/pyDOE2" + }, + "codecov": { + "credit": 0.0001225124999999997, + "url": "https://github.com/codecov/codecov-python" + }, + "pytest-cov": { + "credit": 0.0001225124999999997, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.0137673421875, + "url": "https://docs.pytest.org/en/latest/" + }, + "sympy": { + "credit": 0.01225125, + "url": "https://pypi.org/project/sympy" + }, + "pydot": { + "credit": 0.01225125, + "url": "https://pypi.org/project/pydot" + }, + "pygraphviz": { + "credit": 0.01225125, + "url": "https://pypi.org/project/pygraphviz" + }, + "lxml": { + "credit": 0.01225125, + "url": "https://pypi.org/project/lxml" + }, + "texext": { + "credit": 0.01225125, + "url": "https://pypi.org/project/texext" + }, + "nb2plots": { + "credit": 0.01225125, + "url": "https://pypi.org/project/nb2plots" + }, + "pillow": { + "credit": 0.01225125, + "url": "https://pypi.org/project/pillow" + }, + "numpydoc": { + "credit": 0.01225125, + "url": "https://pypi.org/project/numpydoc" + }, + "sphinx-gallery": { + "credit": 0.01225125, + "url": "https://pypi.org/project/sphinx-gallery" + }, + "pydata-sphinx-theme": { + "credit": 0.01225125, + "url": "https://pypi.org/project/pydata-sphinx-theme" + }, + "sphinx": { + "credit": 0.01225125, + "url": "https://pypi.org/project/sphinx" + }, + "mypy": { + "credit": 0.01225125, + "url": "https://pypi.org/project/mypy" + }, + "pre-commit": { + "credit": 0.01225125, + "url": "https://pypi.org/project/pre-commit" + }, + "pandas": { + "credit": 0.01225125, + "url": "https://pypi.org/project/pandas" + }, + "matplotlib": { + "credit": 0.01225125, + "url": "https://pypi.org/project/matplotlib" }, "scipy": { - "credit": 0.0033000000000000004, - "url": "https://www.scipy.org" + "credit": 0.01225125, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.01225125, + "url": "https://pypi.org/project/numpy" + }, + "coverage": { + "credit": 0.0075804609375, + "url": "https://pypi.org/project/coverage" + }, + "requests": { + "credit": 0.00606436875, + "url": "https://pypi.org/project/requests" + }, + "virtualenv": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/virtualenv" + }, + "pytest-xdist": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/pytest-xdist" + }, + "six": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/six" + }, + "process-tests": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/OpenMDAO/dymos/setup.py b/_repos/github/OpenMDAO/dymos/setup.py index 0dd4ad90..9737047e 100644 --- a/_repos/github/OpenMDAO/dymos/setup.py +++ b/_repos/github/OpenMDAO/dymos/setup.py @@ -65,7 +65,7 @@ packages=find_packages(), python_requires=">=3.7", install_requires=[ - 'openmdao>=3.14.0', + 'openmdao>=3.17.0', 'numpy>=1.17', 'scipy>=1.2' ], diff --git a/_repos/github/PfizerRD/sit2standpy/README.md b/_repos/github/PfizerRD/sit2standpy/README.md index c7123d84..2895aaa1 100644 --- a/_repos/github/PfizerRD/sit2standpy/README.md +++ b/_repos/github/PfizerRD/sit2standpy/README.md @@ -8,47 +8,22 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.625| -|pypi|[udatetime](https://github.com/freach/udatetime)|0.198| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.034| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.034| +|pypi|[numpy](https://www.numpy.org)|0.584| +|pypi|[udatetime](https://github.com/freach/udatetime)|0.33| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.016| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.013| +|pypi|[pytz](https://pypi.org/project/pytz)|0.013| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.013| |setup.py|github/PfizerRD/sit2standpy|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.008| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.005| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.005| -|pypi|[psutil](https://pypi.org/project/psutil)|0.005| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.005| -|pypi|[execnet](https://pypi.org/project/execnet)|0.005| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| -|pypi|[pandas](https://pandas.pydata.org)|0.004| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[colorama](https://pypi.org/project/colorama)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[pywavelets](https://github.com/PyWavelets/pywt)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[rich](https://pypi.org/project/rich)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[libcst](https://pypi.org/project/libcst)|0.002| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.002| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.002| -|pypi|[django](https://pypi.org/project/django)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| +|pypi|[pywavelets](https://github.com/PyWavelets/pywt)|0.004| +|pypi|[sit2standpy](https://github.com/PfizerRD/sit2standpy)|0.003| +|pypi|[filelock](https://pypi.org/project/filelock)|0.002| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.002| +|pypi|[execnet](https://pypi.org/project/execnet)|0.002| +|pypi|[pandas](https://pandas.pydata.org)|0.001| +|pypi|[scipy](https://www.scipy.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/PfizerRD/sit2standpy/badge.png b/_repos/github/PfizerRD/sit2standpy/badge.png index 1bbf30eb..90ce15f8 100644 Binary files a/_repos/github/PfizerRD/sit2standpy/badge.png and b/_repos/github/PfizerRD/sit2standpy/badge.png differ diff --git a/_repos/github/PfizerRD/sit2standpy/data.json b/_repos/github/PfizerRD/sit2standpy/data.json index 6deed65f..b7154359 100644 --- a/_repos/github/PfizerRD/sit2standpy/data.json +++ b/_repos/github/PfizerRD/sit2standpy/data.json @@ -6,169 +6,69 @@ } }, "pypi": { - "numpy": { - "credit": 0.62450685, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.0019800000000000095, - "url": "https://www.scipy.org" - }, - "pandas": { - "credit": 0.0037768500000000373, - "url": "https://pandas.pydata.org" + "sit2standpy": { + "credit": 0.003300000000000025, + "url": "https://github.com/PfizerRD/sit2standpy" }, "pywavelets": { - "credit": 0.0019800000000000095, + "credit": 0.00411675000000003, "url": "https://github.com/PyWavelets/pywt" }, "udatetime": { - "credit": 0.198, + "credit": 0.33, "url": "https://github.com/freach/udatetime" }, + "pandas": { + "credit": 0.000816750000000005, + "url": "https://pandas.pydata.org" + }, + "scipy": { + "credit": 0.000816750000000005, + "url": "https://www.scipy.org" + }, + "numpy": { + "credit": 0.583567875, + "url": "https://www.numpy.org" + }, "pytest-xdist": { - "credit": 0.0003266999999999992, + "credit": 0.00013476375000000262, "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest": { - "credit": 0.007514099999999999, + "credit": 0.015699976874999997, "url": "https://docs.pytest.org/en/latest/" }, "hypothesis": { - "credit": 0.002348156249999999, - "url": "https://hypothesis.works" + "credit": 0.013476374999999999, + "url": "https://pypi.org/project/hypothesis" }, "pytz": { - "credit": 0.03446685, - "url": "http://pythonhosted.org/pytz" + "credit": 0.013476374999999999, + "url": "https://pypi.org/project/pytz" }, "python-dateutil": { - "credit": 0.03446685, - "url": "https://github.com/dateutil/dateutil" + "credit": 0.013476374999999999, + "url": "https://pypi.org/project/python-dateutil" }, "filelock": { - "credit": 0.00539055, - "url": "https://github.com/tox-dev/py-filelock" + "credit": 0.0022236018749999995, + "url": "https://pypi.org/project/filelock" }, "setproctitle": { - "credit": 0.00539055, + "credit": 0.0022236018749999995, "url": "https://pypi.org/project/setproctitle" }, "psutil": { - "credit": 0.00539055, + "credit": 0.0022236018749999995, "url": "https://pypi.org/project/psutil" }, "pytest-forked": { - "credit": 0.00539055, + "credit": 0.0022236018749999995, "url": "https://pypi.org/project/pytest-forked" }, "execnet": { - "credit": 0.00539055, + "credit": 0.0022236018749999995, "url": "https://pypi.org/project/execnet" - }, - "xmlschema": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/mock" - }, - "argcomplete": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.00381830625, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.00381830625, - "url": "https://pypi.org/project/attrs" - }, - "tzdata": { - "credit": 0.00179685, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.00179685, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.00179685, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.00179685, - "url": "https://pypi.org/project/redis" - }, - "libcst": { - "credit": 0.00179685, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.00179685, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.00179685, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.00179685, - "url": "https://pypi.org/project/django" - }, - "click": { - "credit": 0.00179685, - "url": "https://pypi.org/project/click" - }, - "black": { - "credit": 0.00179685, - "url": "https://pypi.org/project/black" - }, - "sortedcontainers": { - "credit": 0.00179685, - "url": "https://pypi.org/project/sortedcontainers" } } } \ No newline at end of file diff --git a/_repos/github/PolymerGuy/recolo/README.md b/_repos/github/PolymerGuy/recolo/README.md index ccdd8875..8b06a0b8 100644 --- a/_repos/github/PolymerGuy/recolo/README.md +++ b/_repos/github/PolymerGuy/recolo/README.md @@ -100,7 +100,7 @@ exclude_from_search: true |pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|0.001| |pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|0.001| |pypi|[scikit-image](https://scikit-image.org)|0.001| -|pypi|[beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/)|0.001| +|pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/PolymerGuy/recolo/badge.png b/_repos/github/PolymerGuy/recolo/badge.png index 4c8e148b..348e4347 100644 Binary files a/_repos/github/PolymerGuy/recolo/badge.png and b/_repos/github/PolymerGuy/recolo/badge.png differ diff --git a/_repos/github/PolymerGuy/recolo/data.json b/_repos/github/PolymerGuy/recolo/data.json index db95e0c5..884a0ad8 100644 --- a/_repos/github/PolymerGuy/recolo/data.json +++ b/_repos/github/PolymerGuy/recolo/data.json @@ -60,7 +60,7 @@ }, "beautifulsoup4": { "credit": 0.0006599999999999939, - "url": "https://www.crummy.com/software/BeautifulSoup/bs4/" + "url": "http://www.crummy.com/software/BeautifulSoup/bs4/" }, "SciencePlots": { "credit": 0.066, diff --git a/_repos/github/PyPSA/atlite/README.md b/_repos/github/PyPSA/atlite/README.md index 31f0b6cc..882e1e1d 100644 --- a/_repos/github/PyPSA/atlite/README.md +++ b/_repos/github/PyPSA/atlite/README.md @@ -8,72 +8,90 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.159| -|pypi|[pyproj](https://github.com/pyproj4/pyproj)|0.069| -|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.059| -|pypi|[pyyaml](https://pyyaml.org/)|0.059| -|pypi|[numexpr](https://github.com/pydata/numexpr)|0.055| -|pypi|[netcdf4](http://github.com/Unidata/netcdf4-python)|0.055| -|pypi|[cdsapi](https://github.com/ecmwf/cdsapi)|0.055| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.043| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.029| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.024| -|pypi|[pandas](https://pandas.pydata.org)|0.02| -|pypi|[shapely](https://github.com/shapely/shapely)|0.017| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.016| -|pypi|[gitpython](https://pypi.org/project/gitpython)|0.014| -|pypi|[fiona](https://pypi.org/project/fiona)|0.014| +|pypi|[numpy](https://pypi.org/project/numpy)|0.079| +|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.063| +|pypi|[click](https://pypi.org/project/click)|0.063| +|pypi|[locket](http://github.com/mwilliamson/locket.py)|0.059| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.056| +|pypi|[pyproj](https://github.com/pyproj4/pyproj)|0.051| +|pypi|[pytest](https://pypi.org/project/pytest)|0.049| +|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.042| +|pypi|[munch](https://github.com/Infinidat/munch)|0.042| +|pypi|[cdsapi](https://github.com/ecmwf/cdsapi)|0.041| +|pypi|[netcdf4](http://github.com/Unidata/netcdf4-python)|0.041| +|pypi|[numexpr](https://github.com/pydata/numexpr)|0.041| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.023| +|pypi|[flake8](https://pypi.org/project/flake8)|0.017| +|pypi|[shapely](https://github.com/shapely/shapely)|0.016| +|pypi|[pandas](https://pypi.org/project/pandas)|0.015| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.013| |pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.012| -|pypi|[certifi](https://pypi.org/project/certifi)|0.01| +|pypi|[fiona](http://github.com/Toblerity/Fiona)|0.01| |setup.py|github/PyPSA/atlite|0.01| -|pypi|[pytz](https://pypi.org/project/pytz)|0.009| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.008| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.008| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.008| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.008| -|pypi|[idna](https://pypi.org/project/idna)|0.008| -|pypi|[chardet](https://pypi.org/project/chardet)|0.008| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.008| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.008| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.008| -|pypi|[python-utils](https://pypi.org/project/python-utils)|0.008| -|pypi|[requests](https://requests.readthedocs.io)|0.007| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.007| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.007| -|pypi|[wheel](https://pypi.org/project/wheel)|0.007| -|pypi|[twine](https://pypi.org/project/twine)|0.007| -|pypi|[py-make](https://pypi.org/project/py-make)|0.007| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.007| -|pypi|[colorama](https://pypi.org/project/colorama)|0.007| -|pypi|[fsspec](https://pypi.org/project/fsspec)|0.006| -|pypi|[ipython](https://pypi.org/project/ipython)|0.005| +|pypi|[python-utils](https://github.com/WoLpH/python-utils)|0.01| +|pypi|[gitpython](https://pypi.org/project/gitpython)|0.01| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.01| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.01| +|pypi|[coveralls](https://pypi.org/project/coveralls)|0.008| +|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|0.008| +|pypi|[mock](https://pypi.org/project/mock)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[freezegun](https://pypi.org/project/freezegun)|0.006| +|pypi|[dask](https://github.com/dask/dask/)|0.005| |pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.005| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.004| +|pypi|[cligj](https://github.com/mapbox/cligj)|0.005| +|pypi|[click-plugins](https://github.com/click-contrib/click-plugins)|0.005| +|pypi|[distributed](https://pypi.org/project/distributed)|0.005| +|pypi|[fsspec](http://github.com/fsspec/filesystem_spec)|0.005| +|pypi|[boto3](https://pypi.org/project/boto3)|0.004| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.004| +|pypi|[certifi](https://pypi.org/project/certifi)|0.004| +|pypi|[attrs](https://pypi.org/project/attrs)|0.004| |pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| -|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|0.004| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.004| -|pypi|[distributed](https://pypi.org/project/distributed)|0.004| -|pypi|[bokeh](https://pypi.org/project/bokeh)|0.004| -|pypi|[partd](https://pypi.org/project/partd)|0.004| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.004| -|pypi|[scipy](https://www.scipy.org)|0.003| -|pypi|[bottleneck](https://github.com/pydata/bottleneck)|0.003| -|pypi|[dask](https://github.com/dask/dask/)|0.003| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.004| +|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.004| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.004| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.004| +|pypi|[requests](https://pypi.org/project/requests)|0.004| |pypi|[rasterio](https://github.com/mapbox/rasterio)|0.003| -|pypi|[boto3](https://pypi.org/project/boto3)|0.003| -|pypi|[ghp-import](https://pypi.org/project/ghp-import)|0.003| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.003| -|pypi|[click-plugins](https://pypi.org/project/click-plugins)|0.003| -|pypi|[snuggs](https://pypi.org/project/snuggs)|0.003| -|pypi|[cligj](https://pypi.org/project/cligj)|0.003| -|pypi|[click](https://pypi.org/project/click)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[affine](https://pypi.org/project/affine)|0.003| +|pypi|[bottleneck](https://github.com/pydata/bottleneck)|0.003| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.003| +|pypi|[ipython](https://pypi.org/project/ipython)|0.003| +|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.003| +|pypi|[scipy](https://pypi.org/project/scipy)|0.003| +|pypi|[partd](http://github.com/dask/partd/)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| +|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|0.003| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.003| +|pypi|[bokeh](https://pypi.org/project/bokeh)|0.003| +|pypi|[ordereddict](https://pypi.org/project/ordereddict)|0.003| +|pypi|[argparse](https://pypi.org/project/argparse)|0.003| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[affine](https://github.com/sgillies/affine)|0.002| +|pypi|[snuggs](https://github.com/mapbox/snuggs)|0.002| +|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|0.002| +|pypi|[paramiko](https://pypi.org/project/paramiko)|0.002| +|pypi|[s3fs](https://pypi.org/project/s3fs)|0.002| +|pypi|[ocifs](https://pypi.org/project/ocifs)|0.002| +|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|0.002| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.002| +|pypi|[panel](https://pypi.org/project/panel)|0.002| +|pypi|[pygit2](https://pypi.org/project/pygit2)|0.002| +|pypi|[gcsfs](https://pypi.org/project/gcsfs)|0.002| +|pypi|[fusepy](https://pypi.org/project/fusepy)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[dropbox](https://pypi.org/project/dropbox)|0.002| +|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|0.002| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.002| +|pypi|[adlfs](https://pypi.org/project/adlfs)|0.002| +|pypi|[xarray](https://github.com/pydata/xarray)|0.002| +|pypi|[geopandas](http://geopandas.org)|0.002| +|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|0.002| +|pypi|[cftime](https://pypi.org/project/cftime)|0.002| +|pypi|[ghp-import](https://pypi.org/project/ghp-import)|0.002| +|pypi|[nbsphinx-link](https://github.com/vidartf/nbsphinx-link)|0.002| |pypi|[scanpydoc](https://pypi.org/project/scanpydoc)|0.002| -|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.002| |pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.002| |pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.002| |pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|0.002| @@ -81,21 +99,11 @@ exclude_from_search: true |pypi|[seaborn](https://pypi.org/project/seaborn)|0.002| |pypi|[pooch](https://pypi.org/project/pooch)|0.002| |pypi|[cfgrib](https://pypi.org/project/cfgrib)|0.002| -|pypi|[cftime](https://pypi.org/project/cftime)|0.002| |pypi|[zarr](https://pypi.org/project/zarr)|0.002| |pypi|[pydap](https://pypi.org/project/pydap)|0.002| |pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|0.002| |pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.002| |pypi|[numbagg](https://pypi.org/project/numbagg)|0.002| -|pypi|[filelock](https://pypi.org/project/filelock)|0.001| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.001| -|pypi|[psutil](https://pypi.org/project/psutil)|0.001| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.001| -|pypi|[execnet](https://pypi.org/project/execnet)|0.001| -|pypi|[xarray](https://github.com/pydata/xarray)|0.001| -|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[geopandas](http://geopandas.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/PyPSA/atlite/badge.png b/_repos/github/PyPSA/atlite/badge.png index d1096bd2..6211a09a 100644 Binary files a/_repos/github/PyPSA/atlite/badge.png and b/_repos/github/PyPSA/atlite/badge.png differ diff --git a/_repos/github/PyPSA/atlite/data.json b/_repos/github/PyPSA/atlite/data.json index 32d551aa..08a9f3c5 100644 --- a/_repos/github/PyPSA/atlite/data.json +++ b/_repos/github/PyPSA/atlite/data.json @@ -6,353 +6,389 @@ } }, "pypi": { - "numpy": { - "credit": 0.1586045879120879, - "url": "https://www.numpy.org" + "atlite": { + "credit": 0.0003960000000000005, + "url": "https://github.com/PyPSA/atlite" }, - "scipy": { - "credit": 0.002644230769230771, - "url": "https://www.scipy.org" + "dask": { + "credit": 0.00547506072874494, + "url": "https://github.com/dask/dask/" }, - "pandas": { - "credit": 0.01988673076923077, - "url": "https://pandas.pydata.org" + "pyproj": { + "credit": 0.050908846153846145, + "url": "https://github.com/pyproj4/pyproj" }, - "bottleneck": { - "credit": 0.002644230769230771, - "url": "https://github.com/pydata/bottleneck" + "rasterio": { + "credit": 0.003411692307692308, + "url": "https://github.com/mapbox/rasterio" }, - "numexpr": { - "credit": 0.055, - "url": "https://github.com/pydata/numexpr" + "toolz": { + "credit": 0.06332344615384615, + "url": "https://github.com/pytoolz/toolz/" }, "xarray": { - "credit": 0.0005500000000000019, + "credit": 0.0019038461538461542, "url": "https://github.com/pydata/xarray" }, - "netcdf4": { - "credit": 0.055, - "url": "http://github.com/Unidata/netcdf4-python" - }, - "dask": { - "credit": 0.002644230769230771, - "url": "https://github.com/dask/dask/" - }, - "toolz": { - "credit": 0.05863, - "url": "https://github.com/pytoolz/toolz/" - }, - "requests": { - "credit": 0.007356250000000002, - "url": "https://requests.readthedocs.io" + "bottleneck": { + "credit": 0.003411692307692308, + "url": "https://github.com/pydata/bottleneck" }, - "pyyaml": { - "credit": 0.05863, - "url": "https://pyyaml.org/" + "cdsapi": { + "credit": 0.04110784615384615, + "url": "https://github.com/ecmwf/cdsapi" }, - "rasterio": { - "credit": 0.002644230769230771, - "url": "https://github.com/mapbox/rasterio" + "geopandas": { + "credit": 0.0019038461538461542, + "url": "http://geopandas.org" }, "shapely": { - "credit": 0.016755357142857145, + "credit": 0.016185303296703295, "url": "https://github.com/shapely/shapely" }, + "netcdf4": { + "credit": 0.04110784615384615, + "url": "http://github.com/Unidata/netcdf4-python" + }, + "numexpr": { + "credit": 0.04110784615384615, + "url": "https://github.com/pydata/numexpr" + }, "progressbar2": { - "credit": 0.0005500000000000019, + "credit": 0.0019038461538461542, "url": "https://github.com/WoLpH/python-progressbar" }, - "tqdm": { - "credit": 0.0005500000000000019, - "url": "https://tqdm.github.io" + "cligj": { + "credit": 0.0048764571428571435, + "url": "https://github.com/mapbox/cligj" }, - "pyproj": { - "credit": 0.06861249999999999, - "url": "https://github.com/pyproj4/pyproj" + "cloudpickle": { + "credit": 0.0422136, + "url": "https://github.com/cloudpipe/cloudpickle" }, - "geopandas": { - "credit": 0.0005500000000000019, - "url": "http://geopandas.org" + "fiona": { + "credit": 0.010197, + "url": "http://github.com/Toblerity/Fiona" }, - "cdsapi": { - "credit": 0.055, - "url": "https://github.com/ecmwf/cdsapi" + "click-plugins": { + "credit": 0.0048764571428571435, + "url": "https://github.com/click-contrib/click-plugins" }, - "pytest-xdist": { - "credit": 0.0037207500000000005, - "url": "https://github.com/pytest-dev/pytest-xdist" + "fsspec": { + "credit": 0.004517446153846154, + "url": "http://github.com/fsspec/filesystem_spec" }, - "pytest": { - "credit": 0.04272380357142857, - "url": "https://docs.pytest.org/en/latest/" + "partd": { + "credit": 0.0030096000000000003, + "url": "http://github.com/dask/partd/" }, - "hypothesis": { - "credit": 0.011667857142857143, - "url": "https://pypi.org/project/hypothesis" + "python-utils": { + "credit": 0.009916971428571435, + "url": "https://github.com/WoLpH/python-utils" }, - "pytz": { - "credit": 0.009075, - "url": "https://pypi.org/project/pytz" + "snuggs": { + "credit": 0.0022628571428571433, + "url": "https://github.com/mapbox/snuggs" }, - "python-dateutil": { - "credit": 0.009075, - "url": "https://pypi.org/project/python-dateutil" + "affine": { + "credit": 0.0022628571428571502, + "url": "https://github.com/sgillies/affine" }, - "gitpython": { - "credit": 0.0136125, - "url": "https://pypi.org/project/gitpython" + "cftime": { + "credit": 0.0019038461538461542, + "url": "https://pypi.org/project/cftime" }, - "sphinx": { - "credit": 0.023983928571428573, - "url": "https://pypi.org/project/sphinx" + "locket": { + "credit": 0.05920199999999999, + "url": "http://github.com/mwilliamson/locket.py" }, - "numpydoc": { - "credit": 0.016205357142857143, - "url": "https://pypi.org/project/numpydoc" + "munch": { + "credit": 0.0422136, + "url": "https://github.com/Infinidat/munch" }, - "scanpydoc": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/scanpydoc" + "nbsphinx-link": { + "credit": 0.0015078461538461537, + "url": "https://github.com/vidartf/nbsphinx-link" }, "nbsphinx": { - "credit": 0.0020942307692307692, + "credit": 0.0030156923076923073, "url": "https://pypi.org/project/nbsphinx" }, - "jupyter-client": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/jupyter-client" - }, - "ipykernel": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/ipykernel" - }, - "ipython": { - "credit": 0.004687087912087912, - "url": "https://pypi.org/project/ipython" - }, "sphinx-rtd-theme": { - "credit": 0.004687087912087912, + "credit": 0.00488254945054945, "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "sphinx-autosummary-accessors": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/sphinx-autosummary-accessors" - }, - "nc-time-axis": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/nc-time-axis" - }, - "seaborn": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/seaborn" - }, - "matplotlib": { - "credit": 0.004687087912087912, - "url": "https://pypi.org/project/matplotlib" + "sphinx": { + "credit": 0.022696674725274722, + "url": "https://pypi.org/project/sphinx" }, - "pooch": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/pooch" + "numpydoc": { + "credit": 0.013175703296703294, + "url": "https://pypi.org/project/numpydoc" }, - "cfgrib": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/cfgrib" + "pytest-cov": { + "credit": 0.05602007472527472, + "url": "https://pypi.org/project/pytest-cov" }, - "cftime": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/cftime" + "pytest": { + "credit": 0.04883267472527472, + "url": "https://pypi.org/project/pytest" }, - "fsspec": { - "credit": 0.00572423076923077, - "url": "https://pypi.org/project/fsspec" + "pre-commit": { + "credit": 0.004121446153846154, + "url": "https://pypi.org/project/pre-commit" }, - "zarr": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/zarr" + "tqdm": { + "credit": 0.0035712145748987853, + "url": "https://pypi.org/project/tqdm" }, - "pydap": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/pydap" + "pyyaml": { + "credit": 0.004121446153846154, + "url": "https://pypi.org/project/pyyaml" }, - "h5netcdf": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/h5netcdf" + "requests": { + "credit": 0.0035712145748987853, + "url": "https://pypi.org/project/requests" }, - "netCDF4": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/netCDF4" + "pandas": { + "credit": 0.015430292307692307, + "url": "https://pypi.org/project/pandas" }, - "numbagg": { - "credit": 0.0020942307692307692, - "url": "https://pypi.org/project/numbagg" + "scipy": { + "credit": 0.0030156923076923073, + "url": "https://pypi.org/project/scipy" }, - "packaging": { - "credit": 0.008317087912087913, - "url": "https://pypi.org/project/packaging" + "numpy": { + "credit": 0.07937014945054943, + "url": "https://pypi.org/project/numpy" }, - "pre-commit": { - "credit": 0.00363, - "url": "https://pypi.org/project/pre-commit" + "pytest-xdist": { + "credit": 0.0026135999999999998, + "url": "https://pypi.org/project/pytest-xdist" }, "pytest-rerunfailures": { - "credit": 0.00363, + "credit": 0.0026135999999999998, "url": "https://pypi.org/project/pytest-rerunfailures" }, "jinja2": { - "credit": 0.00363, + "credit": 0.0026135999999999998, "url": "https://pypi.org/project/jinja2" }, "distributed": { - "credit": 0.00363, + "credit": 0.004676968421052631, "url": "https://pypi.org/project/distributed" }, "bokeh": { - "credit": 0.00363, + "credit": 0.0026135999999999998, "url": "https://pypi.org/project/bokeh" }, - "partd": { - "credit": 0.00363, - "url": "https://pypi.org/project/partd" + "packaging": { + "credit": 0.005988303296703297, + "url": "https://pypi.org/project/packaging" }, - "cloudpickle": { - "credit": 0.00363, - "url": "https://pypi.org/project/cloudpickle" + "hypothesis": { + "credit": 0.011667857142857141, + "url": "https://pypi.org/project/hypothesis" }, - "win-inet-pton": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/win-inet-pton" + "boto3": { + "credit": 0.004480457142857143, + "url": "https://pypi.org/project/boto3" }, - "PySocks": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/PySocks" + "ghp-import": { + "credit": 0.0018668571428571428, + "url": "https://pypi.org/project/ghp-import" }, - "charset-normalizer": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/charset-normalizer" + "matplotlib": { + "credit": 0.003374703296703296, + "url": "https://pypi.org/project/matplotlib" + }, + "ipython": { + "credit": 0.003374703296703296, + "url": "https://pypi.org/project/ipython" }, - "idna": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/idna" + "setuptools": { + "credit": 0.004480457142857143, + "url": "https://pypi.org/project/setuptools" }, - "chardet": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/chardet" + "click": { + "credit": 0.06328645714285713, + "url": "https://pypi.org/project/click" }, "certifi": { - "credit": 0.010371428571428571, + "credit": 0.004480457142857143, "url": "https://pypi.org/project/certifi" }, - "urllib3": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/urllib3" + "attrs": { + "credit": 0.004480457142857143, + "url": "https://pypi.org/project/attrs" }, - "boto3": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/boto3" + "scanpydoc": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/scanpydoc" }, - "ghp-import": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/ghp-import" + "jupyter-client": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/jupyter-client" }, - "pytest-cov": { - "credit": 0.028521428571428573, - "url": "https://pypi.org/project/pytest-cov" + "ipykernel": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/ipykernel" }, - "setuptools": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/setuptools" + "sphinx-autosummary-accessors": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/sphinx-autosummary-accessors" }, - "click-plugins": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/click-plugins" + "nc-time-axis": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/nc-time-axis" }, - "snuggs": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/snuggs" + "seaborn": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/seaborn" }, - "cligj": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/cligj" + "pooch": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/pooch" }, - "click": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/click" + "cfgrib": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/cfgrib" }, - "attrs": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/attrs" + "zarr": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/zarr" }, - "affine": { - "credit": 0.002592857142857143, - "url": "https://pypi.org/project/affine" + "pydap": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/pydap" + }, + "h5netcdf": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/h5netcdf" + }, + "netCDF4": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/netCDF4" + }, + "numbagg": { + "credit": 0.0015078461538461537, + "url": "https://pypi.org/project/numbagg" + }, + "gitpython": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/gitpython" }, "freezegun": { - "credit": 0.007778571428571428, + "credit": 0.005600571428571428, "url": "https://pypi.org/project/freezegun" }, "pytest-mypy": { - "credit": 0.007778571428571428, + "credit": 0.009520971428571428, "url": "https://pypi.org/project/pytest-mypy" }, "flake8": { - "credit": 0.007778571428571428, + "credit": 0.017361771428571426, "url": "https://pypi.org/project/flake8" }, - "python-utils": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/python-utils" + "mock": { + "credit": 0.006533999999999999, + "url": "https://pypi.org/project/mock" }, - "slack-sdk": { - "credit": 0.00680625, - "url": "https://pypi.org/project/slack-sdk" + "ordereddict": { + "credit": 0.0026135999999999998, + "url": "https://pypi.org/project/ordereddict" }, - "ipywidgets": { - "credit": 0.00680625, - "url": "https://pypi.org/project/ipywidgets" + "argparse": { + "credit": 0.0026135999999999998, + "url": "https://pypi.org/project/argparse" }, - "wheel": { - "credit": 0.00680625, - "url": "https://pypi.org/project/wheel" + "six": { + "credit": 0.0026135999999999998, + "url": "https://pypi.org/project/six" }, - "twine": { - "credit": 0.00680625, - "url": "https://pypi.org/project/twine" + "smbprotocol": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/smbprotocol" }, - "py-make": { - "credit": 0.00680625, - "url": "https://pypi.org/project/py-make" + "paramiko": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/paramiko" }, - "importlib-resources": { - "credit": 0.00680625, - "url": "https://pypi.org/project/importlib-resources" + "s3fs": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/s3fs" }, - "colorama": { - "credit": 0.00680625, - "url": "https://pypi.org/project/colorama" + "ocifs": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/ocifs" }, - "fiona": { - "credit": 0.0136125, - "url": "https://pypi.org/project/fiona" + "libarchive-c": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/libarchive-c" + }, + "aiohttp": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/aiohttp" + }, + "panel": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/panel" + }, + "pygit2": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/pygit2" + }, + "gcsfs": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/gcsfs" + }, + "fusepy": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/fusepy" + }, + "importlib-metadata": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/importlib-metadata" + }, + "dropbox": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/dropbox" + }, + "dropboxdrivefs": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/dropboxdrivefs" + }, + "pyarrow": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/pyarrow" + }, + "adlfs": { + "credit": 0.0020633684210526314, + "url": "https://pypi.org/project/adlfs" + }, + "types-setuptools": { + "credit": 0.003920399999999999, + "url": "https://pypi.org/project/types-setuptools" }, - "filelock": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/filelock" + "pytest-asyncio": { + "credit": 0.003920399999999999, + "url": "https://pypi.org/project/pytest-asyncio" }, - "setproctitle": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/setproctitle" + "pytest-flake8": { + "credit": 0.003920399999999999, + "url": "https://pypi.org/project/pytest-flake8" }, - "psutil": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/psutil" + "pyparsing": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/pyparsing" }, - "pytest-forked": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/pytest-forked" + "coveralls": { + "credit": 0.007840799999999998, + "url": "https://pypi.org/project/coveralls" }, - "execnet": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/execnet" + "pydocstyle": { + "credit": 0.007840799999999998, + "url": "https://pypi.org/project/pydocstyle" } } } \ No newline at end of file diff --git a/_repos/github/Quantum-Dynamics-Hub/libra-code/README.md b/_repos/github/Quantum-Dynamics-Hub/libra-code/README.md index f8e3b97c..e78bf80b 100644 --- a/_repos/github/Quantum-Dynamics-Hub/libra-code/README.md +++ b/_repos/github/Quantum-Dynamics-Hub/libra-code/README.md @@ -8,94 +8,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.103| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.096| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.075| -|pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.032| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.03| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.028| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.028| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.028| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.028| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.026| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.024| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.021| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.015| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.013| -|pypi|[pep517](https://pypi.org/project/pep517)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.01| |setup.py|github/Quantum-Dynamics-Hub/libra-code|0.01| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[attrs](https://www.attrs.org/)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.005| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.005| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.005| -|pypi|[path](https://pypi.org/project/path)|0.005| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| -|pypi|[keyring](https://pypi.org/project/keyring)|0.005| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.005| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.005| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.003| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|0.001| -|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.001| +|pypi|[Libra](https://github.com/Palashio/libra)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Quantum-Dynamics-Hub/libra-code/badge.png b/_repos/github/Quantum-Dynamics-Hub/libra-code/badge.png index 28b949f0..35d84b3b 100644 Binary files a/_repos/github/Quantum-Dynamics-Hub/libra-code/badge.png and b/_repos/github/Quantum-Dynamics-Hub/libra-code/badge.png differ diff --git a/_repos/github/Quantum-Dynamics-Hub/libra-code/data.json b/_repos/github/Quantum-Dynamics-Hub/libra-code/data.json index a6044b7e..c785db4a 100644 --- a/_repos/github/Quantum-Dynamics-Hub/libra-code/data.json +++ b/_repos/github/Quantum-Dynamics-Hub/libra-code/data.json @@ -6,357 +6,9 @@ } }, "pypi": { - "pytest_runner": { - "credit": 0.00990000000000002, - "url": "https://github.com/pytest-dev/pytest-runner/" - }, - "pytest-mypy": { - "credit": 0.02794362032967033, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-black": { - "credit": 0.10258200494505493, - "url": "https://github.com/shopkeep/pytest-black" - }, - "types-setuptools": { - "credit": 0.07539230769230769, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.0007539230769230826, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.030252745353708792, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.02794362032967033, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-checkdocs" - }, - "pytest": { - "credit": 0.09642254402234783, - "url": "https://docs.pytest.org/en/latest/" - }, - "jaraco.tidelift": { - "credit": 0.0007539230769230826, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/jaraco.packaging" - }, - "sphinx": { - "credit": 0.03167374536850169, - "url": "https://www.sphinx-doc.org/" - }, - "mypy": { - "credit": 0.004593131360946745, - "url": "http://www.mypy-lang.org/" - }, - "filelock": { - "credit": 0.00018659596153846117, - "url": "https://github.com/tox-dev/py-filelock" - }, - "attrs": { - "credit": 0.0060060575120192295, - "url": "https://www.attrs.org/" - }, - "mock": { - "credit": 0.02074713847355769, - "url": "http://mock.readthedocs.org/en/latest/" - }, - "virtualenv": { - "credit": 0.024257474999999997, - "url": "https://virtualenv.pypa.io/" - }, - "pytest-shutil": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.010750798091715976, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.013059923115754437, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.04030472769230769, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.010307205494505494, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.02568748869333791, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pep517": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.008316848571428571, - "url": "https://pypi.org/project/docutils" - }, - "xmlschema": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/nose" - }, - "hypothesis": { - "credit": 0.007240461565273667, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.008898294915865383, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/iniconfig" - }, - "importlib-resources": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-python-dateutil" - }, - "path": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/path" - }, - "python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/python-dateutil" - }, - "types-requests": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/isort" - }, - "sphinxcontrib-websupport": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "imagesize": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/snowballstemmer" - }, - "Pygments": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "lxml": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/lxml" - }, - "psutil": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/psutil" - }, - "typed-ast": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typed-ast" - }, - "mypy-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/mypy-extensions" - }, - "typing-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typing-extensions" - }, - "pytest-timeout": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/pytest-timeout" - }, - "covdefaults": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/covdefaults" - }, - "sphinx-autodoc-typehints": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "furo": { - "credit": 0.003730125038831361, - "url": "https://pypi.org/project/furo" - }, - "cloudpickle": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "zope.interface": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "pympler": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pympler" + "Libra": { + "credit": 0.0099, + "url": "https://github.com/Palashio/libra" } } } \ No newline at end of file diff --git a/_repos/github/RTIInternational/gobbli/README.md b/_repos/github/RTIInternational/gobbli/README.md index f83108c7..8317cc19 100644 --- a/_repos/github/RTIInternational/gobbli/README.md +++ b/_repos/github/RTIInternational/gobbli/README.md @@ -8,130 +8,97 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.164| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.094| -|pypi|[colorama](https://pypi.org/project/colorama)|0.063| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.054| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.036| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.031| -|pypi|[cryptography](https://github.com/pyca/cryptography)|0.023| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.022| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.022| -|pypi|[idna](https://github.com/kjd/idna)|0.02| -|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.02| -|pypi|[pandas](https://pandas.pydata.org)|0.019| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.016| -|pypi|[black](https://pypi.org/project/black)|0.015| -|pypi|[flake8](https://pypi.org/project/flake8)|0.013| -|pypi|[scipy](https://pypi.org/project/scipy)|0.011| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.011| +|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.133| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.099| +|pypi|[entrypoints](https://github.com/takluyver/entrypoints)|0.07| +|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.07| +|pypi|[msgpack](https://msgpack.org/)|0.068| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.068| +|pypi|[Babel](https://pypi.org/project/Babel)|0.033| +|pypi|[pytest](https://pypi.org/project/pytest)|0.02| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.016| +|pypi|[freezegun](https://pypi.org/project/freezegun)|0.016| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.016| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.016| +|pypi|[enum34](https://pypi.org/project/enum34)|0.016| +|pypi|[futures](https://pypi.org/project/futures)|0.016| +|pypi|[six](https://pypi.org/project/six)|0.016| +|pypi|[websockets](https://pypi.org/project/websockets)|0.013| +|pypi|[wsaccel](https://pypi.org/project/wsaccel)|0.013| +|pypi|[python-socks](https://pypi.org/project/python-socks)|0.013| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.013| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.013| +|pypi|[requests](https://pypi.org/project/requests)|0.011| |setup.py|github/RTIInternational/gobbli|0.01| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.009| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.009| -|pypi|[recommonmark](https://pypi.org/project/recommonmark)|0.008| -|pypi|[vega-datasets](https://pypi.org/project/vega-datasets)|0.008| -|pypi|[m2r](https://pypi.org/project/m2r)|0.008| -|pypi|[mistune](https://pypi.org/project/mistune)|0.008| -|pypi|[ipython](https://pypi.org/project/ipython)|0.008| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[toolz](https://pypi.org/project/toolz)|0.008| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.008| -|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.008| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| -|pypi|[filelock](https://pypi.org/project/filelock)|0.006| -|pypi|[mypy](http://www.mypy-lang.org/)|0.006| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.006| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.006| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.006| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.006| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.006| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.006| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.006| -|pypi|[joblib](https://pypi.org/project/joblib)|0.006| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.005| -|pypi|[attrs](https://pypi.org/project/attrs)|0.005| -|pypi|[click](https://palletsprojects.com/p/click/)|0.005| -|pypi|[requests](https://requests.readthedocs.io)|0.004| -|pypi|[websockets](https://pypi.org/project/websockets)|0.003| -|pypi|[wsaccel](https://pypi.org/project/wsaccel)|0.003| -|pypi|[python-socks](https://pypi.org/project/python-socks)|0.003| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.003| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.003| -|pypi|[execnet](https://pypi.org/project/execnet)|0.003| -|pypi|[pretend](https://pypi.org/project/pretend)|0.003| -|pypi|[flaky](https://pypi.org/project/flaky)|0.003| -|pypi|[uvicorn](https://pypi.org/project/uvicorn)|0.003| -|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|0.003| -|pypi|[tabulate](https://pypi.org/project/tabulate)|0.003| -|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.003| -|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|0.003| -|pypi|[colorful](https://pypi.org/project/colorful)|0.003| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.003| -|pypi|[starlette](https://pypi.org/project/starlette)|0.003| -|pypi|[dm-tree](https://pypi.org/project/dm-tree)|0.003| -|pypi|[fastapi](https://pypi.org/project/fastapi)|0.003| -|pypi|[smart-open](https://pypi.org/project/smart-open)|0.003| -|pypi|[gpustat](https://pypi.org/project/gpustat)|0.003| -|pypi|[kubernetes](https://pypi.org/project/kubernetes)|0.003| -|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|0.003| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.003| -|pypi|[lz4](https://pypi.org/project/lz4)|0.003| -|pypi|[fsspec](https://pypi.org/project/fsspec)|0.003| -|pypi|[opencensus](https://pypi.org/project/opencensus)|0.003| -|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|0.003| -|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|0.003| -|pypi|[py-spy](https://pypi.org/project/py-spy)|0.003| -|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|0.003| -|pypi|[gym](https://pypi.org/project/gym)|0.003| -|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|0.003| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[frozenlist](https://pypi.org/project/frozenlist)|0.003| -|pypi|[aiosignal](https://pypi.org/project/aiosignal)|0.003| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.003| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.003| -|pypi|[msgpack](https://pypi.org/project/msgpack)|0.003| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.003| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[certifi](https://pypi.org/project/certifi)|0.002| -|pypi|[gssapi](https://pypi.org/project/gssapi)|0.002| -|pypi|[invoke](https://pypi.org/project/invoke)|0.002| -|pypi|[pyasn1](https://pypi.org/project/pyasn1)|0.002| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[pynacl](https://pypi.org/project/pynacl)|0.002| -|pypi|[bcrypt](https://pypi.org/project/bcrypt)|0.002| -|pypi|[hypothesis](https://hypothesis.works)|0.001| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[docker](https://github.com/docker/docker-py)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| -|pypi|[ray](https://github.com/ray-project/ray)|0.001| -|pypi|[altair](http://altair-viz.github.io)|0.001| -|pypi|[humanize](https://github.com/jmoiron/humanize)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[websocket-client](https://github.com/websocket-client/websocket-client.git)|0.01| +|pypi|[pandas](https://pypi.org/project/pandas)|0.01| +|pypi|[numpy](https://pypi.org/project/numpy)|0.01| +|pypi|[idna](https://pypi.org/project/idna)|0.009| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.009| +|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.009| +|pypi|[paramiko](https://pypi.org/project/paramiko)|0.009| +|pypi|[pywin32](https://pypi.org/project/pywin32)|0.009| +|pypi|[click](https://pypi.org/project/click)|0.006| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.006| +|pypi|[altair](http://altair-viz.github.io)|0.005| +|pypi|[docker](https://github.com/docker/docker-py)|0.005| +|pypi|[humanize](https://github.com/jmoiron/humanize)|0.005| +|pypi|[ray](https://github.com/ray-project/ray)|0.005| +|pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.005| +|pypi|[sentencepiece](https://github.com/google/sentencepiece)|0.004| +|pypi|[hdbscan](http://github.com/scikit-learn-contrib/hdbscan)|0.004| +|pypi|[eli5](https://github.com/eli5-org/eli5)|0.004| +|pypi|[umap-learn](http://github.com/lmcinnes/umap)|0.004| +|pypi|[streamlit](https://streamlit.io)|0.004| +|pypi|[spacy](https://pypi.org/project/spacy)|0.004| +|pypi|[gensim](https://pypi.org/project/gensim)|0.004| +|pypi|[nltk](https://pypi.org/project/nltk)|0.004| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.004| +|pypi|[recommonmark](https://pypi.org/project/recommonmark)|0.004| +|pypi|[vega-datasets](https://pypi.org/project/vega-datasets)|0.004| +|pypi|[m2r](https://pypi.org/project/m2r)|0.004| +|pypi|[mistune](https://pypi.org/project/mistune)|0.004| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| +|pypi|[flake8](https://pypi.org/project/flake8)|0.004| +|pypi|[ipython](https://pypi.org/project/ipython)|0.004| +|pypi|[docutils](https://pypi.org/project/docutils)|0.004| +|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[grpcio](https://grpc.io)|0.002| +|pypi|[aiosignal](https://github.com/aio-libs/aiosignal)|0.002| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| +|pypi|[uvicorn](https://pypi.org/project/uvicorn)|0.002| +|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|0.002| +|pypi|[tabulate](https://pypi.org/project/tabulate)|0.002| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.002| +|pypi|[scipy](https://pypi.org/project/scipy)|0.002| +|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|0.002| +|pypi|[colorful](https://pypi.org/project/colorful)|0.002| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.002| +|pypi|[starlette](https://pypi.org/project/starlette)|0.002| +|pypi|[dm-tree](https://pypi.org/project/dm-tree)|0.002| +|pypi|[fastapi](https://pypi.org/project/fastapi)|0.002| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.002| +|pypi|[smart-open](https://pypi.org/project/smart-open)|0.002| +|pypi|[gpustat](https://pypi.org/project/gpustat)|0.002| +|pypi|[kubernetes](https://pypi.org/project/kubernetes)|0.002| +|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|0.002| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.002| +|pypi|[lz4](https://pypi.org/project/lz4)|0.002| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.002| +|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.002| +|pypi|[opencensus](https://pypi.org/project/opencensus)|0.002| +|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|0.002| +|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|0.002| +|pypi|[py-spy](https://pypi.org/project/py-spy)|0.002| +|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|0.002| +|pypi|[gym](https://pypi.org/project/gym)|0.002| +|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|0.002| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.002| +|pypi|[filelock](https://pypi.org/project/filelock)|0.002| +|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[gobbli](https://github.com/RTIInternational/gobbli/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/RTIInternational/gobbli/badge.png b/_repos/github/RTIInternational/gobbli/badge.png index 26850356..a7878665 100644 Binary files a/_repos/github/RTIInternational/gobbli/badge.png and b/_repos/github/RTIInternational/gobbli/badge.png differ diff --git a/_repos/github/RTIInternational/gobbli/data.json b/_repos/github/RTIInternational/gobbli/data.json index 9deea706..9faeb6e6 100644 --- a/_repos/github/RTIInternational/gobbli/data.json +++ b/_repos/github/RTIInternational/gobbli/data.json @@ -6,517 +6,365 @@ } }, "pypi": { - "docker": { - "credit": 0.0012375000000000025, - "url": "https://github.com/docker/docker-py" + "gobbli": { + "credit": 0.0006599999999999939, + "url": "https://github.com/RTIInternational/gobbli/" }, - "numpy": { - "credit": 0.16355706540697673, - "url": "https://www.numpy.org" + "altair": { + "credit": 0.0047437499999999945, + "url": "http://altair-viz.github.io" }, - "pandas": { - "credit": 0.018700618978405317, - "url": "https://pandas.pydata.org" + "docker": { + "credit": 0.0047437499999999945, + "url": "https://github.com/docker/docker-py" }, - "scikit-learn": { - "credit": 0.0012375000000000025, - "url": "http://scikit-learn.org" + "humanize": { + "credit": 0.0047437499999999945, + "url": "https://github.com/jmoiron/humanize" }, "ray": { - "credit": 0.0012375000000000025, + "credit": 0.0047437499999999945, "url": "https://github.com/ray-project/ray" }, - "altair": { - "credit": 0.0012375000000000025, - "url": "http://altair-viz.github.io" + "grpcio": { + "credit": 0.0021795348837209245, + "url": "https://grpc.io" }, - "click": { - "credit": 0.005209659156976746, - "url": "https://palletsprojects.com/p/click/" + "msgpack": { + "credit": 0.06751953488372094, + "url": "https://msgpack.org/" }, - "humanize": { - "credit": 0.0012375000000000025, - "url": "https://github.com/jmoiron/humanize" + "protobuf": { + "credit": 0.06751953488372094, + "url": "https://developers.google.com/protocol-buffers/" }, - "idna": { - "credit": 0.01997703826530612, - "url": "https://github.com/kjd/idna" + "websocket-client": { + "credit": 0.009994285714285709, + "url": "https://github.com/websocket-client/websocket-client.git" }, - "cryptography": { - "credit": 0.02255542633928571, - "url": "https://github.com/pyca/cryptography" + "aiosignal": { + "credit": 0.0021795348837209245, + "url": "https://github.com/aio-libs/aiosignal" }, - "pyOpenSSL": { - "credit": 0.00017501785714285623, - "url": "https://pyopenssl.org/" + "frozenlist": { + "credit": 0.13285953488372093, + "url": "https://github.com/aio-libs/frozenlist" }, - "paramiko": { - "credit": 0.00017501785714285623, - "url": "https://paramiko.org" + "entrypoints": { + "credit": 0.07008375, + "url": "https://github.com/takluyver/entrypoints" }, - "pywin32": { - "credit": 0.01966763169642857, - "url": "https://github.com/mhammond/pywin32" + "jinja2": { + "credit": 0.0047437499999999945, + "url": "https://palletsprojects.com/p/jinja/" }, - "requests": { - "credit": 0.0042875559203696, - "url": "https://requests.readthedocs.io" + "toolz": { + "credit": 0.07008375, + "url": "https://github.com/pytoolz/toolz/" }, - "websocket-client": { - "credit": 0.00017501785714285623, - "url": "https://github.com/websocket-client/websocket-client.git" + "MarkupSafe": { + "credit": 0.09867000000000001, + "url": "https://palletsprojects.com/p/markupsafe/" }, - "pytest-xdist": { - "credit": 0.00020418750000000124, - "url": "https://github.com/pytest-dev/pytest-xdist" + "sentencepiece": { + "credit": 0.004083750000000001, + "url": "https://github.com/google/sentencepiece" }, - "pytest": { - "credit": 0.05362838839285714, - "url": "https://docs.pytest.org/en/latest/" + "hdbscan": { + "credit": 0.004083750000000001, + "url": "http://github.com/scikit-learn-contrib/hdbscan" }, - "hypothesis": { - "credit": 0.0014675976562500011, - "url": "https://hypothesis.works" + "eli5": { + "credit": 0.004083750000000001, + "url": "https://github.com/eli5-org/eli5" }, - "pytz": { - "credit": 0.02154178125, - "url": "http://pythonhosted.org/pytz" + "umap-learn": { + "credit": 0.004083750000000001, + "url": "http://github.com/lmcinnes/umap" }, - "python-dateutil": { - "credit": 0.02154178125, - "url": "https://github.com/dateutil/dateutil" + "streamlit": { + "credit": 0.004083750000000001, + "url": "https://streamlit.io" }, - "pyamg": { - "credit": 5.83392857142857e-05, - "url": "https://github.com/pyamg/pyamg" + "spacy": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/spacy" }, - "mypy": { - "credit": 0.0058339285714285715, - "url": "http://www.mypy-lang.org/" + "gensim": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/gensim" }, - "black": { - "credit": 0.014613991071428571, - "url": "https://pypi.org/project/black" + "nltk": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/nltk" }, - "flake8": { - "credit": 0.013490959821428571, - "url": "https://pypi.org/project/flake8" + "click": { + "credit": 0.0056032848837209315, + "url": "https://pypi.org/project/click" }, - "pytest-cov": { - "credit": 0.03646205357142857, - "url": "https://pypi.org/project/pytest-cov" + "scikit-learn": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/scikit-learn" }, - "sphinxext-opengraph": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/sphinxext-opengraph" + "pandas": { + "credit": 0.009687034883720932, + "url": "https://pypi.org/project/pandas" }, - "sphinx-prompt": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/sphinx-prompt" + "numpy": { + "credit": 0.009687034883720932, + "url": "https://pypi.org/project/numpy" }, - "Pillow": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/Pillow" + "recommonmark": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/recommonmark" + }, + "vega-datasets": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/vega-datasets" }, - "numpydoc": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/numpydoc" + "m2r": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/m2r" }, - "sphinx-gallery": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/sphinx-gallery" + "mistune": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/mistune" }, "sphinx": { - "credit": 0.016378754464285713, + "credit": 0.004083750000000001, "url": "https://pypi.org/project/sphinx" }, - "seaborn": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/seaborn" + "pytest": { + "credit": 0.020418750000000003, + "url": "https://pypi.org/project/pytest" }, - "scikit-image": { - "credit": 0.008683056478405315, - "url": "https://pypi.org/project/scikit-image" + "flake8": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/flake8" }, - "memory-profiler": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/memory-profiler" + "ipython": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/ipython" }, - "matplotlib": { - "credit": 0.008683056478405315, - "url": "https://pypi.org/project/matplotlib" + "docutils": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/docutils" }, - "threadpoolctl": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/threadpoolctl" + "black": { + "credit": 0.004083750000000001, + "url": "https://pypi.org/project/black" }, - "joblib": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/joblib" + "jsonschema": { + "credit": 0.0056032848837209315, + "url": "https://pypi.org/project/jsonschema" }, - "scipy": { - "credit": 0.010608252906976744, - "url": "https://pypi.org/project/scipy" + "idna": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/idna" + }, + "cryptography": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/cryptography" + }, + "pyOpenSSL": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/pyOpenSSL" + }, + "paramiko": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/paramiko" + }, + "pywin32": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/pywin32" + }, + "requests": { + "credit": 0.010853820598006646, + "url": "https://pypi.org/project/requests" + }, + "pytest-cov": { + "credit": 0.016335000000000002, + "url": "https://pypi.org/project/pytest-cov" + }, + "freezegun": { + "credit": 0.016335000000000002, + "url": "https://pypi.org/project/freezegun" + }, + "importlib-metadata": { + "credit": 0.016335000000000002, + "url": "https://pypi.org/project/importlib-metadata" }, "urllib3": { - "credit": 0.0053243804579971524, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/urllib3" }, "uvicorn": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/uvicorn" }, "opentelemetry-exporter-otlp": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/opentelemetry-exporter-otlp" }, "tabulate": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/tabulate" }, "prometheus-client": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/prometheus-client" }, + "scipy": { + "credit": 0.0015195348837209305, + "url": "https://pypi.org/project/scipy" + }, "ray-cpp": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/ray-cpp" }, "colorful": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/colorful" }, "aiohttp": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/aiohttp" }, "starlette": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/starlette" }, "dm-tree": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/dm-tree" }, "fastapi": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/fastapi" }, + "matplotlib": { + "credit": 0.0015195348837209305, + "url": "https://pypi.org/project/matplotlib" + }, "smart-open": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/smart-open" }, "gpustat": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/gpustat" }, "kubernetes": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/kubernetes" }, "opentelemetry-api": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/opentelemetry-api" }, "pyarrow": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/pyarrow" }, "lz4": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/lz4" }, "fsspec": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/fsspec" }, + "scikit-image": { + "credit": 0.0015195348837209305, + "url": "https://pypi.org/project/scikit-image" + }, "opencensus": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/opencensus" }, "tensorboardX": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/tensorboardX" }, "aiorwlock": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/aiorwlock" }, "py-spy": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/py-spy" }, "aiohttp-cors": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/aiohttp-cors" }, "gym": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/gym" }, "opentelemetry-sdk": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/opentelemetry-sdk" }, "dataclasses": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/dataclasses" }, "virtualenv": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/virtualenv" }, - "frozenlist": { - "credit": 0.002849127906976744, - "url": "https://pypi.org/project/frozenlist" - }, - "aiosignal": { - "credit": 0.002849127906976744, - "url": "https://pypi.org/project/aiosignal" - }, "pyyaml": { - "credit": 0.002849127906976744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/pyyaml" }, - "protobuf": { - "credit": 0.002849127906976744, - "url": "https://pypi.org/project/protobuf" - }, - "msgpack": { - "credit": 0.002849127906976744, - "url": "https://pypi.org/project/msgpack" - }, - "jsonschema": { - "credit": 0.010506159156976743, - "url": "https://pypi.org/project/jsonschema" - }, - "grpcio": { - "credit": 0.002849127906976744, - "url": "https://pypi.org/project/grpcio" - }, "filelock": { - "credit": 0.006218221656976743, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/filelock" }, "attrs": { - "credit": 0.005235569313226744, + "credit": 0.0015195348837209305, "url": "https://pypi.org/project/attrs" }, - "recommonmark": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/recommonmark" - }, - "vega-datasets": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/vega-datasets" - }, - "m2r": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/m2r" - }, - "mistune": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/mistune" + "grpcio-tools": { + "credit": 0.016335000000000002, + "url": "https://pypi.org/project/grpcio-tools" }, - "ipython": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/ipython" + "enum34": { + "credit": 0.016335000000000002, + "url": "https://pypi.org/project/enum34" }, - "docutils": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/docutils" - }, - "toolz": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/toolz" - }, - "jinja2": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/jinja2" - }, - "entrypoints": { - "credit": 0.00765703125, - "url": "https://pypi.org/project/entrypoints" - }, - "importlib-metadata": { - "credit": 0.09427081640625, - "url": "https://pypi.org/project/importlib-metadata" - }, - "colorama": { - "credit": 0.06251966015625, - "url": "https://pypi.org/project/colorama" - }, - "freezegun": { - "credit": 0.030628125, - "url": "https://pypi.org/project/freezegun" - }, - "pretend": { - "credit": 0.002887794642857143, - "url": "https://pypi.org/project/pretend" - }, - "flaky": { - "credit": 0.002887794642857143, - "url": "https://pypi.org/project/flaky" - }, - "sphinx-rtd-theme": { - "credit": 0.006353148214285714, - "url": "https://pypi.org/project/sphinx-rtd-theme" - }, - "gssapi": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/gssapi" - }, - "invoke": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/invoke" - }, - "pyasn1": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/pyasn1" + "futures": { + "credit": 0.016335000000000002, + "url": "https://pypi.org/project/futures" }, "six": { - "credit": 0.002165845982142857, + "credit": 0.016335000000000002, "url": "https://pypi.org/project/six" }, - "pynacl": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/pynacl" - }, - "bcrypt": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/bcrypt" - }, - "win-inet-pton": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/charset-normalizer" - }, - "chardet": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/chardet" - }, - "certifi": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/certifi" - }, "websockets": { - "credit": 0.003465353571428571, + "credit": 0.013068000000000001, "url": "https://pypi.org/project/websockets" }, "wsaccel": { - "credit": 0.003465353571428571, + "credit": 0.013068000000000001, "url": "https://pypi.org/project/wsaccel" }, "python-socks": { - "credit": 0.003465353571428571, + "credit": 0.013068000000000001, "url": "https://pypi.org/project/python-socks" }, + "sphinx-rtd-theme": { + "credit": 0.013068000000000001, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, "Sphinx": { - "credit": 0.003465353571428571, + "credit": 0.013068000000000001, "url": "https://pypi.org/project/Sphinx" }, - "setproctitle": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/setproctitle" - }, - "psutil": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/psutil" - }, - "pytest-forked": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-forked" - }, - "execnet": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/execnet" - }, - "xmlschema": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/xmlschema" - }, - "pygments": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/mock" - }, - "argcomplete": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/argcomplete" - }, - "atomicwrites": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/iniconfig" - }, - "tzdata": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/redis" - }, - "libcst": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/django" - }, - "sortedcontainers": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/sortedcontainers" + "Babel": { + "credit": 0.032670000000000005, + "url": "https://pypi.org/project/Babel" } } } \ No newline at end of file diff --git a/_repos/github/RaRe-Technologies/gensim/badge.png b/_repos/github/RaRe-Technologies/gensim/badge.png index ab6a0456..56038023 100644 Binary files a/_repos/github/RaRe-Technologies/gensim/badge.png and b/_repos/github/RaRe-Technologies/gensim/badge.png differ diff --git a/_repos/github/RamanLab/iCOMIC/README.md b/_repos/github/RamanLab/iCOMIC/README.md index ec2324e3..74b003c4 100644 --- a/_repos/github/RamanLab/iCOMIC/README.md +++ b/_repos/github/RamanLab/iCOMIC/README.md @@ -8,61 +8,63 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pyyaml](https://pyyaml.org/)|0.327| -|pypi|[tomli](https://pypi.org/project/tomli)|0.325| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.023| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.023| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.023| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.023| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.021| -|pypi|[zipp](https://pypi.org/project/zipp)|0.02| -|pypi|[flufl.flake8](https://gitlab.com/warsaw/flufl.flake8)|0.018| -|pypi|[pyfakefs](http://pyfakefs.org)|0.018| -|pypi|[ipython](https://ipython.org)|0.018| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.018| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.018| +|pypi|[tomli](https://pypi.org/project/tomli)|0.163| +|pypi|[pyyaml](https://pyyaml.org/)|0.163| +|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.044| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.044| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.044| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.044| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.041| +|pypi|[zipp](https://pypi.org/project/zipp)|0.039| +|pypi|[flufl.flake8](https://gitlab.com/warsaw/flufl.flake8)|0.036| +|pypi|[pyfakefs](http://pyfakefs.org)|0.036| +|pypi|[ipython](https://ipython.org)|0.036| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.036| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.027| +|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.017| +|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.017| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.017| +|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.017| +|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.017| +|pypi|[flake8](https://pypi.org/project/flake8)|0.013| +|pypi|[packaging](https://github.com/pypa/packaging)|0.013| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.01| |setup.py|github/RamanLab/iCOMIC|0.01| -|pypi|[markdown](https://Python-Markdown.github.io/)|0.01| -|pypi|[flake8](https://pypi.org/project/flake8)|0.009| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.006| -|pypi|[attrs](https://pypi.org/project/attrs)|0.006| +|pypi|[importlib-resources](https://github.com/python/importlib_resources)|0.009| +|pypi|[pytest-perf](https://github.com/jaraco/pytest-perf)|0.009| +|pypi|[attrs](https://pypi.org/project/attrs)|0.008| +|pypi|[mypy](https://pypi.org/project/mypy)|0.007| +|pypi|[filelock](https://pypi.org/project/filelock)|0.007| |pypi|[coverage](https://github.com/nedbat/coveragepy)|0.005| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.005| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.005| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.005| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.005| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.005| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[packaging](https://github.com/pypa/packaging)|0.002| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.002| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.001| -|pypi|[toml](https://pypi.org/project/toml)|0.001| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.001| -|pypi|[pep517](https://pypi.org/project/pep517)|0.001| -|pypi|[docutils](https://pypi.org/project/docutils)|0.001| -|pypi|[more-itertools](https://pypi.org/project/more-itertools)|0.001| -|pypi|[tempora](https://pypi.org/project/tempora)|0.001| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.001| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| +|pypi|[markdown](https://Python-Markdown.github.io/)|0.005| +|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.004| +|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.004| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| +|pypi|[hunter](https://pypi.org/project/hunter)|0.003| +|pypi|[fields](https://pypi.org/project/fields)|0.003| +|pypi|[types-toml](https://pypi.org/project/types-toml)|0.002| +|pypi|[toml](https://pypi.org/project/toml)|0.002| +|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.002| +|pypi|[pep517](https://pypi.org/project/pep517)|0.002| +|pypi|[docutils](https://pypi.org/project/docutils)|0.002| +|pypi|[more-itertools](https://pypi.org/project/more-itertools)|0.002| +|pypi|[tempora](https://pypi.org/project/tempora)|0.002| +|pypi|[pip-run](https://pypi.org/project/pip-run)|0.002| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| +|pypi|[requests](https://pypi.org/project/requests)|0.002| +|pypi|[pygments](https://pypi.org/project/pygments)|0.002| +|pypi|[nose](https://pypi.org/project/nose)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| +|pypi|[py](https://pypi.org/project/py)|0.002| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/RamanLab/iCOMIC/badge.png b/_repos/github/RamanLab/iCOMIC/badge.png index 4a1911a4..ebcef14e 100644 Binary files a/_repos/github/RamanLab/iCOMIC/badge.png and b/_repos/github/RamanLab/iCOMIC/badge.png differ diff --git a/_repos/github/RamanLab/iCOMIC/data.json b/_repos/github/RamanLab/iCOMIC/data.json index 4818ca86..ef23e5f4 100644 --- a/_repos/github/RamanLab/iCOMIC/data.json +++ b/_repos/github/RamanLab/iCOMIC/data.json @@ -7,227 +7,227 @@ }, "pypi": { "markdown": { - "credit": 0.00990000000000002, + "credit": 0.00495000000000001, "url": "https://Python-Markdown.github.io/" }, + "importlib-metadata": { + "credit": 0.010193243303571449, + "url": "https://github.com/python/importlib_metadata" + }, "pyyaml": { - "credit": 0.3267, + "credit": 0.16335, "url": "https://pyyaml.org/" }, "coverage": { - "credit": 0.00549060187500002, + "credit": 0.00500259375000001, "url": "https://github.com/nedbat/coveragepy" }, - "importlib-metadata": { - "credit": 0.005649430580357163, - "url": "https://github.com/python/importlib_metadata" - }, - "tomli": { - "credit": 0.3245448009375, - "url": "https://pypi.org/project/tomli" - }, "importlib-resources": { - "credit": 0.00017968499999999887, + "credit": 0.0092565, "url": "https://github.com/python/importlib_resources" }, "pytest-mypy": { - "credit": 0.005449910223214285, + "credit": 0.017241689732142858, "url": "https://github.com/dbader/pytest-mypy" }, "pytest-black": { - "credit": 0.023238725223214282, + "credit": 0.04419443973214285, "url": "https://github.com/shopkeep/pytest-black" }, "pytest-perf": { - "credit": 0.00017968499999999887, + "credit": 0.0092565, "url": "https://github.com/jaraco/pytest-perf" }, "flufl.flake8": { - "credit": 0.0179685, + "credit": 0.03620925, "url": "https://gitlab.com/warsaw/flufl.flake8" }, "pyfakefs": { - "credit": 0.0179685, + "credit": 0.03620925, "url": "http://pyfakefs.org" }, "packaging": { - "credit": 0.002403286874999999, + "credit": 0.01262559375, "url": "https://github.com/pypa/packaging" }, "pytest-enabler": { - "credit": 0.005449910223214285, + "credit": 0.017241689732142858, "url": "https://github.com/jaraco/pytest-enabler" }, "pytest-cov": { - "credit": 0.005449910223214285, + "credit": 0.017241689732142858, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest-flake8": { - "credit": 0.005449910223214285, + "credit": 0.017241689732142858, "url": "https://github.com/tholo/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.005449910223214285, + "credit": 0.017241689732142858, "url": "https://github.com/jaraco/pytest-checkdocs" }, "pytest": { - "credit": 0.021015123348214284, + "credit": 0.04082534598214285, "url": "https://docs.pytest.org/en/latest/" }, "ipython": { - "credit": 0.0179685, + "credit": 0.03620925, "url": "https://ipython.org" }, "rst.linker": { - "credit": 0.023238725223214282, + "credit": 0.04419443973214285, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.023238725223214282, + "credit": 0.04419443973214285, "url": "https://pypi.org/project/jaraco.packaging" }, "sphinx": { - "credit": 0.023238725223214282, + "credit": 0.04419443973214285, "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.0179685, + "credit": 0.03620925, "url": "https://pypi.org/project/typing-extensions" }, "zipp": { - "credit": 0.019585665, + "credit": 0.0386595, "url": "https://pypi.org/project/zipp" }, + "tomli": { + "credit": 0.16340104687499998, + "url": "https://pypi.org/project/tomli" + }, "mypy": { - "credit": 0.00444720375, + "credit": 0.006738187499999999, "url": "https://pypi.org/project/mypy" }, "filelock": { - "credit": 0.00444720375, + "credit": 0.006738187499999999, "url": "https://pypi.org/project/filelock" }, "attrs": { - "credit": 0.0055590046875, + "credit": 0.008422734375, "url": "https://pypi.org/project/attrs" }, "jaraco.context": { - "credit": 0.002382430580357143, + "credit": 0.0036097433035714283, "url": "https://pypi.org/project/jaraco.context" }, "more-itertools": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/more-itertools" }, "jaraco.functools": { - "credit": 0.002382430580357143, + "credit": 0.0036097433035714283, "url": "https://pypi.org/project/jaraco.functools" }, "tempora": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/tempora" }, "pip-run": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/pip-run" }, "pyparsing": { - "credit": 0.017788815, + "credit": 0.026952749999999998, "url": "https://pypi.org/project/pyparsing" }, "types-toml": { - "credit": 0.0012706296428571429, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/types-toml" }, "toml": { - "credit": 0.0012706296428571429, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/toml" }, "virtualenv": { - "credit": 0.002223601875, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.002223601875, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.002223601875, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.002223601875, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.002223601875, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.002223601875, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/fields" }, "flake8": { - "credit": 0.0088944075, + "credit": 0.013476374999999999, "url": "https://pypi.org/project/flake8" }, "types-docutils": { - "credit": 0.0012706296428571429, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/types-docutils" }, "pep517": { - "credit": 0.0012706296428571429, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/pep517" }, "docutils": { - "credit": 0.0012706296428571429, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/docutils" }, "xmlschema": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/xmlschema" }, "requests": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/requests" }, "pygments": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/atomicwrites" }, "py": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/pluggy" }, "iniconfig": { - "credit": 0.0011118009375, + "credit": 0.0016845468749999998, "url": "https://pypi.org/project/iniconfig" } } diff --git a/_repos/github/Rohit-Kundu/ET-NET_Covid-Detection/badge.png b/_repos/github/Rohit-Kundu/ET-NET_Covid-Detection/badge.png index c2c6e543..522818fc 100644 Binary files a/_repos/github/Rohit-Kundu/ET-NET_Covid-Detection/badge.png and b/_repos/github/Rohit-Kundu/ET-NET_Covid-Detection/badge.png differ diff --git a/_repos/github/SCECcode/pycsep/badge.png b/_repos/github/SCECcode/pycsep/badge.png index cce2d4fe..47f6ae33 100644 Binary files a/_repos/github/SCECcode/pycsep/badge.png and b/_repos/github/SCECcode/pycsep/badge.png differ diff --git a/_repos/github/SCM-NV/pyZacros/badge.png b/_repos/github/SCM-NV/pyZacros/badge.png index 7162243d..3696c892 100644 Binary files a/_repos/github/SCM-NV/pyZacros/badge.png and b/_repos/github/SCM-NV/pyZacros/badge.png differ diff --git a/_repos/github/SCM-NV/qmflows-namd/README.md b/_repos/github/SCM-NV/qmflows-namd/README.md index 0c939b6a..356342b1 100644 --- a/_repos/github/SCM-NV/qmflows-namd/README.md +++ b/_repos/github/SCM-NV/qmflows-namd/README.md @@ -8,58 +8,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.241| -|pypi|[h5py](http://www.h5py.org)|0.108| -|pypi|[pyyaml](https://pyyaml.org/)|0.092| -|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.086| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.085| -|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.082| -|pypi|[dill](https://pypi.org/project/dill)|0.041| -|pypi|[filelock](https://pypi.org/project/filelock)|0.02| -|pypi|[pyxenon](https://pypi.org/project/pyxenon)|0.016| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.016| -|pypi|[six](https://github.com/benjaminp/six)|0.011| -|pypi|[pytest](https://pypi.org/project/pytest)|0.011| |setup.py|github/SCM-NV/qmflows-namd|0.01| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.01| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.01| -|pypi|[assertionlib](https://pypi.org/project/assertionlib)|0.01| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.01| -|pypi|[pyfiglet](https://github.com/pwaller/pyfiglet)|0.007| -|pypi|[jupyter-bokeh](https://github.com/bokeh/jupyter_bokeh)|0.007| -|pypi|[colorama](https://github.com/tartley/colorama)|0.007| -|pypi|[bokeh](https://github.com/bokeh/bokeh)|0.007| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.007| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.007| -|pypi|[schema](https://github.com/keleshev/schema)|0.007| -|pypi|[ipython](https://pypi.org/project/ipython)|0.006| -|pypi|[wheel](https://pypi.org/project/wheel)|0.006| -|pypi|[twine](https://pypi.org/project/twine)|0.006| -|pypi|[pandas](https://pandas.pydata.org)|0.005| -|pypi|[noodles](http://nlesc.github.io/noodles)|0.004| -|pypi|[plams](https://www.scm.com/doc/plams/)|0.004| -|pypi|[tenacity](https://pypi.org/project/tenacity)|0.004| -|pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|0.003| -|pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|0.003| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.003| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.003| -|pypi|[types-PyYAML](https://pypi.org/project/types-PyYAML)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[pandoc](https://pypi.org/project/pandoc)|0.003| -|pypi|[jupyter](https://pypi.org/project/jupyter)|0.003| -|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.003| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.003| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.002| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| -|pypi|[pytz](https://pypi.org/project/pytz)|0.001| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.001| -|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|0.001| -|pypi|[qmflows](https://github.com/SCM-NV/qmflows)|0.001| -|pypi|[packaging](https://github.com/pypa/packaging)|0.001| -|pypi|[Nano-Utils](https://github.com/nlesc-nano/Nano-Utils)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/SCM-NV/qmflows-namd/badge.png b/_repos/github/SCM-NV/qmflows-namd/badge.png index 29f86bb9..fe42ea06 100644 Binary files a/_repos/github/SCM-NV/qmflows-namd/badge.png and b/_repos/github/SCM-NV/qmflows-namd/badge.png differ diff --git a/_repos/github/SCM-NV/qmflows-namd/data.json b/_repos/github/SCM-NV/qmflows-namd/data.json index a1643c0c..ea1aa138 100644 --- a/_repos/github/SCM-NV/qmflows-namd/data.json +++ b/_repos/github/SCM-NV/qmflows-namd/data.json @@ -4,219 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "h5py": { - "credit": 0.10838469230769232, - "url": "http://www.h5py.org" - }, - "mendeleev": { - "credit": 0.0008250000000000063, - "url": "https://github.com/lmmentel/mendeleev" - }, - "more-itertools": { - "credit": 0.08576700000000001, - "url": "https://github.com/more-itertools/more-itertools" - }, - "noodles": { - "credit": 0.004092000000000006, - "url": "http://nlesc.github.io/noodles" - }, - "numpy": { - "credit": 0.2413850048076923, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.002662687500000006, - "url": "https://www.scipy.org" - }, - "schema": { - "credit": 0.007107692307692314, - "url": "https://github.com/keleshev/schema" - }, - "pyyaml": { - "credit": 0.09204969230769232, - "url": "https://pyyaml.org/" - }, - "plams": { - "credit": 0.004092000000000006, - "url": "https://www.scm.com/doc/plams/" - }, - "qmflows": { - "credit": 0.0008250000000000063, - "url": "https://github.com/SCM-NV/qmflows" - }, - "packaging": { - "credit": 0.0008250000000000063, - "url": "https://github.com/pypa/packaging" - }, - "Nano-Utils": { - "credit": 0.0008250000000000063, - "url": "https://github.com/nlesc-nano/Nano-Utils" - }, - "six": { - "credit": 0.011100375, - "url": "https://github.com/benjaminp/six" - }, - "seaborn": { - "credit": 7.424999999999966e-05, - "url": "https://seaborn.pydata.org" - }, - "pyfiglet": { - "credit": 0.007425, - "url": "https://github.com/pwaller/pyfiglet" - }, - "plotly": { - "credit": 7.424999999999966e-05, - "url": "https://plotly.com/python/" - }, - "pandas": { - "credit": 0.0051789374999999995, - "url": "https://pandas.pydata.org" - }, - "jupyter-bokeh": { - "credit": 0.007425, - "url": "https://github.com/bokeh/jupyter_bokeh" - }, - "colorama": { - "credit": 0.007425, - "url": "https://github.com/tartley/colorama" - }, - "bokeh": { - "credit": 0.007425, - "url": "https://github.com/bokeh/bokeh" - }, - "SQLAlchemy": { - "credit": 0.007425, - "url": "https://pypi.org/project/SQLAlchemy" - }, - "Pygments": { - "credit": 0.007425, - "url": "https://pypi.org/project/Pygments" - }, - "pyxenon": { - "credit": 0.016335, - "url": "https://pypi.org/project/pyxenon" - }, - "graphviz": { - "credit": 0.016335, - "url": "https://pypi.org/project/graphviz" - }, - "filelock": { - "credit": 0.019601999999999998, - "url": "https://pypi.org/project/filelock" - }, - "contextlib2": { - "credit": 0.081675, - "url": "https://pypi.org/project/contextlib2" - }, - "dill": { - "credit": 0.0408375, - "url": "https://pypi.org/project/dill" - }, - "typing-extensions": { - "credit": 0.009549692307692308, - "url": "https://pypi.org/project/typing-extensions" - }, - "pytest-pydocstyle": { - "credit": 0.003267, - "url": "https://pypi.org/project/pytest-pydocstyle" - }, - "pytest-pycodestyle": { - "credit": 0.003267, - "url": "https://pypi.org/project/pytest-pycodestyle" - }, - "pytest-mock": { - "credit": 0.003267, - "url": "https://pypi.org/project/pytest-mock" - }, - "pytest-cov": { - "credit": 0.009549692307692308, - "url": "https://pypi.org/project/pytest-cov" - }, - "pytest": { - "credit": 0.010774817307692308, - "url": "https://pypi.org/project/pytest" - }, - "assertionlib": { - "credit": 0.009549692307692308, - "url": "https://pypi.org/project/assertionlib" - }, - "types-setuptools": { - "credit": 0.003267, - "url": "https://pypi.org/project/types-setuptools" - }, - "types-PyYAML": { - "credit": 0.003267, - "url": "https://pypi.org/project/types-PyYAML" - }, - "mypy": { - "credit": 0.003267, - "url": "https://pypi.org/project/mypy" - }, - "pandoc": { - "credit": 0.003267, - "url": "https://pypi.org/project/pandoc" - }, - "jupyter": { - "credit": 0.003267, - "url": "https://pypi.org/project/jupyter" - }, - "nbsphinx": { - "credit": 0.003267, - "url": "https://pypi.org/project/nbsphinx" - }, - "sphinx-rtd-theme": { - "credit": 0.009549692307692308, - "url": "https://pypi.org/project/sphinx-rtd-theme" - }, - "sphinx-autodoc-typehints": { - "credit": 0.003267, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "sphinx": { - "credit": 0.009549692307692308, - "url": "https://pypi.org/project/sphinx" - }, - "pyparsing": { - "credit": 0.084942, - "url": "https://pypi.org/project/pyparsing" - }, - "ipython": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/ipython" - }, - "wheel": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/wheel" - }, - "twine": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/twine" - }, - "matplotlib": { - "credit": 0.0018376875000000001, - "url": "https://pypi.org/project/matplotlib" - }, - "tenacity": { - "credit": 0.0036753750000000003, - "url": "https://pypi.org/project/tenacity" - }, - "pytest-xdist": { - "credit": 0.001225125, - "url": "https://pypi.org/project/pytest-xdist" - }, - "hypothesis": { - "credit": 0.001225125, - "url": "https://pypi.org/project/hypothesis" - }, - "pytz": { - "credit": 0.001225125, - "url": "https://pypi.org/project/pytz" - }, - "python-dateutil": { - "credit": 0.001225125, - "url": "https://pypi.org/project/python-dateutil" - } } } \ No newline at end of file diff --git a/_repos/github/SCM-NV/qmflows-namd/setup.py b/_repos/github/SCM-NV/qmflows-namd/setup.py index d1ae02d8..554c9fa2 100644 --- a/_repos/github/SCM-NV/qmflows-namd/setup.py +++ b/_repos/github/SCM-NV/qmflows-namd/setup.py @@ -5,6 +5,7 @@ from typing import TYPE_CHECKING import setuptools +import pybind11 from Cython.Distutils import build_ext from setuptools import Extension, find_packages, setup @@ -18,32 +19,16 @@ here = os.path.abspath(os.path.dirname(__file__)) version: "dict[str, str]" = {} -with open(os.path.join(here, 'nanoqm', '_version.py')) as f: +with open(os.path.join(here, 'nanoqm', '_version.py'), 'r', encoding='utf8') as f: exec(f.read(), version) def readme() -> str: """Load readme.""" - with open('README.rst') as f: + with open('README.rst', 'r', encoding='utf8') as f: return f.read() -class get_pybind_include: - """Helper class to determine the pybind11 include path. - - The purpose of this class is to postpone importing pybind11 - until it is actually installed, so that the ``get_include()`` - method can be invoked. - """ - - def __init__(self, user: bool = False) -> None: - self.user = user - - def __str__(self) -> str: - import pybind11 - return pybind11.get_include(self.user) - - def has_flag(compiler: "CCompiler", flagname: str) -> bool: """Return a boolean indicating whether a flag name is supported on the specified compiler. @@ -97,42 +82,87 @@ def build_extensions(self) -> None: opts = self.c_opts.get(ct, []) link_opts = self.l_opts.get(ct, []) if ct == 'unix': - opts.append('-DVERSION_INFO="%s"' % - self.distribution.get_version()) + opts.append('-DVERSION_INFO="%s"' % self.distribution.get_version()) opts.append(cpp_flag(self.compiler)) if has_flag(self.compiler, '-fvisibility=hidden'): opts.append('-fvisibility=hidden') elif ct == 'msvc': - opts.append('/DVERSION_INFO=\\"%s\\"' % - self.distribution.get_version()) + opts.append('/DVERSION_INFO=\\"%s\\"' % self.distribution.get_version()) for ext in self.extensions: ext.extra_compile_args = opts ext.extra_link_args = link_opts build_ext.build_extensions(self) -# Set path to the conda libraries -conda_prefix = os.environ["CONDA_PREFIX"] -if conda_prefix is None: - raise RuntimeError( - "No conda module found. A Conda environment is required") +def parse_requirements(path: "str | os.PathLike[str]") -> "list[str]": + """Parse a ``requirements.txt`` file and strip all empty and commented lines.""" + ret = [] + with open(path, "r", encoding="utf8") as f: + for i in f: + j = i.split("#", 1)[0].strip().rstrip() + if j: + ret.append(j) + return ret + + +def get_paths() -> "tuple[list[str], list[str]]": + """Get the paths specified in the ``QMFLOWS_INCLUDEDIR`` and ``QMFLOWS_LIBDIR`` \ + environment variables. + + If not specified if specified use ``CONDA_PREFIX`` instead. + Multiple include and/or lib paths must be specified with the standard (OS-specific) + path separator, *e.g.* ``":"`` for POSIX. -conda_include = join(conda_prefix, 'include') -conda_lib = join(conda_prefix, 'lib') + Examples + -------- + .. code-block:: bash + export QMFLOWS_INCLUDEDIR="/libint/include:/eigen3/include" + export QMFLOWS_LIBDIR="/hdf5/lib:/libint/lib" + + .. code-block:: python + >>> get_paths() + (['/libint/include', '/eigen3/include'], ['/hdf5/lib', '/libint/lib']) + + Returns + ------- + tuple[list[str], list[str]] + Lists of include- and library-directories used in compiling the ``compute_integrals`` + extension module. + + """ + conda_prefix = os.environ.get("CONDA_PREFIX") + include_dirs = os.environ.get("QMFLOWS_INCLUDEDIR") + lib_dirs = os.environ.get("QMFLOWS_LIBDIR") + + if include_dirs is not None and lib_dirs is not None: + include_list = include_dirs.split(os.pathsep) if include_dirs else [] + lib_list = lib_dirs.split(os.pathsep) if lib_dirs else [] + elif conda_prefix is not None: + include_list = [ + join(conda_prefix, "include"), + join(conda_prefix, "include", "eigen3"), + ] + lib_list = [join(conda_prefix, "lib")] + else: + raise RuntimeError( + "No conda module found. A Conda environment is required " + "or one must set both the `QMFLOWS_INCLUDEDIR` and `QMFLOWS_LIBDIR` " + "environment variables" + ) + return include_list, lib_list + + +include_list, lib_list = get_paths() ext_pybind = Extension( 'nanoqm.compute_integrals', sources=['libint/compute_integrals.cc'], include_dirs=[ - # Path to pybind11 headers - 'libint/include', - conda_include, - join(conda_include, 'eigen3'), - get_pybind_include(), - get_pybind_include(user=True), - '/usr/include/eigen3' + "libint/include", + *include_list, + pybind11.get_include(), ], libraries=['hdf5', 'int2'], - library_dirs=[conda_lib], + library_dirs=lib_list, language='c++', ) @@ -141,13 +171,14 @@ def build_extensions(self) -> None: version=version['__version__'], description='Derivative coupling calculation', license='Apache-2.0', + license_files=["LICENSE*.txt"], url='https://github.com/SCM-NV/nano-qmflows', author='Felipe Zapata & Ivan Infante', author_email='f.zapata@esciencecenter.nl', keywords='chemistry Photochemistry Simulation', long_description=readme() + '\n\n', long_description_content_type='text/x-rst', - packages=find_packages(), + packages=find_packages(exclude=["test"]), classifiers=[ 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', @@ -160,37 +191,14 @@ def build_extensions(self) -> None: 'Topic :: Scientific/Engineering :: Chemistry', 'Typing :: Typed', ], - install_requires=[ - 'h5py', - 'mendeleev', - 'more-itertools', - 'noodles>=0.3.3', - 'numpy', - 'scipy', - 'schema', - 'pyyaml>=5.1', - 'plams>=1.5.1', - 'qmflows>=0.12.0', - 'packaging>=1.16.8', - 'Nano-Utils>=2.0.0', - ], + install_requires=parse_requirements("install_requirements.txt"), cmdclass={'build_ext': BuildExt}, python_requires='>=3.7', ext_modules=[ext_pybind], extras_require={ - 'test': [ - 'assertionlib', - 'codacy-coverage', - 'pytest', - 'pytest-cov', - 'pytest-mock', - 'Cython', - 'setuptools', - 'ipython', - ], - 'doc': ['sphinx>=2.1', 'sphinx-autodoc-typehints', 'sphinx_rtd_theme', 'nbsphinx'] + 'test': parse_requirements("test_requirements.txt"), + 'doc': parse_requirements("doc_requirements.txt"), }, - include_package_data=True, package_data={ 'nanoqm': ['basis/*.json', 'basis/BASIS*', 'basis/GTH_POTENTIALS', 'py.typed', '*.pyi'] }, diff --git a/_repos/github/SCM-NV/qmflows/badge.png b/_repos/github/SCM-NV/qmflows/badge.png index bc0ed39b..28bc1087 100644 Binary files a/_repos/github/SCM-NV/qmflows/badge.png and b/_repos/github/SCM-NV/qmflows/badge.png differ diff --git a/_repos/github/SMTG-UCL/surfaxe/README.md b/_repos/github/SMTG-UCL/surfaxe/README.md index 41fa9e28..76e81f8e 100644 --- a/_repos/github/SMTG-UCL/surfaxe/README.md +++ b/_repos/github/SMTG-UCL/surfaxe/README.md @@ -8,49 +8,78 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.538| -|pypi|[pytest](https://pypi.org/project/pytest)|0.035| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.027| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.027| -|pypi|[pytz](https://pypi.org/project/pytz)|0.027| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.027| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.019| -|pypi|[scipy](https://www.scipy.org)|0.018| -|pypi|[pandas](https://pandas.pydata.org)|0.018| -|pypi|[spglib](http://spglib.github.io/spglib/)|0.01| +|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.106| +|pypi|[numpy](https://pypi.org/project/numpy)|0.07| +|pypi|[future](https://python-future.org)|0.065| +|pypi|[six](https://pypi.org/project/six)|0.064| +|pypi|[matplotlib](https://matplotlib.org)|0.061| +|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.055| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.052| +|pypi|[mpmath](http://mpmath.org/)|0.052| +|pypi|[ruamel.yaml.clib](https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree)|0.052| +|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.052| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.052| +|pypi|[pytest](https://pypi.org/project/pytest)|0.029| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.019| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.016| +|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|0.013| +|pypi|[codecov](https://pypi.org/project/codecov)|0.013| +|pypi|[nose](https://pypi.org/project/nose)|0.013| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.013| +|pypi|[wheel](https://pypi.org/project/wheel)|0.01| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.01| |setup.py|github/SMTG-UCL/surfaxe|0.01| -|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|0.009| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.009| -|pypi|[tqdm](https://pypi.org/project/tqdm)|0.009| -|pypi|[pybtex](https://pypi.org/project/pybtex)|0.009| -|pypi|[uncertainties](https://pypi.org/project/uncertainties)|0.009| -|pypi|[plotly](https://pypi.org/project/plotly)|0.009| -|pypi|[sympy](https://pypi.org/project/sympy)|0.009| -|pypi|[palettable](https://pypi.org/project/palettable)|0.009| -|pypi|[networkx](https://pypi.org/project/networkx)|0.009| -|pypi|[tabulate](https://pypi.org/project/tabulate)|0.009| -|pypi|[monty](https://pypi.org/project/monty)|0.009| -|pypi|[ruamel.yaml](https://pypi.org/project/ruamel.yaml)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.008| -|pypi|[mypy](https://pypi.org/project/mypy)|0.008| -|pypi|[black](https://pypi.org/project/black)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.008| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.008| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.008| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.008| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.008| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.008| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.008| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.008| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.008| -|pypi|[joblib](https://pypi.org/project/joblib)|0.008| -|pypi|[wslink](https://pypi.org/project/wslink)|0.003| -|pypi|[pymatgen](https://pymatgen.org)|0.002| -|pypi|[scikit-learn](http://scikit-learn.org)|0.002| +|pypi|[sympy](https://sympy.org)|0.01| +|pypi|[scipy](https://pypi.org/project/scipy)|0.009| +|pypi|[lxml](https://pypi.org/project/lxml)|0.007| +|pypi|[pandas](https://pypi.org/project/pandas)|0.005| +|pypi|[xattr](https://pypi.org/project/xattr)|0.004| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.004| +|pypi|[munkres](https://pypi.org/project/munkres)|0.004| +|pypi|[brotli](https://pypi.org/project/brotli)|0.004| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.004| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.004| +|pypi|[lz4](https://pypi.org/project/lz4)|0.004| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.004| +|pypi|[fs](https://pypi.org/project/fs)|0.004| +|pypi|[spglib](http://spglib.github.io/spglib/)|0.003| +|pypi|[monty](https://github.com/materialsvirtuallab/monty)|0.003| +|pypi|[networkx](https://networkx.org/)|0.003| +|pypi|[uncertainties](http://uncertainties-python-package.readthedocs.io/)|0.003| +|pypi|[pybtex](https://pybtex.org/)|0.003| +|pypi|[tabulate](https://github.com/astanin/python-tabulate)|0.003| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.003| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.003| +|pypi|[packaging](https://pypi.org/project/packaging)|0.003| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.003| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| +|pypi|[coverage](https://pypi.org/project/coverage)|0.003| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.003| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.003| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.003| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| +|pypi|[olefile](https://pypi.org/project/olefile)|0.003| +|pypi|[pillow](https://python-pillow.org)|0.003| +|pypi|[vtk](https://vtk.org)|0.003| +|pypi|[ase](https://pypi.org/project/ase)|0.003| +|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.003| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.003| +|pypi|[plotly](https://pypi.org/project/plotly)|0.003| +|pypi|[requests](https://pypi.org/project/requests)|0.003| +|pypi|[pydot](https://pypi.org/project/pydot)|0.003| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.003| +|pypi|[texext](https://pypi.org/project/texext)|0.003| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.003| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.003| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.003| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.003| +|pypi|[mypy](https://pypi.org/project/mypy)|0.003| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.003| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pymatgen](https://pymatgen.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/SMTG-UCL/surfaxe/badge.png b/_repos/github/SMTG-UCL/surfaxe/badge.png index 91e80e44..1dbe19ac 100644 Binary files a/_repos/github/SMTG-UCL/surfaxe/badge.png and b/_repos/github/SMTG-UCL/surfaxe/badge.png differ diff --git a/_repos/github/SMTG-UCL/surfaxe/data.json b/_repos/github/SMTG-UCL/surfaxe/data.json index 55350a23..a19b8b14 100644 --- a/_repos/github/SMTG-UCL/surfaxe/data.json +++ b/_repos/github/SMTG-UCL/surfaxe/data.json @@ -6,177 +6,289 @@ } }, "pypi": { - "scipy": { - "credit": 0.01802593984962407, - "url": "https://www.scipy.org" - }, - "numpy": { - "credit": 0.5381380714285714, - "url": "https://www.numpy.org" + "pymatgen": { + "credit": 0.0005210526315789429, + "url": "https://pymatgen.org" }, "spglib": { - "credit": 0.010247368421052644, + "credit": 0.0032360110803324126, "url": "http://spglib.github.io/spglib/" }, - "pymatgen": { - "credit": 0.0016500000000000126, - "url": "https://pymatgen.org" + "matplotlib": { + "credit": 0.06136744832729597, + "url": "https://matplotlib.org" }, - "pandas": { - "credit": 0.01802593984962407, - "url": "https://pandas.pydata.org" + "monty": { + "credit": 0.0032360110803324126, + "url": "https://github.com/materialsvirtuallab/monty" + }, + "networkx": { + "credit": 0.0032360110803324126, + "url": "https://networkx.org/" }, - "scikit-learn": { - "credit": 0.0016500000000000126, - "url": "http://scikit-learn.org" + "palettable": { + "credit": 0.0548202216066482, + "url": "https://jiffyclub.github.io/palettable/" + }, + "ruamel.yaml": { + "credit": 0.106404432132964, + "url": "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree" + }, + "uncertainties": { + "credit": 0.0032360110803324126, + "url": "http://uncertainties-python-package.readthedocs.io/" + }, + "pybtex": { + "credit": 0.0032360110803324126, + "url": "https://pybtex.org/" + }, + "sympy": { + "credit": 0.009783237800980185, + "url": "https://sympy.org" + }, + "tabulate": { + "credit": 0.0032360110803324126, + "url": "https://github.com/astanin/python-tabulate" + }, + "cycler": { + "credit": 0.05210526315789474, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0005210526315789429, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0005210526315789499, + "url": "https://github.com/nucleic/kiwi" + }, + "latexcodec": { + "credit": 0.013417105263157897, + "url": "https://github.com/mcmtroffaes/latexcodec" + }, + "mpmath": { + "credit": 0.05210526315789474, + "url": "http://mpmath.org/" + }, + "pillow": { + "credit": 0.003100263157894739, + "url": "https://python-pillow.org" + }, + "ruamel.yaml.clib": { + "credit": 0.05210526315789474, + "url": "https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree" + }, + "future": { + "credit": 0.06500131578947368, + "url": "https://python-future.org" }, "vtk": { - "credit": 8.597368421052638e-05, + "credit": 0.0027149584487534627, "url": "https://vtk.org" }, "ase": { - "credit": 0.008597368421052631, - "url": "https://wiki.fysik.dtu.dk/ase" + "credit": 0.0027149584487534627, + "url": "https://pypi.org/project/ase" }, "netcdf4": { - "credit": 0.008597368421052631, + "credit": 0.0027149584487534627, "url": "https://pypi.org/project/netcdf4" }, "tqdm": { - "credit": 0.008597368421052631, + "credit": 0.0027149584487534627, "url": "https://pypi.org/project/tqdm" }, - "pybtex": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/pybtex" - }, - "uncertainties": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/uncertainties" - }, "plotly": { - "credit": 0.008597368421052631, + "credit": 0.0027149584487534627, "url": "https://pypi.org/project/plotly" }, - "sympy": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/sympy" + "pandas": { + "credit": 0.005294168975069252, + "url": "https://pypi.org/project/pandas" }, - "palettable": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/palettable" + "scipy": { + "credit": 0.009262185169401235, + "url": "https://pypi.org/project/scipy" }, - "matplotlib": { - "credit": 0.019213071428571427, - "url": "https://pypi.org/project/matplotlib" + "requests": { + "credit": 0.0027149584487534627, + "url": "https://pypi.org/project/requests" }, - "networkx": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/networkx" + "numpy": { + "credit": 0.06977443213296398, + "url": "https://pypi.org/project/numpy" }, - "tabulate": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/tabulate" + "codecov": { + "credit": 0.012896052631578947, + "url": "https://pypi.org/project/codecov" }, - "monty": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/monty" + "pytest-cov": { + "credit": 0.016120065789473684, + "url": "https://pypi.org/project/pytest-cov" }, - "ruamel.yaml": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/ruamel.yaml" + "pytest": { + "credit": 0.02901611842105263, + "url": "https://pypi.org/project/pytest" }, - "requests": { - "credit": 0.008597368421052631, - "url": "https://pypi.org/project/requests" + "pydot": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/pydot" }, - "pytest-xdist": { - "credit": 0.027225, - "url": "https://pypi.org/project/pytest-xdist" + "pygraphviz": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/pygraphviz" }, - "pytest": { - "credit": 0.035003571428571426, - "url": "https://pypi.org/project/pytest" + "lxml": { + "credit": 0.006547226720647774, + "url": "https://pypi.org/project/lxml" }, - "hypothesis": { - "credit": 0.027225, - "url": "https://pypi.org/project/hypothesis" + "texext": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/texext" }, - "pytz": { - "credit": 0.027225, - "url": "https://pypi.org/project/pytz" + "nb2plots": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/nb2plots" }, - "python-dateutil": { - "credit": 0.027225, - "url": "https://pypi.org/project/python-dateutil" + "numpydoc": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/numpydoc" }, - "pyamg": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/pyamg" + "sphinx-gallery": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/sphinx-gallery" + }, + "pydata-sphinx-theme": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/pydata-sphinx-theme" + }, + "sphinx": { + "credit": 0.018699276315789472, + "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.007778571428571428, + "credit": 0.0025792105263157893, "url": "https://pypi.org/project/mypy" }, - "black": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/black" + "pre-commit": { + "credit": 0.0025792105263157893, + "url": "https://pypi.org/project/pre-commit" }, - "flake8": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/flake8" + "nose": { + "credit": 0.012896052631578947, + "url": "https://pypi.org/project/nose" }, - "pytest-cov": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/pytest-cov" + "six": { + "credit": 0.06448026315789473, + "url": "https://pypi.org/project/six" }, - "sphinxext-opengraph": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinxext-opengraph" + "PyYAML": { + "credit": 0.012896052631578947, + "url": "https://pypi.org/project/PyYAML" }, - "sphinx-prompt": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinx-prompt" + "wcwidth": { + "credit": 0.05158421052631579, + "url": "https://pypi.org/project/wcwidth" }, - "Pillow": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/Pillow" + "xattr": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/xattr" }, - "numpydoc": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/numpydoc" + "unicodedata2": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/unicodedata2" }, - "sphinx-gallery": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinx-gallery" + "munkres": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/munkres" }, - "sphinx": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinx" + "brotli": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/skia-pathops" + }, + "lz4": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/zopfli" + }, + "fs": { + "credit": 0.003968016194331984, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.05158421052631579, + "url": "https://pypi.org/project/typing-extensions" }, - "seaborn": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/seaborn" + "wheel": { + "credit": 0.010316842105263157, + "url": "https://pypi.org/project/wheel" + }, + "pycodestyle": { + "credit": 0.010316842105263157, + "url": "https://pypi.org/project/pycodestyle" + }, + "pytest-timeout": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "scikit-image": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/scikit-image" + "sphinx-rtd-theme": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "memory-profiler": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/memory-profiler" + "sphinx-removed-in": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "threadpoolctl": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/threadpoolctl" + "sphinx-issues": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinx-issues" }, - "joblib": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/joblib" + "sphinx-copybutton": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "wslink": { - "credit": 0.0028371315789473685, - "url": "https://pypi.org/project/wslink" + "olefile": { + "credit": 0.0032240131578947367, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/STEllAR-GROUP/hpx/badge.png b/_repos/github/STEllAR-GROUP/hpx/badge.png index 5cea9d1a..e2213b22 100644 Binary files a/_repos/github/STEllAR-GROUP/hpx/badge.png and b/_repos/github/STEllAR-GROUP/hpx/badge.png differ diff --git a/_repos/github/SWIFTSIM/emulator/README.md b/_repos/github/SWIFTSIM/emulator/README.md index b373ad52..b564b703 100644 --- a/_repos/github/SWIFTSIM/emulator/README.md +++ b/_repos/github/SWIFTSIM/emulator/README.md @@ -8,95 +8,100 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.184| -|pypi|[pyyaml](https://pyyaml.org/)|0.066| -|pypi|[pyDOE](https://github.com/tisimst/pyDOE)|0.066| -|pypi|[scipy](https://pypi.org/project/scipy)|0.053| -|pypi|[h5py](https://pypi.org/project/h5py)|0.044| -|pypi|[unyt](https://github.com/yt-project/unyt)|0.033| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.032| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.03| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.024| -|pypi|[colorama](https://pypi.org/project/colorama)|0.017| -|pypi|[astropy](https://pypi.org/project/astropy)|0.016| -|pypi|[numba](https://pypi.org/project/numba)|0.016| -|pypi|[coverage](https://pypi.org/project/coverage)|0.016| -|pypi|[wheel](https://pypi.org/project/wheel)|0.014| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.013| -|pypi|[twine](https://pypi.org/project/twine)|0.013| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| -|pypi|[requests](https://pypi.org/project/requests)|0.012| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| -|requirements.txt|github/SWIFTSIM/emulator|0.01| -|pypi|[pre-commit](https://github.com/pre-commit/pre-commit)|0.009| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[pandas](https://pypi.org/project/pandas)|0.009| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.008| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.008| -|pypi|[py-make](https://pypi.org/project/py-make)|0.008| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.008| -|pypi|[mypy](https://pypi.org/project/mypy)|0.008| -|pypi|[black](https://github.com/psf/black)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.007| -|pypi|[gurobipy](https://pypi.org/project/gurobipy)|0.006| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.006| -|pypi|[pathos](https://pypi.org/project/pathos)|0.006| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.005| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.005| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.005| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.005| -|pypi|[six](https://pypi.org/project/six)|0.005| -|pypi|[pympler](https://pypi.org/project/pympler)|0.005| -|pypi|[uvloop](https://pypi.org/project/uvloop)|0.005| -|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|0.005| -|pypi|[ipython](https://pypi.org/project/ipython)|0.005| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.005| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.005| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.005| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.005| -|pypi|[pathspec](https://pypi.org/project/pathspec)|0.005| -|pypi|[platformdirs](https://pypi.org/project/platformdirs)|0.005| -|pypi|[click](https://pypi.org/project/click)|0.005| -|pypi|[attrs](https://www.attrs.org/)|0.005| -|pypi|[pep517](https://pypi.org/project/pep517)|0.004| -|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|0.004| -|pypi|[myst-nb](https://pypi.org/project/myst-nb)|0.004| -|pypi|[pandoc](https://pypi.org/project/pandoc)|0.004| -|pypi|[toml](https://pypi.org/project/toml)|0.004| -|pypi|[isort](https://pypi.org/project/isort)|0.004| -|pypi|[arviz](https://pypi.org/project/arviz)|0.004| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.004| -|pypi|[pygments](https://pypi.org/project/pygments)|0.004| -|pypi|[nose](https://pypi.org/project/nose)|0.004| -|pypi|[mock](https://pypi.org/project/mock)|0.004| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.004| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.004| -|pypi|[py](https://pypi.org/project/py)|0.004| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.004| +|pypi|[numpy](https://pypi.org/project/numpy)|0.076| +|pypi|[h5py](http://www.h5py.org)|0.059| +|pypi|[pytest](https://pypi.org/project/pytest)|0.056| +|pypi|[matplotlib](https://matplotlib.org)|0.052| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.051| +|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.051| +|pypi|[pox](https://github.com/uqfoundation/pox)|0.051| +|pypi|[pyDOE](https://github.com/tisimst/pyDOE)|0.045| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.044| +|pypi|[mpmath](http://mpmath.org/)|0.042| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.042| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.042| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.041| +|pypi|[scipy](https://pypi.org/project/scipy)|0.035| +|pypi|[sympy](https://sympy.org)|0.024| +|pypi|[unyt](https://github.com/yt-project/unyt)|0.014| +|pypi|[wheel](https://github.com/pypa/wheel)|0.012| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.011| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.011| +|pypi|[astropy](http://astropy.org)|0.011| +|pypi|[ppft](https://github.com/uqfoundation/ppft)|0.011| +|pypi|[coverage](https://pypi.org/project/coverage)|0.011| +|setup.py|github/SWIFTSIM/emulator|0.01| +|pypi|[codecov](https://pypi.org/project/codecov)|0.008| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.008| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| +|pypi|[pandas](https://pypi.org/project/pandas)|0.005| +|pypi|[pathos](https://github.com/uqfoundation/pathos)|0.004| +|pypi|[corner](https://corner.readthedocs.io)|0.004| +|pypi|[emcee](https://emcee.readthedocs.io)|0.004| +|pypi|[george](https://github.com/dfm/george)|0.004| +|pypi|[SALib](http://salib.github.io/SALib/)|0.004| +|pypi|[velociraptor](https://github.com/swiftsim/velociraptor-python)|0.004| |pypi|[packaging](https://pypi.org/project/packaging)|0.004| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.004| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.003| +|pypi|[gurobipy](https://pypi.org/project/gurobipy)|0.004| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.004| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.003| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.003| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.003| +|pypi|[attrs](https://pypi.org/project/attrs)|0.003| +|pypi|[xattr](https://pypi.org/project/xattr)|0.003| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.003| +|pypi|[munkres](https://pypi.org/project/munkres)|0.003| +|pypi|[brotli](https://pypi.org/project/brotli)|0.003| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.003| +|pypi|[lz4](https://pypi.org/project/lz4)|0.003| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.003| +|pypi|[lxml](https://pypi.org/project/lxml)|0.003| +|pypi|[fs](https://pypi.org/project/fs)|0.003| +|pypi|[twine](https://pypi.org/project/twine)|0.003| +|pypi|[pep517](https://pypi.org/project/pep517)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.003| +|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|0.003| +|pypi|[myst-nb](https://pypi.org/project/myst-nb)|0.003| +|pypi|[pandoc](https://pypi.org/project/pandoc)|0.003| +|pypi|[toml](https://pypi.org/project/toml)|0.003| +|pypi|[isort](https://pypi.org/project/isort)|0.003| +|pypi|[black](https://pypi.org/project/black)|0.003| +|pypi|[arviz](https://pypi.org/project/arviz)|0.003| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.003| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.003| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.003| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.003| |pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.003| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.003| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.003| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.003| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.003| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.003| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.003| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.003| -|pypi|[joblib](https://pypi.org/project/joblib)|0.003| -|pypi|[george](https://github.com/dfm/george)|0.001| -|pypi|[SALib](http://salib.github.io/SALib/)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| -|pypi|[corner](https://corner.readthedocs.io)|0.001| -|pypi|[emcee](https://emcee.readthedocs.io)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[velociraptor](https://github.com/swiftsim/velociraptor-python)|0.001| -|pypi|[swiftsimio](https://github.com/swiftsim/swiftsimio)|0.001| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.003| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.003| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| +|pypi|[olefile](https://pypi.org/project/olefile)|0.003| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.002| +|pypi|[sgp4](https://pypi.org/project/sgp4)|0.001| +|pypi|[skyfield](https://pypi.org/project/skyfield)|0.001| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.001| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.001| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.001| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.001| +|pypi|[asdf](https://pypi.org/project/asdf)|0.001| +|pypi|[jplephem](https://pypi.org/project/jplephem)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[bleach](https://pypi.org/project/bleach)|0.001| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.001| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.001| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.001| +|pypi|[dask](https://pypi.org/project/dask)|0.001| +|pypi|[certifi](https://pypi.org/project/certifi)|0.001| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/SWIFTSIM/emulator/badge.png b/_repos/github/SWIFTSIM/emulator/badge.png index af724f20..e29a4aa4 100644 Binary files a/_repos/github/SWIFTSIM/emulator/badge.png and b/_repos/github/SWIFTSIM/emulator/badge.png differ diff --git a/_repos/github/SWIFTSIM/emulator/data.json b/_repos/github/SWIFTSIM/emulator/data.json index fee6f47f..a71fcfdf 100644 --- a/_repos/github/SWIFTSIM/emulator/data.json +++ b/_repos/github/SWIFTSIM/emulator/data.json @@ -1,366 +1,398 @@ { - "requirements.txt": { + "setup.py": { "github/SWIFTSIM/emulator": { "credit": 0.01, "url": null } }, "pypi": { - "numpy": { - "credit": 0.1839514285714286, - "url": "https://www.numpy.org" + "swiftemulator": { + "credit": 0.00041250000000000314, + "url": "https://github.com/SWIFTSIM/emulator" }, - "unyt": { - "credit": 0.03333, - "url": "https://github.com/yt-project/unyt" + "corner": { + "credit": 0.003815625000000003, + "url": "https://corner.readthedocs.io" }, - "attrs": { - "credit": 0.0047437499999999945, - "url": "https://www.attrs.org/" + "emcee": { + "credit": 0.003815625000000003, + "url": "https://emcee.readthedocs.io" }, "george": { - "credit": 0.0006599999999999939, + "credit": 0.003815625000000003, "url": "https://github.com/dfm/george" }, + "pyDOE": { + "credit": 0.044653125, + "url": "https://github.com/tisimst/pyDOE" + }, "SALib": { - "credit": 0.0006599999999999939, + "credit": 0.003815625000000003, "url": "http://salib.github.io/SALib/" }, - "pytest": { - "credit": 0.029983582417582415, - "url": "https://docs.pytest.org/en/latest/" + "unyt": { + "credit": 0.014025000000000003, + "url": "https://github.com/yt-project/unyt" }, - "scikit-learn": { - "credit": 0.0006599999999999939, - "url": "http://scikit-learn.org" + "velociraptor": { + "credit": 0.003815625000000003, + "url": "https://github.com/swiftsim/velociraptor-python" }, - "corner": { - "credit": 0.0006599999999999939, - "url": "https://corner.readthedocs.io" + "matplotlib": { + "credit": 0.05199313186813188, + "url": "https://matplotlib.org" }, - "emcee": { - "credit": 0.0006599999999999939, - "url": "https://emcee.readthedocs.io" + "sympy": { + "credit": 0.023972596153846157, + "url": "https://sympy.org" }, - "black": { - "credit": 0.008127428571428567, - "url": "https://github.com/psf/black" + "astropy": { + "credit": 0.010621875000000003, + "url": "http://astropy.org" }, - "pyyaml": { - "credit": 0.066, - "url": "https://pyyaml.org/" + "h5py": { + "credit": 0.05943241071428572, + "url": "http://www.h5py.org" }, - "pyDOE": { - "credit": 0.066, - "url": "https://github.com/tisimst/pyDOE" + "pathos": { + "credit": 0.004125000000000004, + "url": "https://github.com/uqfoundation/pathos" + }, + "wheel": { + "credit": 0.012292500000000003, + "url": "https://github.com/pypa/wheel" + }, + "cycler": { + "credit": 0.04125, + "url": "https://github.com/matplotlib/cycler" + }, + "dill": { + "credit": 0.051459375, + "url": "https://github.com/uqfoundation/dill" + }, + "fonttools": { + "credit": 0.00041250000000000314, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.00041250000000000314, + "url": "https://github.com/nucleic/kiwi" + }, + "mpmath": { + "credit": 0.04241678571428572, + "url": "http://mpmath.org/" + }, + "multiprocess": { + "credit": 0.051459375, + "url": "https://github.com/uqfoundation/multiprocess" + }, + "pillow": { + "credit": 0.00041250000000000314, + "url": "https://python-pillow.org" + }, + "pox": { + "credit": 0.051459375, + "url": "https://github.com/uqfoundation/pox" + }, + "ppft": { + "credit": 0.010621875000000003, + "url": "https://github.com/uqfoundation/ppft" + }, + "pyerfa": { + "credit": 0.0015792857142857173, + "url": "https://github.com/liberfa/pyerfa" }, "tqdm": { - "credit": 0.0006599999999999939, - "url": "https://tqdm.github.io" + "credit": 0.003403125, + "url": "https://pypi.org/project/tqdm" }, - "velociraptor": { - "credit": 0.0006599999999999939, - "url": "https://github.com/swiftsim/velociraptor-python" + "pyyaml": { + "credit": 0.003403125, + "url": "https://pypi.org/project/pyyaml" }, - "swiftsimio": { - "credit": 0.0006599999999999939, - "url": "https://github.com/swiftsim/swiftsimio" + "scikit-learn": { + "credit": 0.003403125, + "url": "https://pypi.org/project/scikit-learn" }, - "sympy": { - "credit": 0.0003266999999999992, - "url": "https://sympy.org" + "attrs": { + "credit": 0.003403125, + "url": "https://pypi.org/project/attrs" + }, + "numpy": { + "credit": 0.0763449107142857, + "url": "https://pypi.org/project/numpy" + }, + "twine": { + "credit": 0.0027225, + "url": "https://pypi.org/project/twine" + }, + "pep517": { + "credit": 0.0027225, + "url": "https://pypi.org/project/pep517" }, - "cloudpickle": { - "credit": 0.005026153846153847, - "url": "https://github.com/cloudpipe/cloudpickle" + "flake8": { + "credit": 0.0027225, + "url": "https://pypi.org/project/flake8" }, "pre-commit": { - "credit": 0.009382153846153847, - "url": "https://github.com/pre-commit/pre-commit" + "credit": 0.0027225, + "url": "https://pypi.org/project/pre-commit" + }, + "sphinx-book-theme": { + "credit": 0.0027225, + "url": "https://pypi.org/project/sphinx-book-theme" + }, + "myst-nb": { + "credit": 0.0027225, + "url": "https://pypi.org/project/myst-nb" }, - "sphinx-notfound-page": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/sphinx-notfound-page" + "pandoc": { + "credit": 0.0027225, + "url": "https://pypi.org/project/pandoc" }, "sphinx": { - "credit": 0.01249358241758242, + "credit": 0.006441629464285714, "url": "https://pypi.org/project/sphinx" }, - "furo": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/furo" - }, - "zope.interface": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/zope.interface" + "toml": { + "credit": 0.0027225, + "url": "https://pypi.org/project/toml" }, - "pytest-mypy-plugins": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/pytest-mypy-plugins" + "isort": { + "credit": 0.0027225, + "url": "https://pypi.org/project/isort" }, - "mypy": { - "credit": 0.00813758241758242, - "url": "https://pypi.org/project/mypy" + "black": { + "credit": 0.0027225, + "url": "https://pypi.org/project/black" }, - "six": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/six" + "pytest-cov": { + "credit": 0.044379843749999995, + "url": "https://pypi.org/project/pytest-cov" }, - "pympler": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/pympler" + "pytest": { + "credit": 0.05575600446428571, + "url": "https://pypi.org/project/pytest" }, - "hypothesis": { - "credit": 0.009109903846153847, - "url": "https://pypi.org/project/hypothesis" + "arviz": { + "credit": 0.0027225, + "url": "https://pypi.org/project/arviz" }, "coverage": { - "credit": 0.01591615384615385, + "credit": 0.010525379464285714, "url": "https://pypi.org/project/coverage" }, "scipy": { - "credit": 0.05261142857142858, + "credit": 0.03524563186813187, "url": "https://pypi.org/project/scipy" }, - "pytest-cov": { - "credit": 0.024297428571428574, - "url": "https://pypi.org/project/pytest-cov" - }, "gurobipy": { - "credit": 0.005940000000000001, + "credit": 0.0037125, "url": "https://pypi.org/project/gurobipy" }, "importlib-metadata": { - "credit": 0.010023750000000001, + "credit": 0.0037125, "url": "https://pypi.org/project/importlib-metadata" }, - "wheel": { - "credit": 0.014107500000000002, - "url": "https://pypi.org/project/wheel" - }, "setuptools": { - "credit": 0.005940000000000001, + "credit": 0.0037125, "url": "https://pypi.org/project/setuptools" }, - "pathos": { - "credit": 0.005940000000000001, - "url": "https://pypi.org/project/pathos" - }, "pandas": { - "credit": 0.009051428571428573, + "credit": 0.0048792857142857145, "url": "https://pypi.org/project/pandas" }, - "matplotlib": { - "credit": 0.013407428571428574, - "url": "https://pypi.org/project/matplotlib" - }, - "xmlschema": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.012251250000000002, - "url": "https://pypi.org/project/requests" + "sgp4": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/sgp4" }, - "pygments": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/pygments" + "skyfield": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/skyfield" }, - "nose": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/nose" + "objgraph": { + "credit": 0.042004285714285716, + "url": "https://pypi.org/project/objgraph" }, - "mock": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/mock" + "pytest-xdist": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/pytest-xdist" }, - "argcomplete": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/argcomplete" + "pytest-astropy": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/pytest-astropy" }, - "colorama": { - "credit": 0.01727740384615385, - "url": "https://pypi.org/project/colorama" + "pytest-astropy-header": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/pytest-astropy-header" }, - "atomicwrites": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/atomicwrites" + "pytest-doctestplus": { + "credit": 0.011376160714285714, + "url": "https://pypi.org/project/pytest-doctestplus" }, - "tomli": { - "credit": 0.009109903846153847, - "url": "https://pypi.org/project/tomli" + "Jinja2": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/Jinja2" }, - "py": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/py" + "sphinx-changelog": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/sphinx-changelog" }, - "pluggy": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/pluggy" + "sphinx-astropy": { + "credit": 0.011376160714285714, + "url": "https://pypi.org/project/sphinx-astropy" }, - "packaging": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/iniconfig" - }, - "pyamg": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/pyamg" - }, - "flake8": { - "credit": 0.007467428571428573, - "url": "https://pypi.org/project/flake8" + "typing-extensions": { + "credit": 0.042004285714285716, + "url": "https://pypi.org/project/typing-extensions" }, - "sphinxext-opengraph": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/sphinxext-opengraph" + "ipython": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/ipython" }, - "sphinx-prompt": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/sphinx-prompt" + "bottleneck": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/bottleneck" }, - "Pillow": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/Pillow" + "asdf": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/asdf" }, - "numpydoc": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/numpydoc" + "jplephem": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/jplephem" }, - "sphinx-gallery": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/sphinx-gallery" + "pytz": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/pytz" }, - "seaborn": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/seaborn" + "sortedcontainers": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/sortedcontainers" }, - "scikit-image": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/scikit-image" + "bleach": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/bleach" }, - "memory-profiler": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/memory-profiler" + "html5lib": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/html5lib" }, - "threadpoolctl": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/threadpoolctl" + "beautifulsoup4": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/beautifulsoup4" }, - "joblib": { - "credit": 0.003111428571428572, - "url": "https://pypi.org/project/joblib" + "pyarrow": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/pyarrow" }, - "twine": { - "credit": 0.012523500000000002, - "url": "https://pypi.org/project/twine" + "dask": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/dask" }, - "pep517": { - "credit": 0.0043560000000000005, - "url": "https://pypi.org/project/pep517" + "certifi": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/certifi" }, - "sphinx-book-theme": { - "credit": 0.0043560000000000005, - "url": "https://pypi.org/project/sphinx-book-theme" + "packaging": { + "credit": 0.003719129464285714, + "url": "https://pypi.org/project/packaging" }, - "myst-nb": { - "credit": 0.0043560000000000005, - "url": "https://pypi.org/project/myst-nb" + "PyYAML": { + "credit": 0.0011667857142857142, + "url": "https://pypi.org/project/PyYAML" }, - "pandoc": { - "credit": 0.0043560000000000005, - "url": "https://pypi.org/project/pandoc" + "xattr": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/xattr" }, - "toml": { - "credit": 0.0043560000000000005, - "url": "https://pypi.org/project/toml" + "unicodedata2": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/unicodedata2" }, - "isort": { - "credit": 0.0043560000000000005, - "url": "https://pypi.org/project/isort" + "munkres": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/munkres" }, - "arviz": { - "credit": 0.0043560000000000005, - "url": "https://pypi.org/project/arviz" + "brotli": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/brotli" }, - "h5py": { - "credit": 0.04356000000000001, - "url": "https://pypi.org/project/h5py" + "brotlicffi": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/brotlicffi" }, - "uvloop": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/uvloop" + "skia-pathops": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/skia-pathops" }, - "tokenize-rt": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/tokenize-rt" + "lz4": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/lz4" }, - "ipython": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/ipython" + "zopfli": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/zopfli" }, - "aiohttp": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/aiohttp" + "lxml": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/lxml" }, - "typed-ast": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/typed-ast" + "fs": { + "credit": 0.003141346153846154, + "url": "https://pypi.org/project/fs" }, - "dataclasses": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/dataclasses" + "codecov": { + "credit": 0.0081675, + "url": "https://pypi.org/project/codecov" }, - "typing-extensions": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/typing-extensions" + "pycodestyle": { + "credit": 0.0081675, + "url": "https://pypi.org/project/pycodestyle" }, - "mypy-extensions": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/mypy-extensions" + "pytest-timeout": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/pytest-timeout" }, - "pathspec": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/pathspec" + "pyroma": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/pyroma" }, - "platformdirs": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/platformdirs" + "markdown2": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/markdown2" }, - "click": { - "credit": 0.005026153846153847, - "url": "https://pypi.org/project/click" + "defusedxml": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/defusedxml" }, - "slack-sdk": { - "credit": 0.008167500000000001, - "url": "https://pypi.org/project/slack-sdk" + "check-manifest": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/check-manifest" }, - "ipywidgets": { - "credit": 0.008167500000000001, - "url": "https://pypi.org/project/ipywidgets" + "sphinxext-opengraph": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "py-make": { - "credit": 0.008167500000000001, - "url": "https://pypi.org/project/py-make" + "sphinx-rtd-theme": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "importlib-resources": { - "credit": 0.008167500000000001, - "url": "https://pypi.org/project/importlib-resources" + "sphinx-removed-in": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "astropy": { - "credit": 0.016335000000000002, - "url": "https://pypi.org/project/astropy" + "sphinx-issues": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/sphinx-issues" }, - "numba": { - "credit": 0.016335000000000002, - "url": "https://pypi.org/project/numba" + "sphinx-copybutton": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "mpmath": { - "credit": 0.032343300000000005, - "url": "https://pypi.org/project/mpmath" + "olefile": { + "credit": 0.00255234375, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/SWIFTSIM/emulator/setup.py b/_repos/github/SWIFTSIM/emulator/setup.py new file mode 100644 index 00000000..1c07beb1 --- /dev/null +++ b/_repos/github/SWIFTSIM/emulator/setup.py @@ -0,0 +1,46 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +with open("swiftemulator/__version__.py", "r") as fh: + exec_output = {} + exec(fh.read(), exec_output) + __version__ = exec_output["__version__"] + +setuptools.setup( + name="swiftemulator", + version=__version__, + description="Gaussian process emulator for creating synthetic model data across high dimensional parameter spaces, initially developed for use with the SWIFT simulation code.", + url="https://github.com/SWIFTSIM/emulator", + author="Josh Borrow", + author_email="josh@joshborrow.com", + packages=setuptools.find_packages(), + long_description=long_description, + long_description_content_type="text/markdown", + zip_safe=False, + classifiers=[ + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", + "Operating System :: OS Independent", + ], + install_requires=[ + "numpy", + "unyt", + "attrs", + "george", + "SALib", + "scikit-learn", + "corner", + "velociraptor", + "pyyaml", + "pyDOE", + "tqdm", + "emcee", + ], + include_package_data=True, +) diff --git a/_repos/github/SandoghdarLab/PiSCAT/README.md b/_repos/github/SandoghdarLab/PiSCAT/README.md index 29f093c8..ea8cef0a 100644 --- a/_repos/github/SandoghdarLab/PiSCAT/README.md +++ b/_repos/github/SandoghdarLab/PiSCAT/README.md @@ -9,7 +9,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |pypi|[numpy](https://www.numpy.org)|0.177| -|pypi|[matplotlib](https://matplotlib.org)|0.047| +|pypi|[matplotlib](https://matplotlib.org)|0.048| |pypi|[joblib](https://joblib.readthedocs.io)|0.043| |pypi|[h5py](http://www.h5py.org)|0.042| |pypi|[numba](https://numba.pydata.org)|0.041| @@ -36,9 +36,9 @@ exclude_from_search: true |pypi|[enum34](https://pypi.org/project/enum34)|0.007| |pypi|[unittest2](https://pypi.org/project/unittest2)|0.007| |pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.007| -|pypi|[ipywidgets](http://ipython.org)|0.007| |pypi|[scipy](https://www.scipy.org)|0.007| |pypi|[pandas](https://pandas.pydata.org)|0.007| +|pypi|[ipywidgets](http://ipython.org)|0.007| |pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.006| |pypi|[PySocks](https://pypi.org/project/PySocks)|0.006| |pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.006| @@ -47,14 +47,14 @@ exclude_from_search: true |pypi|[urllib3](https://pypi.org/project/urllib3)|0.006| |pypi|[requests](https://requests.readthedocs.io)|0.006| |pypi|[ipython](https://pypi.org/project/ipython)|0.005| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.005| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.005| |pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.005| |pypi|[wheel](https://pypi.org/project/wheel)|0.005| |pypi|[twine](https://pypi.org/project/twine)|0.005| |pypi|[py-make](https://pypi.org/project/py-make)|0.005| |pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| |pypi|[colorama](https://pypi.org/project/colorama)|0.005| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.005| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.005| |pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.004| |pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|0.004| |pypi|[nbformat](https://pypi.org/project/nbformat)|0.004| @@ -62,7 +62,8 @@ exclude_from_search: true |pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.004| |pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.004| |pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[codecov](https://pypi.org/project/codecov)|0.003| +|pypi|[pillow](https://pypi.org/project/pillow)|0.003| |pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.003| |pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.003| |pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.003| @@ -76,16 +77,10 @@ exclude_from_search: true |pypi|[pyamg](https://pypi.org/project/pyamg)|0.003| |pypi|[flake8](https://pypi.org/project/flake8)|0.003| |pypi|[seaborn](https://pypi.org/project/seaborn)|0.003| -|pypi|[codecov](https://pypi.org/project/codecov)|0.003| -|pypi|[pillow](https://pypi.org/project/pillow)|0.003| |pypi|[scikit-image](https://scikit-image.org)|0.002| |pypi|[dask](https://pypi.org/project/dask)|0.002| |pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.002| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.002| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.002| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.002| +|pypi|[sympy](https://pypi.org/project/sympy)|0.002| |pypi|[pydot](https://pypi.org/project/pydot)|0.002| |pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.002| |pypi|[lxml](https://pypi.org/project/lxml)|0.002| @@ -93,7 +88,12 @@ exclude_from_search: true |pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.002| |pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.002| |pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.002| +|pypi|[black](https://pypi.org/project/black)|0.002| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| +|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.002| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.002| +|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.002| +|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.002| |pypi|[networkx](https://networkx.org/)|0.002| |pypi|[astropy](http://astropy.org)|0.002| |pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.002| diff --git a/_repos/github/SandoghdarLab/PiSCAT/badge.png b/_repos/github/SandoghdarLab/PiSCAT/badge.png index 01ec6978..ac379b4b 100644 Binary files a/_repos/github/SandoghdarLab/PiSCAT/badge.png and b/_repos/github/SandoghdarLab/PiSCAT/badge.png differ diff --git a/_repos/github/SandoghdarLab/PiSCAT/data.json b/_repos/github/SandoghdarLab/PiSCAT/data.json index 8af9fdc5..eb92d7d0 100644 --- a/_repos/github/SandoghdarLab/PiSCAT/data.json +++ b/_repos/github/SandoghdarLab/PiSCAT/data.json @@ -7,15 +7,15 @@ }, "pypi": { "numpy": { - "credit": 0.17679160714285716, + "credit": 0.1768888392857143, "url": "https://www.numpy.org" }, "scipy": { - "credit": 0.006635357142857146, + "credit": 0.006732589285714288, "url": "https://www.scipy.org" }, "matplotlib": { - "credit": 0.04747285714285716, + "credit": 0.047570089285714295, "url": "https://matplotlib.org" }, "opencv-python": { @@ -23,7 +23,7 @@ "url": "https://github.com/skvark/opencv-python" }, "pandas": { - "credit": 0.006635357142857146, + "credit": 0.006732589285714288, "url": "https://pandas.pydata.org" }, "PyQt6": { @@ -107,7 +107,7 @@ "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest": { - "credit": 0.021377234546703296, + "credit": 0.021474466689560438, "url": "https://docs.pytest.org/en/latest/" }, "hypothesis": { @@ -151,11 +151,11 @@ "url": "https://pypi.org/project/pyamg" }, "mypy": { - "credit": 0.003889285714285714, + "credit": 0.003986517857142857, "url": "https://pypi.org/project/mypy" }, "black": { - "credit": 0.003889285714285714, + "credit": 0.001944642857142857, "url": "https://pypi.org/project/black" }, "flake8": { @@ -163,7 +163,7 @@ "url": "https://pypi.org/project/flake8" }, "pytest-cov": { - "credit": 0.012281167582417582, + "credit": 0.012378399725274726, "url": "https://pypi.org/project/pytest-cov" }, "sphinxext-opengraph": { @@ -179,15 +179,15 @@ "url": "https://pypi.org/project/Pillow" }, "numpydoc": { - "credit": 0.005056071428571429, + "credit": 0.005153303571428571, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.005056071428571429, + "credit": 0.005153303571428571, "url": "https://pypi.org/project/sphinx-gallery" }, "sphinx": { - "credit": 0.009364203296703297, + "credit": 0.009461435439560439, "url": "https://pypi.org/project/sphinx" }, "seaborn": { @@ -211,7 +211,7 @@ "url": "https://pypi.org/project/pytest-localserver" }, "codecov": { - "credit": 0.0031114285714285714, + "credit": 0.0032086607142857142, "url": "https://pypi.org/project/codecov" }, "asv": { @@ -275,7 +275,7 @@ "url": "https://pypi.org/project/imageio" }, "pillow": { - "credit": 0.0031114285714285714, + "credit": 0.0032086607142857142, "url": "https://pypi.org/project/pillow" }, "slack-sdk": { @@ -354,38 +354,38 @@ "credit": 0.00408375, "url": "https://pypi.org/project/ipykernel" }, + "sympy": { + "credit": 0.002041875, + "url": "https://pypi.org/project/sympy" + }, "pydot": { - "credit": 0.001944642857142857, + "credit": 0.002041875, "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.001944642857142857, + "credit": 0.002041875, "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.001944642857142857, + "credit": 0.002041875, "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.001944642857142857, + "credit": 0.002041875, "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.001944642857142857, + "credit": 0.002041875, "url": "https://pypi.org/project/nb2plots" }, "pydata-sphinx-theme": { - "credit": 0.001944642857142857, + "credit": 0.002041875, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "pre-commit": { - "credit": 0.001944642857142857, + "credit": 0.002041875, "url": "https://pypi.org/project/pre-commit" }, - "pyupgrade": { - "credit": 0.001944642857142857, - "url": "https://pypi.org/project/pyupgrade" - }, "win-inet-pton": { "credit": 0.0058339285714285715, "url": "https://pypi.org/project/win-inet-pton" diff --git a/_repos/github/Singh-Lab/DeMaSk/README.md b/_repos/github/Singh-Lab/DeMaSk/README.md index e6f67fb3..5e495628 100644 --- a/_repos/github/Singh-Lab/DeMaSk/README.md +++ b/_repos/github/Singh-Lab/DeMaSk/README.md @@ -8,27 +8,66 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.495| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.173| -|pypi|[PyYAML](https://pyyaml.org/)|0.163| -|pypi|[xmlschema](https://github.com/sissaschool/xmlschema)|0.01| -|pypi|[requests](https://pypi.org/project/requests)|0.01| +|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.206| +|pypi|[PyYAML](https://pyyaml.org/)|0.196| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.098| +|pypi|[numpy](https://www.numpy.org)|0.098| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.049| +|pypi|[colorama](https://pypi.org/project/colorama)|0.014| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.014| +|pypi|[packaging](https://pypi.org/project/packaging)|0.014| +|pypi|[requests](https://pypi.org/project/requests)|0.014| +|pypi|[attrs](https://pypi.org/project/attrs)|0.013| +|pypi|[coverage](https://pypi.org/project/coverage)|0.011| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.01| |pypi|[pygments](https://pypi.org/project/pygments)|0.01| |pypi|[nose](https://pypi.org/project/nose)|0.01| |pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.01| |pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.01| -|pypi|[colorama](https://pypi.org/project/colorama)|0.01| |pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.01| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| |pypi|[tomli](https://pypi.org/project/tomli)|0.01| |pypi|[py](https://pypi.org/project/py)|0.01| |pypi|[pluggy](https://pypi.org/project/pluggy)|0.01| -|pypi|[packaging](https://pypi.org/project/packaging)|0.01| |pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.01| -|pypi|[attrs](https://pypi.org/project/attrs)|0.01| |setup.py|github/Singh-Lab/DeMaSk|0.01| -|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|0.005| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.002| +|pypi|[typed-ast](https://github.com/python/typed_ast)|0.01| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.01| +|pypi|[nptyping](https://pypi.org/project/nptyping)|0.01| +|pypi|[diff-cover](https://pypi.org/project/diff-cover)|0.01| +|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.01| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.01| +|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|0.006| +|pypi|[demask](https://github.com/Singh-Lab/DeMaSk)|0.005| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.004| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.004| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.004| +|pypi|[mypy](https://pypi.org/project/mypy)|0.004| +|pypi|[isort](https://pypi.org/project/isort)|0.004| +|pypi|[flake8](https://pypi.org/project/flake8)|0.004| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.004| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.004| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.004| +|pypi|[babel](https://pypi.org/project/babel)|0.004| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.004| +|pypi|[docutils](https://pypi.org/project/docutils)|0.004| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.004| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.004| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.004| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.004| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.004| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.004| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.004| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.004| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.003| +|pypi|[certifi](https://pypi.org/project/certifi)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| +|pypi|[sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints)|0.001| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Singh-Lab/DeMaSk/badge.png b/_repos/github/Singh-Lab/DeMaSk/badge.png index 5dc7e582..dbc888de 100644 Binary files a/_repos/github/Singh-Lab/DeMaSk/badge.png and b/_repos/github/Singh-Lab/DeMaSk/badge.png differ diff --git a/_repos/github/Singh-Lab/DeMaSk/data.json b/_repos/github/Singh-Lab/DeMaSk/data.json index 146a9c73..db9fb736 100644 --- a/_repos/github/Singh-Lab/DeMaSk/data.json +++ b/_repos/github/Singh-Lab/DeMaSk/data.json @@ -6,34 +6,178 @@ } }, "pypi": { - "configargparse": { + "demask": { "credit": 0.00495000000000001, + "url": "https://github.com/Singh-Lab/DeMaSk" + }, + "configargparse": { + "credit": 0.005930100000000008, "url": "https://github.com/bw2/ConfigArgParse" }, + "sphinx-autodoc-typehints": { + "credit": 0.0009800999999999976, + "url": "https://github.com/tox-dev/sphinx-autodoc-typehints" + }, + "sphinx-rtd-theme": { + "credit": 0.09801, + "url": "https://github.com/readthedocs/sphinx_rtd_theme" + }, + "sphinx": { + "credit": 0.0009800999999999976, + "url": "https://www.sphinx-doc.org/" + }, "numpy": { - "credit": 0.495, + "credit": 0.09801, "url": "https://www.numpy.org" }, "pytest": { - "credit": 0.00163350000000001, + "credit": 0.048761731012500004, "url": "https://docs.pytest.org/en/latest/" }, "PyYAML": { - "credit": 0.16335, + "credit": 0.1956933, "url": "https://pyyaml.org/" }, "mock": { - "credit": 0.17345728124999998, + "credit": 0.20580058124999998, "url": "http://mock.readthedocs.org/en/latest/" }, - "xmlschema": { - "credit": 0.010107281249999999, - "url": "https://github.com/sissaschool/xmlschema" + "typed-ast": { + "credit": 0.00970299, + "url": "https://github.com/python/typed_ast" + }, + "typing-extensions": { + "credit": 0.00970299, + "url": "https://typing.readthedocs.io/" + }, + "sphobjinv": { + "credit": 9.702990000000009e-05, + "url": "https://github.com/bskinn/sphobjinv" + }, + "pytest-cov": { + "credit": 9.702990000000009e-05, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "nptyping": { + "credit": 0.00970299, + "url": "https://pypi.org/project/nptyping" + }, + "diff-cover": { + "credit": 0.00970299, + "url": "https://pypi.org/project/diff-cover" + }, + "coverage": { + "credit": 0.0109037350125, + "url": "https://pypi.org/project/coverage" + }, + "covdefaults": { + "credit": 0.00970299, + "url": "https://pypi.org/project/covdefaults" + }, + "Sphinx": { + "credit": 0.00970299, + "url": "https://pypi.org/project/Sphinx" + }, + "types-requests": { + "credit": 0.003881196, + "url": "https://pypi.org/project/types-requests" + }, + "types-typed-ast": { + "credit": 0.003881196, + "url": "https://pypi.org/project/types-typed-ast" + }, + "docutils-stubs": { + "credit": 0.003881196, + "url": "https://pypi.org/project/docutils-stubs" + }, + "mypy": { + "credit": 0.003881196, + "url": "https://pypi.org/project/mypy" + }, + "isort": { + "credit": 0.003881196, + "url": "https://pypi.org/project/isort" + }, + "flake8": { + "credit": 0.003881196, + "url": "https://pypi.org/project/flake8" + }, + "sphinxcontrib-websupport": { + "credit": 0.003881196, + "url": "https://pypi.org/project/sphinxcontrib-websupport" + }, + "colorama": { + "credit": 0.013988477249999999, + "url": "https://pypi.org/project/colorama" + }, + "importlib-metadata": { + "credit": 0.013988477249999999, + "url": "https://pypi.org/project/importlib-metadata" + }, + "packaging": { + "credit": 0.013988477249999999, + "url": "https://pypi.org/project/packaging" }, "requests": { - "credit": 0.010107281249999999, + "credit": 0.013988477249999999, "url": "https://pypi.org/project/requests" }, + "imagesize": { + "credit": 0.003881196, + "url": "https://pypi.org/project/imagesize" + }, + "alabaster": { + "credit": 0.003881196, + "url": "https://pypi.org/project/alabaster" + }, + "babel": { + "credit": 0.003881196, + "url": "https://pypi.org/project/babel" + }, + "snowballstemmer": { + "credit": 0.003881196, + "url": "https://pypi.org/project/snowballstemmer" + }, + "docutils": { + "credit": 0.003881196, + "url": "https://pypi.org/project/docutils" + }, + "Pygments": { + "credit": 0.003881196, + "url": "https://pypi.org/project/Pygments" + }, + "Jinja2": { + "credit": 0.003881196, + "url": "https://pypi.org/project/Jinja2" + }, + "sphinxcontrib-qthelp": { + "credit": 0.003881196, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" + }, + "sphinxcontrib-serializinghtml": { + "credit": 0.003881196, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + }, + "sphinxcontrib-htmlhelp": { + "credit": 0.003881196, + "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + }, + "sphinxcontrib-jsmath": { + "credit": 0.003881196, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" + }, + "sphinxcontrib-devhelp": { + "credit": 0.003881196, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" + }, + "sphinxcontrib-applehelp": { + "credit": 0.003881196, + "url": "https://pypi.org/project/sphinxcontrib-applehelp" + }, + "xmlschema": { + "credit": 0.010107281249999999, + "url": "https://pypi.org/project/xmlschema" + }, "pygments": { "credit": 0.010107281249999999, "url": "https://pypi.org/project/pygments" @@ -50,18 +194,10 @@ "credit": 0.010107281249999999, "url": "https://pypi.org/project/argcomplete" }, - "colorama": { - "credit": 0.010107281249999999, - "url": "https://pypi.org/project/colorama" - }, "atomicwrites": { "credit": 0.010107281249999999, "url": "https://pypi.org/project/atomicwrites" }, - "importlib-metadata": { - "credit": 0.010107281249999999, - "url": "https://pypi.org/project/importlib-metadata" - }, "tomli": { "credit": 0.010107281249999999, "url": "https://pypi.org/project/tomli" @@ -74,17 +210,45 @@ "credit": 0.010107281249999999, "url": "https://pypi.org/project/pluggy" }, - "packaging": { - "credit": 0.010107281249999999, - "url": "https://pypi.org/project/packaging" - }, "iniconfig": { "credit": 0.010107281249999999, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.010107281249999999, + "credit": 0.013309267949999998, "url": "https://pypi.org/project/attrs" + }, + "jsonschema": { + "credit": 0.0032019867, + "url": "https://pypi.org/project/jsonschema" + }, + "certifi": { + "credit": 0.0032019867, + "url": "https://pypi.org/project/certifi" + }, + "virtualenv": { + "credit": 0.0012007450125, + "url": "https://pypi.org/project/virtualenv" + }, + "pytest-xdist": { + "credit": 0.0012007450125, + "url": "https://pypi.org/project/pytest-xdist" + }, + "six": { + "credit": 0.0012007450125, + "url": "https://pypi.org/project/six" + }, + "process-tests": { + "credit": 0.0012007450125, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0012007450125, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0012007450125, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/Single-Cell-Graph-Learning/scSGL/badge.png b/_repos/github/Single-Cell-Graph-Learning/scSGL/badge.png index 07cecec0..f96721ca 100644 Binary files a/_repos/github/Single-Cell-Graph-Learning/scSGL/badge.png and b/_repos/github/Single-Cell-Graph-Learning/scSGL/badge.png differ diff --git a/_repos/github/SirSharpest/NarrowEscapeSimulator/README.md b/_repos/github/SirSharpest/NarrowEscapeSimulator/README.md index 96a608a0..d30ab7e9 100644 --- a/_repos/github/SirSharpest/NarrowEscapeSimulator/README.md +++ b/_repos/github/SirSharpest/NarrowEscapeSimulator/README.md @@ -8,89 +8,52 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.394| -|pypi|[matplotlib](https://matplotlib.org)|0.198| -|pypi|[six](https://github.com/benjaminp/six)|0.098| -|pypi|[tornado](http://www.tornadoweb.org/)|0.032| -|pypi|[reno](https://docs.openstack.org/reno/latest/)|0.032| -|pypi|[colorama](https://github.com/tartley/colorama)|0.026| -|pypi|[docopt](https://pypi.org/project/docopt)|0.024| -|pypi|[pytest](https://pypi.org/project/pytest)|0.019| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.018| +|pypi|[matplotlib](https://matplotlib.org)|0.178| +|pypi|[PyEscape](https://github.com/qaviton/escape)|0.165| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.165| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.163| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[coverage](https://pypi.org/project/coverage)|0.018| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.013| +|pypi|[brotli](https://github.com/google/brotli)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| +|pypi|[numpy](https://pypi.org/project/numpy)|0.012| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.01| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.01| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.01| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.01| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.01| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.01| +|pypi|[olefile](https://pypi.org/project/olefile)|0.01| |setup.py|github/SirSharpest/NarrowEscapeSimulator|0.01| -|pypi|[urllib3](https://urllib3.readthedocs.io/)|0.006| -|pypi|[requests](https://requests.readthedocs.io)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.003| -|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.003| -|pypi|[idna](https://github.com/kjd/idna)|0.003| -|pypi|[chardet](https://github.com/chardet/chardet)|0.003| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.003| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.003| -|pypi|[rich](https://pypi.org/project/rich)|0.003| -|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.003| -|pypi|[keyring](https://pypi.org/project/keyring)|0.003| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.003| -|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.003| -|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.003| -|pypi|[flake8](https://pypi.org/project/flake8)|0.003| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.003| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.002| -|pypi|[ipython](https://pypi.org/project/ipython)|0.002| -|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|0.002| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.002| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.002| -|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.002| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.002| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.002| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.002| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| -|pypi|[zipp](https://pypi.org/project/zipp)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[plotly](https://plotly.com/python/)|0.002| -|pypi|[tqdm](https://tqdm.github.io)|0.002| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.001| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.001| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.001| -|pypi|[mypy](https://pypi.org/project/mypy)|0.001| -|pypi|[isort](https://pypi.org/project/isort)|0.001| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.001| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.001| -|pypi|[babel](https://pypi.org/project/babel)|0.001| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.001| -|pypi|[docutils](https://pypi.org/project/docutils)|0.001| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.001| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.001| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.001| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.001| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.001| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.001| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.001| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.001| -|pypi|[moto](https://pypi.org/project/moto)|0.001| -|pypi|[databases](https://pypi.org/project/databases)|0.001| -|pypi|[psutil](https://pypi.org/project/psutil)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[codecov](https://pypi.org/project/codecov)|0.001| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.001| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.001| -|pypi|[Flask](https://pypi.org/project/Flask)|0.001| -|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|0.001| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.001| -|pypi|[websocket-client](https://pypi.org/project/websocket-client)|0.001| -|pypi|[websockets](https://pypi.org/project/websockets)|0.001| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.001| -|pypi|[boto3](https://pypi.org/project/boto3)|0.001| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.001| -|pypi|[aiodns](https://pypi.org/project/aiodns)|0.001| -|pypi|[tenacity](https://github.com/jd/tenacity)|0.001| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.006| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.002| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scandir](https://pypi.org/project/scandir)|0.002| +|pypi|[typing](https://pypi.org/project/typing)|0.002| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/SirSharpest/NarrowEscapeSimulator/badge.png b/_repos/github/SirSharpest/NarrowEscapeSimulator/badge.png index 9e797b35..277c7fa7 100644 Binary files a/_repos/github/SirSharpest/NarrowEscapeSimulator/badge.png and b/_repos/github/SirSharpest/NarrowEscapeSimulator/badge.png differ diff --git a/_repos/github/SirSharpest/NarrowEscapeSimulator/data.json b/_repos/github/SirSharpest/NarrowEscapeSimulator/data.json index caab7e84..7520270b 100644 --- a/_repos/github/SirSharpest/NarrowEscapeSimulator/data.json +++ b/_repos/github/SirSharpest/NarrowEscapeSimulator/data.json @@ -6,361 +6,225 @@ } }, "pypi": { - "numpy": { - "credit": 0.39402000000000004, - "url": "https://www.numpy.org" + "PyEscape": { + "credit": 0.165, + "url": "https://github.com/qaviton/escape" }, "matplotlib": { - "credit": 0.198, + "credit": 0.17756538461538462, "url": "https://matplotlib.org" }, - "scipy": { - "credit": 0.0019800000000000095, - "url": "https://www.scipy.org" - }, - "plotly": { - "credit": 0.0019800000000000095, - "url": "https://plotly.com/python/" - }, - "tqdm": { - "credit": 0.0019800000000000095, - "url": "https://tqdm.github.io" - }, - "six": { - "credit": 0.09801, - "url": "https://github.com/benjaminp/six" - }, - "tenacity": { - "credit": 0.0009800999999999976, - "url": "https://github.com/jd/tenacity" + "cycler": { + "credit": 0.165, + "url": "https://github.com/matplotlib/cycler" }, - "requests": { - "credit": 0.004221094679999999, - "url": "https://requests.readthedocs.io" + "fonttools": { + "credit": 0.0016500000000000126, + "url": "http://github.com/fonttools/fonttools" }, - "slack-sdk": { - "credit": 0.0002450249999999994, - "url": "https://github.com/slackapi/python-slack-sdk" + "kiwisolver": { + "credit": 0.0016500000000000126, + "url": "https://github.com/nucleic/kiwi" }, - "ipywidgets": { - "credit": 0.0002450249999999994, - "url": "http://ipython.org" + "pillow": { + "credit": 0.0016500000000000126, + "url": "https://python-pillow.org" }, - "wheel": { - "credit": 0.0002450249999999994, - "url": "https://github.com/pypa/wheel" - }, - "twine": { - "credit": 0.0002450249999999994, - "url": "https://twine.readthedocs.io/" - }, - "py-make": { - "credit": 0.0002450249999999994, - "url": "https://github.com/tqdm/pymake" - }, - "importlib-resources": { - "credit": 0.0002450249999999994, - "url": "https://github.com/python/importlib_resources" - }, - "colorama": { - "credit": 0.02578329468, - "url": "https://github.com/tartley/colorama" - }, - "tornado": { - "credit": 0.0323433, - "url": "http://www.tornadoweb.org/" - }, - "sphinx": { - "credit": 0.002528657999999998, - "url": "https://www.sphinx-doc.org/" + "xattr": { + "credit": 0.00012565384615384652, + "url": "http://github.com/xattr/xattr" }, - "reno": { - "credit": 0.0323433, - "url": "https://docs.openstack.org/reno/latest/" + "unicodedata2": { + "credit": 0.00012565384615384652, + "url": "http://github.com/mikekap/unicodedata2" }, - "win-inet-pton": { - "credit": 0.0034653535714285716, - "url": "https://github.com/hickeroar/win_inet_pton" + "munkres": { + "credit": 0.012565384615384615, + "url": "https://software.clapper.org/munkres/" }, - "PySocks": { - "credit": 0.0034653535714285716, - "url": "https://github.com/Anorov/PySocks" + "brotli": { + "credit": 0.012565384615384615, + "url": "https://github.com/google/brotli" }, - "charset-normalizer": { - "credit": 3.465353571428581e-05, - "url": "https://github.com/ousret/charset_normalizer" + "scipy": { + "credit": 0.00012565384615384652, + "url": "https://www.scipy.org" }, - "idna": { - "credit": 0.0034653535714285716, - "url": "https://github.com/kjd/idna" + "brotlicffi": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-hyper/brotlicffi" }, - "chardet": { - "credit": 0.0034653535714285716, - "url": "https://github.com/chardet/chardet" + "skia-pathops": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/skia-pathops" }, - "certifi": { - "credit": 0.0034653535714285716, - "url": "https://certifiio.readthedocs.io/en/latest/" + "sympy": { + "credit": 0.00012565384615384652, + "url": "https://sympy.org" }, - "urllib3": { - "credit": 0.006160628571428572, - "url": "https://urllib3.readthedocs.io/" + "lz4": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-lz4/python-lz4" }, - "moto": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/moto" + "zopfli": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/py-zopfli" }, - "databases": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/databases" + "lxml": { + "credit": 0.012565384615384615, + "url": "https://lxml.de/" }, - "psutil": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/psutil" - }, - "black": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/black" + "fs": { + "credit": 0.00012565384615384652, + "url": "https://github.com/PyFilesystem/pyfilesystem2" }, - "flake8": { - "credit": 0.002557503890526316, - "url": "https://pypi.org/project/flake8" + "typing-extensions": { + "credit": 0.16335, + "url": "https://typing.readthedocs.io/" }, - "codecov": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/codecov" + "pytest-timeout": { + "credit": 0.00010209375000000062, + "url": "https://github.com/pytest-dev/pytest-timeout" }, "pytest-cov": { - "credit": 0.018036419210526317, - "url": "https://pypi.org/project/pytest-cov" - }, - "itsdangerous": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/itsdangerous" - }, - "Werkzeug": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/Werkzeug" - }, - "Flask": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/Flask" - }, - "Flask-Sockets": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/Flask-Sockets" - }, - "pytest-asyncio": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/pytest-asyncio" + "credit": 0.002175382211538462, + "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.019317213890526316, - "url": "https://pypi.org/project/pytest" - }, - "websocket-client": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/websocket-client" + "credit": 0.04231295102163461, + "url": "https://docs.pytest.org/en/latest/" }, - "websockets": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/websockets" + "pyroma": { + "credit": 0.010209375, + "url": "https://pypi.org/project/pyroma" }, - "SQLAlchemy": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/SQLAlchemy" - }, - "boto3": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/boto3" - }, - "aiohttp": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/aiohttp" - }, - "aiodns": { - "credit": 0.0012767092105263158, - "url": "https://pypi.org/project/aiodns" - }, - "mock": { - "credit": 0.0024257475, - "url": "https://pypi.org/project/mock" - }, - "jupyterlab-widgets": { - "credit": 0.0024257475, - "url": "https://pypi.org/project/jupyterlab-widgets" - }, - "ipython": { - "credit": 0.0024257475, - "url": "https://pypi.org/project/ipython" - }, - "widgetsnbextension": { - "credit": 0.0024257475, - "url": "https://pypi.org/project/widgetsnbextension" - }, - "nbformat": { - "credit": 0.0024257475, - "url": "https://pypi.org/project/nbformat" - }, - "traitlets": { - "credit": 0.0024257475, - "url": "https://pypi.org/project/traitlets" - }, - "ipython-genutils": { - "credit": 0.0024257475, - "url": "https://pypi.org/project/ipython-genutils" - }, - "ipykernel": { - "credit": 0.0024257475, - "url": "https://pypi.org/project/ipykernel" - }, - "rich": { - "credit": 0.002695275, - "url": "https://pypi.org/project/rich" - }, - "rfc3986": { - "credit": 0.002695275, - "url": "https://pypi.org/project/rfc3986" - }, - "keyring": { - "credit": 0.002695275, - "url": "https://pypi.org/project/keyring" - }, - "importlib-metadata": { - "credit": 0.0039760696799999995, - "url": "https://pypi.org/project/importlib-metadata" - }, - "requests-toolbelt": { - "credit": 0.002695275, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "readme-renderer": { - "credit": 0.002695275, - "url": "https://pypi.org/project/readme-renderer" + "packaging": { + "credit": 0.010209375, + "url": "https://pypi.org/project/packaging" }, - "pkginfo": { - "credit": 0.002695275, - "url": "https://pypi.org/project/pkginfo" + "markdown2": { + "credit": 0.010209375, + "url": "https://pypi.org/project/markdown2" }, - "docopt": { - "credit": 0.024257475, - "url": "https://pypi.org/project/docopt" + "defusedxml": { + "credit": 0.010209375, + "url": "https://pypi.org/project/defusedxml" }, - "pytest-mypy": { - "credit": 0.002205225, - "url": "https://pypi.org/project/pytest-mypy" + "coverage": { + "credit": 0.017692650540865384, + "url": "https://pypi.org/project/coverage" }, - "pytest-black": { - "credit": 0.002205225, - "url": "https://pypi.org/project/pytest-black" + "check-manifest": { + "credit": 0.010209375, + "url": "https://pypi.org/project/check-manifest" }, - "pytest-enabler": { - "credit": 0.002205225, - "url": "https://pypi.org/project/pytest-enabler" + "sphinxext-opengraph": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "pytest-flake8": { - "credit": 0.002205225, - "url": "https://pypi.org/project/pytest-flake8" + "sphinx-rtd-theme": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "pytest-checkdocs": { - "credit": 0.002205225, - "url": "https://pypi.org/project/pytest-checkdocs" + "sphinx-removed-in": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "rst.linker": { - "credit": 0.002205225, - "url": "https://pypi.org/project/rst.linker" + "sphinx-issues": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-issues" }, - "jaraco.packaging": { - "credit": 0.002205225, - "url": "https://pypi.org/project/jaraco.packaging" + "sphinx-copybutton": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "zipp": { - "credit": 0.002205225, - "url": "https://pypi.org/project/zipp" + "sphinx": { + "credit": 0.012282663461538461, + "url": "https://pypi.org/project/sphinx" }, - "types-requests": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/types-requests" + "olefile": { + "credit": 0.010209375, + "url": "https://pypi.org/project/olefile" }, - "types-typed-ast": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/types-typed-ast" + "cffi": { + "credit": 0.01865959615384615, + "url": "https://pypi.org/project/cffi" }, - "docutils-stubs": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/docutils-stubs" + "pytest-randomly": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/pytest-randomly" }, - "mypy": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/mypy" + "pytest-xdist": { + "credit": 0.007483275540865385, + "url": "https://pypi.org/project/pytest-xdist" }, - "isort": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/isort" + "numpy": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/numpy" }, - "sphinxcontrib-websupport": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/sphinxcontrib-websupport" + "enum34": { + "credit": 0.007774831730769231, + "url": "https://pypi.org/project/enum34" }, - "packaging": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/packaging" + "mpmath": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/mpmath" }, - "imagesize": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/imagesize" + "psutil": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/psutil" }, - "alabaster": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/alabaster" + "flake8": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/flake8" }, - "babel": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/babel" + "sphinx-bootstrap-theme": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" }, - "snowballstemmer": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/snowballstemmer" + "scandir": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/scandir" }, - "docutils": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/docutils" + "typing": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/typing" }, - "Pygments": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/Pygments" + "backports.os": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/backports.os" }, - "Jinja2": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/Jinja2" + "six": { + "credit": 0.002818376502403846, + "url": "https://pypi.org/project/six" }, - "sphinxcontrib-qthelp": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" + "setuptools": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/setuptools" }, - "sphinxcontrib-serializinghtml": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + "pytz": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pytz" }, - "sphinxcontrib-htmlhelp": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + "appdirs": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/appdirs" }, - "sphinxcontrib-jsmath": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" + "virtualenv": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/virtualenv" }, - "sphinxcontrib-devhelp": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" + "process-tests": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/process-tests" }, - "sphinxcontrib-applehelp": { - "credit": 0.00128079468, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" + "hunter": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/hunter" }, - "unicodedata2": { - "credit": 0.0034307000357142858, - "url": "https://pypi.org/project/unicodedata2" + "fields": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/Social-Evolution-and-Behavior/anTraX/README.md b/_repos/github/Social-Evolution-and-Behavior/anTraX/README.md index 170cae8e..5a03e1bc 100644 --- a/_repos/github/Social-Evolution-and-Behavior/anTraX/README.md +++ b/_repos/github/Social-Evolution-and-Behavior/anTraX/README.md @@ -17,7 +17,7 @@ exclude_from_search: true |pypi|[sphinx](https://pypi.org/project/sphinx)|0.045| |pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.036| |pypi|[gitdb](https://pypi.org/project/gitdb)|0.033| -|pypi|[pytest](https://pypi.org/project/pytest)|0.032| +|pypi|[pytest](https://pypi.org/project/pytest)|0.031| |pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.021| |pypi|[coverage](https://pypi.org/project/coverage)|0.02| |pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.019| @@ -47,18 +47,19 @@ exclude_from_search: true |pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| |pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| |pypi|[olefile](https://pypi.org/project/olefile)|0.004| -|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.004| -|pypi|[itk](https://pypi.org/project/itk)|0.004| -|pypi|[gdal](https://pypi.org/project/gdal)|0.004| -|pypi|[astropy](https://pypi.org/project/astropy)|0.004| -|pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.004| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.004| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| -|pypi|[flake8](https://pypi.org/project/flake8)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| -|pypi|[fsspec](https://pypi.org/project/fsspec)|0.004| -|pypi|[invoke](https://pypi.org/project/invoke)|0.004| +|pypi|[itk](https://itk.org/)|0.003| +|pypi|[gdal](https://pypi.org/project/gdal)|0.003| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.003| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[black](https://pypi.org/project/black)|0.003| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.003| +|pypi|[invoke](https://pypi.org/project/invoke)|0.003| +|pypi|[tifffile](https://pypi.org/project/tifffile)|0.003| +|pypi|[psutil](https://pypi.org/project/psutil)|0.003| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.003| +|pypi|[av](https://pypi.org/project/av)|0.003| +|pypi|[astropy](https://pypi.org/project/astropy)|0.003| |pypi|[grpcio](https://pypi.org/project/grpcio)|0.003| |pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.003| |pypi|[keras](https://pypi.org/project/keras)|0.003| diff --git a/_repos/github/Social-Evolution-and-Behavior/anTraX/badge.png b/_repos/github/Social-Evolution-and-Behavior/anTraX/badge.png index c2b4df3b..8ac76cc4 100644 Binary files a/_repos/github/Social-Evolution-and-Behavior/anTraX/badge.png and b/_repos/github/Social-Evolution-and-Behavior/anTraX/badge.png differ diff --git a/_repos/github/Social-Evolution-and-Behavior/anTraX/data.json b/_repos/github/Social-Evolution-and-Behavior/anTraX/data.json index 4606450f..2ce8c8ab 100644 --- a/_repos/github/Social-Evolution-and-Behavior/anTraX/data.json +++ b/_repos/github/Social-Evolution-and-Behavior/anTraX/data.json @@ -7,7 +7,7 @@ }, "pypi": { "numpy": { - "credit": 0.14897142857142856, + "credit": 0.14878037593984964, "url": "https://www.numpy.org" }, "imageio": { @@ -47,7 +47,7 @@ "url": "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree" }, "pillow": { - "credit": 0.004289999999999994, + "credit": 0.0040989473684210475, "url": "https://python-pillow.org" }, "matplotlib": { @@ -66,70 +66,74 @@ "credit": 0.008827499999999995, "url": "https://sigtools.readthedocs.io/" }, - "tifffile": { - "credit": 0.0036300000000000004, - "url": "https://www.lfd.uci.edu/~gohlke/" - }, "itk": { - "credit": 0.0036300000000000004, - "url": "https://pypi.org/project/itk" + "credit": 0.003438947368421053, + "url": "https://itk.org/" }, "gdal": { - "credit": 0.0036300000000000004, + "credit": 0.003438947368421053, "url": "https://pypi.org/project/gdal" }, - "astropy": { - "credit": 0.0036300000000000004, - "url": "https://pypi.org/project/astropy" - }, - "psutil": { - "credit": 0.0036300000000000004, - "url": "https://pypi.org/project/psutil" - }, - "imageio-ffmpeg": { - "credit": 0.0036300000000000004, - "url": "https://pypi.org/project/imageio-ffmpeg" - }, "pydata-sphinx-theme": { - "credit": 0.0036300000000000004, + "credit": 0.003438947368421053, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "numpydoc": { - "credit": 0.0036300000000000004, + "credit": 0.003438947368421053, "url": "https://pypi.org/project/numpydoc" }, "sphinx": { - "credit": 0.045284250000000005, + "credit": 0.04509319736842106, "url": "https://pypi.org/project/sphinx" }, "flake8": { - "credit": 0.0036300000000000004, + "credit": 0.003438947368421053, "url": "https://pypi.org/project/flake8" }, "black": { - "credit": 0.0036300000000000004, + "credit": 0.003438947368421053, "url": "https://pypi.org/project/black" }, "fsspec": { - "credit": 0.0036300000000000004, + "credit": 0.003438947368421053, "url": "https://pypi.org/project/fsspec" }, "pytest-cov": { - "credit": 0.02078175, + "credit": 0.020590697368421056, "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.031671750000000005, + "credit": 0.03148069736842106, "url": "https://pypi.org/project/pytest" }, "invoke": { - "credit": 0.0036300000000000004, + "credit": 0.003438947368421053, "url": "https://pypi.org/project/invoke" }, "wheel": { - "credit": 0.016698, + "credit": 0.016506947368421055, "url": "https://pypi.org/project/wheel" }, + "tifffile": { + "credit": 0.003438947368421053, + "url": "https://pypi.org/project/tifffile" + }, + "psutil": { + "credit": 0.003438947368421053, + "url": "https://pypi.org/project/psutil" + }, + "imageio-ffmpeg": { + "credit": 0.003438947368421053, + "url": "https://pypi.org/project/imageio-ffmpeg" + }, + "av": { + "credit": 0.003438947368421053, + "url": "https://pypi.org/project/av" + }, + "astropy": { + "credit": 0.003438947368421053, + "url": "https://pypi.org/project/astropy" + }, "pytest-xdist": { "credit": 0.010890000000000002, "url": "https://pypi.org/project/pytest-xdist" diff --git a/_repos/github/SouthGreenPlatform/PyRice/README.md b/_repos/github/SouthGreenPlatform/PyRice/README.md index 9a9ad542..e09c7b01 100644 --- a/_repos/github/SouthGreenPlatform/PyRice/README.md +++ b/_repos/github/SouthGreenPlatform/PyRice/README.md @@ -8,11 +8,35 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.141| +|pypi|[async-generator](https://github.com/python-trio/async_generator)|0.097| +|pypi|[attrs](https://www.attrs.org/)|0.084| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.077| +|pypi|[sortedcontainers](http://www.grantjenks.com/docs/sortedcontainers/)|0.075| +|pypi|[contextvars](https://pypi.org/project/contextvars)|0.075| +|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.066| +|pypi|[h11](https://github.com/python-hyper/h11)|0.066| +|pypi|[trio-websocket~=0.9](https://pypi.org/project/trio-websocket~=0.9)|0.043| +|pypi|[trio~=0.17](https://pypi.org/project/trio~=0.17)|0.043| +|pypi|[urllib3[secure,](https://pypi.org/project/urllib3[secure,)|0.043| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.033| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.033| +|pypi|[trio](https://github.com/python-trio/trio)|0.022| +|pypi|[wsproto](https://github.com/python-hyper/wsproto/)|0.022| +|pypi|[pytest](https://pypi.org/project/pytest)|0.011| +|pypi|[pretend](https://pypi.org/project/pretend)|0.011| +|pypi|[flaky](https://pypi.org/project/flaky)|0.011| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.011| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|github/SouthGreenPlatform/PyRice|0.01| -|pypi|[selenium](https://www.selenium.dev)|0.01| -|pypi|[trio-websocket~=0.9](https://pypi.org/project/trio-websocket~=0.9)|0.003| -|pypi|[trio~=0.17](https://pypi.org/project/trio~=0.17)|0.003| -|pypi|[urllib3[secure,](https://pypi.org/project/urllib3[secure,)|0.003| +|pypi|[idna](https://github.com/kjd/idna)|0.009| +|pypi|[selenium](https://www.selenium.dev)|0.001| +|pypi|[outcome](https://github.com/python-trio/outcome)|0.001| +|pypi|[sniffio](https://github.com/python-trio/sniffio)|0.001| +|pypi|[cffi](http://cffi.readthedocs.org)|0.001| +|pypi|[pyrice](https://github.com/SouthGreenPlatform/PyRice)|0.001| +|pypi|[trio-websocket](https://github.com/HyperionGray/trio-websocket)|0.001| +|pypi|[pyOpenSSL](https://pyopenssl.org/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/SouthGreenPlatform/PyRice/badge.png b/_repos/github/SouthGreenPlatform/PyRice/badge.png index 9d1066c2..8c695541 100644 Binary files a/_repos/github/SouthGreenPlatform/PyRice/badge.png and b/_repos/github/SouthGreenPlatform/PyRice/badge.png differ diff --git a/_repos/github/SouthGreenPlatform/PyRice/data.json b/_repos/github/SouthGreenPlatform/PyRice/data.json index a97afc94..dee91c82 100644 --- a/_repos/github/SouthGreenPlatform/PyRice/data.json +++ b/_repos/github/SouthGreenPlatform/PyRice/data.json @@ -6,21 +6,117 @@ } }, "pypi": { + "pyrice": { + "credit": 0.0006599999999999939, + "url": "https://github.com/SouthGreenPlatform/PyRice" + }, "selenium": { - "credit": 0.0099, + "credit": 0.0013133999999999924, "url": "https://www.selenium.dev" }, + "trio": { + "credit": 0.022439999999999998, + "url": "https://github.com/python-trio/trio" + }, + "trio-websocket": { + "credit": 0.0006599999999999939, + "url": "https://github.com/HyperionGray/trio-websocket" + }, + "async-generator": { + "credit": 0.09711428571428572, + "url": "https://github.com/python-trio/async_generator" + }, + "cryptography": { + "credit": 0.07689, + "url": "https://github.com/pyca/cryptography" + }, + "pyOpenSSL": { + "credit": 0.0006599999999999939, + "url": "https://pyopenssl.org/" + }, + "PySocks": { + "credit": 0.066, + "url": "https://github.com/Anorov/PySocks" + }, + "wsproto": { + "credit": 0.022439999999999998, + "url": "https://github.com/python-hyper/wsproto/" + }, + "outcome": { + "credit": 0.0007533428571428503, + "url": "https://github.com/python-trio/outcome" + }, + "sniffio": { + "credit": 0.0007533428571428503, + "url": "https://github.com/python-trio/sniffio" + }, + "sortedcontainers": { + "credit": 0.07533428571428571, + "url": "http://www.grantjenks.com/docs/sortedcontainers/" + }, + "cffi": { + "credit": 0.0007533428571428503, + "url": "http://cffi.readthedocs.org" + }, + "h11": { + "credit": 0.066, + "url": "https://github.com/python-hyper/h11" + }, + "pycparser": { + "credit": 0.14058094285714287, + "url": "https://github.com/eliben/pycparser" + }, "trio-websocket~=0.9": { - "credit": 0.003267, + "credit": 0.04334220000000001, "url": "https://pypi.org/project/trio-websocket~=0.9" }, "trio~=0.17": { - "credit": 0.003267, + "credit": 0.04334220000000001, "url": "https://pypi.org/project/trio~=0.17" }, "urllib3[secure,": { - "credit": 0.003267, + "credit": 0.04334220000000001, "url": "https://pypi.org/project/urllib3[secure," + }, + "idna": { + "credit": 0.009334285714285715, + "url": "https://github.com/kjd/idna" + }, + "attrs": { + "credit": 0.08391522857142858, + "url": "https://www.attrs.org/" + }, + "pytest": { + "credit": 0.010890000000000002, + "url": "https://pypi.org/project/pytest" + }, + "pretend": { + "credit": 0.010890000000000002, + "url": "https://pypi.org/project/pretend" + }, + "flaky": { + "credit": 0.010890000000000002, + "url": "https://pypi.org/project/flaky" + }, + "sphinx-rtd-theme": { + "credit": 0.010890000000000002, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx": { + "credit": 0.010890000000000002, + "url": "https://pypi.org/project/sphinx" + }, + "contextvars": { + "credit": 0.07458094285714287, + "url": "https://pypi.org/project/contextvars" + }, + "typing-extensions": { + "credit": 0.032670000000000005, + "url": "https://pypi.org/project/typing-extensions" + }, + "dataclasses": { + "credit": 0.032670000000000005, + "url": "https://pypi.org/project/dataclasses" } } } \ No newline at end of file diff --git a/_repos/github/SuLab/Wikidata-phenomizer/badge.png b/_repos/github/SuLab/Wikidata-phenomizer/badge.png index 865a6241..37814e9c 100644 Binary files a/_repos/github/SuLab/Wikidata-phenomizer/badge.png and b/_repos/github/SuLab/Wikidata-phenomizer/badge.png differ diff --git a/_repos/github/SynthSys/pyOmeroUpload/badge.png b/_repos/github/SynthSys/pyOmeroUpload/badge.png index 4c3226e7..6cd5cbd2 100644 Binary files a/_repos/github/SynthSys/pyOmeroUpload/badge.png and b/_repos/github/SynthSys/pyOmeroUpload/badge.png differ diff --git a/_repos/github/TPI-Immunogenetics/igmat/README.md b/_repos/github/TPI-Immunogenetics/igmat/README.md index b4dd9e52..a95e8b90 100644 --- a/_repos/github/TPI-Immunogenetics/igmat/README.md +++ b/_repos/github/TPI-Immunogenetics/igmat/README.md @@ -8,51 +8,50 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[biopython](https://biopython.org/)|0.33| -|pypi|[pyyaml](https://pyyaml.org/)|0.33| -|pypi|[backports.functools-lru-cache](https://pypi.org/project/backports.functools-lru-cache)|0.065| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.013| -|pypi|[packaging](https://pypi.org/project/packaging)|0.012| +|pypi|[biopython](https://biopython.org/)|0.495| +|pypi|[backports.functools-lru-cache](https://pypi.org/project/backports.functools-lru-cache)|0.097| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.019| +|pypi|[packaging](https://pypi.org/project/packaging)|0.017| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.013| +|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.012| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| +|pypi|[six](https://pypi.org/project/six)|0.012| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.012| +|pypi|[hunter](https://pypi.org/project/hunter)|0.012| +|pypi|[fields](https://pypi.org/project/fields)|0.012| +|pypi|[coverage](https://pypi.org/project/coverage)|0.012| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.012| +|pypi|[requests](https://pypi.org/project/requests)|0.012| +|pypi|[pygments](https://pypi.org/project/pygments)|0.012| +|pypi|[nose](https://pypi.org/project/nose)|0.012| +|pypi|[mock](https://pypi.org/project/mock)|0.012| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.012| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.012| +|pypi|[colorama](https://pypi.org/project/colorama)|0.012| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.012| +|pypi|[tomli](https://pypi.org/project/tomli)|0.012| +|pypi|[py](https://pypi.org/project/py)|0.012| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.012| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.012| +|pypi|[attrs](https://pypi.org/project/attrs)|0.012| |setup.py|github/TPI-Immunogenetics/igmat|0.01| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.009| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.008| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| -|pypi|[six](https://pypi.org/project/six)|0.008| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.008| -|pypi|[hunter](https://pypi.org/project/hunter)|0.008| -|pypi|[fields](https://pypi.org/project/fields)|0.008| -|pypi|[coverage](https://pypi.org/project/coverage)|0.008| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.008| -|pypi|[requests](https://pypi.org/project/requests)|0.008| -|pypi|[pygments](https://pypi.org/project/pygments)|0.008| -|pypi|[nose](https://pypi.org/project/nose)|0.008| -|pypi|[mock](https://pypi.org/project/mock)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.008| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.008| -|pypi|[colorama](https://pypi.org/project/colorama)|0.008| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.008| -|pypi|[tomli](https://pypi.org/project/tomli)|0.008| -|pypi|[py](https://pypi.org/project/py)|0.008| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.008| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.008| -|pypi|[attrs](https://pypi.org/project/attrs)|0.008| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.004| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.004| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.004| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.004| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.004| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.004| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| -|pypi|[ipython](https://pypi.org/project/ipython)|0.004| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.004| -|pypi|[zipp](https://pypi.org/project/zipp)|0.004| -|pypi|[prettytable](https://github.com/jazzband/prettytable)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.006| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.005| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.005| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.005| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.005| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.005| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.005| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.005| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.005| +|pypi|[ipython](https://pypi.org/project/ipython)|0.005| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.005| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.005| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| +|pypi|[zipp](https://pypi.org/project/zipp)|0.005| +|pypi|[prettytable](https://github.com/jazzband/prettytable)|0.005| |pypi|[pytest-lazy-fixture](https://github.com/tvorog/pytest-lazy-fixture)|0.001| |pypi|[wcwidth](https://github.com/jquast/wcwidth)|0.001| diff --git a/_repos/github/TPI-Immunogenetics/igmat/badge.png b/_repos/github/TPI-Immunogenetics/igmat/badge.png index c3210076..919eb34b 100644 Binary files a/_repos/github/TPI-Immunogenetics/igmat/badge.png and b/_repos/github/TPI-Immunogenetics/igmat/badge.png differ diff --git a/_repos/github/TPI-Immunogenetics/igmat/data.json b/_repos/github/TPI-Immunogenetics/igmat/data.json index 7792bde4..5e1df395 100644 --- a/_repos/github/TPI-Immunogenetics/igmat/data.json +++ b/_repos/github/TPI-Immunogenetics/igmat/data.json @@ -6,188 +6,184 @@ } }, "pypi": { - "prettytable": { - "credit": 0.003300000000000025, - "url": "https://github.com/jazzband/prettytable" - }, "biopython": { - "credit": 0.33, + "credit": 0.495, "url": "https://biopython.org/" }, - "pyyaml": { - "credit": 0.33, - "url": "https://pyyaml.org/" + "prettytable": { + "credit": 0.00495000000000001, + "url": "https://github.com/jazzband/prettytable" }, "pytest-lazy-fixture": { - "credit": 0.0006533999999999984, + "credit": 0.0009800999999999976, "url": "https://github.com/tvorog/pytest-lazy-fixture" }, "pytest-cov": { - "credit": 0.0042470999999999984, + "credit": 0.006370649999999998, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.012979790999999994, + "credit": 0.019469686500000007, "url": "https://docs.pytest.org/en/latest/" }, "importlib-metadata": { - "credit": 0.008698795874999998, + "credit": 0.013048193812499997, "url": "https://github.com/python/importlib_metadata" }, "wcwidth": { - "credit": 0.0006533999999999984, + "credit": 0.0009800999999999976, "url": "https://github.com/jquast/wcwidth" }, "virtualenv": { - "credit": 0.008085825, + "credit": 0.0121287375, "url": "https://virtualenv.pypa.io/" }, "pytest-xdist": { - "credit": 0.008085825, + "credit": 0.0121287375, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.008085825, + "credit": 0.0121287375, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.008085825, + "credit": 0.0121287375, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.008085825, + "credit": 0.0121287375, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.008085825, + "credit": 0.0121287375, "url": "https://pypi.org/project/fields" }, "coverage": { - "credit": 0.008085825, + "credit": 0.0121287375, "url": "https://pypi.org/project/coverage" }, "xmlschema": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/xmlschema" }, "requests": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/requests" }, "pygments": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/atomicwrites" }, "tomli": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.011639095875, + "credit": 0.0174586438125, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.008045395875, + "credit": 0.0120680938125, "url": "https://pypi.org/project/attrs" }, "importlib-resources": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/importlib-resources" }, "pytest-mypy": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/pytest-mypy" }, "pytest-black": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/pytest-black" }, "pytest-perf": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/pytest-perf" }, "flufl.flake8": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/flufl.flake8" }, "pyfakefs": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/pyfakefs" }, "pytest-enabler": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/pytest-enabler" }, "pytest-flake8": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/pytest-checkdocs" }, "ipython": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/ipython" }, "rst.linker": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/jaraco.packaging" }, "sphinx": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/typing-extensions" }, "zipp": { - "credit": 0.0035937, + "credit": 0.00539055, "url": "https://pypi.org/project/zipp" }, "backports.functools-lru-cache": { - "credit": 0.0646866, + "credit": 0.0970299, "url": "https://pypi.org/project/backports.functools-lru-cache" } } diff --git a/_repos/github/TeamCOMPAS/COMPAS/badge.png b/_repos/github/TeamCOMPAS/COMPAS/badge.png index a79599cd..758e147b 100644 Binary files a/_repos/github/TeamCOMPAS/COMPAS/badge.png and b/_repos/github/TeamCOMPAS/COMPAS/badge.png differ diff --git a/_repos/github/Theano/Theano/README.md b/_repos/github/Theano/Theano/README.md index 257e3b24..64a36f59 100644 --- a/_repos/github/Theano/Theano/README.md +++ b/_repos/github/Theano/Theano/README.md @@ -9,9 +9,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/Theano/Theano|0.01| -|pypi|[numpy](https://www.numpy.org)|0.007| -|pypi|[scipy](https://www.scipy.org)|0.003| -|pypi|[six](https://github.com/benjaminp/six)|0.003| +|pypi|[Theano](http://deeplearning.net/software/theano/)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Theano/Theano/badge.png b/_repos/github/Theano/Theano/badge.png index 011a004a..d8f36549 100644 Binary files a/_repos/github/Theano/Theano/badge.png and b/_repos/github/Theano/Theano/badge.png differ diff --git a/_repos/github/Theano/Theano/data.json b/_repos/github/Theano/Theano/data.json index 9b734424..568b1da5 100644 --- a/_repos/github/Theano/Theano/data.json +++ b/_repos/github/Theano/Theano/data.json @@ -6,17 +6,9 @@ } }, "pypi": { - "numpy": { - "credit": 0.006567, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.0033000000000000004, - "url": "https://www.scipy.org" - }, - "six": { - "credit": 0.0033000000000000004, - "url": "https://github.com/benjaminp/six" + "Theano": { + "credit": 0.0099, + "url": "http://deeplearning.net/software/theano/" } } } \ No newline at end of file diff --git a/_repos/github/TinkerTools/tinker9/badge.png b/_repos/github/TinkerTools/tinker9/badge.png index 9906a476..58a5670a 100644 Binary files a/_repos/github/TinkerTools/tinker9/badge.png and b/_repos/github/TinkerTools/tinker9/badge.png differ diff --git a/_repos/github/TriPed-Robot/TriP/badge.png b/_repos/github/TriPed-Robot/TriP/badge.png index 8b6fd3bd..06737d06 100644 Binary files a/_repos/github/TriPed-Robot/TriP/badge.png and b/_repos/github/TriPed-Robot/TriP/badge.png differ diff --git a/_repos/github/UNSW-CEEM/nempy/README.md b/_repos/github/UNSW-CEEM/nempy/README.md index baece3ec..58e21258 100644 --- a/_repos/github/UNSW-CEEM/nempy/README.md +++ b/_repos/github/UNSW-CEEM/nempy/README.md @@ -8,60 +8,46 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.247| -|pypi|[pycparser](https://pypi.org/project/pycparser)|0.243| -|pypi|[numpy](https://www.numpy.org)|0.043| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.043| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.043| -|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.039| -|pypi|[idna](https://github.com/kjd/idna)|0.039| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.039| -|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.035| -|pypi|[chardet](https://github.com/chardet/chardet)|0.035| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.035| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.588| +|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.231| +|pypi|[cffi](http://cffi.readthedocs.org)|0.036| |setup.py|github/UNSW-CEEM/nempy|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.009| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.007| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.007| -|pypi|[psutil](https://pypi.org/project/psutil)|0.007| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.007| -|pypi|[execnet](https://pypi.org/project/execnet)|0.007| -|pypi|[requests](https://requests.readthedocs.io)|0.005| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005| -|pypi|[attrs](https://pypi.org/project/attrs)|0.005| -|pypi|[pandas](https://pandas.pydata.org)|0.005| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.004| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.004| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.004| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.004| -|pypi|[brotli](https://pypi.org/project/brotli)|0.004| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.004| -|pypi|[hypothesis](https://hypothesis.works)|0.003| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.003| -|pypi|[pygments](https://pypi.org/project/pygments)|0.003| -|pypi|[nose](https://pypi.org/project/nose)|0.003| -|pypi|[mock](https://pypi.org/project/mock)|0.003| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.003| -|pypi|[colorama](https://pypi.org/project/colorama)|0.003| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[py](https://pypi.org/project/py)|0.003| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.003| -|pypi|[packaging](https://pypi.org/project/packaging)|0.003| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.003| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.008| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| +|pypi|[requests](https://requests.readthedocs.io)|0.006| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.006| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.006| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| +|pypi|[numpy](https://pypi.org/project/numpy)|0.005| +|pypi|[pytz](https://pypi.org/project/pytz)|0.005| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.005| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.005| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.005| +|pypi|[idna](https://pypi.org/project/idna)|0.005| +|pypi|[chardet](https://pypi.org/project/chardet)|0.005| +|pypi|[certifi](https://pypi.org/project/certifi)|0.005| +|pypi|[rich](https://github.com/willmcgugan/rich)|0.004| +|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.004| +|pypi|[keyring](https://pypi.org/project/keyring)|0.004| +|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.004| +|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.004| +|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.004| |pypi|[mip](https://github.com/coin-or/python-mip)|0.002| -|pypi|[cffi](http://cffi.readthedocs.org)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[rich](https://pypi.org/project/rich)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[libcst](https://pypi.org/project/libcst)|0.002| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.002| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.002| -|pypi|[django](https://pypi.org/project/django)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| +|pypi|[pygments](https://pypi.org/project/pygments)|0.002| +|pypi|[nose](https://pypi.org/project/nose)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| +|pypi|[tomli](https://pypi.org/project/tomli)|0.002| +|pypi|[py](https://pypi.org/project/py)|0.002| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| +|pypi|[packaging](https://pypi.org/project/packaging)|0.002| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| +|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[nempy](https://github.com/UNSW-CEEM/nempy)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/UNSW-CEEM/nempy/badge.png b/_repos/github/UNSW-CEEM/nempy/badge.png index d7d39ca8..41dbccb5 100644 Binary files a/_repos/github/UNSW-CEEM/nempy/badge.png and b/_repos/github/UNSW-CEEM/nempy/badge.png differ diff --git a/_repos/github/UNSW-CEEM/nempy/data.json b/_repos/github/UNSW-CEEM/nempy/data.json index 63227675..8615c645 100644 --- a/_repos/github/UNSW-CEEM/nempy/data.json +++ b/_repos/github/UNSW-CEEM/nempy/data.json @@ -6,229 +6,169 @@ } }, "pypi": { - "pandas": { - "credit": 0.004721062500000005, - "url": "https://pandas.pydata.org" + "nempy": { + "credit": 0.0019800000000000373, + "url": "https://github.com/UNSW-CEEM/nempy" + }, + "xmltodict": { + "credit": 0.23067000000000001, + "url": "https://github.com/martinblech/xmltodict" }, "mip": { - "credit": 0.002475000000000005, + "credit": 0.0023067000000000087, "url": "https://github.com/coin-or/python-mip" }, - "xmltodict": { - "credit": 0.2475, - "url": "https://github.com/martinblech/xmltodict" + "cffi": { + "credit": 0.0362835, + "url": "http://cffi.readthedocs.org" }, - "requests": { - "credit": 0.005001820312500005, - "url": "https://requests.readthedocs.io" + "pycparser": { + "credit": 0.5880798, + "url": "https://github.com/eliben/pycparser" }, - "pytest-xdist": { - "credit": 0.0004083750000000025, - "url": "https://github.com/pytest-dev/pytest-xdist" + "twine": { + "credit": 0.0003266999999999992, + "url": "https://twine.readthedocs.io/" }, "pytest": { - "credit": 0.009392625000000002, + "credit": 0.005717249999999999, "url": "https://docs.pytest.org/en/latest/" }, - "hypothesis": { - "credit": 0.0029351953125000023, - "url": "https://hypothesis.works" - }, - "numpy": { - "credit": 0.0430835625, - "url": "https://www.numpy.org" - }, - "pytz": { - "credit": 0.0430835625, - "url": "http://pythonhosted.org/pytz" - }, - "python-dateutil": { - "credit": 0.0430835625, - "url": "https://github.com/dateutil/dateutil" - }, - "cffi": { - "credit": 0.002450250000000015, - "url": "http://cffi.readthedocs.org" + "requests": { + "credit": 0.005941856249999999, + "url": "https://requests.readthedocs.io" }, - "win-inet-pton": { - "credit": 0.035003571428571426, - "url": "https://github.com/hickeroar/win_inet_pton" + "pandas": { + "credit": 0.0003266999999999992, + "url": "https://pandas.pydata.org" }, - "PySocks": { - "credit": 0.03885396428571428, - "url": "https://github.com/Anorov/PySocks" + "rich": { + "credit": 0.0035937, + "url": "https://github.com/willmcgugan/rich" }, - "charset-normalizer": { - "credit": 0.00035003571428571245, - "url": "https://github.com/ousret/charset_normalizer" + "rfc3986": { + "credit": 0.0035937, + "url": "https://pypi.org/project/rfc3986" }, - "idna": { - "credit": 0.03885396428571428, - "url": "https://github.com/kjd/idna" + "keyring": { + "credit": 0.0035937, + "url": "https://pypi.org/project/keyring" }, - "chardet": { - "credit": 0.035003571428571426, - "url": "https://github.com/chardet/chardet" - }, - "certifi": { - "credit": 0.03885396428571428, - "url": "https://certifiio.readthedocs.io/en/latest/" + "importlib-metadata": { + "credit": 0.0056151562499999995, + "url": "https://pypi.org/project/importlib-metadata" }, "urllib3": { - "credit": 0.00035003571428571245, - "url": "https://urllib3.readthedocs.io/" + "credit": 0.008214171428571428, + "url": "https://pypi.org/project/urllib3" }, - "filelock": { - "credit": 0.006738187499999999, - "url": "https://github.com/tox-dev/py-filelock" + "requests-toolbelt": { + "credit": 0.0035937, + "url": "https://pypi.org/project/requests-toolbelt" }, - "setproctitle": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/setproctitle" + "readme-renderer": { + "credit": 0.0035937, + "url": "https://pypi.org/project/readme-renderer" }, - "psutil": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/psutil" - }, - "pytest-forked": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/pytest-forked" - }, - "execnet": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/execnet" + "pkginfo": { + "credit": 0.0035937, + "url": "https://pypi.org/project/pkginfo" }, "xmlschema": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/xmlschema" }, "pygments": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/mock" }, + "hypothesis": { + "credit": 0.00741200625, + "url": "https://pypi.org/project/hypothesis" + }, "argcomplete": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/atomicwrites" }, - "importlib-metadata": { - "credit": 0.0047728828124999996, - "url": "https://pypi.org/project/importlib-metadata" - }, "tomli": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.0025268203124999998, + "credit": 0.00202145625, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.0047728828124999996, + "credit": 0.00202145625, "url": "https://pypi.org/project/attrs" }, - "tzdata": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/redis" - }, - "libcst": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/django" - }, - "click": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/click" - }, - "black": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/black" + "win-inet-pton": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/win-inet-pton" }, - "sortedcontainers": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/sortedcontainers" + "PySocks": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/PySocks" }, - "pycparser": { - "credit": 0.24257474999999998, - "url": "https://pypi.org/project/pycparser" + "charset-normalizer": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/charset-normalizer" }, - "unicodedata2": { - "credit": 0.03465353571428571, - "url": "https://pypi.org/project/unicodedata2" + "idna": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/idna" }, - "ipaddress": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/ipaddress" + "chardet": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/chardet" }, - "cryptography": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/cryptography" + "certifi": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/certifi" }, - "pyOpenSSL": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/pyOpenSSL" + "pytest-xdist": { + "credit": 0.00539055, + "url": "https://pypi.org/project/pytest-xdist" }, - "brotlipy": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/brotlipy" + "numpy": { + "credit": 0.00539055, + "url": "https://pypi.org/project/numpy" }, - "brotli": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/brotli" + "pytz": { + "credit": 0.00539055, + "url": "https://pypi.org/project/pytz" }, - "brotlicffi": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/brotlicffi" + "python-dateutil": { + "credit": 0.00539055, + "url": "https://pypi.org/project/python-dateutil" } } } \ No newline at end of file diff --git a/_repos/github/UNSW-CEEM/nempy/setup.py b/_repos/github/UNSW-CEEM/nempy/setup.py index 2148ab5a..7da48317 100644 --- a/_repos/github/UNSW-CEEM/nempy/setup.py +++ b/_repos/github/UNSW-CEEM/nempy/setup.py @@ -5,7 +5,7 @@ setup( name="nempy", - version="1.1.3", + version="1.1.5", description="A flexible tool kit for modelling Australia's National Electricity Market dispatch procedure.", packages=find_packages(), long_description=long_description, diff --git a/_repos/github/UUDigitalHumanitieslab/texcavator/badge.png b/_repos/github/UUDigitalHumanitieslab/texcavator/badge.png index edd0ce44..3f5f384d 100644 Binary files a/_repos/github/UUDigitalHumanitieslab/texcavator/badge.png and b/_repos/github/UUDigitalHumanitieslab/texcavator/badge.png differ diff --git a/_repos/github/Yu-Group/veridical-flow/README.md b/_repos/github/Yu-Group/veridical-flow/README.md index 54b653b8..e3b5ae08 100644 --- a/_repos/github/Yu-Group/veridical-flow/README.md +++ b/_repos/github/Yu-Group/veridical-flow/README.md @@ -8,109 +8,57 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.248| -|pypi|[matplotlib](https://matplotlib.org)|0.118| -|pypi|[joblib](https://joblib.readthedocs.io)|0.11| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.025| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.025| -|pypi|[pytz](https://pypi.org/project/pytz)|0.021| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.018| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.018| -|pypi|[requests](https://pypi.org/project/requests)|0.015| -|pypi|[scipy](https://www.scipy.org)|0.012| -|pypi|[pandas](https://pandas.pydata.org)|0.012| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| -|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[matplotlib](https://matplotlib.org)|0.026| +|pypi|[mlflow](https://mlflow.org/)|0.026| +|pypi|[networkx](https://pypi.org/project/networkx)|0.026| +|pypi|[ray](https://pypi.org/project/ray)|0.026| +|pypi|[cycler](https://pypi.org/project/cycler)|0.025| +|pypi|[databricks-cli](https://pypi.org/project/databricks-cli)|0.025| +|pypi|[docker](https://pypi.org/project/docker)|0.025| +|pypi|[fonttools](https://pypi.org/project/fonttools)|0.025| +|pypi|[gitpython](https://pypi.org/project/gitpython)|0.025| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.025| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.025| +|pypi|[kiwisolver](https://pypi.org/project/kiwisolver)|0.025| +|pypi|[msgpack](https://pypi.org/project/msgpack)|0.025| +|pypi|[pillow](https://pypi.org/project/pillow)|0.025| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.025| +|pypi|[sqlparse](https://pypi.org/project/sqlparse)|0.025| +|pypi|[aiosignal](https://pypi.org/project/aiosignal)|0.025| +|pypi|[frozenlist](https://pypi.org/project/frozenlist)|0.025| +|pypi|[alembic](https://pypi.org/project/alembic)|0.025| +|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.025| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.025| +|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.025| +|pypi|[Flask](https://pypi.org/project/Flask)|0.025| +|pypi|[gunicorn](https://pypi.org/project/gunicorn)|0.025| +|pypi|[prometheus-flask-exporter](https://pypi.org/project/prometheus-flask-exporter)|0.025| +|pypi|[querystring-parser](https://pypi.org/project/querystring-parser)|0.025| +|pypi|[gitdb](https://pypi.org/project/gitdb)|0.025| +|pypi|[greenlet](https://pypi.org/project/greenlet)|0.025| +|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.025| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.025| +|pypi|[oauthlib](https://pypi.org/project/oauthlib)|0.025| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.025| +|pypi|[tabulate](https://pypi.org/project/tabulate)|0.025| +|pypi|[websocket-client](https://pypi.org/project/websocket-client)|0.025| +|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.025| +|pypi|[Mako](https://pypi.org/project/Mako)|0.025| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.025| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.025| +|pypi|[smmap](https://pypi.org/project/smmap)|0.025| |setup.py|github/Yu-Group/veridical-flow|0.01| -|pypi|[attrs](https://pypi.org/project/attrs)|0.009| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.007| -|pypi|[pygments](https://pypi.org/project/pygments)|0.007| -|pypi|[nose](https://pypi.org/project/nose)|0.007| -|pypi|[mock](https://pypi.org/project/mock)|0.007| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.007| -|pypi|[colorama](https://pypi.org/project/colorama)|0.007| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.007| -|pypi|[tomli](https://pypi.org/project/tomli)|0.007| -|pypi|[py](https://pypi.org/project/py)|0.007| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.007| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.007| -|pypi|[kubernetes](https://pypi.org/project/kubernetes)|0.006| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.006| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.006| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.006| -|pypi|[click](https://pypi.org/project/click)|0.006| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.005| -|pypi|[sympy](https://pypi.org/project/sympy)|0.005| -|pypi|[pydot](https://pypi.org/project/pydot)|0.005| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.005| -|pypi|[lxml](https://pypi.org/project/lxml)|0.005| -|pypi|[texext](https://pypi.org/project/texext)|0.005| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.005| -|pypi|[pillow](https://pypi.org/project/pillow)|0.005| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.005| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.005| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.005| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| -|pypi|[mypy](https://pypi.org/project/mypy)|0.005| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.005| -|pypi|[mlflow-dbstore](https://pypi.org/project/mlflow-dbstore)|0.003| -|pypi|[mlserver-mlflow](https://pypi.org/project/mlserver-mlflow)|0.003| -|pypi|[mlserver](https://pypi.org/project/mlserver)|0.003| -|pypi|[pysftp](https://pypi.org/project/pysftp)|0.003| -|pypi|[azureml-core](https://pypi.org/project/azureml-core)|0.003| -|pypi|[google-cloud-storage](https://pypi.org/project/google-cloud-storage)|0.003| -|pypi|[boto3](https://pypi.org/project/boto3)|0.003| -|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.003| -|pypi|[aliyunstoreplugin](https://pypi.org/project/aliyunstoreplugin)|0.003| -|pypi|[waitress](https://pypi.org/project/waitress)|0.003| -|pypi|[gunicorn](https://pypi.org/project/gunicorn)|0.003| -|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.003| -|pypi|[sqlparse](https://pypi.org/project/sqlparse)|0.003| -|pypi|[querystring-parser](https://pypi.org/project/querystring-parser)|0.003| -|pypi|[prometheus-flask-exporter](https://pypi.org/project/prometheus-flask-exporter)|0.003| -|pypi|[Flask](https://pypi.org/project/Flask)|0.003| -|pypi|[docker](https://pypi.org/project/docker)|0.003| -|pypi|[alembic](https://pypi.org/project/alembic)|0.003| -|pypi|[gitpython](https://pypi.org/project/gitpython)|0.003| -|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.003| -|pypi|[databricks-cli](https://pypi.org/project/databricks-cli)|0.003| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.003| -|pypi|[coverage](https://pypi.org/project/coverage)|0.003| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.003| -|pypi|[uvicorn](https://pypi.org/project/uvicorn)|0.003| -|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|0.003| -|pypi|[tabulate](https://pypi.org/project/tabulate)|0.003| -|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.003| -|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|0.003| -|pypi|[colorful](https://pypi.org/project/colorful)|0.003| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.003| -|pypi|[starlette](https://pypi.org/project/starlette)|0.003| -|pypi|[dm-tree](https://pypi.org/project/dm-tree)|0.003| -|pypi|[fastapi](https://pypi.org/project/fastapi)|0.003| -|pypi|[smart-open](https://pypi.org/project/smart-open)|0.003| -|pypi|[gpustat](https://pypi.org/project/gpustat)|0.003| -|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|0.003| -|pypi|[lz4](https://pypi.org/project/lz4)|0.003| -|pypi|[fsspec](https://pypi.org/project/fsspec)|0.003| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.003| -|pypi|[opencensus](https://pypi.org/project/opencensus)|0.003| -|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|0.003| -|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|0.003| -|pypi|[py-spy](https://pypi.org/project/py-spy)|0.003| -|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|0.003| -|pypi|[gym](https://pypi.org/project/gym)|0.003| -|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|0.003| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[frozenlist](https://pypi.org/project/frozenlist)|0.003| -|pypi|[aiosignal](https://pypi.org/project/aiosignal)|0.003| -|pypi|[msgpack](https://pypi.org/project/msgpack)|0.003| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.003| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.003| -|pypi|[filelock](https://pypi.org/project/filelock)|0.003| -|pypi|[networkx](https://networkx.org/)|0.001| -|pypi|[ray](https://github.com/ray-project/ray)|0.001| -|pypi|[mlflow](https://mlflow.org/)|0.001| +|pypi|[torchvision](https://pypi.org/project/torchvision)|0.002| +|pypi|[torch](https://pypi.org/project/torch)|0.002| +|pypi|[jupyter](https://pypi.org/project/jupyter)|0.002| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.002| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.002| +|pypi|[pylint](https://pypi.org/project/pylint)|0.002| +|pypi|[pytest](https://pypi.org/project/pytest)|0.002| +|pypi|[joblib](https://pypi.org/project/joblib)|0.002| +|pypi|[pandas](https://pypi.org/project/pandas)|0.002| +|pypi|[scipy](https://pypi.org/project/scipy)|0.002| +|pypi|[numpy](https://pypi.org/project/numpy)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/Yu-Group/veridical-flow/badge.png b/_repos/github/Yu-Group/veridical-flow/badge.png index f6c9fc61..c88caf1b 100644 Binary files a/_repos/github/Yu-Group/veridical-flow/badge.png and b/_repos/github/Yu-Group/veridical-flow/badge.png differ diff --git a/_repos/github/Yu-Group/veridical-flow/data.json b/_repos/github/Yu-Group/veridical-flow/data.json index 5928c9b7..26820d7f 100644 --- a/_repos/github/Yu-Group/veridical-flow/data.json +++ b/_repos/github/Yu-Group/veridical-flow/data.json @@ -6,417 +6,209 @@ } }, "pypi": { - "numpy": { - "credit": 0.24823049931600544, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.012280499316005476, - "url": "https://www.scipy.org" + "vflow": { + "credit": 0.0002475000000000012, + "url": "https://github.com/Yu-Group/pcs-pipeline" }, "matplotlib": { - "credit": 0.1179775581395349, + "credit": 0.0263835, "url": "https://matplotlib.org" }, - "networkx": { - "credit": 0.0011000000000000038, - "url": "https://networkx.org/" - }, - "pandas": { - "credit": 0.012280499316005476, - "url": "https://pandas.pydata.org" - }, - "joblib": { - "credit": 0.11, - "url": "https://joblib.readthedocs.io" + "mlflow": { + "credit": 0.0263835, + "url": "https://mlflow.org/" }, - "pytest": { - "credit": 0.024695, - "url": "https://docs.pytest.org/en/latest/" + "networkx": { + "credit": 0.0263835, + "url": "https://pypi.org/project/networkx" }, "ray": { - "credit": 0.0011000000000000038, - "url": "https://github.com/ray-project/ray" + "credit": 0.0263835, + "url": "https://pypi.org/project/ray" }, - "mlflow": { - "credit": 0.0011000000000000038, - "url": "https://mlflow.org/" + "cycler": { + "credit": 0.02475, + "url": "https://pypi.org/project/cycler" }, - "codecov": { - "credit": 5.445000000000016e-05, - "url": "https://github.com/codecov/codecov-python" + "databricks-cli": { + "credit": 0.02475, + "url": "https://pypi.org/project/databricks-cli" }, - "pytest-cov": { - "credit": 0.005445, - "url": "https://github.com/pytest-dev/pytest-cov" + "docker": { + "credit": 0.02475, + "url": "https://pypi.org/project/docker" }, - "sympy": { - "credit": 0.005445, - "url": "https://pypi.org/project/sympy" + "fonttools": { + "credit": 0.02475, + "url": "https://pypi.org/project/fonttools" }, - "pydot": { - "credit": 0.005445, - "url": "https://pypi.org/project/pydot" + "gitpython": { + "credit": 0.02475, + "url": "https://pypi.org/project/gitpython" }, - "pygraphviz": { - "credit": 0.005445, - "url": "https://pypi.org/project/pygraphviz" + "grpcio": { + "credit": 0.02475, + "url": "https://pypi.org/project/grpcio" }, - "lxml": { - "credit": 0.005445, - "url": "https://pypi.org/project/lxml" + "importlib-metadata": { + "credit": 0.02475, + "url": "https://pypi.org/project/importlib-metadata" }, - "texext": { - "credit": 0.005445, - "url": "https://pypi.org/project/texext" + "kiwisolver": { + "credit": 0.02475, + "url": "https://pypi.org/project/kiwisolver" }, - "nb2plots": { - "credit": 0.005445, - "url": "https://pypi.org/project/nb2plots" + "msgpack": { + "credit": 0.02475, + "url": "https://pypi.org/project/msgpack" }, "pillow": { - "credit": 0.005445, + "credit": 0.02475, "url": "https://pypi.org/project/pillow" }, - "numpydoc": { - "credit": 0.005445, - "url": "https://pypi.org/project/numpydoc" - }, - "sphinx-gallery": { - "credit": 0.005445, - "url": "https://pypi.org/project/sphinx-gallery" - }, - "pydata-sphinx-theme": { - "credit": 0.005445, - "url": "https://pypi.org/project/pydata-sphinx-theme" - }, - "sphinx": { - "credit": 0.005445, - "url": "https://pypi.org/project/sphinx" - }, - "mypy": { - "credit": 0.005445, - "url": "https://pypi.org/project/mypy" - }, - "pre-commit": { - "credit": 0.005445, - "url": "https://pypi.org/project/pre-commit" - }, - "pytest-xdist": { - "credit": 0.01815, - "url": "https://pypi.org/project/pytest-xdist" - }, - "hypothesis": { - "credit": 0.02495625, - "url": "https://pypi.org/project/hypothesis" - }, - "pytz": { - "credit": 0.02135294117647059, - "url": "https://pypi.org/project/pytz" - }, - "python-dateutil": { - "credit": 0.01815, - "url": "https://pypi.org/project/python-dateutil" - }, - "xmlschema": { - "credit": 0.00680625, - "url": "https://pypi.org/project/xmlschema" + "protobuf": { + "credit": 0.02475, + "url": "https://pypi.org/project/protobuf" }, - "requests": { - "credit": 0.015237024316005474, - "url": "https://pypi.org/project/requests" + "sqlparse": { + "credit": 0.02475, + "url": "https://pypi.org/project/sqlparse" }, - "pygments": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pygments" + "aiosignal": { + "credit": 0.02475, + "url": "https://pypi.org/project/aiosignal" }, - "nose": { - "credit": 0.00680625, - "url": "https://pypi.org/project/nose" + "frozenlist": { + "credit": 0.02475, + "url": "https://pypi.org/project/frozenlist" }, - "mock": { - "credit": 0.00680625, - "url": "https://pypi.org/project/mock" + "alembic": { + "credit": 0.02475, + "url": "https://pypi.org/project/alembic" }, - "argcomplete": { - "credit": 0.00680625, - "url": "https://pypi.org/project/argcomplete" + "sqlalchemy": { + "credit": 0.02475, + "url": "https://pypi.org/project/sqlalchemy" }, - "colorama": { - "credit": 0.00680625, - "url": "https://pypi.org/project/colorama" + "cloudpickle": { + "credit": 0.02475, + "url": "https://pypi.org/project/cloudpickle" }, - "atomicwrites": { - "credit": 0.00680625, - "url": "https://pypi.org/project/atomicwrites" + "entrypoints": { + "credit": 0.02475, + "url": "https://pypi.org/project/entrypoints" }, - "importlib-metadata": { - "credit": 0.010009191176470589, - "url": "https://pypi.org/project/importlib-metadata" + "Flask": { + "credit": 0.02475, + "url": "https://pypi.org/project/Flask" }, - "tomli": { - "credit": 0.00680625, - "url": "https://pypi.org/project/tomli" + "gunicorn": { + "credit": 0.02475, + "url": "https://pypi.org/project/gunicorn" }, - "py": { - "credit": 0.00680625, - "url": "https://pypi.org/project/py" + "prometheus-flask-exporter": { + "credit": 0.02475, + "url": "https://pypi.org/project/prometheus-flask-exporter" }, - "pluggy": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pluggy" + "querystring-parser": { + "credit": 0.02475, + "url": "https://pypi.org/project/querystring-parser" }, - "packaging": { - "credit": 0.010009191176470589, - "url": "https://pypi.org/project/packaging" + "gitdb": { + "credit": 0.02475, + "url": "https://pypi.org/project/gitdb" }, - "iniconfig": { - "credit": 0.00680625, - "url": "https://pypi.org/project/iniconfig" + "greenlet": { + "credit": 0.02475, + "url": "https://pypi.org/project/greenlet" }, - "attrs": { - "credit": 0.009338808139534884, - "url": "https://pypi.org/project/attrs" + "itsdangerous": { + "credit": 0.02475, + "url": "https://pypi.org/project/itsdangerous" }, - "urllib3": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/urllib3" + "Jinja2": { + "credit": 0.02475, + "url": "https://pypi.org/project/Jinja2" }, - "uvicorn": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/uvicorn" + "oauthlib": { + "credit": 0.02475, + "url": "https://pypi.org/project/oauthlib" }, - "opentelemetry-exporter-otlp": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/opentelemetry-exporter-otlp" + "pyjwt": { + "credit": 0.02475, + "url": "https://pypi.org/project/pyjwt" }, "tabulate": { - "credit": 0.0025325581395348835, + "credit": 0.02475, "url": "https://pypi.org/project/tabulate" }, - "prometheus-client": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/prometheus-client" - }, - "ray-cpp": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/ray-cpp" - }, - "colorful": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/colorful" - }, - "aiohttp": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/aiohttp" - }, - "starlette": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/starlette" - }, - "dm-tree": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/dm-tree" - }, - "fastapi": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/fastapi" - }, - "smart-open": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/smart-open" - }, - "gpustat": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/gpustat" + "websocket-client": { + "credit": 0.02475, + "url": "https://pypi.org/project/websocket-client" }, - "kubernetes": { - "credit": 0.005735499316005472, - "url": "https://pypi.org/project/kubernetes" + "Werkzeug": { + "credit": 0.02475, + "url": "https://pypi.org/project/Werkzeug" }, - "opentelemetry-api": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/opentelemetry-api" + "Mako": { + "credit": 0.02475, + "url": "https://pypi.org/project/Mako" }, - "pyarrow": { - "credit": 0.005735499316005472, - "url": "https://pypi.org/project/pyarrow" - }, - "lz4": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/lz4" - }, - "fsspec": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/fsspec" - }, - "scikit-image": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/scikit-image" - }, - "opencensus": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/opencensus" - }, - "tensorboardX": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/tensorboardX" - }, - "aiorwlock": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/aiorwlock" - }, - "py-spy": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/py-spy" - }, - "aiohttp-cors": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/aiohttp-cors" - }, - "gym": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/gym" - }, - "opentelemetry-sdk": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/opentelemetry-sdk" - }, - "dataclasses": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/dataclasses" - }, - "virtualenv": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/virtualenv" - }, - "frozenlist": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/frozenlist" - }, - "aiosignal": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/aiosignal" - }, - "pyyaml": { - "credit": 0.005735499316005472, - "url": "https://pypi.org/project/pyyaml" - }, - "protobuf": { - "credit": 0.005735499316005472, - "url": "https://pypi.org/project/protobuf" - }, - "msgpack": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/msgpack" - }, - "jsonschema": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/jsonschema" - }, - "grpcio": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/grpcio" - }, - "filelock": { - "credit": 0.0025325581395348835, - "url": "https://pypi.org/project/filelock" - }, - "click": { - "credit": 0.005735499316005472, - "url": "https://pypi.org/project/click" - }, - "mlflow-dbstore": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/mlflow-dbstore" - }, - "mlserver-mlflow": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/mlserver-mlflow" + "prometheus-client": { + "credit": 0.02475, + "url": "https://pypi.org/project/prometheus-client" }, - "mlserver": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/mlserver" + "MarkupSafe": { + "credit": 0.02475, + "url": "https://pypi.org/project/MarkupSafe" }, - "pysftp": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/pysftp" + "smmap": { + "credit": 0.02475, + "url": "https://pypi.org/project/smmap" }, - "azureml-core": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/azureml-core" + "torchvision": { + "credit": 0.0016335, + "url": "https://pypi.org/project/torchvision" }, - "google-cloud-storage": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/google-cloud-storage" + "torch": { + "credit": 0.0016335, + "url": "https://pypi.org/project/torch" }, - "boto3": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/boto3" + "jupyter": { + "credit": 0.0016335, + "url": "https://pypi.org/project/jupyter" }, "scikit-learn": { - "credit": 0.003202941176470588, + "credit": 0.0016335, "url": "https://pypi.org/project/scikit-learn" }, - "aliyunstoreplugin": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/aliyunstoreplugin" - }, - "waitress": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/waitress" + "tqdm": { + "credit": 0.0016335, + "url": "https://pypi.org/project/tqdm" }, - "gunicorn": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/gunicorn" - }, - "sqlalchemy": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/sqlalchemy" - }, - "sqlparse": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/sqlparse" - }, - "querystring-parser": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/querystring-parser" - }, - "prometheus-flask-exporter": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/prometheus-flask-exporter" - }, - "Flask": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/Flask" - }, - "docker": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/docker" - }, - "alembic": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/alembic" + "pylint": { + "credit": 0.0016335, + "url": "https://pypi.org/project/pylint" }, - "gitpython": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/gitpython" + "pytest": { + "credit": 0.0016335, + "url": "https://pypi.org/project/pytest" }, - "entrypoints": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/entrypoints" + "joblib": { + "credit": 0.0016335, + "url": "https://pypi.org/project/joblib" }, - "databricks-cli": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/databricks-cli" + "pandas": { + "credit": 0.0016335, + "url": "https://pypi.org/project/pandas" }, - "cloudpickle": { - "credit": 0.003202941176470588, - "url": "https://pypi.org/project/cloudpickle" + "scipy": { + "credit": 0.0016335, + "url": "https://pypi.org/project/scipy" }, - "coverage": { - "credit": 0.002695275, - "url": "https://pypi.org/project/coverage" + "numpy": { + "credit": 0.0016335, + "url": "https://pypi.org/project/numpy" } } } \ No newline at end of file diff --git a/_repos/github/aalhossary/pyemgpipeline/README.md b/_repos/github/aalhossary/pyemgpipeline/README.md index a76dae5a..8f28ebdb 100644 --- a/_repos/github/aalhossary/pyemgpipeline/README.md +++ b/_repos/github/aalhossary/pyemgpipeline/README.md @@ -8,10 +8,53 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[matplotlib](https://matplotlib.org)|0.232| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.165| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.163| +|pypi|[numpy](https://www.numpy.org)|0.121| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[coverage](https://pypi.org/project/coverage)|0.018| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.013| +|pypi|[brotli](https://github.com/google/brotli)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.01| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.01| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.01| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.01| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.01| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.01| +|pypi|[olefile](https://pypi.org/project/olefile)|0.01| |setup.py|github/aalhossary/pyemgpipeline|0.01| -|pypi|[numpy](https://www.numpy.org)|0.007| -|pypi|[scipy](https://www.scipy.org)|0.003| -|pypi|[matplotlib](https://matplotlib.org)|0.003| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.006| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[pyemgpipeline](https://github.com/aalhossary/pyemgpipeline)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.002| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scandir](https://pypi.org/project/scandir)|0.002| +|pypi|[typing](https://pypi.org/project/typing)|0.002| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| +|pypi|[scipy](https://www.scipy.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/aalhossary/pyemgpipeline/badge.png b/_repos/github/aalhossary/pyemgpipeline/badge.png index 6f6fac2a..8960d95c 100644 Binary files a/_repos/github/aalhossary/pyemgpipeline/badge.png and b/_repos/github/aalhossary/pyemgpipeline/badge.png differ diff --git a/_repos/github/aalhossary/pyemgpipeline/data.json b/_repos/github/aalhossary/pyemgpipeline/data.json index 235c7b11..8c15e87d 100644 --- a/_repos/github/aalhossary/pyemgpipeline/data.json +++ b/_repos/github/aalhossary/pyemgpipeline/data.json @@ -6,17 +6,225 @@ } }, "pypi": { - "numpy": { - "credit": 0.006567, - "url": "https://www.numpy.org" + "pyemgpipeline": { + "credit": 0.0016500000000000126, + "url": "https://github.com/aalhossary/pyemgpipeline" + }, + "matplotlib": { + "credit": 0.23201538461538462, + "url": "https://matplotlib.org" + }, + "cycler": { + "credit": 0.165, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0016500000000000126, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0016500000000000126, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0016500000000000126, + "url": "https://python-pillow.org" }, "scipy": { - "credit": 0.0033000000000000004, + "credit": 0.0006701538461538498, "url": "https://www.scipy.org" }, - "matplotlib": { - "credit": 0.0033000000000000004, - "url": "https://matplotlib.org" + "numpy": { + "credit": 0.12079523076923077, + "url": "https://www.numpy.org" + }, + "xattr": { + "credit": 0.00012565384615384652, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 0.00012565384615384652, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.012565384615384615, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.012565384615384615, + "url": "https://github.com/google/brotli" + }, + "brotlicffi": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 0.00012565384615384652, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.012565384615384615, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 0.00012565384615384652, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.16335, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 0.00010209375000000062, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.002175382211538462, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.04231295102163461, + "url": "https://docs.pytest.org/en/latest/" + }, + "pyroma": { + "credit": 0.010209375, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.010209375, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.010209375, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.010209375, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.017692650540865384, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.010209375, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.012282663461538461, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.010209375, + "url": "https://pypi.org/project/olefile" + }, + "cffi": { + "credit": 0.01865959615384615, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.007483275540865385, + "url": "https://pypi.org/project/pytest-xdist" + }, + "enum34": { + "credit": 0.007774831730769231, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.002818376502403846, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/virtualenv" + }, + "process-tests": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/abinit/abinit/README.md b/_repos/github/abinit/abinit/README.md index a8c2b028..be0412b7 100644 --- a/_repos/github/abinit/abinit/README.md +++ b/_repos/github/abinit/abinit/README.md @@ -23,13 +23,13 @@ exclude_from_search: true |pypi|[jinja2](https://pypi.org/project/jinja2)|0.018| |pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.017| |requirements.txt|github/abinit/abinit|0.01| -|pypi|[babel](http://babel.pocoo.org/)|0.01| |pypi|[mergedeep](https://github.com/clarketm/mergedeep)|0.01| |pypi|[pyyaml-env-tag](https://pypi.org/project/pyyaml-env-tag)|0.01| |pypi|[ghp-import](https://pypi.org/project/ghp-import)|0.01| |pypi|[watchdog](https://pypi.org/project/watchdog)|0.01| |pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.01| |pypi|[click](https://pypi.org/project/click)|0.01| +|pypi|[pytz](https://pypi.org/project/pytz)|0.01| |pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.01| |pypi|[packaging](https://github.com/pypa/packaging)|0.007| |pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.007| diff --git a/_repos/github/abinit/abinit/badge.png b/_repos/github/abinit/abinit/badge.png index 516cf360..1d7fbbbc 100644 Binary files a/_repos/github/abinit/abinit/badge.png and b/_repos/github/abinit/abinit/badge.png differ diff --git a/_repos/github/abinit/abinit/data.json b/_repos/github/abinit/abinit/data.json index 0a061169..f298548c 100644 --- a/_repos/github/abinit/abinit/data.json +++ b/_repos/github/abinit/abinit/data.json @@ -43,8 +43,8 @@ "url": "https://docs.pytest.org/en/latest/" }, "babel": { - "credit": 0.009899999999999999, - "url": "http://babel.pocoo.org/" + "credit": 9.900000000000013e-05, + "url": "https://babel.pocoo.org/" }, "mergedeep": { "credit": 0.009899999999999999, @@ -158,6 +158,10 @@ "credit": 0.00680625, "url": "https://pypi.org/project/attrs" }, + "pytz": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/pytz" + }, "pyparsing": { "credit": 0.009800999999999999, "url": "https://pypi.org/project/pyparsing" diff --git a/_repos/github/ablab/TandemTools/badge.png b/_repos/github/ablab/TandemTools/badge.png index aaec0a4b..65ed452e 100644 Binary files a/_repos/github/ablab/TandemTools/badge.png and b/_repos/github/ablab/TandemTools/badge.png differ diff --git a/_repos/github/abrupt-climate/hyper-canny/README.md b/_repos/github/abrupt-climate/hyper-canny/README.md index 5e9c720d..aaa9ac64 100644 --- a/_repos/github/abrupt-climate/hyper-canny/README.md +++ b/_repos/github/abrupt-climate/hyper-canny/README.md @@ -9,7 +9,6 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/abrupt-climate/hyper-canny|0.01| -|pypi|[numpy](https://www.numpy.org)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/abrupt-climate/hyper-canny/badge.png b/_repos/github/abrupt-climate/hyper-canny/badge.png index 30187a98..838fc448 100644 Binary files a/_repos/github/abrupt-climate/hyper-canny/badge.png and b/_repos/github/abrupt-climate/hyper-canny/badge.png differ diff --git a/_repos/github/abrupt-climate/hyper-canny/data.json b/_repos/github/abrupt-climate/hyper-canny/data.json index b0d870d3..e69cc224 100644 --- a/_repos/github/abrupt-climate/hyper-canny/data.json +++ b/_repos/github/abrupt-climate/hyper-canny/data.json @@ -4,11 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "numpy": { - "credit": 0.0099, - "url": "https://www.numpy.org" - } } } \ No newline at end of file diff --git a/_repos/github/actris-cloudnet/cloudnetpy/README.md b/_repos/github/actris-cloudnet/cloudnetpy/README.md index 6794b6ab..7bbb651e 100644 --- a/_repos/github/actris-cloudnet/cloudnetpy/README.md +++ b/_repos/github/actris-cloudnet/cloudnetpy/README.md @@ -8,80 +8,96 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.187| -|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.185| -|pypi|[matplotlib](https://matplotlib.org)|0.127| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.124| -|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.019| -|pypi|[idna](https://github.com/kjd/idna)|0.019| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.019| -|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.018| -|pypi|[chardet](https://github.com/chardet/chardet)|0.018| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.017| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.015| +|pypi|[numpy](https://pypi.org/project/numpy)|0.202| +|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.111| +|pypi|[matplotlib](https://matplotlib.org)|0.104| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.071| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.07| +|pypi|[lxml](https://pypi.org/project/lxml)|0.026| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.019| +|pypi|[pytest](https://pypi.org/project/pytest)|0.019| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.018| +|pypi|[scipy](https://pypi.org/project/scipy)|0.016| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.014| |setup.py|github/actris-cloudnet/cloudnetpy|0.01| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.008| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| -|pypi|[six](https://pypi.org/project/six)|0.008| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.008| -|pypi|[hunter](https://pypi.org/project/hunter)|0.008| -|pypi|[fields](https://pypi.org/project/fields)|0.008| -|pypi|[coverage](https://pypi.org/project/coverage)|0.008| -|pypi|[packaging](https://pypi.org/project/packaging)|0.007| -|pypi|[requests](https://requests.readthedocs.io)|0.005| -|pypi|[scipy](https://www.scipy.org)|0.005| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.004| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.004| -|pypi|[pygments](https://pypi.org/project/pygments)|0.004| -|pypi|[nose](https://pypi.org/project/nose)|0.004| -|pypi|[mock](https://pypi.org/project/mock)|0.004| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.004| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.004| -|pypi|[colorama](https://pypi.org/project/colorama)|0.004| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[tomli](https://pypi.org/project/tomli)|0.004| -|pypi|[py](https://pypi.org/project/py)|0.004| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.004| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| -|pypi|[flake8](https://pypi.org/project/flake8)|0.004| -|pypi|[codecov](https://pypi.org/project/codecov)|0.004| -|pypi|[asv](https://pypi.org/project/asv)|0.004| -|pypi|[qtpy](https://pypi.org/project/qtpy)|0.004| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.004| -|pypi|[astropy](https://pypi.org/project/astropy)|0.004| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.004| -|pypi|[kaleido](https://pypi.org/project/kaleido)|0.004| -|pypi|[plotly](https://pypi.org/project/plotly)|0.004| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.004| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.004| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.004| -|pypi|[pandas](https://pypi.org/project/pandas)|0.004| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.004| -|pypi|[dask](https://pypi.org/project/dask)|0.004| -|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.004| -|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.004| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[pooch](https://pypi.org/project/pooch)|0.004| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.004| -|pypi|[tifffile](https://pypi.org/project/tifffile)|0.004| -|pypi|[imageio](https://pypi.org/project/imageio)|0.004| -|pypi|[pillow](https://pypi.org/project/pillow)|0.004| -|pypi|[networkx](https://pypi.org/project/networkx)|0.004| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|0.003| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.002| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.002| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.002| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.002| -|pypi|[brotli](https://pypi.org/project/brotli)|0.002| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.002| -|pypi|[wheel](https://github.com/pypa/wheel)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.01| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.009| +|pypi|[mypy](http://www.mypy-lang.org/)|0.009| +|pypi|[sympy](https://pypi.org/project/sympy)|0.009| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.007| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[scikit-image](https://scikit-image.org)|0.006| +|pypi|[flake8](https://pypi.org/project/flake8)|0.006| +|pypi|[astropy](https://pypi.org/project/astropy)|0.006| +|pypi|[codecov](https://pypi.org/project/codecov)|0.006| +|pypi|[pandas](https://pypi.org/project/pandas)|0.006| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.006| +|pypi|[types-pytz](https://github.com/python/typeshed)|0.005| +|pypi|[pylint](https://pypi.org/project/pylint)|0.005| +|pypi|[cloudnetpy-qc](https://pypi.org/project/cloudnetpy-qc)|0.005| +|pypi|[pytz](https://pypi.org/project/pytz)|0.005| +|pypi|[requests](https://pypi.org/project/requests)|0.005| +|pypi|[xattr](https://pypi.org/project/xattr)|0.005| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.005| +|pypi|[munkres](https://pypi.org/project/munkres)|0.005| +|pypi|[brotli](https://pypi.org/project/brotli)|0.005| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.005| +|pypi|[lz4](https://pypi.org/project/lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[types-urllib3](https://pypi.org/project/types-urllib3)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.004| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[itk](https://pypi.org/project/itk)|0.004| +|pypi|[gdal](https://pypi.org/project/gdal)|0.004| +|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.004| +|pypi|[invoke](https://pypi.org/project/invoke)|0.004| +|pypi|[wheel](https://pypi.org/project/wheel)|0.004| +|pypi|[psutil](https://pypi.org/project/psutil)|0.004| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.004| +|pypi|[av](https://pypi.org/project/av)|0.004| +|pypi|[pydot](https://pypi.org/project/pydot)|0.004| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.004| +|pypi|[texext](https://pypi.org/project/texext)|0.004| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.004| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| +|pypi|[imageio](https://github.com/imageio/imageio)|0.003| +|pypi|[networkx](https://networkx.org/)|0.003| +|pypi|[PyWavelets](https://github.com/PyWavelets/pywt)|0.003| +|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|0.002| +|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|0.002| +|pypi|[asv](https://pypi.org/project/asv)|0.002| +|pypi|[qtpy](https://pypi.org/project/qtpy)|0.002| +|pypi|[pyamg](https://pypi.org/project/pyamg)|0.002| +|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.002| +|pypi|[kaleido](https://pypi.org/project/kaleido)|0.002| +|pypi|[plotly](https://pypi.org/project/plotly)|0.002| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.002| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.002| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.002| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.002| +|pypi|[dask](https://pypi.org/project/dask)|0.002| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.002| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.002| +|pypi|[pooch](https://pypi.org/project/pooch)|0.002| +|pypi|[cloudnetpy](https://github.com/actris-cloudnet/cloudnetpy)|0.001| |pypi|[cloudnetpy_qc](https://github.com/actris-cloudnet/cloudnetpy-qc)|0.001| -|pypi|[scikit-image](https://scikit-image.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[cftime](https://pypi.org/project/cftime)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/actris-cloudnet/cloudnetpy/badge.png b/_repos/github/actris-cloudnet/cloudnetpy/badge.png index 5e4b43c0..385627e2 100644 Binary files a/_repos/github/actris-cloudnet/cloudnetpy/badge.png and b/_repos/github/actris-cloudnet/cloudnetpy/badge.png differ diff --git a/_repos/github/actris-cloudnet/cloudnetpy/data.json b/_repos/github/actris-cloudnet/cloudnetpy/data.json index bdf165e2..5eacb123 100644 --- a/_repos/github/actris-cloudnet/cloudnetpy/data.json +++ b/_repos/github/actris-cloudnet/cloudnetpy/data.json @@ -6,313 +6,365 @@ } }, "pypi": { - "wheel": { - "credit": 0.0012375000000000025, - "url": "https://github.com/pypa/wheel" + "cloudnetpy": { + "credit": 0.0007071428571428645, + "url": "https://github.com/actris-cloudnet/cloudnetpy" }, - "scipy": { - "credit": 0.004737857142857145, - "url": "https://www.scipy.org" + "cloudnetpy_qc": { + "credit": 0.0007071428571428645, + "url": "https://github.com/actris-cloudnet/cloudnetpy-qc" + }, + "matplotlib": { + "credit": 0.10448696232339089, + "url": "https://matplotlib.org" }, "netCDF4": { - "credit": 0.18500624999999998, + "credit": 0.11110302197802198, "url": "http://github.com/Unidata/netcdf4-python" }, - "matplotlib": { - "credit": 0.12725035714285715, - "url": "https://matplotlib.org" + "scikit-image": { + "credit": 0.006092307692307713, + "url": "https://scikit-image.org" }, - "requests": { - "credit": 0.005027730468750002, - "url": "https://requests.readthedocs.io" + "cycler": { + "credit": 0.07071428571428572, + "url": "https://github.com/matplotlib/cycler" }, - "pytz": { - "credit": 0.12375, - "url": "http://pythonhosted.org/pytz" + "fonttools": { + "credit": 0.0007071428571428645, + "url": "http://github.com/fonttools/fonttools" }, - "cloudnetpy_qc": { - "credit": 0.0012375000000000025, - "url": "https://github.com/actris-cloudnet/cloudnetpy-qc" + "imageio": { + "credit": 0.002707346938775517, + "url": "https://github.com/imageio/imageio" }, - "scikit-image": { - "credit": 0.0012375000000000025, - "url": "https://scikit-image.org" + "kiwisolver": { + "credit": 0.0007071428571428645, + "url": "https://github.com/nucleic/kiwi" }, - "pytest-cov": { - "credit": 0.0041129196428571465, - "url": "https://github.com/pytest-dev/pytest-cov" + "networkx": { + "credit": 0.002707346938775517, + "url": "https://networkx.org/" }, - "pytest": { - "credit": 0.015158734151785716, - "url": "https://docs.pytest.org/en/latest/" + "pillow": { + "credit": 0.009892290547798072, + "url": "https://python-pillow.org" }, - "numpy": { - "credit": 0.18726910714285713, - "url": "https://www.numpy.org" + "PyWavelets": { + "credit": 0.002707346938775517, + "url": "https://github.com/PyWavelets/pywt" }, - "win-inet-pton": { - "credit": 0.017501785714285713, - "url": "https://github.com/hickeroar/win_inet_pton" + "tifffile": { + "credit": 0.00639193340494093, + "url": "https://www.lfd.uci.edu/~gohlke/" }, - "PySocks": { - "credit": 0.01942698214285714, - "url": "https://github.com/Anorov/PySocks" + "cftime": { + "credit": 0.0007071428571428645, + "url": "https://pypi.org/project/cftime" }, - "charset-normalizer": { - "credit": 0.00017501785714285623, - "url": "https://github.com/ousret/charset_normalizer" + "types-pytz": { + "credit": 0.0053851648351648344, + "url": "https://github.com/python/typeshed" }, - "idna": { - "credit": 0.01942698214285714, - "url": "https://github.com/kjd/idna" + "types-requests": { + "credit": 5.3851648351648136e-05, + "url": "https://github.com/python/typeshed" }, - "chardet": { - "credit": 0.017501785714285713, - "url": "https://github.com/chardet/chardet" + "mypy": { + "credit": 0.008885521978021976, + "url": "http://www.mypy-lang.org/" }, - "certifi": { - "credit": 0.01942698214285714, - "url": "https://certifiio.readthedocs.io/en/latest/" + "pylint": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/pylint" }, - "urllib3": { - "credit": 0.00017501785714285623, - "url": "https://urllib3.readthedocs.io/" + "pytest-cov": { + "credit": 0.01894575895439147, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest": { + "credit": 0.01894575895439147, + "url": "https://pypi.org/project/pytest" + }, + "cloudnetpy-qc": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/cloudnetpy-qc" + }, + "pytz": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/pytz" + }, + "requests": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/requests" + }, + "scipy": { + "credit": 0.016270890894819465, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.20170479054779805, + "url": "https://pypi.org/project/numpy" }, "pytest-faulthandler": { - "credit": 3.500357142857159e-05, - "url": "https://github.com/pytest-dev/pytest-faulthandler" + "credit": 0.0020002040816326527, + "url": "https://pypi.org/project/pytest-faulthandler" }, "pytest-localserver": { - "credit": 3.500357142857159e-05, - "url": "https://github.com/pytest-dev/pytest-localserver" + "credit": 0.0020002040816326527, + "url": "https://pypi.org/project/pytest-localserver" }, "flake8": { - "credit": 0.0035003571428571427, + "credit": 0.005684790547798066, "url": "https://pypi.org/project/flake8" }, "codecov": { - "credit": 0.0035003571428571427, + "credit": 0.005500561224489796, "url": "https://pypi.org/project/codecov" }, "asv": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/asv" }, "qtpy": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/qtpy" }, "pyamg": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/pyamg" }, "astropy": { - "credit": 0.0035003571428571427, + "credit": 0.005684790547798066, "url": "https://pypi.org/project/astropy" }, "SimpleITK": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/SimpleITK" }, "kaleido": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/kaleido" }, "plotly": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/plotly" }, "ipywidgets": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/ipywidgets" }, "myst-parser": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/myst-parser" }, "seaborn": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/seaborn" }, "pandas": { - "credit": 0.0035003571428571427, + "credit": 0.005500561224489796, "url": "https://pypi.org/project/pandas" }, "cloudpickle": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/cloudpickle" }, "dask": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/dask" }, "scikit-learn": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/scikit-learn" }, "pytest-runner": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/pytest-runner" }, "sphinx-copybutton": { - "credit": 0.0035003571428571427, + "credit": 0.0063756505102040804, "url": "https://pypi.org/project/sphinx-copybutton" }, "numpydoc": { - "credit": 0.0035003571428571427, + "credit": 0.009185147690655208, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.0035003571428571427, + "credit": 0.005500561224489796, "url": "https://pypi.org/project/sphinx-gallery" }, "sphinx": { - "credit": 0.0035003571428571427, + "credit": 0.013560594119226636, "url": "https://pypi.org/project/sphinx" }, "pooch": { - "credit": 0.0035003571428571427, + "credit": 0.0020002040816326527, "url": "https://pypi.org/project/pooch" }, "packaging": { - "credit": 0.007290587611607143, + "credit": 0.0063756505102040804, "url": "https://pypi.org/project/packaging" }, - "PyWavelets": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/PyWavelets" + "xattr": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/xattr" }, - "tifffile": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/tifffile" + "unicodedata2": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/unicodedata2" }, - "imageio": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/imageio" + "munkres": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/munkres" }, - "pillow": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/pillow" + "brotli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotli" }, - "networkx": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/networkx" + "brotlicffi": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotlicffi" }, - "virtualenv": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/virtualenv" + "skia-pathops": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/skia-pathops" }, - "pytest-xdist": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/pytest-xdist" + "sympy": { + "credit": 0.008885521978021976, + "url": "https://pypi.org/project/sympy" }, - "six": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/six" + "lz4": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/lz4" }, - "process-tests": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/process-tests" + "zopfli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/zopfli" }, - "hunter": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/hunter" + "lxml": { + "credit": 0.02638730769230769, + "url": "https://pypi.org/project/lxml" }, - "fields": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/fields" + "fs": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/fs" }, - "coverage": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/coverage" + "itk": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/itk" }, - "xmlschema": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/xmlschema" + "gdal": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/gdal" }, - "pygments": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/pygments" + "pydata-sphinx-theme": { + "credit": 0.0071849436090225555, + "url": "https://pypi.org/project/pydata-sphinx-theme" }, - "nose": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/nose" + "black": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/black" }, - "mock": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/mock" + "fsspec": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/fsspec" }, - "hypothesis": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/hypothesis" + "invoke": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/invoke" }, - "argcomplete": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/argcomplete" + "wheel": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/wheel" }, - "colorama": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/colorama" + "psutil": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/psutil" }, - "atomicwrites": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/atomicwrites" + "imageio-ffmpeg": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/imageio-ffmpeg" }, - "importlib-metadata": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/importlib-metadata" + "av": { + "credit": 0.0036845864661654132, + "url": "https://pypi.org/project/av" }, - "tomli": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/tomli" + "typing-extensions": { + "credit": 0.07000714285714285, + "url": "https://pypi.org/project/typing-extensions" }, - "py": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/py" + "pydot": { + "credit": 0.0035003571428571427, + "url": "https://pypi.org/project/pydot" }, - "pluggy": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/pluggy" + "pygraphviz": { + "credit": 0.0035003571428571427, + "url": "https://pypi.org/project/pygraphviz" }, - "iniconfig": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/iniconfig" + "texext": { + "credit": 0.0035003571428571427, + "url": "https://pypi.org/project/texext" }, - "attrs": { - "credit": 0.0037902304687499997, - "url": "https://pypi.org/project/attrs" + "nb2plots": { + "credit": 0.0035003571428571427, + "url": "https://pypi.org/project/nb2plots" }, - "unicodedata2": { - "credit": 0.017326767857142857, - "url": "https://pypi.org/project/unicodedata2" + "pre-commit": { + "credit": 0.0035003571428571427, + "url": "https://pypi.org/project/pre-commit" }, - "ipaddress": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/ipaddress" + "pytest-timeout": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pytest-timeout" }, - "cryptography": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/cryptography" + "pyroma": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pyroma" }, - "pyOpenSSL": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/pyOpenSSL" + "markdown2": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/markdown2" }, - "brotlipy": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/brotlipy" + "defusedxml": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/defusedxml" }, - "brotli": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/brotli" + "coverage": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/coverage" }, - "brotlicffi": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/brotlicffi" + "check-manifest": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-issues" + }, + "olefile": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/olefile" + }, + "imagecodecs": { + "credit": 0.017501785714285713, + "url": "https://pypi.org/project/imagecodecs" }, - "werkzeug": { - "credit": 0.003465353571428571, - "url": "https://pypi.org/project/werkzeug" + "types-urllib3": { + "credit": 0.005331313186813186, + "url": "https://pypi.org/project/types-urllib3" } } } \ No newline at end of file diff --git a/_repos/github/adbar/htmldate/badge.png b/_repos/github/adbar/htmldate/badge.png index d4a5bd7b..fb383df3 100644 Binary files a/_repos/github/adbar/htmldate/badge.png and b/_repos/github/adbar/htmldate/badge.png differ diff --git a/_repos/github/aiidateam/kiwipy/README.md b/_repos/github/aiidateam/kiwipy/README.md index 681110c3..f7a71265 100644 --- a/_repos/github/aiidateam/kiwipy/README.md +++ b/_repos/github/aiidateam/kiwipy/README.md @@ -8,26 +8,43 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[shortuuid](https://github.com/skorokithakis/shortuuid/)|0.247| -|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.247| -|pypi|[packaging](https://pypi.org/project/packaging)|0.245| -|pypi|[deprecation](http://deprecation.readthedocs.io/)|0.019| -|pypi|[docutils](http://docutils.sourceforge.net/)|0.016| -|pypi|[Sphinx](https://www.sphinx-doc.org/)|0.016| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.016| -|pypi|[yapf](https://pypi.org/project/yapf)|0.016| -|pypi|[twine](https://pypi.org/project/twine)|0.016| -|pypi|[pytest](https://pypi.org/project/pytest)|0.016| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.016| -|pypi|[pylint](https://pypi.org/project/pylint)|0.016| -|pypi|[prospector](https://pypi.org/project/prospector)|0.016| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.016| -|pypi|[pip](https://pypi.org/project/pip)|0.016| -|pypi|[ipython](https://pypi.org/project/ipython)|0.016| -|pypi|[grayskull](https://pypi.org/project/grayskull)|0.016| -|pypi|[async-generator](https://pypi.org/project/async-generator)|0.016| +|pypi|[shortuuid](https://github.com/skorokithakis/shortuuid/)|0.207| +|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.198| +|pypi|[packaging](https://pypi.org/project/packaging)|0.196| +|pypi|[deprecation](http://deprecation.readthedocs.io/)|0.024| +|pypi|[pytest](https://pypi.org/project/pytest)|0.022| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.022| +|pypi|[pylint](https://pypi.org/project/pylint)|0.022| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.022| +|pypi|[docutils](https://pypi.org/project/docutils)|0.022| +|pypi|[async-generator](https://pypi.org/project/async-generator)|0.022| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.013| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.013| +|pypi|[yapf](https://pypi.org/project/yapf)|0.013| +|pypi|[twine](https://pypi.org/project/twine)|0.013| +|pypi|[prospector](https://pypi.org/project/prospector)|0.013| +|pypi|[pip](https://pypi.org/project/pip)|0.013| +|pypi|[ipython](https://pypi.org/project/ipython)|0.013| +|pypi|[grayskull](https://pypi.org/project/grayskull)|0.013| +|pypi|[pytray](https://github.com/muhrin/pytray.git)|0.011| |setup.py|github/aiidateam/kiwipy|0.01| -|pypi|[pytray](https://github.com/muhrin/pytray.git)|0.002| +|pypi|[msgpack](https://msgpack.org/)|0.009| +|pypi|[pytest-benchmark](https://github.com/ionelmc/pytest-benchmark)|0.009| +|pypi|[pytest-notebook](https://github.com/chrisjsewell/pytest-notebook)|0.009| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.009| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.009| +|pypi|[coverage](https://pypi.org/project/coverage)|0.009| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.009| +|pypi|[aio-pika](https://pypi.org/project/aio-pika)|0.009| +|pypi|[sphinx-autobuild](https://pypi.org/project/sphinx-autobuild)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[pandoc](https://pypi.org/project/pandoc)|0.009| +|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.009| +|pypi|[jupyter](https://pypi.org/project/jupyter)|0.009| +|pypi|[twisted](https://pypi.org/project/twisted)|0.003| +|pypi|[tornado](https://pypi.org/project/tornado)|0.003| +|pypi|[gevent](https://pypi.org/project/gevent)|0.003| +|pypi|[kiwipy](https://github.com/aiidateam/kiwipy.git)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/aiidateam/kiwipy/badge.png b/_repos/github/aiidateam/kiwipy/badge.png index 12388721..62503c2c 100644 Binary files a/_repos/github/aiidateam/kiwipy/badge.png and b/_repos/github/aiidateam/kiwipy/badge.png differ diff --git a/_repos/github/aiidateam/kiwipy/data.json b/_repos/github/aiidateam/kiwipy/data.json index cbcf8f87..f23ea99e 100644 --- a/_repos/github/aiidateam/kiwipy/data.json +++ b/_repos/github/aiidateam/kiwipy/data.json @@ -6,81 +6,153 @@ } }, "pypi": { - "shortuuid": { - "credit": 0.2475, - "url": "https://github.com/skorokithakis/shortuuid/" - }, - "async_generator": { - "credit": 0.2475, - "url": "https://github.com/python-trio/async_generator" + "kiwipy": { + "credit": 0.0019800000000000095, + "url": "https://github.com/aiidateam/kiwipy.git" }, "pytray": { - "credit": 0.002475000000000005, + "credit": 0.010502608695652184, "url": "https://github.com/muhrin/pytray.git" }, + "async_generator": { + "credit": 0.198, + "url": "https://github.com/python-trio/async_generator" + }, "deprecation": { - "credit": 0.018810000000000004, + "credit": 0.02357060869565218, "url": "http://deprecation.readthedocs.io/" }, - "docutils": { - "credit": 0.016335, - "url": "http://docutils.sourceforge.net/" + "shortuuid": { + "credit": 0.20652260869565217, + "url": "https://github.com/skorokithakis/shortuuid/" }, - "Sphinx": { - "credit": 0.016335, - "url": "https://www.sphinx-doc.org/" + "msgpack": { + "credit": 0.008522608695652174, + "url": "https://msgpack.org/" }, - "Pygments": { - "credit": 0.016335, - "url": "https://pypi.org/project/Pygments" + "pika": { + "credit": 8.522608695652259e-05, + "url": "https://pika.readthedocs.io" }, - "yapf": { - "credit": 0.016335, - "url": "https://pypi.org/project/yapf" + "pytest-benchmark": { + "credit": 0.008522608695652174, + "url": "https://github.com/ionelmc/pytest-benchmark" }, - "twine": { - "credit": 0.016335, - "url": "https://pypi.org/project/twine" + "pytest-notebook": { + "credit": 0.008522608695652174, + "url": "https://github.com/chrisjsewell/pytest-notebook" + }, + "pytest-asyncio": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/pytest-asyncio" }, "pytest": { - "credit": 0.016335, + "credit": 0.021590608695652172, "url": "https://pypi.org/project/pytest" }, "pytest-cov": { - "credit": 0.016335, + "credit": 0.021590608695652172, "url": "https://pypi.org/project/pytest-cov" }, + "ipykernel": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/ipykernel" + }, + "coverage": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/coverage" + }, + "pyyaml": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/pyyaml" + }, + "aio-pika": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/aio-pika" + }, "pylint": { - "credit": 0.016335, + "credit": 0.021590608695652172, "url": "https://pypi.org/project/pylint" }, - "prospector": { - "credit": 0.016335, - "url": "https://pypi.org/project/prospector" - }, "pre-commit": { - "credit": 0.016335, + "credit": 0.021590608695652172, "url": "https://pypi.org/project/pre-commit" }, + "sphinx-autobuild": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/sphinx-autobuild" + }, + "sphinx": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/sphinx" + }, + "pandoc": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/pandoc" + }, + "nbsphinx": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/nbsphinx" + }, + "jupyter": { + "credit": 0.008522608695652174, + "url": "https://pypi.org/project/jupyter" + }, + "docutils": { + "credit": 0.021590608695652172, + "url": "https://pypi.org/project/docutils" + }, + "async-generator": { + "credit": 0.021590608695652172, + "url": "https://pypi.org/project/async-generator" + }, + "Sphinx": { + "credit": 0.013068, + "url": "https://pypi.org/project/Sphinx" + }, + "Pygments": { + "credit": 0.013068, + "url": "https://pypi.org/project/Pygments" + }, + "yapf": { + "credit": 0.013068, + "url": "https://pypi.org/project/yapf" + }, + "twine": { + "credit": 0.013068, + "url": "https://pypi.org/project/twine" + }, + "prospector": { + "credit": 0.013068, + "url": "https://pypi.org/project/prospector" + }, "pip": { - "credit": 0.016335, + "credit": 0.013068, "url": "https://pypi.org/project/pip" }, "ipython": { - "credit": 0.016335, + "credit": 0.013068, "url": "https://pypi.org/project/ipython" }, "grayskull": { - "credit": 0.016335, + "credit": 0.013068, "url": "https://pypi.org/project/grayskull" }, - "async-generator": { - "credit": 0.016335, - "url": "https://pypi.org/project/async-generator" - }, "packaging": { - "credit": 0.245025, + "credit": 0.19602, "url": "https://pypi.org/project/packaging" + }, + "twisted": { + "credit": 0.0028124608695652173, + "url": "https://pypi.org/project/twisted" + }, + "tornado": { + "credit": 0.0028124608695652173, + "url": "https://pypi.org/project/tornado" + }, + "gevent": { + "credit": 0.0028124608695652173, + "url": "https://pypi.org/project/gevent" } } } \ No newline at end of file diff --git a/_repos/github/amrex-astro/Castro/README.md b/_repos/github/amrex-astro/Castro/README.md index 7e638ab8..f74e8b2d 100644 --- a/_repos/github/amrex-astro/Castro/README.md +++ b/_repos/github/amrex-astro/Castro/README.md @@ -15,7 +15,7 @@ exclude_from_search: true |pypi|[pandoc](https://boisgera.github.io/pandoc/)|0.083| |pypi|[jupyter](http://jupyter.org)|0.083| |pypi|[docutils](https://pypi.org/project/docutils)|0.06| -|pypi|[pygments](https://pypi.org/project/pygments)|0.047| +|pypi|[pygments](https://pypi.org/project/pygments)|0.046| |pypi|[pytest](https://docs.pytest.org/en/latest/)|0.025| |pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.02| |pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.019| @@ -24,8 +24,8 @@ exclude_from_search: true |pypi|[pybtex-docutils](https://pypi.org/project/pybtex-docutils)|0.016| |pypi|[pybtex](https://pypi.org/project/pybtex)|0.016| |requirements.txt|github/amrex-astro/Castro|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| |pypi|[colorama](https://pypi.org/project/colorama)|0.006| -|pypi|[testpath](https://pypi.org/project/testpath)|0.006| |pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.006| |pypi|[nbformat](https://pypi.org/project/nbformat)|0.006| |pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.006| @@ -39,7 +39,6 @@ exclude_from_search: true |pypi|[flake8](https://pypi.org/project/flake8)|0.003| |pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| |pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[packaging](https://pypi.org/project/packaging)|0.003| |pypi|[requests](https://pypi.org/project/requests)|0.003| |pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| |pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| @@ -57,21 +56,24 @@ exclude_from_search: true |pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| |pypi|[tornado](https://pypi.org/project/tornado)|0.003| |pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|0.003| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.003| |pypi|[pytest-dependency](https://pypi.org/project/pytest-dependency)|0.003| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.003| -|pypi|[nbclient](https://pypi.org/project/nbclient)|0.003| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.003| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| +|pypi|[tinycss2](https://pypi.org/project/tinycss2)|0.003| |pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|0.003| -|pypi|[bleach](https://pypi.org/project/bleach)|0.003| -|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.003| -|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.003| +|pypi|[nbclient](https://pypi.org/project/nbclient)|0.003| +|pypi|[mistune](https://pypi.org/project/mistune)|0.003| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.003| |pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|0.003| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.003| |pypi|[jinja2](https://pypi.org/project/jinja2)|0.003| -|pypi|[mistune](https://pypi.org/project/mistune)|0.003| +|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.003| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| +|pypi|[bleach](https://pypi.org/project/bleach)|0.003| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.003| |pypi|[trio](https://pypi.org/project/trio)|0.003| |pypi|[pandas](https://pypi.org/project/pandas)|0.003| |pypi|[curio](https://pypi.org/project/curio)|0.003| +|pypi|[testpath](https://pypi.org/project/testpath)|0.003| |pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.003| |pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.003| |pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|0.003| diff --git a/_repos/github/amrex-astro/Castro/badge.png b/_repos/github/amrex-astro/Castro/badge.png index cc7d2f87..bcc7a003 100644 Binary files a/_repos/github/amrex-astro/Castro/badge.png and b/_repos/github/amrex-astro/Castro/badge.png differ diff --git a/_repos/github/amrex-astro/Castro/data.json b/_repos/github/amrex-astro/Castro/data.json index f7310445..f02a7e4c 100644 --- a/_repos/github/amrex-astro/Castro/data.json +++ b/_repos/github/amrex-astro/Castro/data.json @@ -55,7 +55,7 @@ "url": "https://github.com/sbrunner/sphinx-prompt" }, "pytest": { - "credit": 0.02546584615384615, + "credit": 0.025241464285714284, "url": "https://docs.pytest.org/en/latest/" }, "types-requests": { @@ -95,7 +95,7 @@ "url": "https://pypi.org/project/importlib-metadata" }, "packaging": { - "credit": 0.003267, + "credit": 0.006183964285714286, "url": "https://pypi.org/project/packaging" }, "requests": { @@ -155,7 +155,7 @@ "url": "https://pypi.org/project/sphinxcontrib-applehelp" }, "sphinx": { - "credit": 0.10115134615384615, + "credit": 0.10092696428571428, "url": "https://pypi.org/project/sphinx" }, "dataclasses": { @@ -175,7 +175,7 @@ "url": "https://pypi.org/project/matplotlib" }, "pytest-cov": { - "credit": 0.019476346153846153, + "credit": 0.019251964285714285, "url": "https://pypi.org/project/pytest-cov" }, "trio": { @@ -191,7 +191,7 @@ "url": "https://pypi.org/project/curio" }, "testpath": { - "credit": 0.0058638461538461535, + "credit": 0.0027225, "url": "https://pypi.org/project/testpath" }, "pytest-asyncio": { @@ -211,15 +211,15 @@ "url": "https://pypi.org/project/notebook" }, "ipywidgets": { - "credit": 0.0058638461538461535, + "credit": 0.005639464285714286, "url": "https://pypi.org/project/ipywidgets" }, "nbformat": { - "credit": 0.0058638461538461535, + "credit": 0.005639464285714286, "url": "https://pypi.org/project/nbformat" }, "ipykernel": { - "credit": 0.0058638461538461535, + "credit": 0.005639464285714286, "url": "https://pypi.org/project/ipykernel" }, "black": { @@ -235,7 +235,7 @@ "url": "https://pypi.org/project/pexpect" }, "traitlets": { - "credit": 0.0058638461538461535, + "credit": 0.005639464285714286, "url": "https://pypi.org/project/traitlets" }, "stack-data": { @@ -247,7 +247,7 @@ "url": "https://pypi.org/project/setuptools" }, "pygments": { - "credit": 0.04670134615384615, + "credit": 0.04647696428571428, "url": "https://pypi.org/project/pygments" }, "prompt-toolkit": { @@ -275,72 +275,80 @@ "url": "https://pypi.org/project/backcall" }, "ipython": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/ipython" }, "nbsphinx": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/nbsphinx" }, "sphinx-rtd-theme": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "tornado": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/tornado" }, "pyppeteer": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/pyppeteer" }, + "pre-commit": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/pre-commit" + }, "pytest-dependency": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/pytest-dependency" }, - "MarkupSafe": { - "credit": 0.003141346153846154, - "url": "https://pypi.org/project/MarkupSafe" - }, - "nbclient": { - "credit": 0.003141346153846154, - "url": "https://pypi.org/project/nbclient" - }, - "beautifulsoup4": { - "credit": 0.003141346153846154, - "url": "https://pypi.org/project/beautifulsoup4" - }, - "defusedxml": { - "credit": 0.003141346153846154, - "url": "https://pypi.org/project/defusedxml" + "tinycss2": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/tinycss2" }, "pandocfilters": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/pandocfilters" }, - "bleach": { - "credit": 0.003141346153846154, - "url": "https://pypi.org/project/bleach" + "nbclient": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/nbclient" }, - "entrypoints": { - "credit": 0.003141346153846154, - "url": "https://pypi.org/project/entrypoints" + "mistune": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/mistune" }, - "jupyter-core": { - "credit": 0.003141346153846154, - "url": "https://pypi.org/project/jupyter-core" + "MarkupSafe": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/MarkupSafe" }, "jupyterlab-pygments": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/jupyterlab-pygments" }, + "jupyter-core": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/jupyter-core" + }, "jinja2": { - "credit": 0.003141346153846154, + "credit": 0.0029169642857142858, "url": "https://pypi.org/project/jinja2" }, - "mistune": { - "credit": 0.003141346153846154, - "url": "https://pypi.org/project/mistune" + "entrypoints": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/entrypoints" + }, + "defusedxml": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/defusedxml" + }, + "bleach": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/bleach" + }, + "beautifulsoup4": { + "credit": 0.0029169642857142858, + "url": "https://pypi.org/project/beautifulsoup4" } } } \ No newline at end of file diff --git a/_repos/github/amusecode/amuse/badge.png b/_repos/github/amusecode/amuse/badge.png index 00a7b8e5..7412612e 100644 Binary files a/_repos/github/amusecode/amuse/badge.png and b/_repos/github/amusecode/amuse/badge.png differ diff --git a/_repos/github/andr1976/HydDown/badge.png b/_repos/github/andr1976/HydDown/badge.png index 2da278e0..8e1300ee 100644 Binary files a/_repos/github/andr1976/HydDown/badge.png and b/_repos/github/andr1976/HydDown/badge.png differ diff --git a/_repos/github/antoinediez/Sisyphe/README.md b/_repos/github/antoinediez/Sisyphe/README.md index d5c7af37..159d133d 100644 --- a/_repos/github/antoinediez/Sisyphe/README.md +++ b/_repos/github/antoinediez/Sisyphe/README.md @@ -8,13 +8,48 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.196| +|pypi|[matplotlib](https://matplotlib.org)|0.107| +|pypi|[sisyphe](https://sisyphe.readthedocs.io)|0.099| +|pypi|[pykeops](http://www.kernel-operations.io/)|0.099| +|pypi|[keopscore](http://www.kernel-operations.io/)|0.099| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.099| +|pypi|[pybind11-global](https://pypi.org/project/pybind11-global)|0.098| +|pypi|[pytest](https://pypi.org/project/pytest)|0.019| +|pypi|[cffi](https://pypi.org/project/cffi)|0.011| |setup.py|github/antoinediez/Sisyphe|0.01| -|pypi|[numpy](https://www.numpy.org)|0.004| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[matplotlib](https://matplotlib.org)|0.002| -|pypi|[torch](https://pytorch.org/)|0.002| -|pypi|[pykeops](http://www.kernel-operations.io/)|0.002| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.002| +|pypi|[coverage](https://pypi.org/project/coverage)|0.01| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.008| +|pypi|[brotli](https://github.com/google/brotli)|0.008| +|pypi|[lxml](https://lxml.de/)|0.008| +|pypi|[fs](https://github.com/PyFilesystem/pyfilesystem2)|0.008| +|pypi|[numpy](https://pypi.org/project/numpy)|0.007| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.007| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.007| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.007| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.004| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.004| +|pypi|[enum34](https://pypi.org/project/enum34)|0.004| +|pypi|[psutil](https://pypi.org/project/psutil)|0.001| +|pypi|[flake8](https://pypi.org/project/flake8)|0.001| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.001| +|pypi|[torch](https://pytorch.org/)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[pybind11](https://github.com/pybind/pybind11)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/antoinediez/Sisyphe/badge.png b/_repos/github/antoinediez/Sisyphe/badge.png index 635fe75a..8f4c2ab4 100644 Binary files a/_repos/github/antoinediez/Sisyphe/badge.png and b/_repos/github/antoinediez/Sisyphe/badge.png differ diff --git a/_repos/github/antoinediez/Sisyphe/data.json b/_repos/github/antoinediez/Sisyphe/data.json index a3c07460..6eecdab6 100644 --- a/_repos/github/antoinediez/Sisyphe/data.json +++ b/_repos/github/antoinediez/Sisyphe/data.json @@ -6,29 +6,201 @@ } }, "pypi": { - "numpy": { - "credit": 0.0039402, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.00198, - "url": "https://www.scipy.org" + "sisyphe": { + "credit": 0.099, + "url": "https://sisyphe.readthedocs.io" }, "matplotlib": { - "credit": 0.00198, + "credit": 0.10653923076923077, "url": "https://matplotlib.org" }, + "pykeops": { + "credit": 0.099, + "url": "http://www.kernel-operations.io/" + }, + "keopscore": { + "credit": 0.099, + "url": "http://www.kernel-operations.io/" + }, "torch": { - "credit": 0.00198, + "credit": 0.0009900000000000048, "url": "https://pytorch.org/" }, - "pykeops": { - "credit": 0.00198, - "url": "http://www.kernel-operations.io/" + "cycler": { + "credit": 0.099, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0009900000000000048, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0009900000000000048, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0009900000000000048, + "url": "https://python-pillow.org" + }, + "pybind11": { + "credit": 0.0009900000000000048, + "url": "https://github.com/pybind/pybind11" }, "typing-extensions": { - "credit": 0.0019602, + "credit": 0.19602, "url": "https://typing.readthedocs.io/" + }, + "xattr": { + "credit": 7.539230769230791e-05, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 7.539230769230791e-05, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.007539230769230769, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.007539230769230769, + "url": "https://github.com/google/brotli" + }, + "scipy": { + "credit": 7.539230769230791e-05, + "url": "https://www.scipy.org" + }, + "brotlicffi": { + "credit": 7.539230769230791e-05, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 7.539230769230791e-05, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 7.539230769230791e-05, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 7.539230769230878e-05, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 7.539230769230791e-05, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.007539230769230769, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 0.007539230769230769, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "pytest-timeout": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.007369598076923077, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest": { + "credit": 0.018565355769230768, + "url": "https://pypi.org/project/pytest" + }, + "pyroma": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.006125625, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.006125625, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.006125625, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.009857544230769231, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.006125625, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.007369598076923077, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.006125625, + "url": "https://pypi.org/project/olefile" + }, + "pybind11-global": { + "credit": 0.09801, + "url": "https://pypi.org/project/pybind11-global" + }, + "cffi": { + "credit": 0.011195757692307693, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.0037319192307692308, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.0037319192307692308, + "url": "https://pypi.org/project/pytest-xdist" + }, + "numpy": { + "credit": 0.0074638384615384615, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.0037319192307692308, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.0074638384615384615, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" } } } \ No newline at end of file diff --git a/_repos/github/arabic-digital-humanities/adhtools/badge.png b/_repos/github/arabic-digital-humanities/adhtools/badge.png index c291e70f..669396d1 100644 Binary files a/_repos/github/arabic-digital-humanities/adhtools/badge.png and b/_repos/github/arabic-digital-humanities/adhtools/badge.png differ diff --git a/_repos/github/arnikz/PIQMIe/badge.png b/_repos/github/arnikz/PIQMIe/badge.png index 8b4e1570..66f06647 100644 Binary files a/_repos/github/arnikz/PIQMIe/badge.png and b/_repos/github/arnikz/PIQMIe/badge.png differ diff --git a/_repos/github/aspuru-guzik-group/funsies/README.md b/_repos/github/aspuru-guzik-group/funsies/README.md index ee15c6e2..e4c87701 100644 --- a/_repos/github/aspuru-guzik-group/funsies/README.md +++ b/_repos/github/aspuru-guzik-group/funsies/README.md @@ -8,60 +8,39 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.124| -|pypi|[typing_extensions](https://typing.readthedocs.io/)|0.124| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.219| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.135| |pypi|[chevron](https://github.com/noahmorrison/chevron)|0.124| -|pypi|[typing](https://docs.python.org/3/library/typing.html)|0.123| -|pypi|[redis](https://github.com/redis/redis-py)|0.062| -|pypi|[click](https://pypi.org/project/click)|0.061| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.02| -|pypi|[packaging](https://pypi.org/project/packaging)|0.02| -|pypi|[pytest](https://pypi.org/project/pytest)|0.018| -|pypi|[cryptography](https://github.com/pyca/cryptography)|0.016| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.016| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.015| -|pypi|[hiredis](https://github.com/redis/hiredis-py)|0.014| -|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.014| -|pypi|[deprecated](https://pypi.org/project/deprecated)|0.014| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.011| +|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.124| +|pypi|[redis](https://github.com/redis/redis-py)|0.069| +|pypi|[click](https://pypi.org/project/click)|0.054| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.026| +|pypi|[rq](https://github.com/nvie/rq/)|0.015| +|pypi|[loguru](https://github.com/Delgan/loguru)|0.015| +|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.014| +|pypi|[async-timeout](https://github.com/aio-libs/async-timeout)|0.013| +|pypi|[deprecated](https://github.com/tantale/deprecated)|0.013| +|pypi|[requests](https://pypi.org/project/requests)|0.012| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.012| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.012| +|pypi|[hiredis](https://pypi.org/project/hiredis)|0.012| +|pypi|[packaging](https://pypi.org/project/packaging)|0.012| |setup.py|github/aspuru-guzik-group/funsies|0.01| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| -|pypi|[isort](https://pypi.org/project/isort)|0.009| -|pypi|[black](https://pypi.org/project/black)|0.009| -|pypi|[sphinx-autobuild](https://pypi.org/project/sphinx-autobuild)|0.009| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.009| -|pypi|[tox-travis](https://pypi.org/project/tox-travis)|0.009| -|pypi|[tox](https://pypi.org/project/tox)|0.009| -|pypi|[flake8](https://pypi.org/project/flake8)|0.009| -|pypi|[codecov](https://pypi.org/project/codecov)|0.009| -|pypi|[win32-setctime](https://pypi.org/project/win32-setctime)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[aiocontextvars](https://pypi.org/project/aiocontextvars)|0.009| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.007| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.007| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.007| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.007| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.007| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.007| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.007| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.007| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.007| -|pypi|[ipython](https://pypi.org/project/ipython)|0.007| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.007| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.007| -|pypi|[zipp](https://pypi.org/project/zipp)|0.007| -|pypi|[pretend](https://pypi.org/project/pretend)|0.002| -|pypi|[flaky](https://pypi.org/project/flaky)|0.002| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[idna](https://pypi.org/project/idna)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[certifi](https://pypi.org/project/certifi)|0.002| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| -|pypi|[mypy_extensions](http://www.mypy-lang.org/)|0.001| -|pypi|[rq](https://github.com/nvie/rq/)|0.001| -|pypi|[loguru](https://github.com/Delgan/loguru)|0.001| +|pypi|[isort](https://pypi.org/project/isort)|0.008| +|pypi|[black](https://pypi.org/project/black)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-autobuild](https://pypi.org/project/sphinx-autobuild)|0.008| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.008| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008| +|pypi|[pytest](https://pypi.org/project/pytest)|0.008| +|pypi|[tox-travis](https://pypi.org/project/tox-travis)|0.008| +|pypi|[tox](https://pypi.org/project/tox)|0.008| +|pypi|[flake8](https://pypi.org/project/flake8)|0.008| +|pypi|[codecov](https://pypi.org/project/codecov)|0.008| +|pypi|[win32-setctime](https://pypi.org/project/win32-setctime)|0.008| +|pypi|[colorama](https://pypi.org/project/colorama)|0.008| +|pypi|[aiocontextvars](https://pypi.org/project/aiocontextvars)|0.008| +|pypi|[funsies](https://github.com/aspuru-guzik-group/funsies)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/aspuru-guzik-group/funsies/badge.png b/_repos/github/aspuru-guzik-group/funsies/badge.png index 3db92051..71599bb2 100644 Binary files a/_repos/github/aspuru-guzik-group/funsies/badge.png and b/_repos/github/aspuru-guzik-group/funsies/badge.png differ diff --git a/_repos/github/aspuru-guzik-group/funsies/data.json b/_repos/github/aspuru-guzik-group/funsies/data.json index b8137e7d..61c44f6d 100644 --- a/_repos/github/aspuru-guzik-group/funsies/data.json +++ b/_repos/github/aspuru-guzik-group/funsies/data.json @@ -6,225 +6,133 @@ } }, "pypi": { - "mypy_extensions": { - "credit": 0.0012375000000000025, - "url": "http://www.mypy-lang.org/" + "funsies": { + "credit": 0.0011000000000000038, + "url": "https://github.com/aspuru-guzik-group/funsies" + }, + "rq": { + "credit": 0.014712500000000003, + "url": "https://github.com/nvie/rq/" }, "redis": { - "credit": 0.06249375, + "credit": 0.0691625, "url": "https://github.com/redis/redis-py" }, + "chevron": { + "credit": 0.1236125, + "url": "https://github.com/noahmorrison/chevron" + }, "cloudpickle": { - "credit": 0.12375, + "credit": 0.1236125, "url": "https://github.com/cloudpipe/cloudpickle" }, - "rq": { - "credit": 0.0012375000000000025, - "url": "https://github.com/nvie/rq/" - }, "loguru": { - "credit": 0.0012375000000000025, + "credit": 0.014712500000000003, "url": "https://github.com/Delgan/loguru" }, - "importlib-metadata": { - "credit": 0.014850000000000002, - "url": "https://github.com/python/importlib_metadata" + "async-timeout": { + "credit": 0.013200000000000003, + "url": "https://github.com/aio-libs/async-timeout" + }, + "deprecated": { + "credit": 0.013200000000000003, + "url": "https://github.com/tantale/deprecated" + }, + "wrapt": { + "credit": 0.21889999999999998, + "url": "https://github.com/GrahamDumpleton/wrapt" }, - "typing_extensions": { - "credit": 0.12375, + "typing-extensions": { + "credit": 0.1346125, "url": "https://typing.readthedocs.io/" }, - "chevron": { - "credit": 0.12375, - "url": "https://github.com/noahmorrison/chevron" + "importlib-metadata": { + "credit": 0.0257125, + "url": "https://github.com/python/importlib_metadata" }, - "typing": { - "credit": 0.1225125, - "url": "https://docs.python.org/3/library/typing.html" + "mypy-extensions": { + "credit": 0.0136125, + "url": "https://pypi.org/project/mypy-extensions" + }, + "click": { + "credit": 0.05445, + "url": "https://pypi.org/project/click" }, "requests": { - "credit": 0.00013612500000000083, - "url": "https://requests.readthedocs.io" + "credit": 0.0121, + "url": "https://pypi.org/project/requests" }, "pyopenssl": { - "credit": 0.00013612500000000083, - "url": "https://pyopenssl.org/" + "credit": 0.0121, + "url": "https://pypi.org/project/pyopenssl" }, "cryptography": { - "credit": 0.0158585625, - "url": "https://github.com/pyca/cryptography" + "credit": 0.0121, + "url": "https://pypi.org/project/cryptography" }, "hiredis": { - "credit": 0.0136125, - "url": "https://github.com/redis/hiredis-py" - }, - "typing-extensions": { - "credit": 0.02041875, - "url": "https://typing.readthedocs.io/" - }, - "async-timeout": { - "credit": 0.0136125, - "url": "https://pypi.org/project/async-timeout" + "credit": 0.0121, + "url": "https://pypi.org/project/hiredis" }, "packaging": { - "credit": 0.02041875, + "credit": 0.0121, "url": "https://pypi.org/project/packaging" }, - "deprecated": { - "credit": 0.0136125, - "url": "https://pypi.org/project/deprecated" - }, - "click": { - "credit": 0.06125625, - "url": "https://pypi.org/project/click" - }, "isort": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/isort" }, "black": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/black" }, "sphinx-rtd-theme": { - "credit": 0.010996955357142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx-autobuild": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/sphinx-autobuild" }, "Sphinx": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/Sphinx" }, "pytest-cov": { - "credit": 0.015557142857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.017803205357142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/pytest" }, "tox-travis": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/tox-travis" }, "tox": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/tox" }, "flake8": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/flake8" }, "codecov": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/codecov" }, "win32-setctime": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/win32-setctime" }, "colorama": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/colorama" }, "aiocontextvars": { - "credit": 0.008750892857142856, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/aiocontextvars" - }, - "importlib-resources": { - "credit": 0.00680625, - "url": "https://pypi.org/project/importlib-resources" - }, - "pytest-mypy": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pytest-mypy" - }, - "pytest-black": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pytest-black" - }, - "pytest-perf": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pytest-perf" - }, - "flufl.flake8": { - "credit": 0.00680625, - "url": "https://pypi.org/project/flufl.flake8" - }, - "pyfakefs": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pyfakefs" - }, - "pytest-enabler": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-flake8": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "ipython": { - "credit": 0.00680625, - "url": "https://pypi.org/project/ipython" - }, - "rst.linker": { - "credit": 0.00680625, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.00680625, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.0090523125, - "url": "https://pypi.org/project/sphinx" - }, - "zipp": { - "credit": 0.00680625, - "url": "https://pypi.org/project/zipp" - }, - "win-inet-pton": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/idna" - }, - "chardet": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/chardet" - }, - "certifi": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/certifi" - }, - "urllib3": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/urllib3" - }, - "pretend": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/pretend" - }, - "flaky": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/flaky" } } } \ No newline at end of file diff --git a/_repos/github/athulpg007/AMAT/README.md b/_repos/github/athulpg007/AMAT/README.md index 759def4a..b176f4b0 100644 --- a/_repos/github/athulpg007/AMAT/README.md +++ b/_repos/github/athulpg007/AMAT/README.md @@ -8,10 +8,53 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[matplotlib](https://matplotlib.org)|0.232| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.165| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.163| +|pypi|[numpy](https://www.numpy.org)|0.121| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[coverage](https://pypi.org/project/coverage)|0.018| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.013| +|pypi|[brotli](https://github.com/google/brotli)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.01| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.01| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.01| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.01| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.01| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.01| +|pypi|[olefile](https://pypi.org/project/olefile)|0.01| |setup.py|github/athulpg007/AMAT|0.01| -|pypi|[numpy](https://www.numpy.org)|0.007| -|pypi|[scipy](https://www.scipy.org)|0.003| -|pypi|[matplotlib](https://matplotlib.org)|0.003| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.006| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[AMAT](https://github.com/athulpg007/AMAT)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.002| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scandir](https://pypi.org/project/scandir)|0.002| +|pypi|[typing](https://pypi.org/project/typing)|0.002| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| +|pypi|[scipy](https://www.scipy.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/athulpg007/AMAT/badge.png b/_repos/github/athulpg007/AMAT/badge.png index baf21be6..9436fe66 100644 Binary files a/_repos/github/athulpg007/AMAT/badge.png and b/_repos/github/athulpg007/AMAT/badge.png differ diff --git a/_repos/github/athulpg007/AMAT/data.json b/_repos/github/athulpg007/AMAT/data.json index a1d7d94b..1bb3c398 100644 --- a/_repos/github/athulpg007/AMAT/data.json +++ b/_repos/github/athulpg007/AMAT/data.json @@ -6,17 +6,225 @@ } }, "pypi": { - "numpy": { - "credit": 0.006567, - "url": "https://www.numpy.org" + "AMAT": { + "credit": 0.0016500000000000126, + "url": "https://github.com/athulpg007/AMAT" + }, + "matplotlib": { + "credit": 0.23201538461538462, + "url": "https://matplotlib.org" + }, + "cycler": { + "credit": 0.165, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0016500000000000126, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0016500000000000126, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0016500000000000126, + "url": "https://python-pillow.org" }, "scipy": { - "credit": 0.0033000000000000004, + "credit": 0.0006701538461538498, "url": "https://www.scipy.org" }, - "matplotlib": { - "credit": 0.0033000000000000004, - "url": "https://matplotlib.org" + "numpy": { + "credit": 0.12079523076923077, + "url": "https://www.numpy.org" + }, + "xattr": { + "credit": 0.00012565384615384652, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 0.00012565384615384652, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.012565384615384615, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.012565384615384615, + "url": "https://github.com/google/brotli" + }, + "brotlicffi": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 0.00012565384615384652, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.012565384615384615, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 0.00012565384615384652, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.16335, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 0.00010209375000000062, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.002175382211538462, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.04231295102163461, + "url": "https://docs.pytest.org/en/latest/" + }, + "pyroma": { + "credit": 0.010209375, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.010209375, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.010209375, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.010209375, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.017692650540865384, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.010209375, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.012282663461538461, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.010209375, + "url": "https://pypi.org/project/olefile" + }, + "cffi": { + "credit": 0.01865959615384615, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.007483275540865385, + "url": "https://pypi.org/project/pytest-xdist" + }, + "enum34": { + "credit": 0.007774831730769231, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.002818376502403846, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/virtualenv" + }, + "process-tests": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/atomneb/AtomNeb-py/README.md b/_repos/github/atomneb/AtomNeb-py/README.md index 9685f945..7257f669 100644 --- a/_repos/github/atomneb/AtomNeb-py/README.md +++ b/_repos/github/atomneb/AtomNeb-py/README.md @@ -8,12 +8,18 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.516| -|pypi|[pytest](https://pypi.org/project/pytest)|0.029| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.02| -|pypi|[packaging](https://pypi.org/project/packaging)|0.018| +|pypi|[numpy](https://www.numpy.org)|0.259| +|pypi|[pytest](https://pypi.org/project/pytest)|0.097| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.096| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.096| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.017| |pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.014| |pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.014| +|pypi|[pytest-astropy](https://github.com/astropy/pytest-astropy)|0.014| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.014| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.014| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.014| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.014| |pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.014| |pypi|[ipython](https://pypi.org/project/ipython)|0.014| |pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.014| @@ -32,36 +38,21 @@ exclude_from_search: true |pypi|[certifi](https://pypi.org/project/certifi)|0.014| |pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.014| |pypi|[scipy](https://pypi.org/project/scipy)|0.014| +|pypi|[packaging](https://pypi.org/project/packaging)|0.014| |pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.014| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.014| -|pypi|[tomli](https://pypi.org/project/tomli)|0.014| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.014| -|pypi|[astropy](http://astropy.org)|0.011| |setup.py|github/atomneb/AtomNeb-py|0.01| -|pypi|[Babel](https://pypi.org/project/Babel)|0.007| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.007| -|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|0.004| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| -|pypi|[pytest-remotedata](https://pypi.org/project/pytest-remotedata)|0.004| -|pypi|[pytest-doctestplus](https://github.com/astropy/pytest-doctestplus)|0.003| -|pypi|[towncrier](https://pypi.org/project/towncrier)|0.003| +|pypi|[tomli](https://pypi.org/project/tomli)|0.009| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.009| +|pypi|[astropy](http://astropy.org)|0.005| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.005| +|pypi|[objgraph](https://mg.pov.lt/objgraph/)|0.005| +|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.005| +|pypi|[atomneb](https://atomneb.github.io/AtomNeb-py/)|0.003| |pypi|[filelock](https://pypi.org/project/filelock)|0.002| |pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| |pypi|[psutil](https://pypi.org/project/psutil)|0.002| |pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.002| |pypi|[execnet](https://pypi.org/project/execnet)|0.002| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| -|pypi|[pytest-astropy-header](https://github.com/astropy/pytest-astropy-header)|0.001| -|pypi|[pillow](https://pypi.org/project/pillow)|0.001| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.001| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.001| -|pypi|[astropy-sphinx-theme](https://pypi.org/project/astropy-sphinx-theme)|0.001| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| -|pypi|[attrs](https://pypi.org/project/attrs)|0.001| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.001| -|pypi|[pytest-filter-subpackage](https://pypi.org/project/pytest-filter-subpackage)|0.001| -|pypi|[pytest-arraydiff](https://pypi.org/project/pytest-arraydiff)|0.001| -|pypi|[pytest-openfiles](https://pypi.org/project/pytest-openfiles)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/atomneb/AtomNeb-py/badge.png b/_repos/github/atomneb/AtomNeb-py/badge.png index b7c95387..e2490984 100644 Binary files a/_repos/github/atomneb/AtomNeb-py/badge.png and b/_repos/github/atomneb/AtomNeb-py/badge.png differ diff --git a/_repos/github/atomneb/AtomNeb-py/data.json b/_repos/github/atomneb/AtomNeb-py/data.json index 624f84b9..8d5b031d 100644 --- a/_repos/github/atomneb/AtomNeb-py/data.json +++ b/_repos/github/atomneb/AtomNeb-py/data.json @@ -6,245 +6,181 @@ } }, "pypi": { - "numpy": { - "credit": 0.5159321357142858, - "url": "https://www.numpy.org" + "atomneb": { + "credit": 0.003300000000000025, + "url": "https://atomneb.github.io/AtomNeb-py/" }, "astropy": { - "credit": 0.010956612857142868, + "credit": 0.004933500000000035, "url": "http://astropy.org" }, + "pyerfa": { + "credit": 0.017254757142857166, + "url": "https://github.com/liberfa/pyerfa" + }, + "numpy": { + "credit": 0.2589797571428571, + "url": "https://www.numpy.org" + }, "sgp4": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://github.com/brandon-rhodes/python-sgp4" }, "skyfield": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "http://github.com/brandon-rhodes/python-skyfield/" }, "coverage": { - "credit": 0.00014001428571428637, + "credit": 0.004713814285714285, "url": "https://github.com/nedbat/coveragepy" }, "objgraph": { - "credit": 0.00014001428571428637, + "credit": 0.004713814285714285, "url": "https://mg.pov.lt/objgraph/" }, "pytest-xdist": { - "credit": 0.00014001428571428637, + "credit": 0.004713814285714285, "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest-astropy": { - "credit": 0.00014001428571428637, + "credit": 0.013954757142857141, "url": "https://github.com/astropy/pytest-astropy" }, "pytest-astropy-header": { - "credit": 0.0014001428571428576, - "url": "https://github.com/astropy/pytest-astropy-header" + "credit": 0.013954757142857141, + "url": "https://pypi.org/project/pytest-astropy-header" }, "pytest-doctestplus": { - "credit": 0.002786284285714286, - "url": "https://github.com/astropy/pytest-doctestplus" + "credit": 0.09562975714285714, + "url": "https://pypi.org/project/pytest-doctestplus" }, "Jinja2": { - "credit": 0.00014001428571428637, - "url": "https://palletsprojects.com/p/jinja/" + "credit": 0.013954757142857141, + "url": "https://pypi.org/project/Jinja2" }, "sphinx-changelog": { - "credit": 0.00014001428571428637, - "url": "https://openastronomy.org" + "credit": 0.013954757142857141, + "url": "https://pypi.org/project/sphinx-changelog" }, "sphinx-astropy": { - "credit": 0.00014001428571428637, - "url": "https://github.com/astropy/sphinx-astropy" + "credit": 0.09562975714285714, + "url": "https://pypi.org/project/sphinx-astropy" }, "sphinx": { - "credit": 0.020470088571428572, - "url": "https://www.sphinx-doc.org/" + "credit": 0.013954757142857141, + "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/typing-extensions" }, "pytest": { - "credit": 0.028660924285714286, + "credit": 0.09716991428571428, "url": "https://pypi.org/project/pytest" }, "ipython": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/ipython" }, "bottleneck": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/bottleneck" }, "asdf": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/asdf" }, "mpmath": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/mpmath" }, "jplephem": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/jplephem" }, "pytz": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/pytz" }, "sortedcontainers": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/sortedcontainers" }, "pandas": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/pandas" }, "bleach": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/bleach" }, "html5lib": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/html5lib" }, "beautifulsoup4": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/beautifulsoup4" }, "pyarrow": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/pyarrow" }, "h5py": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/h5py" }, "dask": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/dask" }, "certifi": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/certifi" }, "matplotlib": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/matplotlib" }, "scipy": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/scipy" }, "packaging": { - "credit": 0.017697805714285714, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/packaging" }, "PyYAML": { - "credit": 0.014001428571428571, + "credit": 0.013954757142857141, "url": "https://pypi.org/project/PyYAML" }, - "pyerfa": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/pyerfa" - }, "tomli": { - "credit": 0.013861414285714285, + "credit": 0.009240942857142857, "url": "https://pypi.org/project/tomli" }, "graphviz": { - "credit": 0.013861414285714285, + "credit": 0.009240942857142857, "url": "https://pypi.org/project/graphviz" }, "filelock": { - "credit": 0.0023102357142857142, + "credit": 0.001540157142857143, "url": "https://pypi.org/project/filelock" }, "setproctitle": { - "credit": 0.0023102357142857142, + "credit": 0.001540157142857143, "url": "https://pypi.org/project/setproctitle" }, "psutil": { - "credit": 0.0023102357142857142, + "credit": 0.001540157142857143, "url": "https://pypi.org/project/psutil" }, "pytest-forked": { - "credit": 0.0023102357142857142, + "credit": 0.001540157142857143, "url": "https://pypi.org/project/pytest-forked" }, "execnet": { - "credit": 0.0023102357142857142, + "credit": 0.001540157142857143, "url": "https://pypi.org/project/execnet" - }, - "hypothesis": { - "credit": 0.0012601285714285712, - "url": "https://pypi.org/project/hypothesis" - }, - "attrs": { - "credit": 0.0012601285714285712, - "url": "https://pypi.org/project/attrs" - }, - "pytest-mock": { - "credit": 0.0012601285714285712, - "url": "https://pypi.org/project/pytest-mock" - }, - "pytest-cov": { - "credit": 0.004032411428571428, - "url": "https://pypi.org/project/pytest-cov" - }, - "pytest-filter-subpackage": { - "credit": 0.0012601285714285712, - "url": "https://pypi.org/project/pytest-filter-subpackage" - }, - "pytest-arraydiff": { - "credit": 0.0012601285714285712, - "url": "https://pypi.org/project/pytest-arraydiff" - }, - "pytest-openfiles": { - "credit": 0.0012601285714285712, - "url": "https://pypi.org/project/pytest-openfiles" - }, - "pytest-remotedata": { - "credit": 0.0035703642857142855, - "url": "https://pypi.org/project/pytest-remotedata" - }, - "setuptools": { - "credit": 0.0023102357142857142, - "url": "https://pypi.org/project/setuptools" - }, - "Babel": { - "credit": 0.006930707142857142, - "url": "https://pypi.org/project/Babel" - }, - "MarkupSafe": { - "credit": 0.006930707142857142, - "url": "https://pypi.org/project/MarkupSafe" - }, - "sphinx-automodapi": { - "credit": 0.004158424285714285, - "url": "https://pypi.org/project/sphinx-automodapi" - }, - "towncrier": { - "credit": 0.0027722828571428567, - "url": "https://pypi.org/project/towncrier" - }, - "pillow": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/pillow" - }, - "sphinx-gallery": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/sphinx-gallery" - }, - "numpydoc": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/numpydoc" - }, - "astropy-sphinx-theme": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/astropy-sphinx-theme" } } } \ No newline at end of file diff --git a/_repos/github/benhid/Sequoya/README.md b/_repos/github/benhid/Sequoya/README.md index 33bc848e..43a0ef73 100644 --- a/_repos/github/benhid/Sequoya/README.md +++ b/_repos/github/benhid/Sequoya/README.md @@ -8,33 +8,55 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[jmetalpy](https://github.com/jMetal/jMetalPy)|0.33| -|pypi|[pyMSA](https://github.com/benhid/pyMSA)|0.33| -|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.041| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.041| -|pypi|[tornado](http://www.tornadoweb.org/)|0.041| -|pypi|[PyYAML](https://pyyaml.org/)|0.041| -|pypi|[numpy](https://www.numpy.org)|0.041| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.04| -|pypi|[Babel](https://pypi.org/project/Babel)|0.02| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.02| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.106| +|pypi|[tornado](http://www.tornadoweb.org/)|0.079| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.079| +|pypi|[matplotlib](https://matplotlib.org)|0.076| +|pypi|[Sequoya](https://github.com/benhid/Sequoya)|0.071| +|pypi|[jmetalpy](https://github.com/jMetal/jMetalPy)|0.071| +|pypi|[pyMSA](https://github.com/benhid/pyMSA)|0.071| +|pypi|[statsmodels](https://www.statsmodels.org/)|0.071| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.071| +|pypi|[Babel](https://pypi.org/project/Babel)|0.035| +|pypi|[numpy](https://pypi.org/project/numpy)|0.023| +|pypi|[scipy](https://pypi.org/project/scipy)|0.019| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.018| +|pypi|[pytest](https://pypi.org/project/pytest)|0.018| +|pypi|[six](https://pypi.org/project/six)|0.014| +|pypi|[packaging](https://pypi.org/project/packaging)|0.013| |setup.py|github/benhid/Sequoya|0.01| -|pypi|[pytest](https://pypi.org/project/pytest)|0.005| -|pypi|[bokeh](https://github.com/bokeh/bokeh)|0.003| -|pypi|[packaging](https://github.com/pypa/packaging)|0.003| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.003| -|pypi|[pyroma](https://pypi.org/project/pyroma)|0.003| -|pypi|[markdown2](https://pypi.org/project/markdown2)|0.003| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| -|pypi|[coverage](https://pypi.org/project/coverage)|0.003| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.003| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| -|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.003| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.003| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.003| -|pypi|[olefile](https://pypi.org/project/olefile)|0.003| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.009| +|pypi|[pillow](https://python-pillow.org)|0.009| +|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.009| +|pypi|[PyYAML](https://pyyaml.org/)|0.009| +|pypi|[xattr](https://pypi.org/project/xattr)|0.005| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.005| +|pypi|[munkres](https://pypi.org/project/munkres)|0.005| +|pypi|[brotli](https://pypi.org/project/brotli)|0.005| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.005| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| +|pypi|[lz4](https://pypi.org/project/lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[lxml](https://pypi.org/project/lxml)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.004| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[bokeh](https://github.com/bokeh/bokeh)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[patsy](https://github.com/pydata/patsy)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/benhid/Sequoya/badge.png b/_repos/github/benhid/Sequoya/badge.png index e13b2034..e44e1d5b 100644 Binary files a/_repos/github/benhid/Sequoya/badge.png and b/_repos/github/benhid/Sequoya/badge.png differ diff --git a/_repos/github/benhid/Sequoya/data.json b/_repos/github/benhid/Sequoya/data.json index d2e50bb0..7c5c3020 100644 --- a/_repos/github/benhid/Sequoya/data.json +++ b/_repos/github/benhid/Sequoya/data.json @@ -6,121 +6,197 @@ } }, "pypi": { + "Sequoya": { + "credit": 0.07071428571428572, + "url": "https://github.com/benhid/Sequoya" + }, + "bokeh": { + "credit": 0.0007071428571428645, + "url": "https://github.com/bokeh/bokeh" + }, "jmetalpy": { - "credit": 0.33, + "credit": 0.07071428571428572, "url": "https://github.com/jMetal/jMetalPy" }, "pyMSA": { - "credit": 0.33, + "credit": 0.07071428571428572, "url": "https://github.com/benhid/pyMSA" }, - "bokeh": { - "credit": 0.003300000000000025, - "url": "https://github.com/bokeh/bokeh" + "Jinja2": { + "credit": 0.009458035714285721, + "url": "https://palletsprojects.com/p/jinja/" + }, + "matplotlib": { + "credit": 0.07609945054945055, + "url": "https://matplotlib.org" + }, + "pillow": { + "credit": 0.009458035714285721, + "url": "https://python-pillow.org" + }, + "statsmodels": { + "credit": 0.07071428571428572, + "url": "https://www.statsmodels.org/" + }, + "tornado": { + "credit": 0.07946517857142857, + "url": "http://www.tornadoweb.org/" + }, + "cycler": { + "credit": 0.07071428571428572, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0007071428571428645, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0007071428571428645, + "url": "https://github.com/nucleic/kiwi" + }, + "MarkupSafe": { + "credit": 0.10571785714285714, + "url": "https://palletsprojects.com/p/markupsafe/" + }, + "patsy": { + "credit": 0.0007071428571428645, + "url": "https://github.com/pydata/patsy" }, "xyzservices": { - "credit": 0.0408375, + "credit": 0.008750892857142856, "url": "https://github.com/geopandas/xyzservices" }, "typing-extensions": { - "credit": 0.0408375, + "credit": 0.0787580357142857, "url": "https://typing.readthedocs.io/" }, - "tornado": { - "credit": 0.0408375, - "url": "http://www.tornadoweb.org/" - }, "PyYAML": { - "credit": 0.0408375, + "credit": 0.008750892857142856, "url": "https://pyyaml.org/" }, - "pillow": { - "credit": 0.0004083750000000025, - "url": "https://python-pillow.org" - }, "packaging": { - "credit": 0.0029351953125000023, - "url": "https://github.com/pypa/packaging" + "credit": 0.013126339285714285, + "url": "https://pypi.org/project/packaging" }, "numpy": { - "credit": 0.0408375, - "url": "https://www.numpy.org" + "credit": 0.022752321428571427, + "url": "https://pypi.org/project/numpy" }, - "Jinja2": { - "credit": 0.0004083750000000025, - "url": "https://palletsprojects.com/p/jinja/" + "Babel": { + "credit": 0.035003571428571426, + "url": "https://pypi.org/project/Babel" }, "pytest-timeout": { - "credit": 2.526820312500006e-05, - "url": "https://github.com/pytest-dev/pytest-timeout" + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pytest-timeout" }, "pytest-cov": { - "credit": 0.0025268203124999998, - "url": "https://github.com/pytest-dev/pytest-cov" + "credit": 0.018376875, + "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.005028372421875, + "credit": 0.018376875, "url": "https://pypi.org/project/pytest" }, "pyroma": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/pyroma" }, "markdown2": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/markdown2" }, "defusedxml": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/defusedxml" }, "coverage": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/coverage" }, "check-manifest": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/check-manifest" }, "sphinxext-opengraph": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/sphinxext-opengraph" }, "sphinx-rtd-theme": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx-removed-in": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/sphinx-removed-in" }, "sphinx-issues": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/sphinx-issues" }, "sphinx-copybutton": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/sphinx-copybutton" }, "sphinx": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/sphinx" }, "olefile": { - "credit": 0.0025268203124999998, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/olefile" }, - "pyparsing": { - "credit": 0.040429124999999996, - "url": "https://pypi.org/project/pyparsing" + "xattr": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/xattr" }, - "Babel": { - "credit": 0.020214562499999998, - "url": "https://pypi.org/project/Babel" + "unicodedata2": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/unicodedata2" }, - "MarkupSafe": { - "credit": 0.020214562499999998, - "url": "https://pypi.org/project/MarkupSafe" + "munkres": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotli" + }, + "scipy": { + "credit": 0.019386593406593405, + "url": "https://pypi.org/project/scipy" + }, + "brotlicffi": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/fs" + }, + "six": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/six" } } } \ No newline at end of file diff --git a/_repos/github/benvanwerkhoven/kernel_tuner/README.md b/_repos/github/benvanwerkhoven/kernel_tuner/README.md index 6dc1c3bc..91c36849 100644 --- a/_repos/github/benvanwerkhoven/kernel_tuner/README.md +++ b/_repos/github/benvanwerkhoven/kernel_tuner/README.md @@ -8,62 +8,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.657| -|pypi|[six](https://pypi.org/project/six)|0.025| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.025| -|pypi|[rfc3986-validator](https://github.com/naimetti/rfc3986-validator)|0.023| -|pypi|[webcolors](https://github.com/ubernostrum/webcolors)|0.023| -|pypi|[rfc3987](http://pypi.python.org/pypi/rfc3987)|0.023| -|pypi|[jsonpointer](https://github.com/stefankoegl/python-json-pointer)|0.023| -|pypi|[idna](https://github.com/kjd/idna)|0.023| -|pypi|[pyrsistent](http://github.com/tobgu/pyrsistent/)|0.023| -|pypi|[arrow](https://pypi.org/project/arrow)|0.023| -|pypi|[cached-property](https://pypi.org/project/cached-property)|0.023| |setup.py|github/benvanwerkhoven/kernel_tuner|0.01| -|pypi|[pytest](https://pypi.org/project/pytest)|0.005| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.003| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.003| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.003| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.003| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.003| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.003| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.003| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.003| -|pypi|[zipp](https://pypi.org/project/zipp)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.003| -|pypi|[jsonschema](https://github.com/Julian/jsonschema)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.002| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.002| -|pypi|[furo](https://pypi.org/project/furo)|0.002| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.002| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.002| -|pypi|[pympler](https://pypi.org/project/pympler)|0.002| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[importlib-resources](https://github.com/python/importlib_resources)|0.002| -|pypi|[pep8-naming](https://github.com/PyCQA/pep8-naming)|0.001| -|pypi|[flake8-use-fstring](https://pypi.org/project/flake8-use-fstring)|0.001| -|pypi|[flake8-type-annotations](https://pypi.org/project/flake8-type-annotations)|0.001| -|pypi|[flake8-requirements](https://pypi.org/project/flake8-requirements)|0.001| -|pypi|[flake8-noqa](https://pypi.org/project/flake8-noqa)|0.001| -|pypi|[flake8-literal](https://pypi.org/project/flake8-literal)|0.001| -|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|0.001| -|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|0.001| -|pypi|[flake8-datetimez](https://pypi.org/project/flake8-datetimez)|0.001| -|pypi|[flake8-continuation](https://pypi.org/project/flake8-continuation)|0.001| -|pypi|[flake8-comprehensions](https://pypi.org/project/flake8-comprehensions)|0.001| -|pypi|[flake8-commas](https://pypi.org/project/flake8-commas)|0.001| -|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.001| -|pypi|[flake8-annotations](https://pypi.org/project/flake8-annotations)|0.001| -|pypi|[flake8](https://pypi.org/project/flake8)|0.001| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[kernel-tuner](http://benvanwerkhoven.github.io/kernel_tuner/)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/benvanwerkhoven/kernel_tuner/badge.png b/_repos/github/benvanwerkhoven/kernel_tuner/badge.png index daa68113..7dfc5ced 100644 Binary files a/_repos/github/benvanwerkhoven/kernel_tuner/badge.png and b/_repos/github/benvanwerkhoven/kernel_tuner/badge.png differ diff --git a/_repos/github/benvanwerkhoven/kernel_tuner/data.json b/_repos/github/benvanwerkhoven/kernel_tuner/data.json index 30fdba13..93b59f82 100644 --- a/_repos/github/benvanwerkhoven/kernel_tuner/data.json +++ b/_repos/github/benvanwerkhoven/kernel_tuner/data.json @@ -6,249 +6,9 @@ } }, "pypi": { - "numpy": { - "credit": 0.6567000000000001, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.003300000000000025, - "url": "https://www.scipy.org" - }, - "jsonschema": { - "credit": 0.003300000000000025, - "url": "https://github.com/Julian/jsonschema" - }, - "rfc3986-validator": { - "credit": 0.023335714285714286, - "url": "https://github.com/naimetti/rfc3986-validator" - }, - "webcolors": { - "credit": 0.023335714285714286, - "url": "https://github.com/ubernostrum/webcolors" - }, - "uri-template": { - "credit": 0.0002333571428571428, - "url": "https://github.com/plinss/uri_template/" - }, - "rfc3987": { - "credit": 0.023335714285714286, - "url": "http://pypi.python.org/pypi/rfc3987" - }, - "rfc3339-validator": { - "credit": 0.0002333571428571428, - "url": "https://github.com/naimetti/rfc3339-validator" - }, - "jsonpointer": { - "credit": 0.023335714285714286, - "url": "https://github.com/stefankoegl/python-json-pointer" - }, - "isoduration": { - "credit": 0.0002333571428571428, - "url": "https://github.com/bolsote/isoduration" - }, - "idna": { - "credit": 0.023335714285714286, - "url": "https://github.com/kjd/idna" - }, - "fqdn": { - "credit": 0.0002333571428571428, - "url": "https://github.com/ypcrts/fqdn" - }, - "importlib-resources": { - "credit": 0.001516821428571432, - "url": "https://github.com/python/importlib_resources" - }, - "typing-extensions": { - "credit": 0.024619178571428573, - "url": "https://typing.readthedocs.io/" - }, - "importlib-metadata": { - "credit": 0.0002333571428571428, - "url": "https://github.com/python/importlib_metadata" - }, - "pyrsistent": { - "credit": 0.023335714285714286, - "url": "http://github.com/tobgu/pyrsistent/" - }, - "attrs": { - "credit": 0.0002333571428571428, - "url": "https://www.attrs.org/" - }, - "pep8-naming": { - "credit": 0.0014438973214285715, - "url": "https://github.com/PyCQA/pep8-naming" - }, - "flake8-use-fstring": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-use-fstring" - }, - "flake8-type-annotations": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-type-annotations" - }, - "flake8-requirements": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-requirements" - }, - "flake8-noqa": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-noqa" - }, - "flake8-literal": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-literal" - }, - "flake8-import-order": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-import-order" - }, - "flake8-docstrings": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-docstrings" - }, - "flake8-datetimez": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-datetimez" - }, - "flake8-continuation": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-continuation" - }, - "flake8-comprehensions": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-comprehensions" - }, - "flake8-commas": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-commas" - }, - "flake8-bugbear": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-bugbear" - }, - "flake8-annotations": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8-annotations" - }, - "flake8": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/flake8" - }, - "mypy": { - "credit": 0.003221001717032967, - "url": "https://pypi.org/project/mypy" - }, - "six": { - "credit": 0.024879461538461538, - "url": "https://pypi.org/project/six" - }, - "arrow": { - "credit": 0.023102357142857143, - "url": "https://pypi.org/project/arrow" - }, - "cached-property": { - "credit": 0.023102357142857143, - "url": "https://pypi.org/project/cached-property" - }, - "pytest-mypy": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/pytest-mypy" - }, - "pytest-black": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/pytest-black" - }, - "pytest-enabler": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "pytest": { - "credit": 0.005160782967032967, - "url": "https://pypi.org/project/pytest" - }, - "rst.linker": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.005160782967032967, - "url": "https://pypi.org/project/sphinx" - }, - "zipp": { - "credit": 0.0033836785714285713, - "url": "https://pypi.org/project/zipp" - }, - "pytest-perf": { - "credit": 0.0012834642857142858, - "url": "https://pypi.org/project/pytest-perf" - }, - "flufl.flake8": { - "credit": 0.0012834642857142858, - "url": "https://pypi.org/project/flufl.flake8" - }, - "pyfakefs": { - "credit": 0.0012834642857142858, - "url": "https://pypi.org/project/pyfakefs" - }, - "packaging": { - "credit": 0.0012834642857142858, - "url": "https://pypi.org/project/packaging" - }, - "ipython": { - "credit": 0.0012834642857142858, - "url": "https://pypi.org/project/ipython" - }, - "cloudpickle": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "furo": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/furo" - }, - "zope.interface": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "pympler": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/pympler" - }, - "hypothesis": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/hypothesis" - }, - "coverage": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/coverage" + "kernel-tuner": { + "credit": 0.0099, + "url": "http://benvanwerkhoven.github.io/kernel_tuner/" } } } \ No newline at end of file diff --git a/_repos/github/bethgelab/foolbox/README.md b/_repos/github/bethgelab/foolbox/README.md index b44592df..73be8aa3 100644 --- a/_repos/github/bethgelab/foolbox/README.md +++ b/_repos/github/bethgelab/foolbox/README.md @@ -8,53 +8,47 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.316| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.246| -|pypi|[gitdb](https://pypi.org/project/gitdb)|0.07| -|pypi|[pytest](https://pypi.org/project/pytest)|0.041| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.04| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.02| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.02| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.02| -|pypi|[idna](https://pypi.org/project/idna)|0.02| -|pypi|[chardet](https://pypi.org/project/chardet)|0.02| -|pypi|[certifi](https://pypi.org/project/certifi)|0.02| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.02| +|pypi|[smmap](https://github.com/gitpython-developers/smmap)|0.394| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.185| +|pypi|[gitdb](https://github.com/gitpython-developers/gitdb)|0.111| +|pypi|[numpy](https://pypi.org/project/numpy)|0.076| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.057| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.055| +|pypi|[setuptools](https://github.com/pypa/setuptools)|0.022| +|pypi|[scipy](https://pypi.org/project/scipy)|0.022| |setup.py|github/bethgelab/foolbox|0.01| -|pypi|[filelock](https://pypi.org/project/filelock)|0.006| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.005| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.005| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.005| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.005| -|pypi|[build](https://pypi.org/project/build)|0.005| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.005| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.005| -|pypi|[pip](https://pypi.org/project/pip)|0.005| -|pypi|[wheel](https://pypi.org/project/wheel)|0.005| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.005| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.005| -|pypi|[mock](https://pypi.org/project/mock)|0.005| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.005| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.005| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.005| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.005| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.005| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.005| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.005| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.005| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.005| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.005| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.005| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.001| -|pypi|[eagerpy](https://github.com/jonasrauber/eagerpy)|0.001| -|pypi|[GitPython](https://github.com/gitpython-developers/GitPython)|0.001| -|pypi|[requests](https://requests.readthedocs.io)|0.001| -|pypi|[mypy](https://pypi.org/project/mypy)|0.001| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.003| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.003| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.003| +|pypi|[idna](https://pypi.org/project/idna)|0.003| +|pypi|[chardet](https://pypi.org/project/chardet)|0.003| +|pypi|[certifi](https://pypi.org/project/certifi)|0.003| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| +|pypi|[hunter](https://pypi.org/project/hunter)|0.003| +|pypi|[fields](https://pypi.org/project/fields)|0.003| +|pypi|[coverage](https://pypi.org/project/coverage)|0.003| +|pypi|[eagerpy](https://github.com/jonasrauber/eagerpy)|0.002| +|pypi|[GitPython](https://github.com/gitpython-developers/GitPython)|0.002| +|pypi|[foolbox](https://github.com/bethgelab/foolbox)|0.002| +|pypi|[requests](https://requests.readthedocs.io)|0.002| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| +|pypi|[pygments](https://pypi.org/project/pygments)|0.001| +|pypi|[nose](https://pypi.org/project/nose)|0.001| +|pypi|[mock](https://pypi.org/project/mock)|0.001| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| +|pypi|[colorama](https://pypi.org/project/colorama)|0.001| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| +|pypi|[tomli](https://pypi.org/project/tomli)|0.001| +|pypi|[py](https://pypi.org/project/py)|0.001| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| +|pypi|[packaging](https://pypi.org/project/packaging)|0.001| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| |pypi|[attrs](https://pypi.org/project/attrs)|0.001| diff --git a/_repos/github/bethgelab/foolbox/badge.png b/_repos/github/bethgelab/foolbox/badge.png index e162c9a8..a41a1d2f 100644 Binary files a/_repos/github/bethgelab/foolbox/badge.png and b/_repos/github/bethgelab/foolbox/badge.png differ diff --git a/_repos/github/bethgelab/foolbox/data.json b/_repos/github/bethgelab/foolbox/data.json index 038373fb..1f2c7843 100644 --- a/_repos/github/bethgelab/foolbox/data.json +++ b/_repos/github/bethgelab/foolbox/data.json @@ -6,197 +6,169 @@ } }, "pypi": { - "numpy": { - "credit": 0.3164464285714285, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.001414285714285729, - "url": "https://www.scipy.org" - }, - "setuptools": { - "credit": 0.001414285714285729, - "url": "https://github.com/pypa/setuptools" + "foolbox": { + "credit": 0.0019800000000000095, + "url": "https://github.com/bethgelab/foolbox" }, "eagerpy": { - "credit": 0.001414285714285729, + "credit": 0.00219780000000001, "url": "https://github.com/jonasrauber/eagerpy" }, "GitPython": { - "credit": 0.001414285714285729, + "credit": 0.00219780000000001, "url": "https://github.com/gitpython-developers/GitPython" }, - "typing-extensions": { - "credit": 0.24643928571428572, - "url": "https://typing.readthedocs.io/" - }, - "requests": { - "credit": 0.001414285714285729, - "url": "https://requests.readthedocs.io" + "gitdb": { + "credit": 0.11077110000000001, + "url": "https://github.com/gitpython-developers/gitdb" }, - "pytest-mypy": { - "credit": 4.516589861751179e-05, - "url": "https://github.com/dbader/pytest-mypy" + "smmap": { + "credit": 0.39402000000000004, + "url": "https://github.com/gitpython-developers/smmap" }, "pytest-cov": { - "credit": 0.03952016129032258, + "credit": 0.05461335, "url": "https://github.com/pytest-dev/pytest-cov" }, - "pytest-black": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/pytest-black" - }, - "tomli": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/tomli" + "pytest": { + "credit": 0.057308624999999995, + "url": "https://docs.pytest.org/en/latest/" }, - "tomli-w": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/tomli-w" + "requests": { + "credit": 0.0015654375000000006, + "url": "https://requests.readthedocs.io" }, - "ini2toml": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/ini2toml" + "typing-extensions": { + "credit": 0.18496664999999998, + "url": "https://typing.readthedocs.io/" }, - "pip-run": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/pip-run" + "setuptools": { + "credit": 0.02178, + "url": "https://github.com/pypa/setuptools" }, - "filelock": { - "credit": 0.005634445852534562, - "url": "https://pypi.org/project/filelock" + "scipy": { + "credit": 0.02178, + "url": "https://pypi.org/project/scipy" }, - "build": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/build" + "numpy": { + "credit": 0.07617555, + "url": "https://pypi.org/project/numpy" }, - "jaraco.path": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/jaraco.path" + "virtualenv": { + "credit": 0.002695275, + "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.004516589861751152, + "credit": 0.002695275, "url": "https://pypi.org/project/pytest-xdist" }, - "jaraco.envs": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/jaraco.envs" + "six": { + "credit": 0.002695275, + "url": "https://pypi.org/project/six" }, - "pip": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/pip" + "process-tests": { + "credit": 0.002695275, + "url": "https://pypi.org/project/process-tests" }, - "wheel": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/wheel" + "hunter": { + "credit": 0.002695275, + "url": "https://pypi.org/project/hunter" }, - "virtualenv": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/virtualenv" + "fields": { + "credit": 0.002695275, + "url": "https://pypi.org/project/fields" }, - "flake8-2020": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/flake8-2020" + "coverage": { + "credit": 0.002695275, + "url": "https://pypi.org/project/coverage" }, - "mock": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/mock" + "xmlschema": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/xmlschema" }, - "pytest-perf": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/pytest-perf" + "pygments": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/pygments" }, - "pytest-enabler": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/pytest-enabler" + "nose": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/nose" }, - "pytest-flake8": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/pytest-flake8" + "mock": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/mock" }, - "pytest-checkdocs": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/pytest-checkdocs" + "hypothesis": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/hypothesis" }, - "pytest": { - "credit": 0.040638017281105984, - "url": "https://pypi.org/project/pytest" + "argcomplete": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/argcomplete" }, - "furo": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/furo" + "colorama": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/colorama" }, - "sphinxcontrib-towncrier": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" + "atomicwrites": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/atomicwrites" }, - "sphinx-inline-tabs": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/sphinx-inline-tabs" + "importlib-metadata": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/importlib-metadata" }, - "sphinx-favicon": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/sphinx-favicon" - }, - "pygments-github-lexers": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/pygments-github-lexers" + "tomli": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/tomli" }, - "jaraco.tidelift": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/jaraco.tidelift" + "py": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/py" }, - "rst.linker": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/rst.linker" + "pluggy": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/pluggy" }, - "jaraco.packaging": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/jaraco.packaging" + "packaging": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/packaging" }, - "sphinx": { - "credit": 0.004516589861751152, - "url": "https://pypi.org/project/sphinx" + "iniconfig": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/iniconfig" }, - "gitdb": { - "credit": 0.07000714285714285, - "url": "https://pypi.org/project/gitdb" + "attrs": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/attrs" }, "win-inet-pton": { - "credit": 0.02000204081632653, + "credit": 0.003080314285714286, "url": "https://pypi.org/project/win-inet-pton" }, "PySocks": { - "credit": 0.02000204081632653, + "credit": 0.003080314285714286, "url": "https://pypi.org/project/PySocks" }, "charset-normalizer": { - "credit": 0.02000204081632653, + "credit": 0.003080314285714286, "url": "https://pypi.org/project/charset-normalizer" }, "idna": { - "credit": 0.02000204081632653, + "credit": 0.003080314285714286, "url": "https://pypi.org/project/idna" }, "chardet": { - "credit": 0.02000204081632653, + "credit": 0.003080314285714286, "url": "https://pypi.org/project/chardet" }, "certifi": { - "credit": 0.02000204081632653, + "credit": 0.003080314285714286, "url": "https://pypi.org/project/certifi" }, "urllib3": { - "credit": 0.02000204081632653, + "credit": 0.003080314285714286, "url": "https://pypi.org/project/urllib3" - }, - "mypy": { - "credit": 0.00111785599078341, - "url": "https://pypi.org/project/mypy" - }, - "attrs": { - "credit": 0.00111785599078341, - "url": "https://pypi.org/project/attrs" } } } \ No newline at end of file diff --git a/_repos/github/bio-ontology-research-group/deepgoplus/badge.png b/_repos/github/bio-ontology-research-group/deepgoplus/badge.png index 3e41659a..7d8fcf7d 100644 Binary files a/_repos/github/bio-ontology-research-group/deepgoplus/badge.png and b/_repos/github/bio-ontology-research-group/deepgoplus/badge.png differ diff --git a/_repos/github/bio-phys/BioEn/README.md b/_repos/github/bio-phys/BioEn/README.md index 9f914e7f..c5ec09e8 100644 --- a/_repos/github/bio-phys/BioEn/README.md +++ b/_repos/github/bio-phys/BioEn/README.md @@ -8,48 +8,68 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.357| -|pypi|[cython](http://cython.org/)|0.165| -|pypi|[pyyaml](https://pyyaml.org/)|0.165| -|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.165| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.029| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.029| +|pypi|[numpy](https://www.numpy.org)|0.211| +|pypi|[msgpack](https://msgpack.org/)|0.101| +|pypi|[matplotlib](https://matplotlib.org)|0.086| +|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.076| +|pypi|[biopython](https://biopython.org/)|0.076| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.076| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.075| +|pypi|[tomli](https://pypi.org/project/tomli)|0.03| +|pypi|[six](https://github.com/benjaminp/six)|0.019| +|pypi|[pytest](https://pypi.org/project/pytest)|0.013| |setup.py|github/bio-phys/BioEn|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.006| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[pandas](https://pandas.pydata.org)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| +|pypi|[scipy](https://www.scipy.org)|0.01| +|pypi|[lxml](https://pypi.org/project/lxml)|0.009| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.008| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[mock](https://pypi.org/project/mock)|0.005| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.005| +|pypi|[build](https://pypi.org/project/build)|0.005| +|pypi|[check-manifest](https://github.com/mgedmin/check-manifest)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[packaging](https://pypi.org/project/packaging)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[pillow](https://python-pillow.org)|0.004| +|pypi|[pydot](https://pypi.org/project/pydot)|0.004| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.004| +|pypi|[texext](https://pypi.org/project/texext)|0.004| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.004| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.004| +|pypi|[mypy](https://pypi.org/project/mypy)|0.004| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| +|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.004| +|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[pandas](https://pypi.org/project/pandas)|0.004| |pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[colorama](https://pypi.org/project/colorama)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[mrcfile](https://github.com/ccpem/mrcfile)|0.001| +|pypi|[GridDataFormats](https://github.com/MDAnalysis/GridDataFormats)|0.001| +|pypi|[gsd](https://gsd.readthedocs.io)|0.001| +|pypi|[mmtf-python](https://github.com/rcsb/mmtf-python.git)|0.001| +|pypi|[networkx](https://networkx.org/)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/bio-phys/BioEn/badge.png b/_repos/github/bio-phys/BioEn/badge.png index bc64e155..d06f680f 100644 Binary files a/_repos/github/bio-phys/BioEn/badge.png and b/_repos/github/bio-phys/BioEn/badge.png differ diff --git a/_repos/github/bio-phys/BioEn/data.json b/_repos/github/bio-phys/BioEn/data.json index b547b549..e3bbc537 100644 --- a/_repos/github/bio-phys/BioEn/data.json +++ b/_repos/github/bio-phys/BioEn/data.json @@ -6,173 +6,253 @@ } }, "pypi": { - "numpy": { - "credit": 0.35707237500000005, - "url": "https://www.numpy.org" + "MDAnalysis": { + "credit": 0.07615384615384616, + "url": "https://www.mdanalysis.org" + }, + "biopython": { + "credit": 0.07615384615384616, + "url": "https://biopython.org/" + }, + "GridDataFormats": { + "credit": 0.0007615384615384663, + "url": "https://github.com/MDAnalysis/GridDataFormats" + }, + "gsd": { + "credit": 0.0007615384615384663, + "url": "https://gsd.readthedocs.io" + }, + "matplotlib": { + "credit": 0.08554336432797972, + "url": "https://matplotlib.org" + }, + "mmtf-python": { + "credit": 0.0007615384615384663, + "url": "https://github.com/rcsb/mmtf-python.git" + }, + "networkx": { + "credit": 0.0007615384615384663, + "url": "https://networkx.org/" + }, + "cycler": { + "credit": 0.07615384615384616, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0007615384615384663, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0007615384615384663, + "url": "https://github.com/nucleic/kiwi" + }, + "msgpack": { + "credit": 0.10128461538461539, + "url": "https://msgpack.org/" + }, + "pillow": { + "credit": 0.004351648351648356, + "url": "https://python-pillow.org" + }, + "mrcfile": { + "credit": 0.0009500192307692369, + "url": "https://github.com/ccpem/mrcfile" }, "scipy": { - "credit": 0.0016500000000000126, + "credit": 0.009577998943364328, "url": "https://www.scipy.org" }, - "cython": { - "credit": 0.165, - "url": "http://cython.org/" + "six": { + "credit": 0.018848076923076922, + "url": "https://github.com/benjaminp/six" }, - "pyyaml": { - "credit": 0.165, - "url": "https://pyyaml.org/" + "numpy": { + "credit": 0.21054199450549452, + "url": "https://www.numpy.org" }, - "pandas": { - "credit": 0.003147375000000012, - "url": "https://pandas.pydata.org" + "coverage": { + "credit": 0.006740431318681319, + "url": "https://github.com/nedbat/coveragepy" }, - "MDAnalysis": { - "credit": 0.165, - "url": "https://www.mdanalysis.org" + "check-manifest": { + "credit": 0.004963326923076924, + "url": "https://github.com/mgedmin/check-manifest" }, - "pytest-xdist": { - "credit": 0.00027225000000000166, - "url": "https://github.com/pytest-dev/pytest-xdist" + "codecov": { + "credit": 3.590109890109876e-05, + "url": "https://github.com/codecov/codecov-python" + }, + "pytest-cov": { + "credit": 0.008302129120879121, + "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.006261750000000001, - "url": "https://docs.pytest.org/en/latest/" + "credit": 0.01327802142857143, + "url": "https://pypi.org/project/pytest" }, - "hypothesis": { - "credit": 0.0019567968750000015, - "url": "https://hypothesis.works" + "pydot": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/pydot" }, - "pytz": { - "credit": 0.028722374999999998, - "url": "http://pythonhosted.org/pytz" + "pygraphviz": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/pygraphviz" }, - "python-dateutil": { - "credit": 0.028722374999999998, - "url": "https://github.com/dateutil/dateutil" + "lxml": { + "credit": 0.009389518174133558, + "url": "https://pypi.org/project/lxml" }, - "filelock": { - "credit": 0.004492125, - "url": "https://github.com/tox-dev/py-filelock" + "texext": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/texext" }, - "setproctitle": { - "credit": 0.004492125, - "url": "https://pypi.org/project/setproctitle" + "nb2plots": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/nb2plots" }, - "psutil": { - "credit": 0.004492125, - "url": "https://pypi.org/project/psutil" + "numpydoc": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/numpydoc" }, - "pytest-forked": { - "credit": 0.004492125, - "url": "https://pypi.org/project/pytest-forked" + "sphinx-gallery": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/sphinx-gallery" }, - "execnet": { - "credit": 0.004492125, - "url": "https://pypi.org/project/execnet" + "pydata-sphinx-theme": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/pydata-sphinx-theme" }, - "xmlschema": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/xmlschema" + "sphinx": { + "credit": 0.008302129120879121, + "url": "https://pypi.org/project/sphinx" }, - "requests": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/requests" + "mypy": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/mypy" }, - "pygments": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/pygments" + "pre-commit": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/pre-commit" }, - "nose": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/nose" + "pyupgrade": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/pyupgrade" }, - "mock": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/mock" + "black": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/black" + }, + "pandas": { + "credit": 0.00359010989010989, + "url": "https://pypi.org/project/pandas" }, - "argcomplete": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/argcomplete" + "xattr": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/xattr" }, - "colorama": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/colorama" + "unicodedata2": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/unicodedata2" }, - "atomicwrites": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/atomicwrites" + "munkres": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/munkres" }, - "importlib-metadata": { - "credit": 0.0031819218749999994, - "url": "https://pypi.org/project/importlib-metadata" + "brotli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotli" }, - "tomli": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/tomli" + "brotlicffi": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lz4" }, - "py": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/py" + "zopfli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/zopfli" }, - "pluggy": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/pluggy" + "fs": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.07539230769230769, + "url": "https://pypi.org/project/typing-extensions" + }, + "pytest-timeout": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.0016845468749999998, + "credit": 0.0047120192307692306, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/markdown2" }, - "attrs": { - "credit": 0.0031819218749999994, - "url": "https://pypi.org/project/attrs" + "defusedxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/defusedxml" }, - "tzdata": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/tzdata" + "sphinxext-opengraph": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "backports.zoneinfo": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/backports.zoneinfo" + "sphinx-rtd-theme": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "rich": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/rich" + "sphinx-removed-in": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "redis": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/redis" + "sphinx-issues": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-issues" }, - "libcst": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/libcst" + "sphinx-copybutton": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "lark-parser": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/lark-parser" + "olefile": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/olefile" }, - "dpcontracts": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/dpcontracts" + "tomli": { + "credit": 0.029855353846153846, + "url": "https://pypi.org/project/tomli" }, - "django": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/django" + "mock": { + "credit": 0.004975892307692307, + "url": "https://pypi.org/project/mock" }, - "click": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/click" + "setuptools": { + "credit": 0.004975892307692307, + "url": "https://pypi.org/project/setuptools" }, - "black": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/black" + "build": { + "credit": 0.004975892307692307, + "url": "https://pypi.org/project/build" }, - "sortedcontainers": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/sortedcontainers" + "requests": { + "credit": 0.0017771043956043956, + "url": "https://pypi.org/project/requests" } } } \ No newline at end of file diff --git a/_repos/github/biocore/scikit-bio/README.md b/_repos/github/biocore/scikit-bio/README.md index 8c645f11..349fd6a3 100644 --- a/_repos/github/biocore/scikit-bio/README.md +++ b/_repos/github/biocore/scikit-bio/README.md @@ -8,39 +8,43 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.17| -|pypi|[h5py](http://www.h5py.org)|0.152| -|pypi|[lockfile](http://launchpad.net/pylockfile)|0.095| -|pypi|[matplotlib](https://matplotlib.org)|0.082| -|pypi|[decorator](https://github.com/micheles/decorator)|0.079| -|pypi|[hdmedians](http://github.com/daleroberts/hdmedians)|0.076| -|pypi|[PyICU](https://pypi.org/project/PyICU)|0.038| -|pypi|[fastnumbers](https://pypi.org/project/fastnumbers)|0.038| -|pypi|[msgpack](https://msgpack.org/)|0.019| -|pypi|[pytest](https://pypi.org/project/pytest)|0.019| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.013| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.013| -|pypi|[pytz](https://pypi.org/project/pytz)|0.013| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.013| +|pypi|[lockfile](http://launchpad.net/pylockfile)|0.103| +|pypi|[msgpack](https://msgpack.org/)|0.103| +|pypi|[matplotlib](https://matplotlib.org)|0.089| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.084| +|pypi|[scikit-bio](http://scikit-bio.org)|0.083| +|pypi|[h5py](http://www.h5py.org)|0.083| +|pypi|[hdmedians](http://github.com/daleroberts/hdmedians)|0.083| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.083| +|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.041| +|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.041| +|pypi|[pytest](https://pypi.org/project/pytest)|0.015| |setup.py|github/biocore/scikit-bio|0.01| -|pypi|[pandas](https://pandas.pydata.org)|0.007| -|pypi|[black](https://pypi.org/project/black)|0.006| -|pypi|[scipy](https://www.scipy.org)|0.004| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.004| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[flake8](https://pypi.org/project/flake8)|0.004| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.004| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.004| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.004| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.004| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.004| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.004| -|pypi|[joblib](https://pypi.org/project/joblib)|0.004| +|pypi|[cffi](https://pypi.org/project/cffi)|0.009| +|pypi|[coverage](https://pypi.org/project/coverage)|0.008| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.006| +|pypi|[brotli](https://github.com/google/brotli)|0.006| +|pypi|[lxml](https://lxml.de/)|0.006| +|pypi|[fs](https://github.com/PyFilesystem/pyfilesystem2)|0.006| +|pypi|[numpy](https://pypi.org/project/numpy)|0.006| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.006| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.006| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| +|pypi|[enum34](https://pypi.org/project/enum34)|0.003| |pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.003| |pypi|[PySocks](https://pypi.org/project/PySocks)|0.003| |pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.003| @@ -48,43 +52,21 @@ exclude_from_search: true |pypi|[chardet](https://pypi.org/project/chardet)|0.003| |pypi|[certifi](https://pypi.org/project/certifi)|0.003| |pypi|[urllib3](https://pypi.org/project/urllib3)|0.003| -|pypi|[trio](https://github.com/python-trio/trio)|0.003| -|pypi|[curio](https://pypi.org/project/curio)|0.003| -|pypi|[testpath](https://pypi.org/project/testpath)|0.003| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.003| -|pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.003| -|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|0.003| -|pypi|[notebook](https://pypi.org/project/notebook)|0.003| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.003| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.003| -|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.003| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.003| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.003| -|pypi|[colorama](https://pypi.org/project/colorama)|0.003| -|pypi|[appnope](https://pypi.org/project/appnope)|0.003| -|pypi|[pexpect](https://pypi.org/project/pexpect)|0.003| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.003| -|pypi|[stack-data](https://pypi.org/project/stack-data)|0.003| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.003| -|pypi|[pygments](https://pypi.org/project/pygments)|0.003| -|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|0.003| -|pypi|[pickleshare](https://pypi.org/project/pickleshare)|0.003| -|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|0.003| -|pypi|[jedi](https://pypi.org/project/jedi)|0.003| -|pypi|[backcall](https://pypi.org/project/backcall)|0.003| |pypi|[requests](https://requests.readthedocs.io)|0.002| |pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.002| |pypi|[cryptography](https://pypi.org/project/cryptography)|0.002| |pypi|[hiredis](https://pypi.org/project/hiredis)|0.002| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| |pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| |pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| |pypi|[deprecated](https://pypi.org/project/deprecated)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.001| +|pypi|[flake8](https://pypi.org/project/flake8)|0.001| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.001| |pypi|[CacheControl](https://github.com/ionrock/cachecontrol)|0.001| -|pypi|[IPython](https://ipython.org)|0.001| |pypi|[natsort](https://github.com/SethMMorton/natsort)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/biocore/scikit-bio/badge.png b/_repos/github/biocore/scikit-bio/badge.png index 066a9b8a..ca819bec 100644 Binary files a/_repos/github/biocore/scikit-bio/badge.png and b/_repos/github/biocore/scikit-bio/badge.png differ diff --git a/_repos/github/biocore/scikit-bio/data.json b/_repos/github/biocore/scikit-bio/data.json index c5535c8f..fbc1e19b 100644 --- a/_repos/github/biocore/scikit-bio/data.json +++ b/_repos/github/biocore/scikit-bio/data.json @@ -6,313 +6,273 @@ } }, "pypi": { - "lockfile": { - "credit": 0.09500192307692308, - "url": "http://launchpad.net/pylockfile" + "scikit-bio": { + "credit": 0.0825, + "url": "http://scikit-bio.org" }, "CacheControl": { - "credit": 0.0007615384615384663, + "credit": 0.0008250000000000063, "url": "https://github.com/ionrock/cachecontrol" }, - "decorator": { - "credit": 0.07866692307692308, - "url": "https://github.com/micheles/decorator" + "h5py": { + "credit": 0.0825, + "url": "http://www.h5py.org" + }, + "hdmedians": { + "credit": 0.0825, + "url": "http://github.com/daleroberts/hdmedians" }, - "IPython": { - "credit": 0.0007615384615384663, - "url": "https://ipython.org" + "lockfile": { + "credit": 0.10291875, + "url": "http://launchpad.net/pylockfile" }, "matplotlib": { - "credit": 0.08225703296703298, + "credit": 0.08878269230769231, "url": "https://matplotlib.org" }, "natsort": { - "credit": 0.0007615384615384663, + "credit": 0.0008250000000000063, "url": "https://github.com/SethMMorton/natsort" }, - "numpy": { - "credit": 0.17021472527472525, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.006864725274725279, - "url": "https://pandas.pydata.org" + "cycler": { + "credit": 0.0825, + "url": "https://github.com/matplotlib/cycler" }, - "scipy": { - "credit": 0.004351648351648356, - "url": "https://www.scipy.org" + "fonttools": { + "credit": 0.0008250000000000063, + "url": "http://github.com/fonttools/fonttools" }, - "h5py": { - "credit": 0.1523076923076923, - "url": "http://www.h5py.org" + "kiwisolver": { + "credit": 0.0008250000000000063, + "url": "https://github.com/nucleic/kiwi" }, - "hdmedians": { - "credit": 0.07615384615384616, - "url": "http://github.com/daleroberts/hdmedians" + "msgpack": { + "credit": 0.10291875, + "url": "https://msgpack.org/" }, - "scikit-learn": { - "credit": 0.0007615384615384663, - "url": "http://scikit-learn.org" + "pillow": { + "credit": 0.0008250000000000063, + "url": "https://python-pillow.org" }, "redis": { - "credit": 0.00018848076923077065, + "credit": 0.00020418750000000124, "url": "https://github.com/redis/redis-py" }, - "msgpack": { - "credit": 0.018848076923076922, - "url": "https://msgpack.org/" - }, "requests": { - "credit": 0.002261769230769232, + "credit": 0.002450250000000001, "url": "https://requests.readthedocs.io" }, - "trio": { - "credit": 0.002513076923076923, - "url": "https://github.com/python-trio/trio" - }, - "curio": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/curio" - }, - "testpath": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/testpath" - }, - "pytest-asyncio": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pytest-asyncio" - }, - "pytest": { - "credit": 0.01866857142857143, - "url": "https://pypi.org/project/pytest" - }, - "qtconsole": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/qtconsole" - }, - "ipyparallel": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/ipyparallel" - }, - "notebook": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/notebook" - }, - "ipywidgets": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/ipywidgets" - }, - "nbformat": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/nbformat" - }, - "nbconvert": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/nbconvert" - }, - "ipykernel": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/ipykernel" - }, - "Sphinx": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/Sphinx" + "PyICU": { + "credit": 0.0408375, + "url": "https://gitlab.pyicu.org/main/pyicu" }, - "black": { - "credit": 0.006103186813186813, - "url": "https://pypi.org/project/black" + "fastnumbers": { + "credit": 0.0408375, + "url": "https://github.com/SethMMorton/fastnumbers" }, - "colorama": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/colorama" + "xattr": { + "credit": 6.282692307692326e-05, + "url": "http://github.com/xattr/xattr" }, - "appnope": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/appnope" + "unicodedata2": { + "credit": 6.282692307692326e-05, + "url": "http://github.com/mikekap/unicodedata2" }, - "pexpect": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pexpect" + "munkres": { + "credit": 0.006282692307692308, + "url": "https://software.clapper.org/munkres/" }, - "traitlets": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/traitlets" + "brotli": { + "credit": 0.006282692307692308, + "url": "https://github.com/google/brotli" }, - "stack-data": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/stack-data" + "scipy": { + "credit": 6.282692307692326e-05, + "url": "https://www.scipy.org" }, - "setuptools": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/setuptools" + "brotlicffi": { + "credit": 6.282692307692326e-05, + "url": "https://github.com/python-hyper/brotlicffi" }, - "pygments": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pygments" + "skia-pathops": { + "credit": 6.282692307692326e-05, + "url": "https://github.com/fonttools/skia-pathops" }, - "prompt-toolkit": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/prompt-toolkit" + "sympy": { + "credit": 6.282692307692326e-05, + "url": "https://sympy.org" }, - "pickleshare": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pickleshare" + "lz4": { + "credit": 6.282692307692326e-05, + "url": "https://github.com/python-lz4/python-lz4" }, - "matplotlib-inline": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/matplotlib-inline" + "zopfli": { + "credit": 6.282692307692326e-05, + "url": "https://github.com/fonttools/py-zopfli" }, - "jedi": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/jedi" + "lxml": { + "credit": 0.006282692307692308, + "url": "https://lxml.de/" }, - "backcall": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/backcall" + "fs": { + "credit": 0.006282692307692308, + "url": "https://github.com/PyFilesystem/pyfilesystem2" }, - "PyICU": { - "credit": 0.037696153846153845, - "url": "https://pypi.org/project/PyICU" + "typing-extensions": { + "credit": 0.0839210625, + "url": "https://pypi.org/project/typing-extensions" }, - "fastnumbers": { - "credit": 0.037696153846153845, - "url": "https://pypi.org/project/fastnumbers" + "pytest-timeout": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pytest-timeout" }, - "pytest-xdist": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/pytest-xdist" + "pytest-cov": { + "credit": 0.006141331730769231, + "url": "https://pypi.org/project/pytest-cov" }, - "hypothesis": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/hypothesis" + "pytest": { + "credit": 0.015471129807692307, + "url": "https://pypi.org/project/pytest" }, - "pytz": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/pytz" + "pyroma": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pyroma" }, - "python-dateutil": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/python-dateutil" + "packaging": { + "credit": 0.00735075, + "url": "https://pypi.org/project/packaging" }, - "pyamg": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pyamg" + "markdown2": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/markdown2" }, - "mypy": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/mypy" + "defusedxml": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/defusedxml" }, - "flake8": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/flake8" + "coverage": { + "credit": 0.008214620192307693, + "url": "https://pypi.org/project/coverage" }, - "pytest-cov": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pytest-cov" + "check-manifest": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/check-manifest" }, "sphinxext-opengraph": { - "credit": 0.00359010989010989, + "credit": 0.0051046875, "url": "https://pypi.org/project/sphinxext-opengraph" }, - "sphinx-prompt": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/sphinx-prompt" + "sphinx-rtd-theme": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "Pillow": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/Pillow" + "sphinx-removed-in": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "numpydoc": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/numpydoc" + "sphinx-issues": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-issues" }, - "sphinx-gallery": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/sphinx-gallery" + "sphinx-copybutton": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/sphinx-copybutton" }, "sphinx": { - "credit": 0.00359010989010989, + "credit": 0.006141331730769231, "url": "https://pypi.org/project/sphinx" }, - "seaborn": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/seaborn" - }, - "scikit-image": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/scikit-image" - }, - "memory-profiler": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/memory-profiler" - }, - "threadpoolctl": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/threadpoolctl" - }, - "joblib": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/joblib" + "olefile": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/olefile" }, "pyopenssl": { - "credit": 0.0020732884615384615, + "credit": 0.0022460625, "url": "https://pypi.org/project/pyopenssl" }, "cryptography": { - "credit": 0.0020732884615384615, + "credit": 0.0022460625, "url": "https://pypi.org/project/cryptography" }, "hiredis": { - "credit": 0.0020732884615384615, + "credit": 0.0022460625, "url": "https://pypi.org/project/hiredis" }, - "typing-extensions": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/typing-extensions" - }, "importlib-metadata": { - "credit": 0.0020732884615384615, + "credit": 0.0022460625, "url": "https://pypi.org/project/importlib-metadata" }, "async-timeout": { - "credit": 0.0020732884615384615, + "credit": 0.0022460625, "url": "https://pypi.org/project/async-timeout" }, - "packaging": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/packaging" - }, "deprecated": { - "credit": 0.0020732884615384615, + "credit": 0.0022460625, "url": "https://pypi.org/project/deprecated" }, "win-inet-pton": { - "credit": 0.002665656593406593, + "credit": 0.0028877946428571425, "url": "https://pypi.org/project/win-inet-pton" }, "PySocks": { - "credit": 0.002665656593406593, + "credit": 0.0028877946428571425, "url": "https://pypi.org/project/PySocks" }, "charset-normalizer": { - "credit": 0.002665656593406593, + "credit": 0.0028877946428571425, "url": "https://pypi.org/project/charset-normalizer" }, "idna": { - "credit": 0.002665656593406593, + "credit": 0.0028877946428571425, "url": "https://pypi.org/project/idna" }, "chardet": { - "credit": 0.002665656593406593, + "credit": 0.0028877946428571425, "url": "https://pypi.org/project/chardet" }, "certifi": { - "credit": 0.002665656593406593, + "credit": 0.0028877946428571425, "url": "https://pypi.org/project/certifi" }, "urllib3": { - "credit": 0.002665656593406593, + "credit": 0.0028877946428571425, "url": "https://pypi.org/project/urllib3" + }, + "cffi": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.0031099326923076922, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.0031099326923076922, + "url": "https://pypi.org/project/pytest-xdist" + }, + "numpy": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.0031099326923076922, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" } } } \ No newline at end of file diff --git a/_repos/github/bootphon/phonemizer/README.md b/_repos/github/bootphon/phonemizer/README.md index 5d5fd3a2..b7186871 100644 --- a/_repos/github/bootphon/phonemizer/README.md +++ b/_repos/github/bootphon/phonemizer/README.md @@ -8,32 +8,57 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[joblib](https://joblib.readthedocs.io)|0.198| -|pypi|[segments](https://github.com/cldf/segments)|0.198| -|pypi|[dlinfo](https://code.grasp-open.com/grasp-tools/python-dlinfo)|0.198| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.198| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.015| -|pypi|[sphinx-notfound-page](https://github.com/readthedocs/sphinx-notfound-page)|0.015| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.015| -|pypi|[furo](https://pypi.org/project/furo)|0.015| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.015| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.015| -|pypi|[mypy](https://pypi.org/project/mypy)|0.015| -|pypi|[six](https://pypi.org/project/six)|0.015| -|pypi|[pytest](https://pypi.org/project/pytest)|0.015| -|pypi|[pympler](https://pypi.org/project/pympler)|0.015| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.015| +|pypi|[dlinfo](https://code.grasp-open.com/grasp-tools/python-dlinfo)|0.115| +|pypi|[segments](https://github.com/cldf/segments)|0.115| +|pypi|[uritemplate](https://uritemplate.readthedocs.org)|0.108| +|pypi|[six](https://pypi.org/project/six)|0.099| +|pypi|[idna](https://pypi.org/project/idna)|0.098| +|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.098| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.035| +|pypi|[flake8](https://pypi.org/project/flake8)|0.033| +|pypi|[attrs](https://www.attrs.org/)|0.018| +|pypi|[mypy](https://pypi.org/project/mypy)|0.018| +|pypi|[colorama](https://pypi.org/project/colorama)|0.017| +|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.017| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.017| +|pypi|[wheel](https://pypi.org/project/wheel)|0.017| +|pypi|[twine](https://pypi.org/project/twine)|0.017| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.017| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.016| +|pypi|[joblib](https://joblib.readthedocs.io)|0.016| +|pypi|[types-colorama](https://pypi.org/project/types-colorama)|0.016| +|pypi|[black](https://pypi.org/project/black)|0.016| |setup.py|github/bootphon/phonemizer|0.01| -|pypi|[attrs](https://www.attrs.org/)|0.002| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| -|pypi|[toml](https://pypi.org/project/toml)|0.002| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.002| -|pypi|[nodeenv](https://pypi.org/project/nodeenv)|0.002| -|pypi|[identify](https://pypi.org/project/identify)|0.002| -|pypi|[cfgv](https://pypi.org/project/cfgv)|0.002| +|pypi|[rfc3986](http://rfc3986.readthedocs.io)|0.01| +|pypi|[isodate](https://github.com/gweis/isodate/)|0.01| +|pypi|[coverage](https://pypi.org/project/coverage)|0.009| +|pypi|[colorlog](https://github.com/borntyping/python-colorlog)|0.009| +|pypi|[csvw](https://github.com/cldf/csvw)|0.009| +|pypi|[tabulate](https://github.com/astanin/python-tabulate)|0.009| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| +|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.001| +|pypi|[furo](https://pypi.org/project/furo)|0.001| +|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| +|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| +|pypi|[pympler](https://pypi.org/project/pympler)|0.001| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| +|pypi|[requests](https://pypi.org/project/requests)|0.001| +|pypi|[pygments](https://pypi.org/project/pygments)|0.001| +|pypi|[nose](https://pypi.org/project/nose)|0.001| +|pypi|[mock](https://pypi.org/project/mock)|0.001| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| +|pypi|[tomli](https://pypi.org/project/tomli)|0.001| +|pypi|[py](https://pypi.org/project/py)|0.001| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| +|pypi|[packaging](https://pypi.org/project/packaging)|0.001| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| +|pypi|[phonemizer](https://github.com/bootphon/phonemizer)|0.001| +|pypi|[clldutils](https://github.com/clld/clldutils)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/bootphon/phonemizer/badge.png b/_repos/github/bootphon/phonemizer/badge.png index a4ab4866..83057c75 100644 Binary files a/_repos/github/bootphon/phonemizer/badge.png and b/_repos/github/bootphon/phonemizer/badge.png differ diff --git a/_repos/github/bootphon/phonemizer/data.json b/_repos/github/bootphon/phonemizer/data.json index c208867b..21ebee70 100644 --- a/_repos/github/bootphon/phonemizer/data.json +++ b/_repos/github/bootphon/phonemizer/data.json @@ -6,109 +6,205 @@ } }, "pypi": { - "joblib": { - "credit": 0.198, - "url": "https://joblib.readthedocs.io" + "phonemizer": { + "credit": 0.0009900000000000186, + "url": "https://github.com/bootphon/phonemizer" + }, + "dlinfo": { + "credit": 0.11533500000000001, + "url": "https://code.grasp-open.com/grasp-tools/python-dlinfo" }, "segments": { - "credit": 0.198, + "credit": 0.11533500000000001, "url": "https://github.com/cldf/segments" }, - "attrs": { - "credit": 0.0019800000000000095, - "url": "https://www.attrs.org/" + "clldutils": { + "credit": 0.0009900000000000186, + "url": "https://github.com/clld/clldutils" }, - "dlinfo": { - "credit": 0.198, - "url": "https://code.grasp-open.com/grasp-tools/python-dlinfo" + "csvw": { + "credit": 0.009157500000000004, + "url": "https://github.com/cldf/csvw" + }, + "rfc3986": { + "credit": 0.009900000000000004, + "url": "http://rfc3986.readthedocs.io" + }, + "tabulate": { + "credit": 0.009157500000000004, + "url": "https://github.com/astanin/python-tabulate" + }, + "uritemplate": { + "credit": 0.10791, + "url": "https://uritemplate.readthedocs.org" + }, + "colorlog": { + "credit": 0.009157500000000018, + "url": "https://github.com/borntyping/python-colorlog" + }, + "isodate": { + "credit": 0.009900000000000004, + "url": "https://github.com/gweis/isodate/" + }, + "pytest": { + "credit": 0.03481982307692307, + "url": "https://docs.pytest.org/en/latest/" }, "typing-extensions": { - "credit": 0.198, + "credit": 0.016335, "url": "https://typing.readthedocs.io/" }, - "cloudpickle": { - "credit": 0.015078461538461539, - "url": "https://github.com/cloudpipe/cloudpickle" + "attrs": { + "credit": 0.018251578124999997, + "url": "https://www.attrs.org/" }, - "pre-commit": { - "credit": 0.00015078461538461582, - "url": "https://github.com/pre-commit/pre-commit" + "joblib": { + "credit": 0.016335, + "url": "https://joblib.readthedocs.io" }, - "sphinx-notfound-page": { - "credit": 0.015078461538461539, - "url": "https://github.com/readthedocs/sphinx-notfound-page" + "pytest-mock": { + "credit": 0.0170775, + "url": "https://pypi.org/project/pytest-mock" }, - "sphinx": { - "credit": 0.015078461538461539, - "url": "https://www.sphinx-doc.org/" + "pytest-cov": { + "credit": 0.0170775, + "url": "https://pypi.org/project/pytest-cov" }, - "furo": { - "credit": 0.015078461538461539, - "url": "https://pypi.org/project/furo" + "coverage": { + "credit": 0.009411473076923076, + "url": "https://pypi.org/project/coverage" }, - "zope.interface": { - "credit": 0.015078461538461539, - "url": "https://pypi.org/project/zope.interface" + "wheel": { + "credit": 0.0170775, + "url": "https://pypi.org/project/wheel" }, - "pytest-mypy-plugins": { - "credit": 0.015078461538461539, - "url": "https://pypi.org/project/pytest-mypy-plugins" + "twine": { + "credit": 0.0170775, + "url": "https://pypi.org/project/twine" + }, + "flake8": { + "credit": 0.0334125, + "url": "https://pypi.org/project/flake8" + }, + "python-dateutil": { + "credit": 0.0170775, + "url": "https://pypi.org/project/python-dateutil" + }, + "idna": { + "credit": 0.09801, + "url": "https://pypi.org/project/idna" + }, + "wcwidth": { + "credit": 0.09801, + "url": "https://pypi.org/project/wcwidth" + }, + "types-colorama": { + "credit": 0.016335, + "url": "https://pypi.org/project/types-colorama" }, "mypy": { - "credit": 0.015078461538461539, + "credit": 0.017578973076923077, "url": "https://pypi.org/project/mypy" }, + "black": { + "credit": 0.016335, + "url": "https://pypi.org/project/black" + }, + "colorama": { + "credit": 0.017345728124999998, + "url": "https://pypi.org/project/colorama" + }, "six": { - "credit": 0.015078461538461539, + "credit": 0.09925397307692307, "url": "https://pypi.org/project/six" }, - "pytest": { - "credit": 0.015078461538461539, - "url": "https://pypi.org/project/pytest" + "xmlschema": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/xmlschema" }, - "pympler": { - "credit": 0.015078461538461539, - "url": "https://pypi.org/project/pympler" + "requests": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/requests" + }, + "pygments": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/pygments" + }, + "nose": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/nose" + }, + "mock": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.015078461538461539, + "credit": 0.002254701201923077, "url": "https://pypi.org/project/hypothesis" }, - "coverage": { - "credit": 0.015078461538461539, - "url": "https://pypi.org/project/coverage" + "argcomplete": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/argcomplete" + }, + "atomicwrites": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.0018659596153846154, + "credit": 0.001010728125, "url": "https://pypi.org/project/importlib-metadata" }, - "importlib-resources": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/importlib-resources" + "tomli": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/tomli" }, - "virtualenv": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/virtualenv" + "py": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/py" }, - "toml": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/toml" + "pluggy": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/pluggy" }, - "pyyaml": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/pyyaml" + "packaging": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/packaging" }, - "nodeenv": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/nodeenv" + "iniconfig": { + "credit": 0.001010728125, + "url": "https://pypi.org/project/iniconfig" }, - "identify": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/identify" + "cloudpickle": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/cloudpickle" }, - "cfgv": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/cfgv" + "pre-commit": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/pre-commit" + }, + "sphinx-notfound-page": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/sphinx-notfound-page" + }, + "sphinx": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/sphinx" + }, + "furo": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/furo" + }, + "zope.interface": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/zope.interface" + }, + "pytest-mypy-plugins": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/pytest-mypy-plugins" + }, + "pympler": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/pympler" } } } \ No newline at end of file diff --git a/_repos/github/brainets/frites/README.md b/_repos/github/brainets/frites/README.md index 7f01ca0d..46a56d92 100644 --- a/_repos/github/brainets/frites/README.md +++ b/_repos/github/brainets/frites/README.md @@ -8,8 +8,106 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[h5py](http://www.h5py.org)|0.093| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.093| +|pypi|[matplotlib](https://matplotlib.org)|0.073| +|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.072| +|pypi|[numpy](https://pypi.org/project/numpy)|0.068| +|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.066| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.062| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.061| +|pypi|[packaging](https://pypi.org/project/packaging)|0.049| +|pypi|[Babel](https://pypi.org/project/Babel)|0.031| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.012| +|pypi|[scipy](https://pypi.org/project/scipy)|0.011| +|pypi|[xxhash](https://pypi.org/project/xxhash)|0.01| +|pypi|[paramiko](https://pypi.org/project/paramiko)|0.01| +|pypi|[requests](https://pypi.org/project/requests)|0.01| |setup.py|github/brainets/frites|0.01| -|pypi|[numpy](https://www.numpy.org)|0.01| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008| +|pypi|[pytest](https://pypi.org/project/pytest)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| +|pypi|[flake8](https://github.com/pycqa/flake8)|0.005| +|pypi|[pooch](https://github.com/fatiando/pooch)|0.005| +|pypi|[h5netcdf](https://h5netcdf.org)|0.005| +|pypi|[xattr](https://pypi.org/project/xattr)|0.005| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.005| +|pypi|[munkres](https://pypi.org/project/munkres)|0.005| +|pypi|[brotli](https://pypi.org/project/brotli)|0.005| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.005| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| +|pypi|[lz4](https://pypi.org/project/lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[lxml](https://pypi.org/project/lxml)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.004| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[cftime](https://pypi.org/project/cftime)|0.003| +|pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.003| +|pypi|[mne](https://mne.tools/dev/)|0.003| +|pypi|[xarray](https://github.com/pydata/xarray)|0.003| +|pypi|[scanpydoc](https://pypi.org/project/scanpydoc)|0.002| +|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.002| +|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.002| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|0.002| +|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|0.002| +|pypi|[dask](https://pypi.org/project/dask)|0.002| +|pypi|[cfgrib](https://pypi.org/project/cfgrib)|0.002| +|pypi|[rasterio](https://pypi.org/project/rasterio)|0.002| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.002| +|pypi|[zarr](https://pypi.org/project/zarr)|0.002| +|pypi|[pydap](https://pypi.org/project/pydap)|0.002| +|pypi|[numbagg](https://pypi.org/project/numbagg)|0.002| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.002| +|pypi|[pandas](https://pypi.org/project/pandas)|0.002| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.002| +|pypi|[EDFlib-Python](https://pypi.org/project/EDFlib-Python)|0.002| +|pypi|[eeglabio](https://pypi.org/project/eeglabio)|0.002| +|pypi|[nbclient](https://pypi.org/project/nbclient)|0.002| +|pypi|[nitime](https://pypi.org/project/nitime)|0.002| +|pypi|[wheel](https://pypi.org/project/wheel)|0.002| +|pypi|[twine](https://pypi.org/project/twine)|0.002| +|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|0.002| +|pypi|[codespell](https://pypi.org/project/codespell)|0.002| +|pypi|[flake8-array-spacing](https://pypi.org/project/flake8-array-spacing)|0.002| +|pypi|[pytest-harvest](https://pypi.org/project/pytest-harvest)|0.002| +|pypi|[pymatreader](https://pypi.org/project/pymatreader)|0.002| +|pypi|[h5io](https://pypi.org/project/h5io)|0.002| +|pypi|[decorator](https://pypi.org/project/decorator)|0.002| +|pypi|[sphinx-panels](https://pypi.org/project/sphinx-panels)|0.002| +|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.002| +|pypi|[openpyxl](https://pypi.org/project/openpyxl)|0.002| +|pypi|[xlrd](https://pypi.org/project/xlrd)|0.002| +|pypi|[sphinxcontrib-bibtex](https://pypi.org/project/sphinxcontrib-bibtex)|0.002| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.002| +|pypi|[codecov](https://pypi.org/project/codecov)|0.002| +|pypi|[pytest-sugar](https://pypi.org/project/pytest-sugar)|0.002| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.002| +|pypi|[dcor](https://pypi.org/project/dcor)|0.002| +|pypi|[numba](https://pypi.org/project/numba)|0.002| +|pypi|[networkx](https://pypi.org/project/networkx)|0.002| +|pypi|[joblib](https://pypi.org/project/joblib)|0.002| +|pypi|[flake8-polyfill](https://pypi.org/project/flake8-polyfill)|0.001| +|pypi|[frites](https://github.com/brainets/frites)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/brainets/frites/badge.png b/_repos/github/brainets/frites/badge.png index 73e2b3be..26670367 100644 Binary files a/_repos/github/brainets/frites/badge.png and b/_repos/github/brainets/frites/badge.png differ diff --git a/_repos/github/brainets/frites/data.json b/_repos/github/brainets/frites/data.json index cf0c7f57..d123e30c 100644 --- a/_repos/github/brainets/frites/data.json +++ b/_repos/github/brainets/frites/data.json @@ -6,9 +6,405 @@ } }, "pypi": { + "frites": { + "credit": 0.0006187500000000012, + "url": "https://github.com/brainets/frites" + }, + "h5netcdf": { + "credit": 0.005087044098143237, + "url": "https://h5netcdf.org" + }, + "mne": { + "credit": 0.002731034482758622, + "url": "https://mne.tools/dev/" + }, + "netCDF4": { + "credit": 0.06634329409814323, + "url": "http://github.com/Unidata/netcdf4-python" + }, + "xarray": { + "credit": 0.002731034482758622, + "url": "https://github.com/pydata/xarray" + }, + "pooch": { + "credit": 0.00516248282967033, + "url": "https://github.com/fatiando/pooch" + }, + "cftime": { + "credit": 0.0029747596153846165, + "url": "https://pypi.org/project/cftime" + }, + "h5py": { + "credit": 0.09250312499999999, + "url": "http://www.h5py.org" + }, + "jinja2": { + "credit": 0.0028064732142857153, + "url": "https://palletsprojects.com/p/jinja/" + }, + "matplotlib": { + "credit": 0.07324303654319818, + "url": "https://matplotlib.org" + }, + "appdirs": { + "credit": 0.072084375, + "url": "http://github.com/ActiveState/appdirs" + }, + "cycler": { + "credit": 0.061875, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0006187500000000012, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0006187500000000012, + "url": "https://github.com/nucleic/kiwi" + }, + "MarkupSafe": { + "credit": 0.09250312499999999, + "url": "https://palletsprojects.com/p/markupsafe/" + }, + "pillow": { + "credit": 0.0006187500000000012, + "url": "https://python-pillow.org" + }, + "pep8-naming": { + "credit": 2.112284482758608e-05, + "url": "https://github.com/PyCQA/pep8-naming" + }, + "flake8": { + "credit": 0.005345588516009853, + "url": "https://github.com/pycqa/flake8" + }, + "sphinx-copybutton": { + "credit": 0.005940800107758621, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx-panels": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinx-panels" + }, + "memory-profiler": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/memory-profiler" + }, + "seaborn": { + "credit": 0.004468294098143236, + "url": "https://pypi.org/project/seaborn" + }, + "openpyxl": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/openpyxl" + }, + "xlrd": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/xlrd" + }, + "numpydoc": { + "credit": 0.004300007697044335, + "url": "https://pypi.org/project/numpydoc" + }, + "sphinxcontrib-bibtex": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinxcontrib-bibtex" + }, + "pydata-sphinx-theme": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/pydata-sphinx-theme" + }, + "sphinx-gallery": { + "credit": 0.004300007697044335, + "url": "https://pypi.org/project/sphinx-gallery" + }, + "sphinx": { + "credit": 0.005940800107758621, + "url": "https://pypi.org/project/sphinx" + }, + "codecov": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/codecov" + }, + "pytest-cov": { + "credit": 0.008128523322044334, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest-sugar": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/pytest-sugar" + }, + "pytest": { + "credit": 0.008128523322044334, + "url": "https://pypi.org/project/pytest" + }, + "scikit-learn": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/scikit-learn" + }, + "dcor": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/dcor" + }, + "numba": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/numba" + }, + "networkx": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/networkx" + }, + "joblib": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/joblib" + }, + "scipy": { + "credit": 0.011368036543198182, + "url": "https://pypi.org/project/scipy" + }, "numpy": { - "credit": 0.0099, - "url": "https://www.numpy.org" + "credit": 0.06791226731242894, + "url": "https://pypi.org/project/numpy" + }, + "packaging": { + "credit": 0.049209748454670334, + "url": "https://pypi.org/project/packaging" + }, + "imageio-ffmpeg": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/imageio-ffmpeg" + }, + "EDFlib-Python": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/EDFlib-Python" + }, + "eeglabio": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/eeglabio" + }, + "nbclient": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/nbclient" + }, + "nitime": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/nitime" + }, + "wheel": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/wheel" + }, + "twine": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/twine" + }, + "check-manifest": { + "credit": 0.006016238839285714, + "url": "https://pypi.org/project/check-manifest" + }, + "pydocstyle": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/pydocstyle" + }, + "codespell": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/codespell" + }, + "flake8-array-spacing": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/flake8-array-spacing" + }, + "pytest-harvest": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/pytest-harvest" + }, + "pytest-timeout": { + "credit": 0.006016238839285714, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pymatreader": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/pymatreader" + }, + "h5io": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/h5io" + }, + "decorator": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/decorator" + }, + "tqdm": { + "credit": 0.012397098214285713, + "url": "https://pypi.org/project/tqdm" + }, + "scanpydoc": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/scanpydoc" + }, + "nbsphinx": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/nbsphinx" + }, + "jupyter-client": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/jupyter-client" + }, + "ipykernel": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/ipykernel" + }, + "ipython": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/ipython" + }, + "sphinx-rtd-theme": { + "credit": 0.006184525240384615, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-autosummary-accessors": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/sphinx-autosummary-accessors" + }, + "nc-time-axis": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/nc-time-axis" + }, + "dask": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/dask" + }, + "cfgrib": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/cfgrib" + }, + "rasterio": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/rasterio" + }, + "fsspec": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/fsspec" + }, + "zarr": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/zarr" + }, + "pydap": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/pydap" + }, + "numbagg": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/numbagg" + }, + "bottleneck": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/bottleneck" + }, + "pandas": { + "credit": 0.0023560096153846153, + "url": "https://pypi.org/project/pandas" + }, + "xxhash": { + "credit": 0.010209375, + "url": "https://pypi.org/project/xxhash" + }, + "paramiko": { + "credit": 0.010209375, + "url": "https://pypi.org/project/paramiko" + }, + "requests": { + "credit": 0.010209375, + "url": "https://pypi.org/project/requests" + }, + "Babel": { + "credit": 0.030628125, + "url": "https://pypi.org/project/Babel" + }, + "xattr": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.06125625, + "url": "https://pypi.org/project/typing-extensions" + }, + "pyroma": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/coverage" + }, + "sphinxext-opengraph": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-removed-in": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "olefile": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/olefile" + }, + "flake8-polyfill": { + "credit": 0.0010455808189655173, + "url": "https://pypi.org/project/flake8-polyfill" } } } \ No newline at end of file diff --git a/_repos/github/broadinstitute/cromwell/badge.png b/_repos/github/broadinstitute/cromwell/badge.png index c5bc03f8..c9a49f42 100644 Binary files a/_repos/github/broadinstitute/cromwell/badge.png and b/_repos/github/broadinstitute/cromwell/badge.png differ diff --git a/_repos/github/cabb99/open3spn2/badge.png b/_repos/github/cabb99/open3spn2/badge.png index 0b3a97bf..5b33a2fa 100644 Binary files a/_repos/github/cabb99/open3spn2/badge.png and b/_repos/github/cabb99/open3spn2/badge.png differ diff --git a/_repos/github/cadop/seg1d/badge.png b/_repos/github/cadop/seg1d/badge.png index e0174c73..9dcd60ac 100644 Binary files a/_repos/github/cadop/seg1d/badge.png and b/_repos/github/cadop/seg1d/badge.png differ diff --git a/_repos/github/candYgene/siga/badge.png b/_repos/github/candYgene/siga/badge.png index 05a8e195..2cdfebcc 100644 Binary files a/_repos/github/candYgene/siga/badge.png and b/_repos/github/candYgene/siga/badge.png differ diff --git a/_repos/github/carlosborca/CrystaLattE/README.md b/_repos/github/carlosborca/CrystaLattE/README.md index d14d3e1a..a4085a43 100644 --- a/_repos/github/carlosborca/CrystaLattE/README.md +++ b/_repos/github/carlosborca/CrystaLattE/README.md @@ -8,94 +8,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.103| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.096| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.075| -|pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.032| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.03| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.028| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.028| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.028| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.028| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.026| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.024| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.021| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.015| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.013| -|pypi|[pep517](https://pypi.org/project/pep517)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.01| |setup.py|github/carlosborca/CrystaLattE|0.01| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[attrs](https://www.attrs.org/)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.005| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.005| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.005| -|pypi|[path](https://pypi.org/project/path)|0.005| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| -|pypi|[keyring](https://pypi.org/project/keyring)|0.005| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.005| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.005| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.003| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|0.001| -|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/carlosborca/CrystaLattE/badge.png b/_repos/github/carlosborca/CrystaLattE/badge.png index 9fd72ef1..ea70e20b 100644 Binary files a/_repos/github/carlosborca/CrystaLattE/badge.png and b/_repos/github/carlosborca/CrystaLattE/badge.png differ diff --git a/_repos/github/carlosborca/CrystaLattE/data.json b/_repos/github/carlosborca/CrystaLattE/data.json index 7ef23bc8..033c4c1f 100644 --- a/_repos/github/carlosborca/CrystaLattE/data.json +++ b/_repos/github/carlosborca/CrystaLattE/data.json @@ -4,359 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "pytest_runner": { - "credit": 0.00990000000000002, - "url": "https://github.com/pytest-dev/pytest-runner/" - }, - "pytest-mypy": { - "credit": 0.02794362032967033, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-black": { - "credit": 0.10258200494505493, - "url": "https://github.com/shopkeep/pytest-black" - }, - "types-setuptools": { - "credit": 0.07539230769230769, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.0007539230769230826, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.030252745353708792, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.02794362032967033, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-checkdocs" - }, - "pytest": { - "credit": 0.09642254402234783, - "url": "https://docs.pytest.org/en/latest/" - }, - "jaraco.tidelift": { - "credit": 0.0007539230769230826, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/jaraco.packaging" - }, - "sphinx": { - "credit": 0.03167374536850169, - "url": "https://www.sphinx-doc.org/" - }, - "mypy": { - "credit": 0.004593131360946745, - "url": "http://www.mypy-lang.org/" - }, - "filelock": { - "credit": 0.00018659596153846117, - "url": "https://github.com/tox-dev/py-filelock" - }, - "attrs": { - "credit": 0.0060060575120192295, - "url": "https://www.attrs.org/" - }, - "mock": { - "credit": 0.02074713847355769, - "url": "http://mock.readthedocs.org/en/latest/" - }, - "virtualenv": { - "credit": 0.024257474999999997, - "url": "https://virtualenv.pypa.io/" - }, - "pytest-shutil": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.010750798091715976, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.013059923115754437, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.04030472769230769, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.010307205494505494, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.02568748869333791, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pep517": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.008316848571428571, - "url": "https://pypi.org/project/docutils" - }, - "xmlschema": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/nose" - }, - "hypothesis": { - "credit": 0.007240461565273667, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.008898294915865383, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/iniconfig" - }, - "importlib-resources": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-python-dateutil" - }, - "path": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/path" - }, - "python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/python-dateutil" - }, - "types-requests": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/isort" - }, - "sphinxcontrib-websupport": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "imagesize": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/snowballstemmer" - }, - "Pygments": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "lxml": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/lxml" - }, - "psutil": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/psutil" - }, - "typed-ast": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typed-ast" - }, - "mypy-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/mypy-extensions" - }, - "typing-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typing-extensions" - }, - "pytest-timeout": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/pytest-timeout" - }, - "covdefaults": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/covdefaults" - }, - "sphinx-autodoc-typehints": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "furo": { - "credit": 0.003730125038831361, - "url": "https://pypi.org/project/furo" - }, - "cloudpickle": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "zope.interface": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "pympler": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pympler" - } } } \ No newline at end of file diff --git a/_repos/github/cas-bioinf/rboAnalyzer/badge.png b/_repos/github/cas-bioinf/rboAnalyzer/badge.png index 2b85d5ce..d5ce8258 100644 Binary files a/_repos/github/cas-bioinf/rboAnalyzer/badge.png and b/_repos/github/cas-bioinf/rboAnalyzer/badge.png differ diff --git a/_repos/github/cbalbin-FIU/Epitopedia/badge.png b/_repos/github/cbalbin-FIU/Epitopedia/badge.png index 7398b005..3ff33891 100644 Binary files a/_repos/github/cbalbin-FIU/Epitopedia/badge.png and b/_repos/github/cbalbin-FIU/Epitopedia/badge.png differ diff --git a/_repos/github/cdslaborg/paramonte/badge.png b/_repos/github/cdslaborg/paramonte/badge.png index 5f3a7923..dc1d7d5c 100644 Binary files a/_repos/github/cdslaborg/paramonte/badge.png and b/_repos/github/cdslaborg/paramonte/badge.png differ diff --git a/_repos/github/chasmani/piecewise-regression/README.md b/_repos/github/chasmani/piecewise-regression/README.md index f630eb47..4c36a0f3 100644 --- a/_repos/github/chasmani/piecewise-regression/README.md +++ b/_repos/github/chasmani/piecewise-regression/README.md @@ -8,11 +8,70 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[matplotlib](https://matplotlib.org)|0.164| +|pypi|[statsmodels](https://www.statsmodels.org/)|0.154| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[numpy](https://www.numpy.org)|0.119| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.034| +|pypi|[six](https://github.com/benjaminp/six)|0.029| +|pypi|[coverage](https://pypi.org/project/coverage)|0.015| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| |setup.py|github/chasmani/piecewise-regression|0.01| -|pypi|[numpy](https://www.numpy.org)|0.005| -|pypi|[matplotlib](https://matplotlib.org)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[statsmodels](https://www.statsmodels.org/)|0.002| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.009| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.009| +|pypi|[brotli](https://github.com/google/brotli)|0.009| +|pypi|[lxml](https://lxml.de/)|0.009| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[packaging](https://pypi.org/project/packaging)|0.009| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[enum34](https://pypi.org/project/enum34)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| +|pypi|[hunter](https://pypi.org/project/hunter)|0.003| +|pypi|[fields](https://pypi.org/project/fields)|0.003| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| +|pypi|[requests](https://pypi.org/project/requests)|0.002| +|pypi|[pygments](https://pypi.org/project/pygments)|0.002| +|pypi|[nose](https://pypi.org/project/nose)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[tomli](https://pypi.org/project/tomli)|0.002| +|pypi|[py](https://pypi.org/project/py)|0.002| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| +|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[piecewise-regression](https://github.com/chasmani/piecewise-regression)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[patsy](https://github.com/pydata/patsy)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| +|pypi|[scipy](https://www.scipy.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/chasmani/piecewise-regression/badge.png b/_repos/github/chasmani/piecewise-regression/badge.png index 296beeca..eef55abd 100644 Binary files a/_repos/github/chasmani/piecewise-regression/badge.png and b/_repos/github/chasmani/piecewise-regression/badge.png differ diff --git a/_repos/github/chasmani/piecewise-regression/data.json b/_repos/github/chasmani/piecewise-regression/data.json index 7f8b2640..56ed1db4 100644 --- a/_repos/github/chasmani/piecewise-regression/data.json +++ b/_repos/github/chasmani/piecewise-regression/data.json @@ -6,21 +6,293 @@ } }, "pypi": { - "numpy": { - "credit": 0.004925250000000001, - "url": "https://www.numpy.org" + "piecewise-regression": { + "credit": 0.0012375000000000025, + "url": "https://github.com/chasmani/piecewise-regression" }, "matplotlib": { - "credit": 0.002475, + "credit": 0.16380216346153847, "url": "https://matplotlib.org" }, + "statsmodels": { + "credit": 0.154378125, + "url": "https://www.statsmodels.org/" + }, + "cycler": { + "credit": 0.12375, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0012375000000000025, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0012375000000000025, + "url": "https://github.com/nucleic/kiwi" + }, + "patsy": { + "credit": 0.0012375000000000025, + "url": "https://github.com/pydata/patsy" + }, + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" + }, "scipy": { - "credit": 0.002475, + "credit": 0.0006455466346153866, "url": "https://www.scipy.org" }, - "statsmodels": { - "credit": 0.002475, - "url": "https://www.statsmodels.org/" + "numpy": { + "credit": 0.11903974182692308, + "url": "https://www.numpy.org" + }, + "xattr": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.009424038461538461, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.009424038461538461, + "url": "https://github.com/google/brotli" + }, + "brotlicffi": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 9.424038461538532e-05, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.009424038461538461, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.1225125, + "url": "https://typing.readthedocs.io/" + }, + "pytest-cov": { + "credit": 0.009457022596153846, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.03406436502403846, + "url": "https://docs.pytest.org/en/latest/" + }, + "six": { + "credit": 0.028700909134615385, + "url": "https://github.com/benjaminp/six" + }, + "pytest-timeout": { + "credit": 7.657031250000047e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.0091731234375, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.015354114663461538, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.009211997596153846, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" + }, + "cffi": { + "credit": 0.013994697115384614, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.007697083413461538, + "url": "https://pypi.org/project/pytest-xdist" + }, + "enum34": { + "credit": 0.005831123798076923, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/backports.os" + }, + "setuptools": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/virtualenv" + }, + "process-tests": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/fields" + }, + "xmlschema": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/xmlschema" + }, + "requests": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/requests" + }, + "pygments": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/pygments" + }, + "nose": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/nose" + }, + "mock": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/mock" + }, + "hypothesis": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/hypothesis" + }, + "argcomplete": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/argcomplete" + }, + "colorama": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/colorama" + }, + "atomicwrites": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/atomicwrites" + }, + "importlib-metadata": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/importlib-metadata" + }, + "tomli": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/tomli" + }, + "py": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/py" + }, + "pluggy": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/pluggy" + }, + "iniconfig": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/iniconfig" + }, + "attrs": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/attrs" } } } \ No newline at end of file diff --git a/_repos/github/chemfiles/chemfiles/README.md b/_repos/github/chemfiles/chemfiles/README.md new file mode 100644 index 00000000..548f7833 --- /dev/null +++ b/_repos/github/chemfiles/chemfiles/README.md @@ -0,0 +1,47 @@ +--- +title: github/chemfiles/chemfiles +layout: repo +tipue_search_active: true +exclude_from_search: true +--- +# Software Credit + +|Manager|Name|Credit| +|-------|----|------| +|pypi|[sphinx_bootstrap_theme](https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html)|0.247| +|pypi|[toml](https://github.com/uiri/toml)|0.247| +|pypi|[docutils](https://pypi.org/project/docutils)|0.132| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.123| +|requirements.txt|github/chemfiles/chemfiles|0.01| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.01| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.01| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.01| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.01| +|pypi|[mypy](https://pypi.org/project/mypy)|0.01| +|pypi|[isort](https://pypi.org/project/isort)|0.01| +|pypi|[flake8](https://pypi.org/project/flake8)|0.01| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.01| +|pypi|[colorama](https://pypi.org/project/colorama)|0.01| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[requests](https://pypi.org/project/requests)|0.01| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.01| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.01| +|pypi|[babel](https://pypi.org/project/babel)|0.01| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.01| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.01| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.01| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.01| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.01| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.01| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.01| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.01| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.01| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.002| +|pypi|[breathe](https://github.com/michaeljones/breathe)|0.002| + + +> Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. + + +- Generated by [CiteLang](https://github.com/vsoch/citelang) diff --git a/_repos/github/chemfiles/chemfiles/badge.png b/_repos/github/chemfiles/chemfiles/badge.png new file mode 100644 index 00000000..0e1411c6 Binary files /dev/null and b/_repos/github/chemfiles/chemfiles/badge.png differ diff --git a/_repos/github/chemfiles/chemfiles/data.json b/_repos/github/chemfiles/chemfiles/data.json new file mode 100644 index 00000000..5aa2ddfb --- /dev/null +++ b/_repos/github/chemfiles/chemfiles/data.json @@ -0,0 +1,130 @@ +{ + "requirements.txt": { + "github/chemfiles/chemfiles": { + "credit": 0.01, + "url": null + } + }, + "pypi": { + "sphinx": { + "credit": 0.0024750000000000327, + "url": "https://www.sphinx-doc.org/" + }, + "breathe": { + "credit": 0.002475000000000005, + "url": "https://github.com/michaeljones/breathe" + }, + "sphinx_bootstrap_theme": { + "credit": 0.2475, + "url": "https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html" + }, + "toml": { + "credit": 0.2475, + "url": "https://github.com/uiri/toml" + }, + "pytest": { + "credit": 0.009800999999999999, + "url": "https://docs.pytest.org/en/latest/" + }, + "types-requests": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/types-requests" + }, + "types-typed-ast": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/types-typed-ast" + }, + "docutils-stubs": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/docutils-stubs" + }, + "mypy": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/mypy" + }, + "isort": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/isort" + }, + "flake8": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/flake8" + }, + "sphinxcontrib-websupport": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/sphinxcontrib-websupport" + }, + "colorama": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/colorama" + }, + "importlib-metadata": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/importlib-metadata" + }, + "packaging": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/packaging" + }, + "requests": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/requests" + }, + "imagesize": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/imagesize" + }, + "alabaster": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/alabaster" + }, + "babel": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/babel" + }, + "snowballstemmer": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/snowballstemmer" + }, + "docutils": { + "credit": 0.1323135, + "url": "https://pypi.org/project/docutils" + }, + "Pygments": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/Pygments" + }, + "Jinja2": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/Jinja2" + }, + "sphinxcontrib-qthelp": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" + }, + "sphinxcontrib-serializinghtml": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + }, + "sphinxcontrib-htmlhelp": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + }, + "sphinxcontrib-jsmath": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" + }, + "sphinxcontrib-devhelp": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" + }, + "sphinxcontrib-applehelp": { + "credit": 0.009800999999999999, + "url": "https://pypi.org/project/sphinxcontrib-applehelp" + }, + "Sphinx": { + "credit": 0.1225125, + "url": "https://pypi.org/project/Sphinx" + } + } +} \ No newline at end of file diff --git a/_repos/github/circuitgraph/circuitgraph/README.md b/_repos/github/circuitgraph/circuitgraph/README.md index e97e836c..d193c0ec 100644 --- a/_repos/github/circuitgraph/circuitgraph/README.md +++ b/_repos/github/circuitgraph/circuitgraph/README.md @@ -8,80 +8,47 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[atomicwrites](https://github.com/untitaker/python-atomicwrites)|0.165| -|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.163| -|pypi|[six](https://pypi.org/project/six)|0.064| -|pypi|[pyjsparser](https://pypi.org/project/pyjsparser)|0.054| -|pypi|[tzlocal](https://pypi.org/project/tzlocal)|0.054| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.037| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.028| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.024| -|pypi|[pandas](https://pypi.org/project/pandas)|0.024| -|pypi|[numpy](https://pypi.org/project/numpy)|0.024| -|pypi|[pydot](https://github.com/pydot/pydot)|0.023| -|pypi|[pygraphviz](http://pygraphviz.github.io)|0.023| -|pypi|[lxml](https://lxml.de/)|0.023| -|pypi|[nb2plots](http://github.com/matthew-brett/nb2plots)|0.023| -|pypi|[sphinx-gallery](https://sphinx-gallery.github.io)|0.023| -|pypi|[mypy](https://pypi.org/project/mypy)|0.023| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.023| -|pypi|[black](https://pypi.org/project/black)|0.023| -|pypi|[scipy](https://pypi.org/project/scipy)|0.023| -|pypi|[coverage](https://pypi.org/project/coverage)|0.016| -|pypi|[requests](https://pypi.org/project/requests)|0.013| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.01| +|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.145| +|pypi|[atomicwrites](https://github.com/untitaker/python-atomicwrites)|0.145| +|pypi|[six](https://pypi.org/project/six)|0.074| +|pypi|[js2py](https://github.com/PiotrDabkowski/Js2Py)|0.037| +|pypi|[pypblib](https://pypi.org/project/pypblib)|0.036| +|pypi|[py-aiger-cnf](https://pypi.org/project/py-aiger-cnf)|0.036| +|pypi|[pyjsparser](https://pypi.org/project/pyjsparser)|0.036| +|pypi|[tzlocal](https://pypi.org/project/tzlocal)|0.036| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.023| +|pypi|[pydot](https://pypi.org/project/pydot)|0.021| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.021| +|pypi|[lxml](https://pypi.org/project/lxml)|0.021| +|pypi|[texext](https://pypi.org/project/texext)|0.021| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.021| +|pypi|[pillow](https://pypi.org/project/pillow)|0.021| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.021| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.021| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.021| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.021| +|pypi|[mypy](https://pypi.org/project/mypy)|0.021| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.021| +|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.021| +|pypi|[black](https://pypi.org/project/black)|0.021| +|pypi|[pandas](https://pypi.org/project/pandas)|0.021| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.021| +|pypi|[scipy](https://pypi.org/project/scipy)|0.021| +|pypi|[numpy](https://pypi.org/project/numpy)|0.021| |setup.py|github/circuitgraph/circuitgraph|0.01| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.007| -|pypi|[lark](https://github.com/lark-parser/lark)|0.005| -|pypi|[networkx](https://networkx.org/)|0.005| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.004| -|pypi|[pydata-sphinx-theme](https://pydata-sphinx-theme.readthedocs.io/en/latest/)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| -|pypi|[hunter](https://pypi.org/project/hunter)|0.003| -|pypi|[fields](https://pypi.org/project/fields)|0.003| -|pypi|[js2py](https://github.com/PiotrDabkowski/Js2Py)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[attrs](https://pypi.org/project/attrs)|0.001| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.001| -|pypi|[pyroma](https://pypi.org/project/pyroma)|0.001| -|pypi|[markdown2](https://pypi.org/project/markdown2)|0.001| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.001| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.001| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.001| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.001| -|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.001| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.001| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.001| -|pypi|[olefile](https://pypi.org/project/olefile)|0.001| -|pypi|[codecov](https://github.com/codecov/codecov-python)|0.001| -|pypi|[numpydoc](https://numpydoc.readthedocs.io)|0.001| -|pypi|[nox](https://pypi.org/project/nox)|0.001| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.001| -|pypi|[xarray](https://pypi.org/project/xarray)|0.001| -|pypi|[plotly](https://pypi.org/project/plotly)|0.001| -|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|0.001| -|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|0.001| -|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|0.001| -|pypi|[pytest-regressions](https://pypi.org/project/pytest-regressions)|0.001| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.001| -|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|0.001| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.001| -|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|0.001| +|pypi|[coverage](https://pypi.org/project/coverage)|0.01| +|pypi|[requests](https://pypi.org/project/requests)|0.008| +|pypi|[codecov](https://github.com/codecov/codecov-python)|0.005| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.005| +|pypi|[lark](https://github.com/lark-parser/lark)|0.004| +|pypi|[networkx](https://networkx.org/)|0.004| +|pypi|[circuitgraph](https://github.com/circuitgraph/circuitgraph)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| +|pypi|[hunter](https://pypi.org/project/hunter)|0.002| +|pypi|[fields](https://pypi.org/project/fields)|0.002| +|pypi|[python-sat](https://github.com/pysathq/pysat)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/circuitgraph/circuitgraph/badge.png b/_repos/github/circuitgraph/circuitgraph/badge.png index be3544eb..57ffbcc9 100644 Binary files a/_repos/github/circuitgraph/circuitgraph/badge.png and b/_repos/github/circuitgraph/circuitgraph/badge.png differ diff --git a/_repos/github/circuitgraph/circuitgraph/data.json b/_repos/github/circuitgraph/circuitgraph/data.json index e286fceb..57a44982 100644 --- a/_repos/github/circuitgraph/circuitgraph/data.json +++ b/_repos/github/circuitgraph/circuitgraph/data.json @@ -6,305 +6,165 @@ } }, "pypi": { + "circuitgraph": { + "credit": 0.003300000000000025, + "url": "https://github.com/circuitgraph/circuitgraph" + }, "lark": { - "credit": 0.00495000000000001, + "credit": 0.004389000000000032, "url": "https://github.com/lark-parser/lark" }, "networkx": { - "credit": 0.00495000000000001, + "credit": 0.004389000000000032, "url": "https://networkx.org/" }, + "python-sat": { + "credit": 0.0010890000000000066, + "url": "https://github.com/pysathq/pysat" + }, "regex": { - "credit": 0.16335, + "credit": 0.144837, "url": "https://github.com/mrabarnett/mrab-regex" }, "js2py": { - "credit": 0.00163350000000001, + "credit": 0.037026, "url": "https://github.com/PiotrDabkowski/Js2Py" }, "atomicwrites": { - "credit": 0.16479389732142857, + "credit": 0.144837, "url": "https://github.com/untitaker/python-atomicwrites" }, "codecov": { - "credit": 0.001237807453416149, + "credit": 0.005289428571428571, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.007302176203416149, + "credit": 0.005289428571428571, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.01018997084627329, + "credit": 0.022616196428571426, "url": "https://docs.pytest.org/en/latest/" }, "pydot": { - "credit": 0.023335714285714286, - "url": "https://github.com/pydot/pydot" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.023335714285714286, - "url": "http://pygraphviz.github.io" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.023335714285714286, - "url": "https://lxml.de/" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.0002333571428571428, - "url": "http://github.com/matthew-brett/texext" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.023335714285714286, - "url": "http://github.com/matthew-brett/nb2plots" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/nb2plots" }, "pillow": { - "credit": 0.0002333571428571428, - "url": "https://python-pillow.org" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/pillow" }, "numpydoc": { - "credit": 0.001237807453416149, - "url": "https://numpydoc.readthedocs.io" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.023335714285714286, - "url": "https://sphinx-gallery.github.io" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.003246708074534162, - "url": "https://pydata-sphinx-theme.readthedocs.io/en/latest/" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.03710086875, - "url": "https://www.sphinx-doc.org/" + "credit": 0.020690999999999998, + "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.023335714285714286, + "credit": 0.020690999999999998, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.024340164596273292, + "credit": 0.020690999999999998, "url": "https://pypi.org/project/pre-commit" }, "pyupgrade": { - "credit": 0.023335714285714286, + "credit": 0.020690999999999998, "url": "https://pypi.org/project/pyupgrade" }, "black": { - "credit": 0.023335714285714286, + "credit": 0.020690999999999998, "url": "https://pypi.org/project/black" }, "pandas": { - "credit": 0.024340164596273292, + "credit": 0.020690999999999998, "url": "https://pypi.org/project/pandas" }, "matplotlib": { - "credit": 0.027956185714285715, + "credit": 0.020690999999999998, "url": "https://pypi.org/project/matplotlib" }, "scipy": { - "credit": 0.023335714285714286, + "credit": 0.020690999999999998, "url": "https://pypi.org/project/scipy" }, "numpy": { - "credit": 0.024340164596273292, + "credit": 0.020690999999999998, "url": "https://pypi.org/project/numpy" }, - "pyjsparser": { - "credit": 0.053905499999999995, - "url": "https://pypi.org/project/pyjsparser" + "pypblib": { + "credit": 0.035937, + "url": "https://pypi.org/project/pypblib" + }, + "py-aiger-cnf": { + "credit": 0.035937, + "url": "https://pypi.org/project/py-aiger-cnf" }, "six": { - "credit": 0.06449408035714285, + "credit": 0.07379919642857143, "url": "https://pypi.org/project/six" }, + "pyjsparser": { + "credit": 0.035937, + "url": "https://pypi.org/project/pyjsparser" + }, "tzlocal": { - "credit": 0.053905499999999995, + "credit": 0.035937, "url": "https://pypi.org/project/tzlocal" }, "coverage": { - "credit": 0.015882870535714286, + "credit": 0.009625982142857143, "url": "https://pypi.org/project/coverage" }, "requests": { - "credit": 0.012995075892857142, + "credit": 0.007700785714285714, "url": "https://pypi.org/project/requests" }, "virtualenv": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/pytest-xdist" }, "process-tests": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/fields" - }, - "xmlschema": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/xmlschema" - }, - "pygments": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/mock" - }, - "hypothesis": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/colorama" - }, - "importlib-metadata": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.0038922449534161494, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/attrs" - }, - "docutils": { - "credit": 0.007700785714285715, - "url": "https://pypi.org/project/docutils" - }, - "pytest-timeout": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pytest-timeout" - }, - "pyroma": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pyroma" - }, - "markdown2": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/markdown2" - }, - "defusedxml": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/defusedxml" - }, - "check-manifest": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/check-manifest" - }, - "sphinxext-opengraph": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinxext-opengraph" - }, - "sphinx-rtd-theme": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinx-rtd-theme" - }, - "sphinx-removed-in": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinx-removed-in" - }, - "sphinx-issues": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinx-issues" - }, - "sphinx-copybutton": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinx-copybutton" - }, - "olefile": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/olefile" - }, - "Jinja2": { - "credit": 0.0046204714285714285, - "url": "https://pypi.org/project/Jinja2" - }, - "nox": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/nox" - }, - "pyyaml": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/pyyaml" - }, - "xarray": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/xarray" - }, - "plotly": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/plotly" - }, - "jupyter_sphinx": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/jupyter_sphinx" - }, - "sphinx-sitemap": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/sphinx-sitemap" - }, - "sphinxext-rediraffe": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/sphinxext-rediraffe" - }, - "pytest-regressions": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/pytest-regressions" - }, - "myst-parser": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/myst-parser" - }, - "docutils!=0.17.0": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/docutils!=0.17.0" - }, - "beautifulsoup4": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/beautifulsoup4" - }, - "sphinx<5,>=3.5.4": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/sphinx<5,>=3.5.4" } } } \ No newline at end of file diff --git a/_repos/github/circuitgraph/circuitgraph/setup.py b/_repos/github/circuitgraph/circuitgraph/setup.py index e919b447..9e77bcd8 100644 --- a/_repos/github/circuitgraph/circuitgraph/setup.py +++ b/_repos/github/circuitgraph/circuitgraph/setup.py @@ -1,12 +1,11 @@ import setuptools - -with open("README.md", "r") as fh: +with open("README.md") as fh: long_description = fh.read() setuptools.setup( name="circuitgraph", - version="0.1.3", + version="0.2.0", author="Ruben Purdy, Joseph Sweeney", author_email="rpurdy@andrew.cmu.edu, joesweeney@cmu.edu", description="Tools for working with boolean circuits as graphs.", @@ -18,7 +17,7 @@ "Source": "https://github.com/circuitgraph/circuitgraph", }, include_package_data=True, - packages=["circuitgraph", "circuitgraph.parsing", "circuitgraph.tests"], + packages=["circuitgraph", "circuitgraph.parsing"], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", diff --git a/_repos/github/citation-file-format/citation-file-format/badge.png b/_repos/github/citation-file-format/citation-file-format/badge.png index 527af604..c8d408e3 100644 Binary files a/_repos/github/citation-file-format/citation-file-format/badge.png and b/_repos/github/citation-file-format/citation-file-format/badge.png differ diff --git a/_repos/github/clawpack/clawpack/README.md b/_repos/github/clawpack/clawpack/README.md index 04fca663..c0f70e9e 100644 --- a/_repos/github/clawpack/clawpack/README.md +++ b/_repos/github/clawpack/clawpack/README.md @@ -8,9 +8,52 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[matplotlib](https://matplotlib.org)|0.178| +|pypi|[clawpack](http://www.clawpack.org)|0.165| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.165| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.163| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[coverage](https://pypi.org/project/coverage)|0.018| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.013| +|pypi|[brotli](https://github.com/google/brotli)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| +|pypi|[numpy](https://pypi.org/project/numpy)|0.012| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.01| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.01| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.01| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.01| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.01| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.01| +|pypi|[olefile](https://pypi.org/project/olefile)|0.01| |setup.py|github/clawpack/clawpack|0.01| -|pypi|[numpy](https://www.numpy.org)|0.005| -|pypi|[matplotlib](https://matplotlib.org)|0.005| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.006| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.002| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scandir](https://pypi.org/project/scandir)|0.002| +|pypi|[typing](https://pypi.org/project/typing)|0.002| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/clawpack/clawpack/badge.png b/_repos/github/clawpack/clawpack/badge.png index 3d8274ce..765b1c0a 100644 Binary files a/_repos/github/clawpack/clawpack/badge.png and b/_repos/github/clawpack/clawpack/badge.png differ diff --git a/_repos/github/clawpack/clawpack/data.json b/_repos/github/clawpack/clawpack/data.json index 031a5dae..81bfaca8 100644 --- a/_repos/github/clawpack/clawpack/data.json +++ b/_repos/github/clawpack/clawpack/data.json @@ -6,13 +6,225 @@ } }, "pypi": { - "numpy": { - "credit": 0.00495, - "url": "https://www.numpy.org" + "clawpack": { + "credit": 0.165, + "url": "http://www.clawpack.org" }, "matplotlib": { - "credit": 0.00495, + "credit": 0.17756538461538462, "url": "https://matplotlib.org" + }, + "cycler": { + "credit": 0.165, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0016500000000000126, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0016500000000000126, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0016500000000000126, + "url": "https://python-pillow.org" + }, + "xattr": { + "credit": 0.00012565384615384652, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 0.00012565384615384652, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.012565384615384615, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.012565384615384615, + "url": "https://github.com/google/brotli" + }, + "scipy": { + "credit": 0.00012565384615384652, + "url": "https://www.scipy.org" + }, + "brotlicffi": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 0.00012565384615384652, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.012565384615384615, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 0.00012565384615384652, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.16335, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 0.00010209375000000062, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.002175382211538462, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.04231295102163461, + "url": "https://docs.pytest.org/en/latest/" + }, + "pyroma": { + "credit": 0.010209375, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.010209375, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.010209375, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.010209375, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.017692650540865384, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.010209375, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.012282663461538461, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.010209375, + "url": "https://pypi.org/project/olefile" + }, + "cffi": { + "credit": 0.01865959615384615, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.007483275540865385, + "url": "https://pypi.org/project/pytest-xdist" + }, + "numpy": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.007774831730769231, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.002818376502403846, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/virtualenv" + }, + "process-tests": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/coljac/sensie/README.md b/_repos/github/coljac/sensie/README.md index 9cdb0cb1..2f0e0bd6 100644 --- a/_repos/github/coljac/sensie/README.md +++ b/_repos/github/coljac/sensie/README.md @@ -8,83 +8,60 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.411| -|pypi|[matplotlib](https://matplotlib.org)|0.174| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.032| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.032| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.023| -|pypi|[fastprogress](https://github.com/fastai/fastprogress)|0.018| -|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.018| -|pypi|[objgraph](https://pypi.org/project/objgraph)|0.018| -|pypi|[scipy](https://www.scipy.org)|0.017| -|pypi|[pandas](https://pandas.pydata.org)|0.012| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.011| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| +|pypi|[matplotlib](https://matplotlib.org)|0.118| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.11| +|pypi|[h5py](http://www.h5py.org)|0.11| +|pypi|[theano](http://deeplearning.net/software/theano/)|0.11| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.109| +|pypi|[numpy](https://www.numpy.org)|0.05| +|pypi|[pytest](https://pypi.org/project/pytest)|0.033| +|pypi|[scipy](https://www.scipy.org)|0.033| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.031| +|pypi|[six](https://pypi.org/project/six)|0.024| +|pypi|[fastprogress](https://github.com/fastai/fastprogress)|0.012| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.012| +|pypi|[arviz](http://github.com/arviz-devs/arviz)|0.012| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.012| |setup.py|github/coljac/sensie|0.01| -|pypi|[black](https://github.com/psf/black)|0.009| -|pypi|[flake8](https://pypi.org/project/flake8)|0.008| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.008| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.008| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.008| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.008| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.008| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.008| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.008| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.008| -|pypi|[joblib](https://pypi.org/project/joblib)|0.008| -|pypi|[psutil](https://pypi.org/project/psutil)|0.006| -|pypi|[hypothesis](https://hypothesis.works)|0.005| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[six](https://pypi.org/project/six)|0.004| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.003| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|0.003| -|pypi|[PyTest](https://pypi.org/project/PyTest)|0.003| -|pypi|[bump2version](https://pypi.org/project/bump2version)|0.003| -|pypi|[tox](https://pypi.org/project/tox)|0.003| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[packaging](https://pypi.org/project/packaging)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[colorama](https://pypi.org/project/colorama)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|0.002| -|pypi|[scikit-learn](http://scikit-learn.org)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| -|pypi|[zarr](https://pypi.org/project/zarr)|0.001| -|pypi|[dask](https://pypi.org/project/dask)|0.001| -|pypi|[ujson](https://pypi.org/project/ujson)|0.001| -|pypi|[bokeh](https://pypi.org/project/bokeh)|0.001| -|pypi|[numba](https://pypi.org/project/numba)|0.001| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.001| -|pypi|[xarray](https://pypi.org/project/xarray)|0.001| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| -|pypi|[lxml](https://pypi.org/project/lxml)|0.001| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.001| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.001| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[xattr](https://pypi.org/project/xattr)|0.008| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.008| +|pypi|[munkres](https://pypi.org/project/munkres)|0.008| +|pypi|[brotli](https://pypi.org/project/brotli)|0.008| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.008| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.008| +|pypi|[sympy](https://pypi.org/project/sympy)|0.008| +|pypi|[lz4](https://pypi.org/project/lz4)|0.008| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.008| +|pypi|[lxml](https://pypi.org/project/lxml)|0.008| +|pypi|[fs](https://pypi.org/project/fs)|0.008| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.007| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.007| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.007| +|pypi|[coverage](https://pypi.org/project/coverage)|0.007| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.007| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.007| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.007| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.007| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.007| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.007| +|pypi|[olefile](https://pypi.org/project/olefile)|0.007| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.002| +|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|0.002| +|pypi|[PyTest](https://pypi.org/project/PyTest)|0.002| +|pypi|[bump2version](https://pypi.org/project/bump2version)|0.002| +|pypi|[tox](https://pypi.org/project/tox)|0.002| +|pypi|[wrapt](https://pypi.org/project/wrapt)|0.002| +|pypi|[patsy](https://github.com/pydata/patsy)|0.001| +|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/coljac/sensie/badge.png b/_repos/github/coljac/sensie/badge.png index 3cb79372..124d3528 100644 Binary files a/_repos/github/coljac/sensie/badge.png and b/_repos/github/coljac/sensie/badge.png differ diff --git a/_repos/github/coljac/sensie/data.json b/_repos/github/coljac/sensie/data.json index 171cb39b..1b112d78 100644 --- a/_repos/github/coljac/sensie/data.json +++ b/_repos/github/coljac/sensie/data.json @@ -6,333 +6,229 @@ } }, "pypi": { + "pymc3": { + "credit": 0.0011000000000000038, + "url": "http://github.com/pymc-devs/pymc3" + }, "matplotlib": { - "credit": 0.17406203571428575, + "credit": 0.11837692307692307, "url": "https://matplotlib.org" }, - "numpy": { - "credit": 0.4114082892857143, - "url": "https://www.numpy.org" + "cycler": { + "credit": 0.11, + "url": "https://github.com/matplotlib/cycler" }, - "pandas": { - "credit": 0.012390910714285728, - "url": "https://pandas.pydata.org" + "fonttools": { + "credit": 0.0011000000000000038, + "url": "http://github.com/fonttools/fonttools" }, - "pymc3": { - "credit": 0.0016500000000000126, - "url": "http://github.com/pymc-devs/pymc3" + "h5py": { + "credit": 0.11, + "url": "http://www.h5py.org" }, - "scikit-learn": { - "credit": 0.0016500000000000126, - "url": "http://scikit-learn.org" - }, - "scipy": { - "credit": 0.0170541642857143, - "url": "https://www.scipy.org" + "kiwisolver": { + "credit": 0.0011000000000000038, + "url": "https://github.com/nucleic/kiwi" }, - "pytest-xdist": { - "credit": 0.0032670000000000012, - "url": "https://github.com/pytest-dev/pytest-xdist" + "patsy": { + "credit": 0.0012210000000000033, + "url": "https://github.com/pydata/patsy" }, - "pytest": { - "credit": 0.0231957, - "url": "https://docs.pytest.org/en/latest/" + "pillow": { + "credit": 0.0011000000000000038, + "url": "https://python-pillow.org" }, - "hypothesis": { - "credit": 0.004951546875000001, - "url": "https://hypothesis.works" + "theano": { + "credit": 0.11, + "url": "http://deeplearning.net/software/theano/" }, - "pytz": { - "credit": 0.031717125, - "url": "http://pythonhosted.org/pytz" + "scipy": { + "credit": 0.03267372307692308, + "url": "https://www.scipy.org" }, - "python-dateutil": { - "credit": 0.031717125, - "url": "https://github.com/dateutil/dateutil" + "pandas": { + "credit": 0.00012099999999999958, + "url": "https://pandas.pydata.org" }, - "patsy": { - "credit": 0.0001815000000000011, - "url": "https://github.com/pydata/patsy" + "numpy": { + "credit": 0.0502513, + "url": "https://www.numpy.org" }, "fastprogress": { - "credit": 0.01815, + "credit": 0.0121, "url": "https://github.com/fastai/fastprogress" }, "dill": { - "credit": 0.0001815000000000011, + "credit": 0.00012099999999999958, "url": "https://github.com/uqfoundation/dill" }, "deprecat": { - "credit": 0.0001815000000000011, + "credit": 0.00012099999999999958, "url": "https://github.com/deprecat/deprecat" }, "cachetools": { - "credit": 0.01815, + "credit": 0.0121, "url": "https://github.com/tkem/cachetools/" }, "arviz": { - "credit": 0.0001815000000000011, + "credit": 0.0121, "url": "http://github.com/arviz-devs/arviz" }, - "pyamg": { - "credit": 7.778571428571426e-05, - "url": "https://github.com/pyamg/pyamg" - }, - "mypy": { - "credit": 7.778571428571426e-05, - "url": "http://www.mypy-lang.org/" - }, - "black": { - "credit": 0.009275946428571429, - "url": "https://github.com/psf/black" - }, - "flake8": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/flake8" - }, - "pytest-cov": { - "credit": 0.011372271428571428, - "url": "https://pypi.org/project/pytest-cov" - }, - "sphinxext-opengraph": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinxext-opengraph" - }, - "sphinx-prompt": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinx-prompt" - }, - "Pillow": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/Pillow" - }, - "numpydoc": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/numpydoc" - }, - "sphinx-gallery": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinx-gallery" - }, - "sphinx": { - "credit": 0.010773321428571427, - "url": "https://pypi.org/project/sphinx" - }, - "seaborn": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/seaborn" - }, - "scikit-image": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/scikit-image" - }, - "memory-profiler": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/memory-profiler" - }, - "threadpoolctl": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/threadpoolctl" - }, - "joblib": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/joblib" - }, - "filelock": { - "credit": 0.004492125, - "url": "https://pypi.org/project/filelock" + "xattr": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/xattr" }, - "setproctitle": { - "credit": 0.004492125, - "url": "https://pypi.org/project/setproctitle" + "unicodedata2": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/unicodedata2" }, - "psutil": { - "credit": 0.005775589285714285, - "url": "https://pypi.org/project/psutil" + "munkres": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/munkres" }, - "pytest-forked": { - "credit": 0.004492125, - "url": "https://pypi.org/project/pytest-forked" + "brotli": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/brotli" }, - "execnet": { - "credit": 0.004492125, - "url": "https://pypi.org/project/execnet" + "brotlicffi": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/brotlicffi" }, - "xmlschema": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/xmlschema" + "skia-pathops": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/skia-pathops" }, - "requests": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/requests" + "sympy": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/sympy" }, - "pygments": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/pygments" + "lz4": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/lz4" }, - "nose": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/nose" + "zopfli": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/zopfli" }, - "mock": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/mock" + "lxml": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/lxml" }, - "argcomplete": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/argcomplete" + "fs": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/fs" }, - "colorama": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/colorama" + "typing-extensions": { + "credit": 0.1089, + "url": "https://pypi.org/project/typing-extensions" }, - "atomicwrites": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/atomicwrites" + "pytest-cov": { + "credit": 0.03098205, + "url": "https://pypi.org/project/pytest-cov" }, - "importlib-metadata": { - "credit": 0.0031819218749999994, - "url": "https://pypi.org/project/importlib-metadata" + "pytest": { + "credit": 0.03297855, + "url": "https://pypi.org/project/pytest" }, - "tomli": { - "credit": 0.002968011160714285, - "url": "https://pypi.org/project/tomli" + "six": { + "credit": 0.0241758, + "url": "https://pypi.org/project/six" }, - "py": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/py" + "pytest-timeout": { + "credit": 0.00680625, + "url": "https://pypi.org/project/pytest-timeout" }, - "pluggy": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.00680625, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.002968011160714285, + "credit": 0.00680625, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.0016845468749999998, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.00680625, + "url": "https://pypi.org/project/markdown2" }, - "attrs": { - "credit": 0.0031819218749999994, - "url": "https://pypi.org/project/attrs" + "defusedxml": { + "credit": 0.00680625, + "url": "https://pypi.org/project/defusedxml" }, - "tzdata": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/tzdata" + "coverage": { + "credit": 0.00680625, + "url": "https://pypi.org/project/coverage" }, - "backports.zoneinfo": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/backports.zoneinfo" + "check-manifest": { + "credit": 0.00680625, + "url": "https://pypi.org/project/check-manifest" }, - "rich": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/rich" + "sphinxext-opengraph": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "redis": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/redis" + "sphinx-rtd-theme": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "libcst": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/libcst" + "sphinx-removed-in": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "lark-parser": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/lark-parser" + "sphinx-issues": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-issues" }, - "dpcontracts": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/dpcontracts" + "sphinx-copybutton": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "django": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/django" + "sphinx": { + "credit": 0.00880275, + "url": "https://pypi.org/project/sphinx" }, - "click": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/click" + "olefile": { + "credit": 0.00680625, + "url": "https://pypi.org/project/olefile" }, - "sortedcontainers": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/sortedcontainers" + "pytest-xdist": { + "credit": 0.0019965, + "url": "https://pypi.org/project/pytest-xdist" }, - "six": { - "credit": 0.0035936999999999996, - "url": "https://pypi.org/project/six" + "hypothesis": { + "credit": 0.0019965, + "url": "https://pypi.org/project/hypothesis" + }, + "pytz": { + "credit": 0.0019965, + "url": "https://pypi.org/project/pytz" + }, + "python-dateutil": { + "credit": 0.0019965, + "url": "https://pypi.org/project/python-dateutil" }, "objgraph": { - "credit": 0.0179685, + "credit": 0.011979, "url": "https://pypi.org/project/objgraph" }, "PyTest-Cov": { - "credit": 0.0029947499999999996, + "credit": 0.0019965, "url": "https://pypi.org/project/PyTest-Cov" }, "PyTest": { - "credit": 0.0029947499999999996, + "credit": 0.0019965, "url": "https://pypi.org/project/PyTest" }, "bump2version": { - "credit": 0.0029947499999999996, + "credit": 0.0019965, "url": "https://pypi.org/project/bump2version" }, "tox": { - "credit": 0.0029947499999999996, + "credit": 0.0019965, "url": "https://pypi.org/project/tox" }, "wrapt": { - "credit": 0.0029947499999999996, + "credit": 0.0019965, "url": "https://pypi.org/project/wrapt" - }, - "zarr": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/zarr" - }, - "dask": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/dask" - }, - "ujson": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/ujson" - }, - "bokeh": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/bokeh" - }, - "numba": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/numba" - }, - "typing-extensions": { - "credit": 0.002566928571428571, - "url": "https://pypi.org/project/typing-extensions" - }, - "netcdf4": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/netcdf4" - }, - "xarray": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/xarray" - }, - "setuptools": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/setuptools" - }, - "lxml": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lxml" - }, - "typed-ast": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/typed-ast" - }, - "mypy-extensions": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/mypy-extensions" } } } \ No newline at end of file diff --git a/_repos/github/colour-science/colour/README.md b/_repos/github/colour-science/colour/README.md index e9a0755b..a73d23cb 100644 --- a/_repos/github/colour-science/colour/README.md +++ b/_repos/github/colour-science/colour/README.md @@ -8,35 +8,34 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.511| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.247| -|pypi|[gdal](http://www.gdal.org)|0.014| -|pypi|[astropy](http://astropy.org)|0.014| -|pypi|[psutil](https://pypi.org/project/psutil)|0.014| -|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.014| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.014| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.014| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.014| -|pypi|[flake8](https://pypi.org/project/flake8)|0.014| -|pypi|[black](https://pypi.org/project/black)|0.014| -|pypi|[fsspec](https://pypi.org/project/fsspec)|0.014| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.014| -|pypi|[pytest](https://pypi.org/project/pytest)|0.014| -|pypi|[invoke](https://pypi.org/project/invoke)|0.014| -|pypi|[wheel](https://pypi.org/project/wheel)|0.014| -|pypi|[pillow](https://pypi.org/project/pillow)|0.014| +|pypi|[numpy](https://www.numpy.org)|0.682| +|pypi|[gdal](http://www.gdal.org)|0.018| +|pypi|[astropy](http://astropy.org)|0.018| +|pypi|[psutil](https://pypi.org/project/psutil)|0.018| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.018| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.018| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.018| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.018| +|pypi|[flake8](https://pypi.org/project/flake8)|0.018| +|pypi|[black](https://pypi.org/project/black)|0.018| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.018| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.018| +|pypi|[pytest](https://pypi.org/project/pytest)|0.018| +|pypi|[invoke](https://pypi.org/project/invoke)|0.018| +|pypi|[wheel](https://pypi.org/project/wheel)|0.018| +|pypi|[pillow](https://pypi.org/project/pillow)|0.018| |setup.py|github/colour-science/colour|0.01| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.003| -|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.003| -|pypi|[imageio](https://github.com/imageio/imageio)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[itk-segmentation](https://pypi.org/project/itk-segmentation)|0.002| -|pypi|[itk-registration](https://pypi.org/project/itk-registration)|0.002| -|pypi|[itk-filtering](https://pypi.org/project/itk-filtering)|0.002| -|pypi|[itk-io](https://pypi.org/project/itk-io)|0.002| -|pypi|[itk-numerics](https://pypi.org/project/itk-numerics)|0.002| -|pypi|[itk-core](https://pypi.org/project/itk-core)|0.002| +|pypi|[lxml](https://pypi.org/project/lxml)|0.004| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.004| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.004| +|pypi|[imageio](https://github.com/imageio/imageio)|0.003| +|pypi|[scipy](https://www.scipy.org)|0.003| +|pypi|[itk-segmentation](https://pypi.org/project/itk-segmentation)|0.003| +|pypi|[itk-registration](https://pypi.org/project/itk-registration)|0.003| +|pypi|[itk-filtering](https://pypi.org/project/itk-filtering)|0.003| +|pypi|[itk-io](https://pypi.org/project/itk-io)|0.003| +|pypi|[itk-numerics](https://pypi.org/project/itk-numerics)|0.003| +|pypi|[itk-core](https://pypi.org/project/itk-core)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/colour-science/colour/badge.png b/_repos/github/colour-science/colour/badge.png index 533a883e..bf2c17fa 100644 Binary files a/_repos/github/colour-science/colour/badge.png and b/_repos/github/colour-science/colour/badge.png differ diff --git a/_repos/github/colour-science/colour/data.json b/_repos/github/colour-science/colour/data.json index f47c8c12..ac774017 100644 --- a/_repos/github/colour-science/colour/data.json +++ b/_repos/github/colour-science/colour/data.json @@ -7,123 +7,119 @@ }, "pypi": { "imageio": { - "credit": 0.002475000000000005, + "credit": 0.003300000000000025, "url": "https://github.com/imageio/imageio" }, "numpy": { - "credit": 0.5114317901785714, + "credit": 0.6819090535714285, "url": "https://www.numpy.org" }, "scipy": { - "credit": 0.002475000000000005, + "credit": 0.003300000000000025, "url": "https://www.scipy.org" }, - "typing-extensions": { - "credit": 0.2475, - "url": "https://typing.readthedocs.io/" - }, "tifffile": { - "credit": 0.00013612500000000083, + "credit": 0.0001815000000000011, "url": "https://www.lfd.uci.edu/~gohlke/" }, "itk": { - "credit": 0.00013612500000000083, + "credit": 0.0001815000000000011, "url": "https://itk.org/" }, "gdal": { - "credit": 0.0136125, + "credit": 0.01815, "url": "http://www.gdal.org" }, "astropy": { - "credit": 0.0136125, + "credit": 0.01815, "url": "http://astropy.org" }, "psutil": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/psutil" }, "imageio-ffmpeg": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/imageio-ffmpeg" }, "pydata-sphinx-theme": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "numpydoc": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/numpydoc" }, "sphinx": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/sphinx" }, "flake8": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/flake8" }, "black": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/black" }, "fsspec": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/fsspec" }, "pytest-cov": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/pytest" }, "invoke": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/invoke" }, "wheel": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/wheel" }, "pillow": { - "credit": 0.0136125, + "credit": 0.01815, "url": "https://pypi.org/project/pillow" }, "lxml": { - "credit": 0.0033690937499999997, + "credit": 0.004492125, "url": "https://pypi.org/project/lxml" }, "matplotlib": { - "credit": 0.0033690937499999997, + "credit": 0.004492125, "url": "https://pypi.org/project/matplotlib" }, "imagecodecs": { - "credit": 0.0033690937499999997, + "credit": 0.004492125, "url": "https://pypi.org/project/imagecodecs" }, "itk-segmentation": { - "credit": 0.0019251964285714285, + "credit": 0.002566928571428571, "url": "https://pypi.org/project/itk-segmentation" }, "itk-registration": { - "credit": 0.0019251964285714285, + "credit": 0.002566928571428571, "url": "https://pypi.org/project/itk-registration" }, "itk-filtering": { - "credit": 0.0019251964285714285, + "credit": 0.002566928571428571, "url": "https://pypi.org/project/itk-filtering" }, "itk-io": { - "credit": 0.0019251964285714285, + "credit": 0.002566928571428571, "url": "https://pypi.org/project/itk-io" }, "itk-numerics": { - "credit": 0.0019251964285714285, + "credit": 0.002566928571428571, "url": "https://pypi.org/project/itk-numerics" }, "itk-core": { - "credit": 0.0019251964285714285, + "credit": 0.002566928571428571, "url": "https://pypi.org/project/itk-core" } } diff --git a/_repos/github/compomics/DeepLC/README.md b/_repos/github/compomics/DeepLC/README.md index 5260c3b4..d119eb9f 100644 --- a/_repos/github/compomics/DeepLC/README.md +++ b/_repos/github/compomics/DeepLC/README.md @@ -8,84 +8,121 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.275| -|pypi|[matplotlib](https://matplotlib.org)|0.115| -|pypi|[h5py](http://www.h5py.org)|0.115| -|pypi|[scipy](https://www.scipy.org)|0.034| -|pypi|[progressbar2](https://pypi.org/project/progressbar2)|0.027| -|pypi|[future](https://pypi.org/project/future)|0.027| -|pypi|[pytest](https://pypi.org/project/pytest)|0.027| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.022| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.018| -|pypi|[pytz](https://pypi.org/project/pytz)|0.018| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.018| +|pypi|[six](https://pypi.org/project/six)|0.07| +|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.047| +|pypi|[future](https://python-future.org)|0.029| +|pypi|[matplotlib](https://matplotlib.org)|0.028| +|pypi|[h5py](http://www.h5py.org)|0.027| +|pypi|[keras](https://keras.io/)|0.027| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.026| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.026| +|pypi|[rsa](https://stuvel.eu/rsa)|0.026| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.026| +|pypi|[tensorboard-data-server](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server)|0.025| +|pypi|[tensorboard-plugin-wit](https://whatif-tool.dev)|0.025| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.025| +|pypi|[pytest](https://pypi.org/project/pytest)|0.025| +|pypi|[flatbuffers](https://google.github.io/flatbuffers/)|0.025| +|pypi|[gast](https://github.com/serge-sans-paille/gast/)|0.025| +|pypi|[libclang](https://github.com/sighingnow/libclang)|0.025| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.025| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.025| +|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.024| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.024| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.023| +|pypi|[numpy](https://pypi.org/project/numpy)|0.016| +|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|0.016| +|pypi|[wheel](https://github.com/pypa/wheel)|0.014| +|pypi|[requests](https://pypi.org/project/requests)|0.012| +|pypi|[scipy](https://pypi.org/project/scipy)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|github/compomics/DeepLC|0.01| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.006| -|pypi|[pandas](https://pandas.pydata.org)|0.006| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.005| -|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.005| -|pypi|[keras](https://pypi.org/project/keras)|0.005| -|pypi|[tf-estimator-nightly](https://pypi.org/project/tf-estimator-nightly)|0.005| -|pypi|[tensorboard](https://pypi.org/project/tensorboard)|0.005| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.005| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.005| -|pypi|[six](https://pypi.org/project/six)|0.005| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.005| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.005| -|pypi|[libclang](https://pypi.org/project/libclang)|0.005| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.005| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.005| -|pypi|[gast](https://pypi.org/project/gast)|0.005| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.005| -|pypi|[astunparse](https://pypi.org/project/astunparse)|0.005| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.005| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.005| -|pypi|[mypy](https://pypi.org/project/mypy)|0.005| -|pypi|[black](https://pypi.org/project/black)|0.005| -|pypi|[flake8](https://pypi.org/project/flake8)|0.005| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.005| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.005| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.005| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.005| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.005| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.005| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.005| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.005| -|pypi|[joblib](https://pypi.org/project/joblib)|0.005| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.004| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| -|pypi|[tomli](https://pypi.org/project/tomli)|0.004| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.004| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.004| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.004| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[build](https://pypi.org/project/build)|0.004| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.004| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.004| -|pypi|[pip](https://pypi.org/project/pip)|0.004| -|pypi|[wheel](https://pypi.org/project/wheel)|0.004| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.004| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.004| -|pypi|[mock](https://pypi.org/project/mock)|0.004| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.004| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.01| +|pypi|[tensorflow](https://www.tensorflow.org/)|0.009| +|pypi|[coverage](https://pypi.org/project/coverage)|0.009| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.008| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.008| +|pypi|[flake8](https://pypi.org/project/flake8)|0.008| +|pypi|[click](https://pypi.org/project/click)|0.008| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.008| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.008| +|pypi|[blinker](https://pypi.org/project/blinker)|0.008| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.008| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.007| +|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|0.006| +|pypi|[python-utils](https://github.com/WoLpH/python-utils)|0.006| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.006| +|pypi|[futures](https://pypi.org/project/futures)|0.006| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.005| +|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|0.005| +|pypi|[tensorflow-gpu](https://pypi.org/project/tensorflow-gpu)|0.005| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|0.005| +|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|0.005| +|pypi|[pandas](https://pypi.org/project/pandas)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| |pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.004| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.004| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.004| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.004| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.004| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| -|pypi|[tensorflow](https://www.tensorflow.org/)|0.001| -|pypi|[pygam](https://github.com/dswah/pyGAM)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| +|pypi|[freezegun](https://pypi.org/project/freezegun)|0.003| +|pypi|[absl-py](https://github.com/abseil/abseil-py)|0.003| +|pypi|[grpcio](https://grpc.io)|0.003| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|0.003| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.003| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|0.003| +|pypi|[pyasn1-modules](https://github.com/etingof/pyasn1-modules)|0.003| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|0.003| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.003| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.003| +|pypi|[pygam](https://github.com/dswah/pyGAM)|0.003| +|pypi|[gooey](http://pypi.python.org/pypi/Gooey/)|0.002| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.002| +|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.002| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.002| +|pypi|[google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib)|0.002| +|pypi|[markdown](https://Python-Markdown.github.io/)|0.002| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|0.002| +|pypi|[xattr](https://pypi.org/project/xattr)|0.002| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.002| +|pypi|[munkres](https://pypi.org/project/munkres)|0.002| +|pypi|[brotli](https://pypi.org/project/brotli)|0.002| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.002| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.002| +|pypi|[sympy](https://pypi.org/project/sympy)|0.002| +|pypi|[lz4](https://pypi.org/project/lz4)|0.002| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.002| +|pypi|[lxml](https://pypi.org/project/lxml)|0.002| +|pypi|[fs](https://pypi.org/project/fs)|0.002| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.001| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.001| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.001| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.001| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.001| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.001| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.001| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.001| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.001| +|pypi|[olefile](https://pypi.org/project/olefile)|0.001| +|pypi|[keras-preprocessing](https://github.com/keras-team/keras-preprocessing)|0.001| +|pypi|[astunparse](https://github.com/simonpercivall/astunparse)|0.001| +|pypi|[google-pasta](https://github.com/google/pasta)|0.001| +|pypi|[opt-einsum](https://github.com/dgasmith/opt_einsum)|0.001| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|0.001| +|pypi|[tensorflow-io-gcs-filesystem](https://github.com/tensorflow/io)|0.001| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| +|pypi|[zipp](https://pypi.org/project/zipp)|0.001| +|pypi|[tensorflow-estimator](https://pypi.org/project/tensorflow-estimator)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/compomics/DeepLC/badge.png b/_repos/github/compomics/DeepLC/badge.png index 4e672f21..5f2efcf1 100644 Binary files a/_repos/github/compomics/DeepLC/badge.png and b/_repos/github/compomics/DeepLC/badge.png differ diff --git a/_repos/github/compomics/DeepLC/data.json b/_repos/github/compomics/DeepLC/data.json index 547c4c59..fcb57b3f 100644 --- a/_repos/github/compomics/DeepLC/data.json +++ b/_repos/github/compomics/DeepLC/data.json @@ -6,313 +6,477 @@ } }, "pypi": { - "setuptools": { - "credit": 0.0062857142857142894, - "url": "https://github.com/pypa/setuptools" + "deeplc": { + "credit": 0.00023571428571428701, + "url": "http://compomics.github.io/projects/DeepLC" + }, + "h5py": { + "credit": 0.026965714285714284, + "url": "http://www.h5py.org" + }, + "matplotlib": { + "credit": 0.027700054945054942, + "url": "https://matplotlib.org" + }, + "pygam": { + "credit": 0.0025692857142857154, + "url": "https://github.com/dswah/pyGAM" }, "tensorflow": { - "credit": 0.0011000000000000038, + "credit": 0.009357857142857147, "url": "https://www.tensorflow.org/" }, - "scipy": { - "credit": 0.03351071428571429, - "url": "https://www.scipy.org" + "tf-estimator-nightly": { + "credit": 0.02357142857142857, + "url": "https://www.tensorflow.org/" }, - "numpy": { - "credit": 0.27464642857142857, - "url": "https://www.numpy.org" + "absl-py": { + "credit": 0.0030914835164835173, + "url": "https://github.com/abseil/abseil-py" }, - "pandas": { - "credit": 0.0062857142857142894, - "url": "https://pandas.pydata.org" + "astunparse": { + "credit": 0.0012964285714285725, + "url": "https://github.com/simonpercivall/astunparse" }, - "matplotlib": { - "credit": 0.11518571428571428, - "url": "https://matplotlib.org" + "cycler": { + "credit": 0.02357142857142857, + "url": "https://github.com/matplotlib/cycler" }, - "h5py": { - "credit": 0.11518571428571428, - "url": "http://www.h5py.org" + "flatbuffers": { + "credit": 0.024632142857142856, + "url": "https://google.github.io/flatbuffers/" }, - "pygam": { - "credit": 0.0011000000000000038, - "url": "https://github.com/dswah/pyGAM" + "fonttools": { + "credit": 0.00023571428571428701, + "url": "http://github.com/fonttools/fonttools" }, - "scikit-learn": { - "credit": 0.0011000000000000038, - "url": "http://scikit-learn.org" + "gast": { + "credit": 0.024632142857142856, + "url": "https://github.com/serge-sans-paille/gast/" }, - "pytest-mypy": { - "credit": 0.0035129032258064516, - "url": "https://github.com/dbader/pytest-mypy" + "google-pasta": { + "credit": 0.0012964285714285725, + "url": "https://github.com/google/pasta" }, - "pytest-cov": { - "credit": 0.008698617511520738, - "url": "https://pypi.org/project/pytest-cov" + "grpcio": { + "credit": 0.0030914835164835173, + "url": "https://grpc.io" }, - "pytest-black": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/pytest-black" + "keras": { + "credit": 0.026753571428571425, + "url": "https://keras.io/" }, - "tomli": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/tomli" + "keras-preprocessing": { + "credit": 0.001296428571428576, + "url": "https://github.com/keras-team/keras-preprocessing" }, - "tomli-w": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/tomli-w" + "kiwisolver": { + "credit": 0.00023571428571428701, + "url": "https://github.com/nucleic/kiwi" }, - "ini2toml": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/ini2toml" + "libclang": { + "credit": 0.024632142857142856, + "url": "https://github.com/sighingnow/libclang" }, - "pip-run": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/pip-run" + "opt-einsum": { + "credit": 0.0012964285714285725, + "url": "https://github.com/dgasmith/opt_einsum" }, - "filelock": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/filelock" + "pillow": { + "credit": 0.00023571428571428701, + "url": "https://python-pillow.org" }, - "build": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/build" + "protobuf": { + "credit": 0.0264271978021978, + "url": "https://developers.google.com/protocol-buffers/" }, - "jaraco.path": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/jaraco.path" + "tensorboard": { + "credit": 0.0012964285714285725, + "url": "https://github.com/tensorflow/tensorboard" }, - "pytest-xdist": { - "credit": 0.02166290322580645, - "url": "https://pypi.org/project/pytest-xdist" + "tensorflow-io-gcs-filesystem": { + "credit": 0.0012964285714285725, + "url": "https://github.com/tensorflow/io" }, - "jaraco.envs": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/jaraco.envs" + "termcolor": { + "credit": 0.024632142857142856, + "url": "http://pypi.python.org/pypi/termcolor" }, - "pip": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/pip" + "wrapt": { + "credit": 0.024632142857142856, + "url": "https://github.com/GrahamDumpleton/wrapt" }, - "wheel": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/wheel" + "future": { + "credit": 0.02940535714285714, + "url": "https://python-future.org" }, - "virtualenv": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/virtualenv" + "progressbar2": { + "credit": 0.006069642857142858, + "url": "https://github.com/WoLpH/python-progressbar" }, - "flake8-2020": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/flake8-2020" + "google-auth": { + "credit": 0.009809340659340658, + "url": "https://github.com/googleapis/google-auth-library-python" }, - "mock": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/mock" + "google-auth-oauthlib": { + "credit": 0.002030769230769232, + "url": "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib" }, - "pytest-perf": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/pytest-perf" + "markdown": { + "credit": 0.002030769230769232, + "url": "https://Python-Markdown.github.io/" }, - "pytest-enabler": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/pytest-enabler" + "python-utils": { + "credit": 0.00590295918367347, + "url": "https://github.com/WoLpH/python-utils" }, - "pytest-flake8": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/pytest-flake8" + "tensorboard-data-server": { + "credit": 0.025366483516483514, + "url": "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server" }, - "pytest-checkdocs": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/pytest-checkdocs" + "tensorboard-plugin-wit": { + "credit": 0.025366483516483514, + "url": "https://whatif-tool.dev" }, - "pytest": { - "credit": 0.026848617511520737, - "url": "https://pypi.org/project/pytest" + "werkzeug": { + "credit": 0.002030769230769232, + "url": "https://palletsprojects.com/p/werkzeug/" }, - "furo": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/furo" + "wheel": { + "credit": 0.013698626373626373, + "url": "https://github.com/pypa/wheel" }, - "sphinxcontrib-towncrier": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" + "cachetools": { + "credit": 0.026164285714285713, + "url": "https://github.com/tkem/cachetools/" }, - "sphinx-inline-tabs": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/sphinx-inline-tabs" + "importlib-metadata": { + "credit": 0.008014285714285713, + "url": "https://github.com/python/importlib_metadata" }, - "sphinx-favicon": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/sphinx-favicon" + "pyasn1-modules": { + "credit": 0.0028285714285714294, + "url": "https://github.com/etingof/pyasn1-modules" }, - "pygments-github-lexers": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/pygments-github-lexers" + "requests-oauthlib": { + "credit": 0.008014285714285713, + "url": "https://github.com/requests/requests-oauthlib" }, - "jaraco.tidelift": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/jaraco.tidelift" + "rsa": { + "credit": 0.026164285714285713, + "url": "https://stuvel.eu/rsa" }, - "rst.linker": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/rst.linker" + "oauthlib": { + "credit": 0.01579285714285714, + "url": "https://github.com/oauthlib/oauthlib" }, - "jaraco.packaging": { - "credit": 0.0035129032258064516, - "url": "https://pypi.org/project/jaraco.packaging" + "pyasn1": { + "credit": 0.046907142857142856, + "url": "https://github.com/etingof/pyasn1" }, - "sphinx": { - "credit": 0.008698617511520738, - "url": "https://pypi.org/project/sphinx" + "gooey": { + "credit": 0.0023335714285714283, + "url": "http://pypi.python.org/pypi/Gooey/" }, - "grpcio": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/grpcio" + "scikit-learn": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/scikit-learn" }, - "tensorflow-io-gcs-filesystem": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/tensorflow-io-gcs-filesystem" + "pandas": { + "credit": 0.004454999999999999, + "url": "https://pypi.org/project/pandas" }, - "keras": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/keras" + "numpy": { + "credit": 0.016061662087912085, + "url": "https://pypi.org/project/numpy" }, - "tf-estimator-nightly": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/tf-estimator-nightly" + "scipy": { + "credit": 0.012083983516483515, + "url": "https://pypi.org/project/scipy" }, - "tensorboard": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/tensorboard" + "setuptools": { + "credit": 0.005189340659340659, + "url": "https://pypi.org/project/setuptools" }, - "wrapt": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/wrapt" + "tensorflow-estimator": { + "credit": 0.0010607142857142855, + "url": "https://pypi.org/project/tensorflow-estimator" }, "typing-extensions": { - "credit": 0.005185714285714286, + "credit": 0.02569285714285714, "url": "https://pypi.org/project/typing-extensions" }, - "termcolor": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/termcolor" - }, "six": { - "credit": 0.005185714285714286, + "credit": 0.06994821428571428, "url": "https://pypi.org/project/six" }, - "protobuf": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/protobuf" + "packaging": { + "credit": 0.003815624999999999, + "url": "https://pypi.org/project/packaging" }, - "opt-einsum": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/opt-einsum" + "xattr": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/xattr" }, - "libclang": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/libclang" + "unicodedata2": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/unicodedata2" }, - "keras-preprocessing": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/keras-preprocessing" + "munkres": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/munkres" }, - "google-pasta": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/google-pasta" + "brotli": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/brotli" }, - "gast": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/gast" + "brotlicffi": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/brotlicffi" }, - "flatbuffers": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/flatbuffers" + "skia-pathops": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/skia-pathops" }, - "astunparse": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/astunparse" + "sympy": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/sympy" }, - "absl-py": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/absl-py" + "lz4": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/lz4" }, - "hypothesis": { - "credit": 0.01815, - "url": "https://pypi.org/project/hypothesis" + "zopfli": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/zopfli" }, - "pytz": { - "credit": 0.01815, - "url": "https://pypi.org/project/pytz" + "lxml": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/lxml" }, - "python-dateutil": { - "credit": 0.01815, - "url": "https://pypi.org/project/python-dateutil" + "fs": { + "credit": 0.0017950549450549448, + "url": "https://pypi.org/project/fs" }, - "progressbar2": { - "credit": 0.027225, - "url": "https://pypi.org/project/progressbar2" + "grpcio-tools": { + "credit": 0.005833928571428571, + "url": "https://pypi.org/project/grpcio-tools" }, - "future": { - "credit": 0.027225, - "url": "https://pypi.org/project/future" + "enum34": { + "credit": 0.008426785714285713, + "url": "https://pypi.org/project/enum34" }, - "pyamg": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/pyamg" + "futures": { + "credit": 0.005833928571428571, + "url": "https://pypi.org/project/futures" }, - "mypy": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/mypy" + "pytest-cov": { + "credit": 0.02512840561224489, + "url": "https://pypi.org/project/pytest-cov" }, - "black": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/black" + "pytest-xdist": { + "credit": 0.002121428571428571, + "url": "https://pypi.org/project/pytest-xdist" + }, + "pytest": { + "credit": 0.02512840561224489, + "url": "https://pypi.org/project/pytest" }, "flake8": { - "credit": 0.005185714285714286, + "credit": 0.007788673469387754, "url": "https://pypi.org/project/flake8" }, - "sphinxext-opengraph": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/sphinxext-opengraph" - }, - "sphinx-prompt": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/sphinx-prompt" - }, "Pillow": { - "credit": 0.005185714285714286, + "credit": 0.002121428571428571, "url": "https://pypi.org/project/Pillow" }, + "pytest-pep8": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/pytest-pep8" + }, "numpydoc": { - "credit": 0.005185714285714286, + "credit": 0.0029169642857142853, "url": "https://pypi.org/project/numpydoc" }, - "sphinx-gallery": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/sphinx-gallery" + "sphinx-rtd-theme": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinxcontrib-napoleon": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/sphinxcontrib-napoleon" + }, + "sphinx": { + "credit": 0.011339119897959183, + "url": "https://pypi.org/project/sphinx" + }, + "pytest-timeout": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.00923705357142857, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-removed-in": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.0014584821428571427, + "url": "https://pypi.org/project/olefile" + }, + "requests": { + "credit": 0.012166483516483514, + "url": "https://pypi.org/project/requests" + }, + "tensorflow-rocm": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/tensorflow-rocm" + }, + "tensorflow-gpu": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/tensorflow-gpu" }, - "seaborn": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/seaborn" + "tensorflow-cpu": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/tensorflow-cpu" + }, + "tensorflow-aarch64": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/tensorflow-aarch64" + }, + "freezegun": { + "credit": 0.0033336734693877545, + "url": "https://pypi.org/project/freezegun" + }, + "pytest-mypy": { + "credit": 0.0069636734693877544, + "url": "https://pypi.org/project/pytest-mypy" + }, + "pyu2f": { + "credit": 0.0025928571428571424, + "url": "https://pypi.org/project/pyu2f" + }, + "pyopenssl": { + "credit": 0.0025928571428571424, + "url": "https://pypi.org/project/pyopenssl" + }, + "aiohttp": { + "credit": 0.0025928571428571424, + "url": "https://pypi.org/project/aiohttp" + }, + "click": { + "credit": 0.007778571428571427, + "url": "https://pypi.org/project/click" + }, + "pyyaml": { + "credit": 0.007778571428571427, + "url": "https://pypi.org/project/pyyaml" + }, + "types-setuptools": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/types-setuptools" + }, + "pytest-asyncio": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/pytest-asyncio" + }, + "pytest-flake8": { + "credit": 0.0036299999999999995, + "url": "https://pypi.org/project/pytest-flake8" + }, + "mock": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/mock" + }, + "watchdog": { + "credit": 0.023335714285714283, + "url": "https://pypi.org/project/watchdog" + }, + "importlib-resources": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/importlib-resources" + }, + "pytest-black": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/pytest-black" + }, + "pytest-perf": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/pytest-perf" + }, + "flufl.flake8": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/flufl.flake8" + }, + "pyfakefs": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/pyfakefs" + }, + "pytest-enabler": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/pytest-enabler" + }, + "pytest-checkdocs": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/pytest-checkdocs" + }, + "ipython": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/ipython" + }, + "rst.linker": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/rst.linker" + }, + "jaraco.packaging": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/jaraco.packaging" }, - "scikit-image": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/scikit-image" + "zipp": { + "credit": 0.0012964285714285712, + "url": "https://pypi.org/project/zipp" }, - "memory-profiler": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/memory-profiler" + "pyjwt": { + "credit": 0.007778571428571427, + "url": "https://pypi.org/project/pyjwt" }, - "threadpoolctl": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/threadpoolctl" + "blinker": { + "credit": 0.007778571428571427, + "url": "https://pypi.org/project/blinker" }, - "joblib": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/joblib" + "cryptography": { + "credit": 0.007778571428571427, + "url": "https://pypi.org/project/cryptography" } } } \ No newline at end of file diff --git a/_repos/github/comprna/reorientexpress/README.md b/_repos/github/comprna/reorientexpress/README.md index 5c6d33da..a85d11f2 100644 --- a/_repos/github/comprna/reorientexpress/README.md +++ b/_repos/github/comprna/reorientexpress/README.md @@ -8,78 +8,92 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.222| -|pypi|[biopython](https://biopython.org/)|0.165| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.053| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.031| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.029| -|pypi|[pytz](https://pypi.org/project/pytz)|0.029| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.029| -|pypi|[h5py](https://pypi.org/project/h5py)|0.02| -|pypi|[scipy](https://pypi.org/project/scipy)|0.02| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.017| -|pypi|[pydot](https://github.com/pydot/pydot)|0.013| -|pypi|[flaky](https://github.com/box/flaky)|0.013| -|pypi|[pytest-pep8](https://bitbucket.org/pytest-dev/pytest-pep8)|0.013| +|pypi|[six](https://pypi.org/project/six)|0.086| +|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.058| +|pypi|[h5py](http://www.h5py.org)|0.033| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.033| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.032| +|pypi|[rsa](https://stuvel.eu/rsa)|0.032| +|pypi|[tensorboard-data-server](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server)|0.031| +|pypi|[tensorboard-plugin-wit](https://whatif-tool.dev)|0.031| +|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.03| +|pypi|[flatbuffers](https://google.github.io/flatbuffers/)|0.03| +|pypi|[gast](https://github.com/serge-sans-paille/gast/)|0.03| +|pypi|[libclang](https://github.com/sighingnow/libclang)|0.03| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.03| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.03| +|pypi|[biopython](https://biopython.org/)|0.029| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.029| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.024| +|pypi|[pytest](https://pypi.org/project/pytest)|0.024| +|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|0.02| +|pypi|[numpy](https://pypi.org/project/numpy)|0.018| +|pypi|[requests](https://pypi.org/project/requests)|0.017| +|pypi|[wheel](https://github.com/pypa/wheel)|0.017| +|pypi|[tensorflow](https://www.tensorflow.org/)|0.014| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.012| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.012| +|pypi|[pandas](https://pypi.org/project/pandas)|0.011| +|pypi|[enum34](https://pypi.org/project/enum34)|0.01| |setup.py|github/comprna/reorientexpress|0.01| -|pypi|[pandas](https://pandas.pydata.org)|0.01| -|pypi|[six](https://pypi.org/project/six)|0.009| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.008| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.008| -|pypi|[mypy](https://pypi.org/project/mypy)|0.008| -|pypi|[black](https://pypi.org/project/black)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.008| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.008| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.008| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.008| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.008| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.008| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.008| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.008| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.008| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.008| -|pypi|[joblib](https://pypi.org/project/joblib)|0.008| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.008| -|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.008| -|pypi|[keras](https://pypi.org/project/keras)|0.008| -|pypi|[tf-estimator-nightly](https://pypi.org/project/tf-estimator-nightly)|0.008| -|pypi|[tensorboard](https://pypi.org/project/tensorboard)|0.008| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.008| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.008| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.008| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.008| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.008| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.008| -|pypi|[libclang](https://pypi.org/project/libclang)|0.008| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.008| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.008| -|pypi|[gast](https://pypi.org/project/gast)|0.008| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.008| -|pypi|[astunparse](https://pypi.org/project/astunparse)|0.008| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.008| -|pypi|[coverage](https://pypi.org/project/coverage)|0.006| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[filelock](https://pypi.org/project/filelock)|0.002| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| -|pypi|[psutil](https://pypi.org/project/psutil)|0.002| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.002| -|pypi|[execnet](https://pypi.org/project/execnet)|0.002| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[idna](https://pypi.org/project/idna)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[certifi](https://pypi.org/project/certifi)|0.002| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| -|pypi|[Keras](https://github.com/keras-team/keras)|0.002| -|pypi|[scikit_learn](http://scikit-learn.org)|0.002| -|pypi|[tensorflow](https://www.tensorflow.org/)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.01| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.01| +|pypi|[click](https://pypi.org/project/click)|0.01| +|pypi|[coverage](https://pypi.org/project/coverage)|0.01| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.01| +|pypi|[blinker](https://pypi.org/project/blinker)|0.01| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.01| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.007| +|pypi|[futures](https://pypi.org/project/futures)|0.007| +|pypi|[Keras](https://github.com/keras-team/keras)|0.006| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|0.006| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.006| +|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|0.006| +|pypi|[tensorflow-gpu](https://pypi.org/project/tensorflow-gpu)|0.006| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|0.006| +|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|0.006| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| +|pypi|[scipy](https://pypi.org/project/scipy)|0.005| +|pypi|[markdown](https://Python-Markdown.github.io/)|0.005| +|pypi|[keras](https://pypi.org/project/keras)|0.004| +|pypi|[absl-py](https://github.com/abseil/abseil-py)|0.004| +|pypi|[grpcio](https://grpc.io)|0.004| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|0.004| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.004| +|pypi|[pyasn1-modules](https://github.com/etingof/pyasn1-modules)|0.003| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|0.003| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.003| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.003| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.003| +|pypi|[google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib)|0.003| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|0.003| +|pypi|[pydot](https://pypi.org/project/pydot)|0.002| +|pypi|[flaky](https://pypi.org/project/flaky)|0.002| +|pypi|[astunparse](https://github.com/simonpercivall/astunparse)|0.002| +|pypi|[google-pasta](https://github.com/google/pasta)|0.002| +|pypi|[keras-preprocessing](https://github.com/keras-team/keras-preprocessing)|0.002| +|pypi|[opt-einsum](https://github.com/dgasmith/opt_einsum)|0.002| +|pypi|[tensorflow-io-gcs-filesystem](https://github.com/tensorflow/io)|0.002| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.002| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.002| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.002| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.002| +|pypi|[packaging](https://pypi.org/project/packaging)|0.002| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.002| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| +|pypi|[zipp](https://pypi.org/project/zipp)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/comprna/reorientexpress/badge.png b/_repos/github/comprna/reorientexpress/badge.png index 6d6ef190..a8d7484a 100644 Binary files a/_repos/github/comprna/reorientexpress/badge.png and b/_repos/github/comprna/reorientexpress/badge.png differ diff --git a/_repos/github/comprna/reorientexpress/data.json b/_repos/github/comprna/reorientexpress/data.json index 1ee94442..2e747487 100644 --- a/_repos/github/comprna/reorientexpress/data.json +++ b/_repos/github/comprna/reorientexpress/data.json @@ -6,297 +6,349 @@ } }, "pypi": { - "numpy": { - "credit": 0.22242081593406596, - "url": "https://www.numpy.org" + "reorientexpress": { + "credit": 0.0002911764705882357, + "url": "https://github.com/angelrure/reorientexpress" }, "Keras": { - "credit": 0.0016500000000000126, + "credit": 0.006056470588235291, "url": "https://github.com/keras-team/keras" }, - "pandas": { - "credit": 0.009554225274725287, - "url": "https://pandas.pydata.org" + "tensorflow": { + "credit": 0.014442352941176472, + "url": "https://www.tensorflow.org/" }, - "scikit_learn": { - "credit": 0.0016500000000000126, - "url": "http://scikit-learn.org" + "tf-estimator-nightly": { + "credit": 0.03049033613445378, + "url": "https://www.tensorflow.org/" }, "biopython": { - "credit": 0.165, + "credit": 0.02911764705882353, "url": "https://biopython.org/" }, - "tensorflow": { - "credit": 0.0016500000000000126, - "url": "https://www.tensorflow.org/" + "absl-py": { + "credit": 0.003881286360698126, + "url": "https://github.com/abseil/abseil-py" }, - "pydot": { - "credit": 0.012565384615384615, - "url": "https://github.com/pydot/pydot" + "astunparse": { + "credit": 0.0016638655462184878, + "url": "https://github.com/simonpercivall/astunparse" }, - "markdown": { - "credit": 0.00012565384615384652, - "url": "https://Python-Markdown.github.io/" + "flatbuffers": { + "credit": 0.03049033613445378, + "url": "https://google.github.io/flatbuffers/" }, - "requests": { - "credit": 0.00012565384615384652, - "url": "https://requests.readthedocs.io" + "gast": { + "credit": 0.03049033613445378, + "url": "https://github.com/serge-sans-paille/gast/" }, - "pytest-cov": { - "credit": 0.007904225274725275, - "url": "https://github.com/pytest-dev/pytest-cov" + "google-pasta": { + "credit": 0.0016638655462184878, + "url": "https://github.com/google/pasta" }, - "flaky": { - "credit": 0.012565384615384615, - "url": "https://github.com/box/flaky" + "grpcio": { + "credit": 0.003881286360698126, + "url": "https://grpc.io" }, - "pytest-xdist": { - "credit": 0.03097890865384615, - "url": "https://github.com/pytest-dev/pytest-xdist" + "h5py": { + "credit": 0.03270775694893342, + "url": "http://www.h5py.org" }, - "pytest-pep8": { - "credit": 0.012565384615384615, - "url": "https://bitbucket.org/pytest-dev/pytest-pep8" + "keras-preprocessing": { + "credit": 0.0016638655462184878, + "url": "https://github.com/keras-team/keras-preprocessing" }, - "pytest": { - "credit": 0.05327049931318681, - "url": "https://docs.pytest.org/en/latest/" + "libclang": { + "credit": 0.03049033613445378, + "url": "https://github.com/sighingnow/libclang" }, - "h5py": { - "credit": 0.020343956043956044, - "url": "https://pypi.org/project/h5py" + "opt-einsum": { + "credit": 0.0016638655462184878, + "url": "https://github.com/dgasmith/opt_einsum" }, - "pyyaml": { - "credit": 0.016711961538461537, - "url": "https://pypi.org/project/pyyaml" + "protobuf": { + "credit": 0.03270775694893342, + "url": "https://developers.google.com/protocol-buffers/" }, - "scipy": { - "credit": 0.020343956043956044, - "url": "https://pypi.org/project/scipy" + "tensorboard": { + "credit": 0.0016638655462184843, + "url": "https://github.com/tensorflow/tensorboard" }, - "hypothesis": { - "credit": 0.02929828846153846, - "url": "https://pypi.org/project/hypothesis" + "tensorflow-io-gcs-filesystem": { + "credit": 0.0016638655462184878, + "url": "https://github.com/tensorflow/io" }, - "pytz": { - "credit": 0.02929828846153846, - "url": "https://pypi.org/project/pytz" + "termcolor": { + "credit": 0.03049033613445378, + "url": "http://pypi.python.org/pypi/termcolor" }, - "python-dateutil": { - "credit": 0.02929828846153846, - "url": "https://pypi.org/project/python-dateutil" + "wrapt": { + "credit": 0.03049033613445378, + "url": "https://github.com/GrahamDumpleton/wrapt" }, - "pyamg": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/pyamg" + "google-auth": { + "credit": 0.012117420814479639, + "url": "https://github.com/googleapis/google-auth-library-python" }, - "mypy": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/mypy" + "google-auth-oauthlib": { + "credit": 0.002508597285067874, + "url": "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib" }, - "black": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/black" + "markdown": { + "credit": 0.004726018099547512, + "url": "https://Python-Markdown.github.io/" }, - "flake8": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/flake8" + "tensorboard-data-server": { + "credit": 0.03133506787330317, + "url": "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server" }, - "sphinxext-opengraph": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinxext-opengraph" + "tensorboard-plugin-wit": { + "credit": 0.03133506787330317, + "url": "https://whatif-tool.dev" }, - "sphinx-prompt": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinx-prompt" + "werkzeug": { + "credit": 0.002508597285067874, + "url": "https://palletsprojects.com/p/werkzeug/" }, - "Pillow": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/Pillow" + "wheel": { + "credit": 0.01692183257918552, + "url": "https://github.com/pypa/wheel" }, - "numpydoc": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/numpydoc" + "cachetools": { + "credit": 0.032320588235294115, + "url": "https://github.com/tkem/cachetools/" }, - "sphinx-gallery": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinx-gallery" + "importlib-metadata": { + "credit": 0.0099, + "url": "https://github.com/python/importlib_metadata" }, - "sphinx": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/sphinx" + "pyasn1-modules": { + "credit": 0.0034941176470588238, + "url": "https://github.com/etingof/pyasn1-modules" }, - "seaborn": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/seaborn" + "requests-oauthlib": { + "credit": 0.0099, + "url": "https://github.com/requests/requests-oauthlib" }, - "scikit-image": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/scikit-image" + "rsa": { + "credit": 0.032320588235294115, + "url": "https://stuvel.eu/rsa" }, - "memory-profiler": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/memory-profiler" + "oauthlib": { + "credit": 0.019508823529411766, + "url": "https://github.com/oauthlib/oauthlib" }, - "matplotlib": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/matplotlib" + "pyasn1": { + "credit": 0.057944117647058827, + "url": "https://github.com/etingof/pyasn1" }, - "threadpoolctl": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/threadpoolctl" + "scikit-learn": { + "credit": 0.0057652941176470586, + "url": "https://pypi.org/project/scikit-learn" }, - "joblib": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/joblib" + "pandas": { + "credit": 0.010603303167420815, + "url": "https://pypi.org/project/pandas" }, - "grpcio": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/grpcio" + "numpy": { + "credit": 0.017796721881060115, + "url": "https://pypi.org/project/numpy" }, - "tensorflow-io-gcs-filesystem": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/tensorflow-io-gcs-filesystem" + "pydot": { + "credit": 0.002217420814479638, + "url": "https://pypi.org/project/pydot" }, - "keras": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/keras" + "requests": { + "credit": 0.01724660633484163, + "url": "https://pypi.org/project/requests" }, - "tf-estimator-nightly": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/tf-estimator-nightly" + "pytest-cov": { + "credit": 0.024456023755656107, + "url": "https://pypi.org/project/pytest-cov" }, - "tensorboard": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/tensorboard" + "flaky": { + "credit": 0.002217420814479638, + "url": "https://pypi.org/project/flaky" }, - "wrapt": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/wrapt" + "pytest-xdist": { + "credit": 0.004838009049773755, + "url": "https://pypi.org/project/pytest-xdist" + }, + "pytest-pep8": { + "credit": 0.00582072963800905, + "url": "https://pypi.org/project/pytest-pep8" + }, + "pytest": { + "credit": 0.024456023755656107, + "url": "https://pypi.org/project/pytest" + }, + "pyyaml": { + "credit": 0.011826244343891403, + "url": "https://pypi.org/project/pyyaml" + }, + "scipy": { + "credit": 0.004838009049773755, + "url": "https://pypi.org/project/scipy" + }, + "keras": { + "credit": 0.0039932773109243695, + "url": "https://pypi.org/project/keras" }, "typing-extensions": { - "credit": 0.007778571428571428, + "credit": 0.0029741596638655464, "url": "https://pypi.org/project/typing-extensions" }, - "termcolor": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/termcolor" - }, "six": { - "credit": 0.009333537774725275, + "credit": 0.08646901260504201, "url": "https://pypi.org/project/six" }, "setuptools": { - "credit": 0.007778571428571428, + "credit": 0.0035901098901098905, "url": "https://pypi.org/project/setuptools" }, - "protobuf": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/protobuf" + "grpcio-tools": { + "credit": 0.007206617647058823, + "url": "https://pypi.org/project/grpcio-tools" }, - "opt-einsum": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/opt-einsum" + "enum34": { + "credit": 0.01040955882352941, + "url": "https://pypi.org/project/enum34" }, - "libclang": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/libclang" + "futures": { + "credit": 0.007206617647058823, + "url": "https://pypi.org/project/futures" }, - "keras-preprocessing": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/keras-preprocessing" + "flake8": { + "credit": 0.0026205882352941176, + "url": "https://pypi.org/project/flake8" }, - "google-pasta": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/google-pasta" + "Pillow": { + "credit": 0.0026205882352941176, + "url": "https://pypi.org/project/Pillow" }, - "gast": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/gast" + "numpydoc": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/numpydoc" }, - "flatbuffers": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/flatbuffers" + "sphinx-rtd-theme": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "astunparse": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/astunparse" + "sphinxcontrib-napoleon": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/sphinxcontrib-napoleon" }, - "absl-py": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/absl-py" + "sphinx": { + "credit": 0.005204779411764705, + "url": "https://pypi.org/project/sphinx" + }, + "tensorflow-rocm": { + "credit": 0.0057652941176470586, + "url": "https://pypi.org/project/tensorflow-rocm" + }, + "tensorflow-gpu": { + "credit": 0.0057652941176470586, + "url": "https://pypi.org/project/tensorflow-gpu" + }, + "tensorflow-cpu": { + "credit": 0.0057652941176470586, + "url": "https://pypi.org/project/tensorflow-cpu" + }, + "tensorflow-aarch64": { + "credit": 0.0057652941176470586, + "url": "https://pypi.org/project/tensorflow-aarch64" + }, + "pyu2f": { + "credit": 0.003202941176470588, + "url": "https://pypi.org/project/pyu2f" + }, + "pyopenssl": { + "credit": 0.003202941176470588, + "url": "https://pypi.org/project/pyopenssl" + }, + "aiohttp": { + "credit": 0.003202941176470588, + "url": "https://pypi.org/project/aiohttp" + }, + "click": { + "credit": 0.009608823529411765, + "url": "https://pypi.org/project/click" }, "coverage": { - "credit": 0.0057015432692307695, + "credit": 0.009608823529411765, "url": "https://pypi.org/project/coverage" }, - "importlib-metadata": { - "credit": 0.004146576923076923, - "url": "https://pypi.org/project/importlib-metadata" + "watchdog": { + "credit": 0.028826470588235294, + "url": "https://pypi.org/project/watchdog" + }, + "importlib-resources": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/importlib-resources" }, - "win-inet-pton": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/win-inet-pton" + "pytest-mypy": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/pytest-mypy" }, - "PySocks": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/PySocks" + "pytest-black": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/pytest-black" }, - "charset-normalizer": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/charset-normalizer" + "pytest-perf": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/pytest-perf" }, - "idna": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/idna" + "flufl.flake8": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/flufl.flake8" }, - "chardet": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/chardet" + "pyfakefs": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/pyfakefs" }, - "certifi": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/certifi" + "packaging": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/packaging" }, - "urllib3": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/urllib3" + "pytest-enabler": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/pytest-enabler" }, - "virtualenv": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/virtualenv" + "pytest-flake8": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/pytest-flake8" }, - "process-tests": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/process-tests" + "pytest-checkdocs": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/pytest-checkdocs" }, - "hunter": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/hunter" + "ipython": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/ipython" }, - "fields": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/fields" + "rst.linker": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/rst.linker" }, - "filelock": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/filelock" + "jaraco.packaging": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/jaraco.packaging" }, - "setproctitle": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/setproctitle" + "zipp": { + "credit": 0.001601470588235294, + "url": "https://pypi.org/project/zipp" }, - "psutil": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/psutil" + "pyjwt": { + "credit": 0.009608823529411765, + "url": "https://pypi.org/project/pyjwt" }, - "pytest-forked": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/pytest-forked" + "blinker": { + "credit": 0.009608823529411765, + "url": "https://pypi.org/project/blinker" }, - "execnet": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/execnet" + "cryptography": { + "credit": 0.009608823529411765, + "url": "https://pypi.org/project/cryptography" } } } \ No newline at end of file diff --git a/_repos/github/conda/conda/badge.png b/_repos/github/conda/conda/badge.png index 39c200ff..f1f330e5 100644 Binary files a/_repos/github/conda/conda/badge.png and b/_repos/github/conda/conda/badge.png differ diff --git a/_repos/github/csbioinfopk/iSumoK-PseAAC/badge.png b/_repos/github/csbioinfopk/iSumoK-PseAAC/badge.png index 011fd702..0fa8e96e 100644 Binary files a/_repos/github/csbioinfopk/iSumoK-PseAAC/badge.png and b/_repos/github/csbioinfopk/iSumoK-PseAAC/badge.png differ diff --git a/_repos/github/cupy/cupy/README.md b/_repos/github/cupy/cupy/README.md index 21ff8309..22c75299 100644 --- a/_repos/github/cupy/cupy/README.md +++ b/_repos/github/cupy/cupy/README.md @@ -9,9 +9,6 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/cupy/cupy|0.01| -|pypi|[fastrlock](https://github.com/scoder/fastrlock)|0.005| -|pypi|[Cython](http://cython.org/)|0.002| -|pypi|[numpy](https://www.numpy.org)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/cupy/cupy/badge.png b/_repos/github/cupy/cupy/badge.png index 3ad91d77..40ba1b05 100644 Binary files a/_repos/github/cupy/cupy/badge.png and b/_repos/github/cupy/cupy/badge.png differ diff --git a/_repos/github/cupy/cupy/data.json b/_repos/github/cupy/cupy/data.json index 42c3681d..8a3eb156 100644 --- a/_repos/github/cupy/cupy/data.json +++ b/_repos/github/cupy/cupy/data.json @@ -4,19 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "Cython": { - "credit": 0.002475, - "url": "http://cython.org/" - }, - "fastrlock": { - "credit": 0.00495, - "url": "https://github.com/scoder/fastrlock" - }, - "numpy": { - "credit": 0.002475, - "url": "https://www.numpy.org" - } } } \ No newline at end of file diff --git a/_repos/github/dask/dask/README.md b/_repos/github/dask/dask/README.md index b77a4c25..5d565d92 100644 --- a/_repos/github/dask/dask/README.md +++ b/_repos/github/dask/dask/README.md @@ -8,48 +8,50 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.211| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.141| -|pypi|[pyyaml](https://pyyaml.org/)|0.141| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.14| -|pypi|[locket](https://pypi.org/project/locket)|0.07| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.011| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.011| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.011| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.011| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.011| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.011| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.011| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.011| -|pypi|[pytest](https://pypi.org/project/pytest)|0.011| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.011| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.011| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.011| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| +|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.258| +|pypi|[locket](http://github.com/mwilliamson/locket.py)|0.247| +|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.176| +|pypi|[distributed](https://pypi.org/project/distributed)|0.019| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.018| +|pypi|[fsspec](http://github.com/fsspec/filesystem_spec)|0.013| +|pypi|[partd](http://github.com/dask/partd/)|0.013| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.012| +|pypi|[pandas](https://pypi.org/project/pandas)|0.011| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.011| +|pypi|[bokeh](https://pypi.org/project/bokeh)|0.011| +|pypi|[numpy](https://pypi.org/project/numpy)|0.011| +|pypi|[packaging](https://pypi.org/project/packaging)|0.011| +|pypi|[dask](https://github.com/dask/dask/)|0.01| |setup.py|github/dask/dask|0.01| -|pypi|[tqdm](https://tqdm.github.io)|0.007| -|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|0.007| -|pypi|[paramiko](https://pypi.org/project/paramiko)|0.007| -|pypi|[s3fs](https://pypi.org/project/s3fs)|0.007| -|pypi|[ocifs](https://pypi.org/project/ocifs)|0.007| -|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|0.007| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.007| -|pypi|[panel](https://pypi.org/project/panel)|0.007| -|pypi|[pygit2](https://pypi.org/project/pygit2)|0.007| -|pypi|[gcsfs](https://pypi.org/project/gcsfs)|0.007| -|pypi|[fusepy](https://pypi.org/project/fusepy)|0.007| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.007| -|pypi|[dropbox](https://pypi.org/project/dropbox)|0.007| -|pypi|[requests](https://pypi.org/project/requests)|0.007| -|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|0.007| -|pypi|[distributed](https://pypi.org/project/distributed)|0.007| -|pypi|[dask](https://pypi.org/project/dask)|0.007| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.007| -|pypi|[adlfs](https://pypi.org/project/adlfs)|0.007| -|pypi|[fsspec](http://github.com/fsspec/filesystem_spec)|0.001| -|pypi|[packaging](https://github.com/pypa/packaging)|0.001| -|pypi|[partd](http://github.com/dask/partd/)|0.001| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.001| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.009| +|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|0.009| +|pypi|[paramiko](https://pypi.org/project/paramiko)|0.009| +|pypi|[s3fs](https://pypi.org/project/s3fs)|0.009| +|pypi|[ocifs](https://pypi.org/project/ocifs)|0.009| +|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|0.009| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.009| +|pypi|[panel](https://pypi.org/project/panel)|0.009| +|pypi|[pygit2](https://pypi.org/project/pygit2)|0.009| +|pypi|[gcsfs](https://pypi.org/project/gcsfs)|0.009| +|pypi|[fusepy](https://pypi.org/project/fusepy)|0.009| +|pypi|[dropbox](https://pypi.org/project/dropbox)|0.009| +|pypi|[requests](https://pypi.org/project/requests)|0.009| +|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|0.009| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.009| +|pypi|[adlfs](https://pypi.org/project/adlfs)|0.009| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.005| +|pypi|[filelock](https://pypi.org/project/filelock)|0.002| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.002| +|pypi|[execnet](https://pypi.org/project/execnet)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[toml](https://pypi.org/project/toml)|0.001| +|pypi|[nodeenv](https://pypi.org/project/nodeenv)|0.001| +|pypi|[identify](https://pypi.org/project/identify)|0.001| +|pypi|[cfgv](https://pypi.org/project/cfgv)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/dask/dask/badge.png b/_repos/github/dask/dask/badge.png index 4e04ef02..8e934098 100644 Binary files a/_repos/github/dask/dask/badge.png and b/_repos/github/dask/dask/badge.png differ diff --git a/_repos/github/dask/dask/data.json b/_repos/github/dask/dask/data.json index b4c3b20c..9b12b082 100644 --- a/_repos/github/dask/dask/data.json +++ b/_repos/github/dask/dask/data.json @@ -6,169 +6,189 @@ } }, "pypi": { + "dask": { + "credit": 0.010247368421052644, + "url": "https://github.com/dask/dask/" + }, "cloudpickle": { - "credit": 0.14142857142857143, + "credit": 0.17589000000000002, "url": "https://github.com/cloudpipe/cloudpickle" }, "fsspec": { - "credit": 0.001414285714285729, + "credit": 0.012540000000000013, "url": "http://github.com/fsspec/filesystem_spec" }, - "packaging": { - "credit": 0.001414285714285729, - "url": "https://github.com/pypa/packaging" - }, "partd": { - "credit": 0.001414285714285729, + "credit": 0.012540000000000013, "url": "http://github.com/dask/partd/" }, - "pyyaml": { - "credit": 0.14142857142857143, - "url": "https://pyyaml.org/" - }, "toolz": { - "credit": 0.21143571428571428, + "credit": 0.25756500000000004, "url": "https://github.com/pytoolz/toolz/" }, - "pytest-runner": { - "credit": 0.001414285714285729, - "url": "https://github.com/pytest-dev/pytest-runner/" + "locket": { + "credit": 0.246675, + "url": "http://github.com/mwilliamson/locket.py" + }, + "pre-commit": { + "credit": 0.00010890000000000032, + "url": "https://github.com/pre-commit/pre-commit" + }, + "pytest-xdist": { + "credit": 0.00010890000000000032, + "url": "https://github.com/pytest-dev/pytest-xdist" + }, + "pytest-rerunfailures": { + "credit": 0.00010890000000000032, + "url": "https://github.com/pytest-dev/pytest-rerunfailures" + }, + "pytest": { + "credit": 0.0180774, + "url": "https://docs.pytest.org/en/latest/" + }, + "pandas": { + "credit": 0.01089, + "url": "https://pypi.org/project/pandas" + }, + "jinja2": { + "credit": 0.01089, + "url": "https://pypi.org/project/jinja2" + }, + "distributed": { + "credit": 0.01948736842105263, + "url": "https://pypi.org/project/distributed" + }, + "bokeh": { + "credit": 0.01089, + "url": "https://pypi.org/project/bokeh" + }, + "numpy": { + "credit": 0.01089, + "url": "https://pypi.org/project/numpy" + }, + "pyyaml": { + "credit": 0.0122376375, + "url": "https://pypi.org/project/pyyaml" + }, + "packaging": { + "credit": 0.01089, + "url": "https://pypi.org/project/packaging" }, "tqdm": { - "credit": 0.0073691729323308265, - "url": "https://tqdm.github.io" + "credit": 0.008597368421052631, + "url": "https://pypi.org/project/tqdm" }, "smbprotocol": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/smbprotocol" }, "paramiko": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/paramiko" }, "s3fs": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/s3fs" }, "ocifs": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/ocifs" }, "libarchive-c": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/libarchive-c" }, "aiohttp": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/aiohttp" }, "panel": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/panel" }, "pygit2": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/pygit2" }, "gcsfs": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/gcsfs" }, "fusepy": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/fusepy" }, "importlib-metadata": { - "credit": 0.0073691729323308265, + "credit": 0.009945005921052632, "url": "https://pypi.org/project/importlib-metadata" }, "dropbox": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/dropbox" }, "requests": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/requests" }, "dropboxdrivefs": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/dropboxdrivefs" }, - "distributed": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/distributed" - }, - "dask": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/dask" - }, "pyarrow": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/pyarrow" }, "adlfs": { - "credit": 0.0073691729323308265, + "credit": 0.008597368421052631, "url": "https://pypi.org/project/adlfs" }, - "pyparsing": { - "credit": 0.1400142857142857, - "url": "https://pypi.org/project/pyparsing" - }, - "locket": { - "credit": 0.07000714285714285, - "url": "https://pypi.org/project/locket" - }, - "pytest-mypy": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/pytest-mypy" + "importlib-resources": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/importlib-resources" }, - "pytest-black": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/pytest-black" + "virtualenv": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/virtualenv" }, - "types-setuptools": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/types-setuptools" + "toml": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/toml" }, - "pytest-virtualenv": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/pytest-virtualenv" + "nodeenv": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/nodeenv" }, - "pytest-enabler": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/pytest-enabler" + "identify": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/identify" }, - "pytest-cov": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/pytest-cov" + "cfgv": { + "credit": 0.0013476375, + "url": "https://pypi.org/project/cfgv" }, - "pytest-flake8": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/pytest-flake8" + "filelock": { + "credit": 0.00179685, + "url": "https://pypi.org/project/filelock" }, - "pytest-checkdocs": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "pytest": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/pytest" + "setproctitle": { + "credit": 0.00179685, + "url": "https://pypi.org/project/setproctitle" }, - "jaraco.tidelift": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/jaraco.tidelift" + "psutil": { + "credit": 0.00179685, + "url": "https://pypi.org/project/psutil" }, - "rst.linker": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/rst.linker" + "pytest-forked": { + "credit": 0.00179685, + "url": "https://pypi.org/project/pytest-forked" }, - "jaraco.packaging": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/jaraco.packaging" + "execnet": { + "credit": 0.00179685, + "url": "https://pypi.org/project/execnet" }, - "sphinx": { - "credit": 0.010770329670329669, - "url": "https://pypi.org/project/sphinx" + "setuptools": { + "credit": 0.00539055, + "url": "https://pypi.org/project/setuptools" } } } \ No newline at end of file diff --git a/_repos/github/dask/dask/setup.py b/_repos/github/dask/dask/setup.py index 85f77b4e..32eebad2 100644 --- a/_repos/github/dask/dask/setup.py +++ b/_repos/github/dask/dask/setup.py @@ -92,5 +92,5 @@ tests_require=["pytest"], extras_require=extras_require, include_package_data=True, - zip_safe=False, + zip_safe=False, # https://mypy.readthedocs.io/en/latest/installed_packages.html ) diff --git a/_repos/github/davemlz/eemont/README.md b/_repos/github/davemlz/eemont/README.md index 432b0070..cd64f2e3 100644 --- a/_repos/github/davemlz/eemont/README.md +++ b/_repos/github/davemlz/eemont/README.md @@ -8,75 +8,57 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.145| -|pypi|[earthengine-api](http://code.google.com/p/earthengine-api/)|0.124| -|pypi|[ee_extra](https://github.com/r-earthengine/ee_extra)|0.124| -|pypi|[lxml](https://lxml.de/)|0.041| -|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.04| -|pypi|[msgpack](https://msgpack.org/)|0.031| -|pypi|[toml](https://github.com/uiri/toml)|0.031| -|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.031| -|pypi|[PyYAML](https://pyyaml.org/)|0.031| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.03| -|pypi|[urllib3](https://urllib3.readthedocs.io/)|0.027| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.022| -|pypi|[six](https://pypi.org/project/six)|0.02| -|pypi|[webencodings](https://pypi.org/project/webencodings)|0.02| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.019| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.019| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.019| -|pypi|[idna](https://pypi.org/project/idna)|0.019| -|pypi|[chardet](https://pypi.org/project/chardet)|0.019| -|pypi|[certifi](https://pypi.org/project/certifi)|0.019| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.013| +|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.076| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.069| +|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.05| +|pypi|[uritemplate](https://uritemplate.readthedocs.org)|0.046| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.045| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.042| +|pypi|[rsa](https://stuvel.eu/rsa)|0.042| +|pypi|[geographiclib](https://geographiclib.sourceforge.io/1.52/python)|0.041| +|pypi|[pytest](https://pypi.org/project/pytest)|0.04| +|pypi|[eemont](https://github.com/davemlz/eemont)|0.038| +|pypi|[ee_extra](https://github.com/r-earthengine/ee_extra)|0.038| +|pypi|[earthengine-api](http://code.google.com/p/earthengine-api/)|0.038| +|pypi|[future](https://python-future.org)|0.038| +|pypi|[httplib2shim](https://github.com/GoogleCloudPlatform/httplib2shim)|0.038| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.038| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.037| +|pypi|[requests](https://requests.readthedocs.io)|0.031| +|pypi|[google-api-core](https://github.com/googleapis/python-api-core)|0.027| +|pypi|[six](https://pypi.org/project/six)|0.023| +|pypi|[httplib2](https://github.com/httplib2/httplib2)|0.02| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.019| +|pypi|[google-crc32c](https://github.com/googleapis/python-crc32c)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| |setup.py|github/davemlz/eemont|0.01| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| -|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.008| -|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|0.008| -|pypi|[isort](https://pypi.org/project/isort)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.008| -|pypi|[coverage](https://pypi.org/project/coverage)|0.008| -|pypi|[async-generator](https://pypi.org/project/async-generator)|0.008| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.008| -|pypi|[geographiclib](https://pypi.org/project/geographiclib)|0.008| -|pypi|[filelock](https://pypi.org/project/filelock)|0.003| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.003| -|pypi|[execnet](https://pypi.org/project/execnet)|0.003| -|pypi|[requests](https://requests.readthedocs.io)|0.003| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| -|pypi|[attrs](https://pypi.org/project/attrs)|0.002| -|pypi|[pandas](https://pandas.pydata.org)|0.002| -|pypi|[hypothesis](https://hypothesis.works)|0.001| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.001| -|pypi|[python-box](https://github.com/cdgriffith/Box)|0.001| -|pypi|[geopy](https://github.com/geopy/geopy)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[msgpack](https://pypi.org/project/msgpack)|0.009| +|pypi|[toml](https://pypi.org/project/toml)|0.009| +|pypi|[ruamel.yaml](https://pypi.org/project/ruamel.yaml)|0.009| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.009| +|pypi|[google-auth-httplib2](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2)|0.008| +|pypi|[google-cloud-core](https://github.com/googleapis/python-cloud-core)|0.007| +|pypi|[google-resumable-media](https://github.com/googleapis/google-resumable-media-python)|0.007| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.006| +|pypi|[googleapis-common-protos](https://github.com/googleapis/python-api-common-protos)|0.006| +|pypi|[grpcio-gcp](https://pypi.org/project/grpcio-gcp)|0.005| +|pypi|[grpcio-status](https://pypi.org/project/grpcio-status)|0.005| +|pypi|[pyasn1-modules](https://github.com/etingof/pyasn1-modules)|0.005| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|0.004| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.004| +|pypi|[enum34](https://pypi.org/project/enum34)|0.004| +|pypi|[pytz](http://pythonhosted.org/pytz)|0.003| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.003| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.003| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.003| +|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.003| +|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|0.003| +|pypi|[isort](https://pypi.org/project/isort)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[coverage](https://pypi.org/project/coverage)|0.003| +|pypi|[async-generator](https://pypi.org/project/async-generator)|0.003| +|pypi|[soupsieve](https://facelessuser.github.io/soupsieve/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/davemlz/eemont/badge.png b/_repos/github/davemlz/eemont/badge.png index 54943791..36af70a4 100644 Binary files a/_repos/github/davemlz/eemont/badge.png and b/_repos/github/davemlz/eemont/badge.png differ diff --git a/_repos/github/davemlz/eemont/data.json b/_repos/github/davemlz/eemont/data.json index 83bdc266..b5e1f536 100644 --- a/_repos/github/davemlz/eemont/data.json +++ b/_repos/github/davemlz/eemont/data.json @@ -6,289 +6,229 @@ } }, "pypi": { - "beautifulsoup4": { - "credit": 0.0012375000000000025, - "url": "http://www.crummy.com/software/BeautifulSoup/bs4/" - }, - "earthengine-api": { - "credit": 0.12375, - "url": "http://code.google.com/p/earthengine-api/" + "eemont": { + "credit": 0.03807692307692308, + "url": "https://github.com/davemlz/eemont" }, "ee_extra": { - "credit": 0.12375, + "credit": 0.03807692307692308, "url": "https://github.com/r-earthengine/ee_extra" }, - "numpy": { - "credit": 0.14529178125, - "url": "https://www.numpy.org" + "beautifulsoup4": { + "credit": 0.00038076923076923314, + "url": "https://www.crummy.com/software/BeautifulSoup/bs4/" }, - "pandas": { - "credit": 0.0023605312500000024, - "url": "https://pandas.pydata.org" + "earthengine-api": { + "credit": 0.03807692307692308, + "url": "http://code.google.com/p/earthengine-api/" + }, + "geopy": { + "credit": 0.00038076923076923314, + "url": "https://github.com/geopy/geopy" }, "python-box": { - "credit": 0.0012375000000000025, + "credit": 0.00038076923076923314, "url": "https://github.com/cdgriffith/Box" }, - "geopy": { - "credit": 0.0012375000000000025, - "url": "https://github.com/geopy/geopy" + "geographiclib": { + "credit": 0.04059, + "url": "https://geographiclib.sourceforge.io/1.52/python" }, - "requests": { - "credit": 0.002582585156250002, - "url": "https://requests.readthedocs.io" + "google-api-python-client": { + "credit": 0.00038076923076923314, + "url": "https://github.com/googleapis/google-api-python-client/" }, - "lxml": { - "credit": 0.0408375, - "url": "https://lxml.de/" + "google-auth": { + "credit": 0.04471862637362638, + "url": "https://github.com/googleapis/google-auth-library-python" }, - "html5lib": { - "credit": 0.0004083750000000025, - "url": "https://github.com/html5lib/html5lib-python" + "google-auth-httplib2": { + "credit": 0.007920000000000002, + "url": "https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2" + }, + "httplib2": { + "credit": 0.020485384615384617, + "url": "https://github.com/httplib2/httplib2" }, "soupsieve": { - "credit": 0.0004083750000000025, + "credit": 0.0005064230769230797, "url": "https://facelessuser.github.io/soupsieve/" }, - "pytest-xdist": { - "credit": 0.00020418750000000124, - "url": "https://github.com/pytest-dev/pytest-xdist" + "future": { + "credit": 0.03807692307692308, + "url": "https://python-future.org" }, - "pytest": { - "credit": 0.0128638125, - "url": "https://docs.pytest.org/en/latest/" + "google-cloud-storage": { + "credit": 0.00038076923076923314, + "url": "https://github.com/googleapis/python-storage" }, - "hypothesis": { - "credit": 0.0014675976562500011, - "url": "https://hypothesis.works" + "httplib2shim": { + "credit": 0.03807692307692308, + "url": "https://github.com/GoogleCloudPlatform/httplib2shim" }, - "pytz": { - "credit": 0.02970928125, - "url": "http://pythonhosted.org/pytz" + "cachetools": { + "credit": 0.042265384615384614, + "url": "https://github.com/tkem/cachetools/" }, - "python-dateutil": { - "credit": 0.02154178125, - "url": "https://github.com/dateutil/dateutil" + "google-api-core": { + "credit": 0.026768076923076922, + "url": "https://github.com/googleapis/python-api-core" }, - "msgpack": { - "credit": 0.030628125, - "url": "https://msgpack.org/" + "google-cloud-core": { + "credit": 0.006663461538461541, + "url": "https://github.com/googleapis/python-cloud-core" }, - "toml": { - "credit": 0.030628125, - "url": "https://github.com/uiri/toml" + "google-resumable-media": { + "credit": 0.006663461538461541, + "url": "https://github.com/googleapis/google-resumable-media-python" }, - "ruamel.yaml": { - "credit": 0.030628125, - "url": "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree" + "protobuf": { + "credit": 0.06859285714285715, + "url": "https://developers.google.com/protocol-buffers/" }, - "PyYAML": { - "credit": 0.030628125, - "url": "https://pyyaml.org/" + "pyasn1-modules": { + "credit": 0.004569230769230772, + "url": "https://github.com/etingof/pyasn1-modules" + }, + "rsa": { + "credit": 0.042265384615384614, + "url": "https://stuvel.eu/rsa" + }, + "uritemplate": { + "credit": 0.04561615384615385, + "url": "https://uritemplate.readthedocs.org" + }, + "google-crc32c": { + "credit": 0.012946153846153849, + "url": "https://github.com/googleapis/python-crc32c" + }, + "googleapis-common-protos": { + "credit": 0.0057659340659340684, + "url": "https://github.com/googleapis/python-api-common-protos" + }, + "pyasn1": { + "credit": 0.07577307692307692, + "url": "https://github.com/etingof/pyasn1" + }, + "lxml": { + "credit": 0.012565384615384615, + "url": "https://lxml.de/" + }, + "html5lib": { + "credit": 0.00012565384615384652, + "url": "https://github.com/html5lib/html5lib-python" + }, + "pytz": { + "credit": 0.002513076923076923, + "url": "http://pythonhosted.org/pytz" + }, + "requests": { + "credit": 0.030934780219780217, + "url": "https://requests.readthedocs.io" }, "urllib3": { - "credit": 0.02682440357142857, - "url": "https://urllib3.readthedocs.io/" + "credit": 0.002513076923076923, + "url": "https://pypi.org/project/urllib3" }, "sphinx-rtd-theme": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx-issues": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/sphinx-issues" }, "sphinx": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/sphinx" }, "readme-renderer": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/readme-renderer" }, + "pytest": { + "credit": 0.04020923076923077, + "url": "https://pypi.org/project/pytest" + }, "pytest-aiohttp": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/pytest-aiohttp" }, "isort": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/isort" }, "flake8": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/flake8" }, "coverage": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/coverage" }, "async-generator": { - "credit": 0.0081675, + "credit": 0.002513076923076923, "url": "https://pypi.org/project/async-generator" }, "aiohttp": { - "credit": 0.0081675, + "credit": 0.019266923076923077, "url": "https://pypi.org/project/aiohttp" }, - "geographiclib": { - "credit": 0.0081675, - "url": "https://pypi.org/project/geographiclib" + "msgpack": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/msgpack" }, - "win-inet-pton": { - "credit": 0.01865690357142857, - "url": "https://pypi.org/project/win-inet-pton" + "toml": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/toml" }, - "PySocks": { - "credit": 0.01865690357142857, - "url": "https://pypi.org/project/PySocks" + "ruamel.yaml": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/ruamel.yaml" }, - "charset-normalizer": { - "credit": 0.01865690357142857, - "url": "https://pypi.org/project/charset-normalizer" + "PyYAML": { + "credit": 0.009424038461538461, + "url": "https://pypi.org/project/PyYAML" }, - "idna": { - "credit": 0.01865690357142857, - "url": "https://pypi.org/project/idna" + "pyu2f": { + "credit": 0.0041884615384615385, + "url": "https://pypi.org/project/pyu2f" }, - "chardet": { - "credit": 0.01865690357142857, - "url": "https://pypi.org/project/chardet" + "pyopenssl": { + "credit": 0.0041884615384615385, + "url": "https://pypi.org/project/pyopenssl" }, - "certifi": { - "credit": 0.01865690357142857, - "url": "https://pypi.org/project/certifi" + "enum34": { + "credit": 0.0041884615384615385, + "url": "https://pypi.org/project/enum34" }, "six": { - "credit": 0.020214562499999998, + "credit": 0.02297371153846154, "url": "https://pypi.org/project/six" }, - "webencodings": { - "credit": 0.020214562499999998, - "url": "https://pypi.org/project/webencodings" + "pyparsing": { + "credit": 0.037696153846153845, + "url": "https://pypi.org/project/pyparsing" }, "backports-functools-lru-cache": { - "credit": 0.040429124999999996, + "credit": 0.05013588461538461, "url": "https://pypi.org/project/backports-functools-lru-cache" }, - "filelock": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/filelock" - }, - "setproctitle": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/setproctitle" - }, - "psutil": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/psutil" - }, - "pytest-forked": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-forked" - }, - "execnet": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/execnet" - }, - "xmlschema": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/xmlschema" - }, - "pygments": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/mock" + "grpcio-gcp": { + "credit": 0.005385164835164835, + "url": "https://pypi.org/project/grpcio-gcp" }, - "argcomplete": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/argcomplete" + "grpcio-status": { + "credit": 0.005385164835164835, + "url": "https://pypi.org/project/grpcio-status" }, - "colorama": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/colorama" + "grpcio": { + "credit": 0.036798626373626374, + "url": "https://pypi.org/project/grpcio" }, - "atomicwrites": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.0023864414062499998, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.0023864414062499998, - "url": "https://pypi.org/project/attrs" - }, - "tzdata": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/redis" - }, - "libcst": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/django" - }, - "click": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/click" - }, - "black": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/black" - }, - "sortedcontainers": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/sortedcontainers" + "webencodings": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/webencodings" } } } \ No newline at end of file diff --git a/_repos/github/davidebolo1993/TRiCoLOR/badge.png b/_repos/github/davidebolo1993/TRiCoLOR/badge.png index ff9e642a..203a3f21 100644 Binary files a/_repos/github/davidebolo1993/TRiCoLOR/badge.png and b/_repos/github/davidebolo1993/TRiCoLOR/badge.png differ diff --git a/_repos/github/davidebolo1993/VISOR/badge.png b/_repos/github/davidebolo1993/VISOR/badge.png index fce3d1bd..dde592a5 100644 Binary files a/_repos/github/davidebolo1993/VISOR/badge.png and b/_repos/github/davidebolo1993/VISOR/badge.png differ diff --git a/_repos/github/dfujim/bfit/README.md b/_repos/github/dfujim/bfit/README.md index f0ff0288..288df02a 100644 --- a/_repos/github/dfujim/bfit/README.md +++ b/_repos/github/dfujim/bfit/README.md @@ -8,55 +8,55 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.161| -|pypi|[cython](http://cython.org/)|0.068| -|pypi|[matplotlib](https://matplotlib.org)|0.068| -|pypi|[jax](https://github.com/google/jax)|0.068| -|pypi|[bdata](https://github.com/dfujim/bdata)|0.066| -|pypi|[pyyaml](https://pyyaml.org/)|0.066| -|pypi|[argparse](https://github.com/ThomasWaldmann/argparse/)|0.066| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.047| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.035| -|pypi|[scipy](https://www.scipy.org)|0.019| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.016| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.016| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.015| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.013| -|pypi|[colorama](https://pypi.org/project/colorama)|0.012| -|pypi|[pytz](https://pypi.org/project/pytz)|0.011| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.011| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.01| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.01| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.01| -|pypi|[idna](https://pypi.org/project/idna)|0.01| -|pypi|[chardet](https://pypi.org/project/chardet)|0.01| -|pypi|[certifi](https://pypi.org/project/certifi)|0.01| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.01| +|pypi|[flatbuffers](https://google.github.io/flatbuffers/)|0.077| +|pypi|[matplotlib](https://matplotlib.org)|0.069| +|pypi|[jax](https://github.com/google/jax)|0.064| +|pypi|[bfit](https://github.com/dfujim/bfit)|0.062| +|pypi|[argparse](https://github.com/ThomasWaldmann/argparse/)|0.062| +|pypi|[bdata](https://github.com/dfujim/bdata)|0.062| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.062| +|pypi|[mud-py](https://github.com/dfujim/mudpy)|0.062| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.061| +|pypi|[six](https://pypi.org/project/six)|0.061| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.044| +|pypi|[pytest](https://pypi.org/project/pytest)|0.044| +|pypi|[numpy](https://pypi.org/project/numpy)|0.025| +|pypi|[scipy](https://pypi.org/project/scipy)|0.022| +|pypi|[absl-py](https://github.com/abseil/abseil-py)|0.016| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.014| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.014| |setup.py|github/dfujim/bfit|0.01| -|pypi|[wheel](https://github.com/pypa/wheel)|0.009| -|pypi|[slack-sdk](https://github.com/slackapi/python-slack-sdk)|0.008| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.008| -|pypi|[twine](https://pypi.org/project/twine)|0.008| -|pypi|[py-make](https://pypi.org/project/py-make)|0.008| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.008| -|pypi|[requests](https://requests.readthedocs.io)|0.005| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.004| -|pypi|[pygments](https://pypi.org/project/pygments)|0.004| -|pypi|[nose](https://pypi.org/project/nose)|0.004| -|pypi|[mock](https://pypi.org/project/mock)|0.004| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.004| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[tomli](https://pypi.org/project/tomli)|0.004| -|pypi|[py](https://pypi.org/project/py)|0.004| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.004| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|0.008| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.008| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|0.008| +|pypi|[xattr](https://pypi.org/project/xattr)|0.005| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.005| +|pypi|[munkres](https://pypi.org/project/munkres)|0.005| +|pypi|[brotli](https://pypi.org/project/brotli)|0.005| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.005| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| +|pypi|[lz4](https://pypi.org/project/lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[lxml](https://pypi.org/project/lxml)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| |pypi|[packaging](https://pypi.org/project/packaging)|0.004| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.004| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| |pypi|[jaxlib](https://github.com/google/jax)|0.003| -|pypi|[resample](https://pypi.org/project/resample)|0.002| -|pypi|[boost-histogram](https://pypi.org/project/boost-histogram)|0.002| +|pypi|[resample](http://github.com/resample-project/resample)|0.002| +|pypi|[boost-histogram](https://github.com/scikit-hep/boost-histogram)|0.002| |pypi|[tabulate](https://pypi.org/project/tabulate)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| |pypi|[pylint](https://pypi.org/project/pylint)|0.002| |pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|0.002| |pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| @@ -68,13 +68,15 @@ exclude_from_search: true |pypi|[joblib](https://pypi.org/project/joblib)|0.002| |pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.002| |pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[cython](https://pypi.org/project/cython)|0.002| |pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.002| |pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.002| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.002| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[pandas](https://pandas.pydata.org)|0.001| |pypi|[iminuit](http://github.com/scikit-hep/iminuit)|0.001| +|pypi|[wheel](https://github.com/pypa/wheel)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[opt_einsum](https://github.com/dgasmith/opt_einsum)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/dfujim/bfit/badge.png b/_repos/github/dfujim/bfit/badge.png index e7a9fde2..1e3a912f 100644 Binary files a/_repos/github/dfujim/bfit/badge.png and b/_repos/github/dfujim/bfit/badge.png differ diff --git a/_repos/github/dfujim/bfit/data.json b/_repos/github/dfujim/bfit/data.json index d7d283a5..9364fd62 100644 --- a/_repos/github/dfujim/bfit/data.json +++ b/_repos/github/dfujim/bfit/data.json @@ -6,269 +6,277 @@ } }, "pypi": { - "cython": { - "credit": 0.06842000000000001, - "url": "http://cython.org/" - }, - "numpy": { - "credit": 0.16098500000000004, - "url": "https://www.numpy.org" + "bfit": { + "credit": 0.061875, + "url": "https://github.com/dfujim/bfit" }, - "tqdm": { - "credit": 0.0006599999999999939, - "url": "https://tqdm.github.io" + "argparse": { + "credit": 0.061875, + "url": "https://github.com/ThomasWaldmann/argparse/" }, "bdata": { - "credit": 0.066, + "credit": 0.061875, "url": "https://github.com/dfujim/bdata" }, - "matplotlib": { - "credit": 0.06842000000000001, - "url": "https://matplotlib.org" - }, - "pandas": { - "credit": 0.0006599999999999939, - "url": "https://pandas.pydata.org" - }, - "pyyaml": { - "credit": 0.066, - "url": "https://pyyaml.org/" - }, - "scipy": { - "credit": 0.019414999999999995, - "url": "https://www.scipy.org" - }, "iminuit": { - "credit": 0.0006599999999999939, + "credit": 0.0006187500000000012, "url": "http://github.com/scikit-hep/iminuit" }, - "requests": { - "credit": 0.004825424999999994, - "url": "https://requests.readthedocs.io" - }, - "argparse": { - "credit": 0.066, - "url": "https://github.com/ThomasWaldmann/argparse/" - }, - "pytest": { - "credit": 0.04664, - "url": "https://docs.pytest.org/en/latest/" - }, - "wheel": { - "credit": 0.008827499999999995, - "url": "https://github.com/pypa/wheel" - }, "jax": { - "credit": 0.06842000000000001, + "credit": 0.06414375, "url": "https://github.com/google/jax" }, "jaxlib": { - "credit": 0.003079999999999994, + "credit": 0.002887500000000001, "url": "https://github.com/google/jax" }, - "slack-sdk": { - "credit": 0.008167500000000001, - "url": "https://github.com/slackapi/python-slack-sdk" + "matplotlib": { + "credit": 0.06885576923076923, + "url": "https://matplotlib.org" }, - "ipywidgets": { - "credit": 0.008167500000000001, - "url": "https://pypi.org/project/ipywidgets" + "wheel": { + "credit": 0.0006187500000000012, + "url": "https://github.com/pypa/wheel" }, - "twine": { - "credit": 0.008167500000000001, - "url": "https://pypi.org/project/twine" + "cycler": { + "credit": 0.061875, + "url": "https://github.com/matplotlib/cycler" }, - "py-make": { - "credit": 0.008167500000000001, - "url": "https://pypi.org/project/py-make" + "flatbuffers": { + "credit": 0.0771890625, + "url": "https://google.github.io/flatbuffers/" }, - "importlib-resources": { - "credit": 0.008167500000000001, - "url": "https://pypi.org/project/importlib-resources" + "fonttools": { + "credit": 0.0006187500000000012, + "url": "http://github.com/fonttools/fonttools" }, - "colorama": { - "credit": 0.012251250000000002, - "url": "https://pypi.org/project/colorama" + "kiwisolver": { + "credit": 0.0006187500000000012, + "url": "https://github.com/nucleic/kiwi" }, - "pytest-xdist": { - "credit": 0.013310000000000002, - "url": "https://pypi.org/project/pytest-xdist" + "mud-py": { + "credit": 0.061875, + "url": "https://github.com/dfujim/mudpy" }, - "hypothesis": { - "credit": 0.014973750000000003, - "url": "https://pypi.org/project/hypothesis" + "pillow": { + "credit": 0.0006187500000000012, + "url": "https://python-pillow.org" }, - "pytz": { - "credit": 0.010890000000000002, - "url": "https://pypi.org/project/pytz" + "absl-py": { + "credit": 0.0159328125, + "url": "https://github.com/abseil/abseil-py" }, - "python-dateutil": { - "credit": 0.010890000000000002, - "url": "https://pypi.org/project/python-dateutil" + "opt_einsum": { + "credit": 0.0006187500000000012, + "url": "https://github.com/dgasmith/opt_einsum" }, "resample": { - "credit": 0.0024200000000000003, - "url": "https://pypi.org/project/resample" + "credit": 0.00226875, + "url": "http://github.com/resample-project/resample" }, "boost-histogram": { - "credit": 0.0024200000000000003, - "url": "https://pypi.org/project/boost-histogram" + "credit": 0.00226875, + "url": "https://github.com/scikit-hep/boost-histogram" }, "tabulate": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/tabulate" }, + "scipy": { + "credit": 0.02229483173076923, + "url": "https://pypi.org/project/scipy" + }, + "pytest-xdist": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pytest-xdist" + }, "pytest-cov": { - "credit": 0.03509, + "credit": 0.044382421875, "url": "https://pypi.org/project/pytest-cov" }, + "pytest": { + "credit": 0.044382421875, + "url": "https://pypi.org/project/pytest" + }, "pylint": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/pylint" }, "pydocstyle": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/pydocstyle" }, "pre-commit": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/pre-commit" }, "numba-stats": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/numba-stats" }, "numba": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/numba" }, "nbformat": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/nbformat" }, "nbconvert": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/nbconvert" }, "jupyter-client": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/jupyter-client" }, "joblib": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/joblib" }, "ipykernel": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/ipykernel" }, "flake8": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/flake8" }, + "cython": { + "credit": 0.00226875, + "url": "https://pypi.org/project/cython" + }, "nbsphinx": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/nbsphinx" }, "Jinja2": { - "credit": 0.0024200000000000003, + "credit": 0.00226875, "url": "https://pypi.org/project/Jinja2" }, "sphinx-rtd-theme": { - "credit": 0.0024200000000000003, + "credit": 0.013754296874999999, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx": { - "credit": 0.0024200000000000003, + "credit": 0.013754296874999999, "url": "https://pypi.org/project/sphinx" }, - "win-inet-pton": { - "credit": 0.010489403571428572, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.010489403571428572, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.010489403571428572, - "url": "https://pypi.org/project/charset-normalizer" + "numpy": { + "credit": 0.025239843749999998, + "url": "https://pypi.org/project/numpy" }, - "idna": { - "credit": 0.010489403571428572, - "url": "https://pypi.org/project/idna" + "xattr": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/xattr" }, - "chardet": { - "credit": 0.010489403571428572, - "url": "https://pypi.org/project/chardet" + "unicodedata2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/unicodedata2" }, - "certifi": { - "credit": 0.010489403571428572, - "url": "https://pypi.org/project/certifi" + "munkres": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/munkres" }, - "urllib3": { - "credit": 0.010489403571428572, - "url": "https://pypi.org/project/urllib3" + "brotli": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/brotli" }, - "xmlschema": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/xmlschema" + "brotlicffi": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/brotlicffi" }, - "pygments": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/pygments" + "skia-pathops": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/skia-pathops" }, - "nose": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/nose" + "sympy": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sympy" }, - "mock": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/mock" + "lz4": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/lz4" }, - "argcomplete": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/argcomplete" + "zopfli": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/zopfli" }, - "atomicwrites": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/atomicwrites" + "lxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/lxml" }, - "importlib-metadata": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/importlib-metadata" + "fs": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/fs" }, - "tomli": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/tomli" + "typing-extensions": { + "credit": 0.06125625, + "url": "https://pypi.org/project/typing-extensions" }, - "py": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/py" + "pytest-timeout": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/pytest-timeout" }, - "pluggy": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.004083750000000001, + "credit": 0.003828515625, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/markdown2" }, - "attrs": { - "credit": 0.004083750000000001, - "url": "https://pypi.org/project/attrs" + "defusedxml": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/defusedxml" }, - "flatbuffers": { - "credit": 0.016335000000000002, - "url": "https://pypi.org/project/flatbuffers" + "coverage": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/coverage" }, - "absl-py": { - "credit": 0.016335000000000002, - "url": "https://pypi.org/project/absl-py" + "check-manifest": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-removed-in": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/olefile" + }, + "six": { + "credit": 0.06125625, + "url": "https://pypi.org/project/six" + }, + "pytest-pep8": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pytest-pep8" + }, + "numpydoc": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/numpydoc" + }, + "sphinxcontrib-napoleon": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxcontrib-napoleon" } } } \ No newline at end of file diff --git a/_repos/github/diCenzo-GC/Tn-Core-webserver/badge.png b/_repos/github/diCenzo-GC/Tn-Core-webserver/badge.png index 37bc6aa9..13421f61 100644 Binary files a/_repos/github/diCenzo-GC/Tn-Core-webserver/badge.png and b/_repos/github/diCenzo-GC/Tn-Core-webserver/badge.png differ diff --git a/_repos/github/dmey/synthia/README.md b/_repos/github/dmey/synthia/README.md index aba9a575..5239e36b 100644 --- a/_repos/github/dmey/synthia/README.md +++ b/_repos/github/dmey/synthia/README.md @@ -8,48 +8,78 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.563| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.063| -|pypi|[gitpython](https://pypi.org/project/gitpython)|0.061| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.061| -|pypi|[scipy](https://www.scipy.org)|0.012| -|pypi|[bottleneck](https://github.com/pydata/bottleneck)|0.012| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[numpy](https://www.numpy.org)|0.259| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.04| +|pypi|[gitdb](https://pypi.org/project/gitdb)|0.04| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.035| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.031| +|pypi|[pytest](https://pypi.org/project/pytest)|0.021| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.019| +|pypi|[bottleneck](https://github.com/pydata/bottleneck)|0.019| +|pypi|[packaging](https://pypi.org/project/packaging)|0.018| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.018| +|pypi|[gitpython](https://github.com/gitpython-developers/GitPython)|0.017| +|pypi|[numpydoc](https://numpydoc.readthedocs.io)|0.017| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.016| +|pypi|[setuptools-scm](https://pypi.org/project/setuptools-scm)|0.016| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.016| +|pypi|[pybind11](https://pypi.org/project/pybind11)|0.016| +|pypi|[scipy](https://www.scipy.org)|0.016| +|pypi|[jupyter-client](https://jupyter.org)|0.015| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.015| +|pypi|[ipython](https://pypi.org/project/ipython)|0.015| +|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|0.015| +|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|0.015| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.015| +|pypi|[dask](https://pypi.org/project/dask)|0.015| +|pypi|[pooch](https://pypi.org/project/pooch)|0.015| +|pypi|[cfgrib](https://pypi.org/project/cfgrib)|0.015| +|pypi|[rasterio](https://pypi.org/project/rasterio)|0.015| +|pypi|[cftime](https://pypi.org/project/cftime)|0.015| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.015| +|pypi|[zarr](https://pypi.org/project/zarr)|0.015| +|pypi|[pydap](https://pypi.org/project/pydap)|0.015| +|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|0.015| +|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.015| +|pypi|[numbagg](https://pypi.org/project/numbagg)|0.015| +|pypi|[pandas](https://pypi.org/project/pandas)|0.015| |setup.py|github/dmey/synthia|0.01| -|pypi|[jupyter-client](https://jupyter.org)|0.009| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.009| -|pypi|[ipython](https://pypi.org/project/ipython)|0.009| -|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|0.009| -|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|0.009| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.009| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.009| -|pypi|[dask](https://pypi.org/project/dask)|0.009| -|pypi|[pooch](https://pypi.org/project/pooch)|0.009| -|pypi|[cfgrib](https://pypi.org/project/cfgrib)|0.009| -|pypi|[rasterio](https://pypi.org/project/rasterio)|0.009| -|pypi|[cftime](https://pypi.org/project/cftime)|0.009| -|pypi|[fsspec](https://pypi.org/project/fsspec)|0.009| -|pypi|[zarr](https://pypi.org/project/zarr)|0.009| -|pypi|[pydap](https://pypi.org/project/pydap)|0.009| -|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|0.009| -|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.009| -|pypi|[numbagg](https://pypi.org/project/numbagg)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[pandas](https://pypi.org/project/pandas)|0.009| -|pypi|[xarray](https://github.com/pydata/xarray)|0.002| +|pypi|[docutils](https://pypi.org/project/docutils)|0.005| +|pypi|[scanpydoc](https://github.com/theislab/scanpydoc/)|0.004| +|pypi|[xarray](https://github.com/pydata/xarray)|0.004| +|pypi|[synthia](https://github.com/dmey/synthia)|0.003| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| +|pypi|[mypy](https://pypi.org/project/mypy)|0.003| +|pypi|[isort](https://pypi.org/project/isort)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| +|pypi|[colorama](https://pypi.org/project/colorama)|0.003| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| +|pypi|[requests](https://pypi.org/project/requests)|0.003| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| +|pypi|[babel](https://pypi.org/project/babel)|0.003| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| +|pypi|[nbsphinx](https://nbsphinx.readthedocs.io/)|0.003| |pypi|[traitlets](https://pypi.org/project/traitlets)|0.002| |pypi|[nbformat](https://pypi.org/project/nbformat)|0.002| |pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.002| |pypi|[jinja2](https://pypi.org/project/jinja2)|0.002| -|pypi|[docutils](https://pypi.org/project/docutils)|0.002| -|pypi|[scanpydoc](https://github.com/theislab/scanpydoc/)|0.001| |pypi|[sphinx-autodoc-typehints>=1.15.2](https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2)|0.001| |pypi|[typing_extensions>=3.10](https://pypi.org/project/typing_extensions>=3.10)|0.001| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.001| -|pypi|[pytest](https://pypi.org/project/pytest)|0.001| |pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| |pypi|[get_version](https://pypi.org/project/get_version)|0.001| |pypi|[sphinx>=3.0](https://pypi.org/project/sphinx>=3.0)|0.001| +|pypi|[pyvinecopulib](https://github.com/vinecopulib/pyvinecopulib/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/dmey/synthia/badge.png b/_repos/github/dmey/synthia/badge.png index c42f1c84..6dac3173 100644 Binary files a/_repos/github/dmey/synthia/badge.png and b/_repos/github/dmey/synthia/badge.png differ diff --git a/_repos/github/dmey/synthia/data.json b/_repos/github/dmey/synthia/data.json index 5c425dd1..14d571cd 100644 --- a/_repos/github/dmey/synthia/data.json +++ b/_repos/github/dmey/synthia/data.json @@ -6,173 +6,289 @@ } }, "pypi": { - "numpy": { - "credit": 0.5632052884615385, - "url": "https://www.numpy.org" + "synthia": { + "credit": 0.003300000000000025, + "url": "https://github.com/dmey/synthia" }, - "scipy": { - "credit": 0.011899038461538466, - "url": "https://www.scipy.org" + "bottleneck": { + "credit": 0.019006730769230793, + "url": "https://github.com/pydata/bottleneck" }, "xarray": { - "credit": 0.002475000000000005, + "credit": 0.0039534000000000236, "url": "https://github.com/pydata/xarray" }, - "bottleneck": { - "credit": 0.011899038461538466, - "url": "https://github.com/pydata/bottleneck" + "pyvinecopulib": { + "credit": 0.0006533999999999984, + "url": "https://github.com/vinecopulib/pyvinecopulib/" + }, + "scipy": { + "credit": 0.015706730769230768, + "url": "https://www.scipy.org" + }, + "numpy": { + "credit": 0.2590982307692308, + "url": "https://www.numpy.org" + }, + "gitpython": { + "credit": 0.016988400000000004, + "url": "https://github.com/gitpython-developers/GitPython" + }, + "sphinx": { + "credit": 0.03523333846153846, + "url": "https://www.sphinx-doc.org/" + }, + "numpydoc": { + "credit": 0.016988400000000004, + "url": "https://numpydoc.readthedocs.io" }, "scanpydoc": { - "credit": 0.001130884615384616, + "credit": 0.003995792307692308, "url": "https://github.com/theislab/scanpydoc/" }, "nbsphinx": { - "credit": 9.424038461538532e-05, + "credit": 0.0026136, "url": "https://nbsphinx.readthedocs.io/" }, "jupyter-client": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://jupyter.org" }, "ipykernel": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/ipykernel" }, "ipython": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/ipython" }, "sphinx-rtd-theme": { - "credit": 0.010460682692307693, + "credit": 0.016435523076923076, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx-autosummary-accessors": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/sphinx-autosummary-accessors" }, "nc-time-axis": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/nc-time-axis" }, "seaborn": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/seaborn" }, "matplotlib": { - "credit": 0.009424038461538461, + "credit": 0.03122498076923077, "url": "https://pypi.org/project/matplotlib" }, "dask": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/dask" }, "pooch": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/pooch" }, "cfgrib": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/cfgrib" }, "rasterio": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/rasterio" }, "cftime": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/cftime" }, "fsspec": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/fsspec" }, "zarr": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/zarr" }, "pydap": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/pydap" }, "h5netcdf": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/h5netcdf" }, "netCDF4": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/netCDF4" }, "numbagg": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/numbagg" }, "packaging": { - "credit": 0.009424038461538461, + "credit": 0.01828766076923077, "url": "https://pypi.org/project/packaging" }, "pandas": { - "credit": 0.009424038461538461, + "credit": 0.01505333076923077, "url": "https://pypi.org/project/pandas" }, - "gitpython": { - "credit": 0.06125625, - "url": "https://pypi.org/project/gitpython" + "setuptools-scm": { + "credit": 0.01617165, + "url": "https://pypi.org/project/setuptools-scm" }, - "sphinx": { - "credit": 0.06281121634615384, - "url": "https://pypi.org/project/sphinx" + "setuptools": { + "credit": 0.01617165, + "url": "https://pypi.org/project/setuptools" }, - "numpydoc": { - "credit": 0.06125625, - "url": "https://pypi.org/project/numpydoc" + "pybind11": { + "credit": 0.01617165, + "url": "https://pypi.org/project/pybind11" }, - "sphinx-autodoc-typehints>=1.15.2": { - "credit": 0.0010366442307692307, - "url": "https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2" + "typing-extensions": { + "credit": 0.040429124999999996, + "url": "https://pypi.org/project/typing-extensions" }, - "typing_extensions>=3.10": { - "credit": 0.0010366442307692307, - "url": "https://pypi.org/project/typing_extensions>=3.10" + "gitdb": { + "credit": 0.040429124999999996, + "url": "https://pypi.org/project/gitdb" + }, + "pytest": { + "credit": 0.020788172307692306, + "url": "https://pypi.org/project/pytest" + }, + "types-requests": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/types-requests" + }, + "types-typed-ast": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/types-typed-ast" + }, + "docutils-stubs": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/docutils-stubs" + }, + "mypy": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/mypy" + }, + "isort": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/isort" + }, + "flake8": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/flake8" + }, + "sphinxcontrib-websupport": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/sphinxcontrib-websupport" + }, + "colorama": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/colorama" + }, + "importlib-metadata": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/importlib-metadata" + }, + "requests": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/requests" + }, + "imagesize": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/imagesize" + }, + "alabaster": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/alabaster" + }, + "babel": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/babel" + }, + "snowballstemmer": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/snowballstemmer" + }, + "docutils": { + "credit": 0.005307618461538461, + "url": "https://pypi.org/project/docutils" + }, + "Pygments": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/Pygments" + }, + "Jinja2": { + "credit": 0.01940598, + "url": "https://pypi.org/project/Jinja2" + }, + "sphinxcontrib-qthelp": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" + }, + "sphinxcontrib-serializinghtml": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + }, + "sphinxcontrib-htmlhelp": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + }, + "sphinxcontrib-jsmath": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" + }, + "sphinxcontrib-devhelp": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" + }, + "sphinxcontrib-applehelp": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/sphinxcontrib-applehelp" }, "pytest-cov": { - "credit": 0.0010366442307692307, + "credit": 0.017553842307692306, "url": "https://pypi.org/project/pytest-cov" }, - "pytest": { - "credit": 0.0010366442307692307, - "url": "https://pypi.org/project/pytest" + "sphinx-autodoc-typehints>=1.15.2": { + "credit": 0.0013821923076923076, + "url": "https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2" + }, + "typing_extensions>=3.10": { + "credit": 0.0013821923076923076, + "url": "https://pypi.org/project/typing_extensions>=3.10" }, "pre-commit": { - "credit": 0.0010366442307692307, + "credit": 0.0013821923076923076, "url": "https://pypi.org/project/pre-commit" }, "get_version": { - "credit": 0.0010366442307692307, + "credit": 0.0013821923076923076, "url": "https://pypi.org/project/get_version" }, "sphinx>=3.0": { - "credit": 0.0010366442307692307, + "credit": 0.0013821923076923076, "url": "https://pypi.org/project/sphinx>=3.0" }, "traitlets": { - "credit": 0.001554966346153846, + "credit": 0.0020732884615384615, "url": "https://pypi.org/project/traitlets" }, "nbformat": { - "credit": 0.001554966346153846, + "credit": 0.0020732884615384615, "url": "https://pypi.org/project/nbformat" }, "nbconvert": { - "credit": 0.001554966346153846, + "credit": 0.0020732884615384615, "url": "https://pypi.org/project/nbconvert" }, "jinja2": { - "credit": 0.001554966346153846, + "credit": 0.0020732884615384615, "url": "https://pypi.org/project/jinja2" - }, - "docutils": { - "credit": 0.001554966346153846, - "url": "https://pypi.org/project/docutils" } } } \ No newline at end of file diff --git a/_repos/github/dmnfarrell/epitopepredict/README.md b/_repos/github/dmnfarrell/epitopepredict/README.md index 3a8193bf..48ae7366 100644 --- a/_repos/github/dmnfarrell/epitopepredict/README.md +++ b/_repos/github/dmnfarrell/epitopepredict/README.md @@ -8,66 +8,50 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.175| -|pypi|[matplotlib](https://matplotlib.org)|0.148| -|pypi|[joblib](https://joblib.readthedocs.io)|0.148| -|pypi|[biopython](https://biopython.org/)|0.141| -|pypi|[future](https://python-future.org)|0.141| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.025| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.025| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.014| +|pypi|[matplotlib](https://matplotlib.org)|0.133| +|pypi|[epitopepredict](https://github.com/dmnfarrell/epitopepredict)|0.124| +|pypi|[biopython](https://biopython.org/)|0.124| +|pypi|[future](https://python-future.org)|0.124| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[pytest](https://pypi.org/project/pytest)|0.031| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| +|pypi|[coverage](https://pypi.org/project/coverage)|0.012| |setup.py|github/dmnfarrell/epitopepredict|0.01| -|pypi|[pandas](https://pandas.pydata.org)|0.009| -|pypi|[scipy](https://pypi.org/project/scipy)|0.009| -|pypi|[black](https://github.com/psf/black)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.007| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.007| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.007| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.007| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.007| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.007| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.007| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.007| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.007| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.007| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.007| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.007| -|pypi|[psutil](https://pypi.org/project/psutil)|0.005| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| -|pypi|[lxml](https://pypi.org/project/lxml)|0.001| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.001| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.001| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.001| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.009| +|pypi|[brotli](https://github.com/google/brotli)|0.009| +|pypi|[lxml](https://lxml.de/)|0.009| +|pypi|[numpy](https://pypi.org/project/numpy)|0.009| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.009| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[enum34](https://pypi.org/project/enum34)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/dmnfarrell/epitopepredict/badge.png b/_repos/github/dmnfarrell/epitopepredict/badge.png index ff57d76f..ae553a02 100644 Binary files a/_repos/github/dmnfarrell/epitopepredict/badge.png and b/_repos/github/dmnfarrell/epitopepredict/badge.png differ diff --git a/_repos/github/dmnfarrell/epitopepredict/data.json b/_repos/github/dmnfarrell/epitopepredict/data.json index 4f2943f6..0cc1b58d 100644 --- a/_repos/github/dmnfarrell/epitopepredict/data.json +++ b/_repos/github/dmnfarrell/epitopepredict/data.json @@ -6,253 +6,217 @@ } }, "pypi": { - "numpy": { - "credit": 0.17491532142857147, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.009365096938775524, - "url": "https://pandas.pydata.org" - }, - "matplotlib": { - "credit": 0.14809591836734695, - "url": "https://matplotlib.org" + "epitopepredict": { + "credit": 0.12375, + "url": "https://github.com/dmnfarrell/epitopepredict" }, "biopython": { - "credit": 0.14142857142857143, + "credit": 0.12375, "url": "https://biopython.org/" }, - "scikit-learn": { - "credit": 0.001414285714285729, - "url": "http://scikit-learn.org" - }, - "joblib": { - "credit": 0.14809591836734695, - "url": "https://joblib.readthedocs.io" - }, "future": { - "credit": 0.14142857142857143, + "credit": 0.12375, "url": "https://python-future.org" }, - "pytest-xdist": { - "credit": 0.0002333571428571428, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.014234785714285712, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.001677254464285714, - "url": "https://hypothesis.works" - }, - "pytz": { - "credit": 0.02461917857142857, - "url": "http://pythonhosted.org/pytz" - }, - "python-dateutil": { - "credit": 0.02461917857142857, - "url": "https://github.com/dateutil/dateutil" - }, - "pyamg": { - "credit": 6.667346938775409e-05, - "url": "https://github.com/pyamg/pyamg" + "matplotlib": { + "credit": 0.13317403846153847, + "url": "https://matplotlib.org" }, - "mypy": { - "credit": 6.667346938775409e-05, - "url": "http://www.mypy-lang.org/" + "cycler": { + "credit": 0.12375, + "url": "https://github.com/matplotlib/cycler" }, - "black": { - "credit": 0.007950811224489795, - "url": "https://github.com/psf/black" + "fonttools": { + "credit": 0.0012375000000000025, + "url": "http://github.com/fonttools/fonttools" }, - "flake8": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/flake8" + "kiwisolver": { + "credit": 0.0012375000000000025, + "url": "https://github.com/nucleic/kiwi" }, - "pytest-cov": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/pytest-cov" + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" }, - "sphinxext-opengraph": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinxext-opengraph" + "xattr": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/xattr/xattr" }, - "sphinx-prompt": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinx-prompt" + "unicodedata2": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/mikekap/unicodedata2" }, - "Pillow": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/Pillow" + "munkres": { + "credit": 0.009424038461538461, + "url": "https://software.clapper.org/munkres/" }, - "numpydoc": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/numpydoc" + "brotli": { + "credit": 0.009424038461538461, + "url": "https://github.com/google/brotli" }, - "sphinx-gallery": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinx-gallery" + "scipy": { + "credit": 9.424038461538532e-05, + "url": "https://www.scipy.org" }, - "sphinx": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinx" + "brotlicffi": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-hyper/brotlicffi" }, - "seaborn": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/seaborn" + "skia-pathops": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/skia-pathops" }, - "scikit-image": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/scikit-image" + "sympy": { + "credit": 9.424038461538532e-05, + "url": "https://sympy.org" }, - "memory-profiler": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/memory-profiler" + "lz4": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-lz4/python-lz4" }, - "threadpoolctl": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/threadpoolctl" + "zopfli": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/py-zopfli" }, - "scipy": { - "credit": 0.008867571428571428, - "url": "https://pypi.org/project/scipy" + "lxml": { + "credit": 0.009424038461538461, + "url": "https://lxml.de/" }, - "filelock": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/filelock" + "fs": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" }, - "setproctitle": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/setproctitle" + "typing-extensions": { + "credit": 0.1225125, + "url": "https://typing.readthedocs.io/" }, - "psutil": { - "credit": 0.004950505102040816, - "url": "https://pypi.org/project/psutil" + "pytest-timeout": { + "credit": 7.657031250000047e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" }, - "pytest-forked": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/pytest-forked" + "pytest-cov": { + "credit": 0.009211997596153846, + "url": "https://github.com/pytest-dev/pytest-cov" }, - "execnet": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/execnet" + "pytest": { + "credit": 0.03078715564903846, + "url": "https://pypi.org/project/pytest" }, - "xmlschema": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/xmlschema" + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" }, - "requests": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/requests" + "packaging": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/packaging" }, - "pygments": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pygments" + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" }, - "nose": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/nose" + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" }, - "mock": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/mock" + "coverage": { + "credit": 0.012321930288461538, + "url": "https://pypi.org/project/coverage" }, - "argcomplete": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/argcomplete" + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" }, - "colorama": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/colorama" + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "atomicwrites": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/atomicwrites" + "sphinx-rtd-theme": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "importlib-metadata": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/importlib-metadata" + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "tomli": { - "credit": 0.0025440095663265307, - "url": "https://pypi.org/project/tomli" + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" }, - "py": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/py" + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "pluggy": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pluggy" + "sphinx": { + "credit": 0.009211997596153846, + "url": "https://pypi.org/project/sphinx" }, - "packaging": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/packaging" + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" }, - "iniconfig": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/iniconfig" + "cffi": { + "credit": 0.013994697115384614, + "url": "https://pypi.org/project/cffi" }, - "attrs": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/attrs" + "pytest-randomly": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-randomly" }, - "tzdata": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/tzdata" + "pytest-xdist": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-xdist" }, - "backports.zoneinfo": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/backports.zoneinfo" + "numpy": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/numpy" }, - "rich": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/rich" + "enum34": { + "credit": 0.005831123798076923, + "url": "https://pypi.org/project/enum34" }, - "redis": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/redis" + "mpmath": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/mpmath" }, - "libcst": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/libcst" + "psutil": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/psutil" }, - "lark-parser": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lark-parser" + "flake8": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/flake8" }, - "dpcontracts": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/dpcontracts" + "sphinx-bootstrap-theme": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" }, - "django": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/django" + "scandir": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/scandir" }, - "click": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/click" + "typing": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/typing" }, - "sortedcontainers": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/sortedcontainers" + "backports.os": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/backports.os" }, - "lxml": { - "credit": 0.0011001122448979592, - "url": "https://pypi.org/project/lxml" + "six": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/six" }, - "typed-ast": { - "credit": 0.0011001122448979592, - "url": "https://pypi.org/project/typed-ast" + "setuptools": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/setuptools" }, - "mypy-extensions": { - "credit": 0.0011001122448979592, - "url": "https://pypi.org/project/mypy-extensions" + "pytz": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/pytz" }, - "typing-extensions": { - "credit": 0.0011001122448979592, - "url": "https://pypi.org/project/typing-extensions" + "appdirs": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/appdirs" } } } \ No newline at end of file diff --git a/_repos/github/dmnfarrell/snpgenie/README.md b/_repos/github/dmnfarrell/snpgenie/README.md index 03af417d..aef182b2 100644 --- a/_repos/github/dmnfarrell/snpgenie/README.md +++ b/_repos/github/dmnfarrell/snpgenie/README.md @@ -8,77 +8,75 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.166| -|pypi|[matplotlib](https://matplotlib.org)|0.141| -|pypi|[biopython](https://biopython.org/)|0.141| -|pypi|[pyfaidx](http://mattshirley.com)|0.141| -|pypi|[bcbio_gff](https://github.com/chapmanb/bcbb/tree/master/gff)|0.141| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.025| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.025| +|pypi|[matplotlib](https://matplotlib.org)|0.107| +|pypi|[snipgenie](https://github.com/dmnfarrell/snipgenie)|0.099| +|pypi|[biopython](https://biopython.org/)|0.099| +|pypi|[bcbio_gff](https://github.com/chapmanb/bcbb/tree/master/gff)|0.099| +|pypi|[pyfaidx](http://mattshirley.com)|0.099| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.099| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.098| +|pypi|[pytest](https://pypi.org/project/pytest)|0.022| +|pypi|[cffi](https://pypi.org/project/cffi)|0.011| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.01| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.01| |setup.py|github/dmnfarrell/snpgenie|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.01| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.008| -|pypi|[mock](https://pypi.org/project/mock)|0.006| -|pypi|[tomli](https://pypi.org/project/tomli)|0.006| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.005| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.004| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.004| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.004| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.004| -|pypi|[build](https://pypi.org/project/build)|0.004| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.004| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.004| -|pypi|[pip](https://pypi.org/project/pip)|0.004| -|pypi|[wheel](https://pypi.org/project/wheel)|0.004| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.004| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.004| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.004| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.004| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.004| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.004| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.004| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.004| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[pandas](https://pandas.pydata.org)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| +|pypi|[coverage](https://pypi.org/project/coverage)|0.01| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.008| +|pypi|[brotli](https://github.com/google/brotli)|0.008| +|pypi|[lxml](https://lxml.de/)|0.008| +|pypi|[fs](https://github.com/PyFilesystem/pyfilesystem2)|0.008| +|pypi|[numpy](https://pypi.org/project/numpy)|0.007| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.007| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.004| +|pypi|[enum34](https://pypi.org/project/enum34)|0.004| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.003| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.003| +|pypi|[tomli](https://pypi.org/project/tomli)|0.003| +|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.003| +|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.003| +|pypi|[pip-run](https://pypi.org/project/pip-run)|0.003| +|pypi|[filelock](https://pypi.org/project/filelock)|0.003| +|pypi|[build](https://pypi.org/project/build)|0.003| +|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.003| +|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.003| +|pypi|[pip](https://pypi.org/project/pip)|0.003| +|pypi|[wheel](https://pypi.org/project/wheel)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| +|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.003| +|pypi|[mock](https://pypi.org/project/mock)|0.003| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.003| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.003| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.003| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.003| +|pypi|[furo](https://pypi.org/project/furo)|0.003| +|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.003| +|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.003| +|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.003| +|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.003| +|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.003| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.003| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.003| +|pypi|[psutil](https://pypi.org/project/psutil)|0.001| +|pypi|[flake8](https://pypi.org/project/flake8)|0.001| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.001| |pypi|[pyvcf](https://github.com/jamescasbon/PyVCF)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| |pypi|[setuptools](https://github.com/pypa/setuptools)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/dmnfarrell/snpgenie/badge.png b/_repos/github/dmnfarrell/snpgenie/badge.png index bea64b3a..6d00fd1c 100644 Binary files a/_repos/github/dmnfarrell/snpgenie/badge.png and b/_repos/github/dmnfarrell/snpgenie/badge.png differ diff --git a/_repos/github/dmnfarrell/snpgenie/data.json b/_repos/github/dmnfarrell/snpgenie/data.json index 29c5eba0..07684ce9 100644 --- a/_repos/github/dmnfarrell/snpgenie/data.json +++ b/_repos/github/dmnfarrell/snpgenie/data.json @@ -6,285 +6,309 @@ } }, "pypi": { - "numpy": { - "credit": 0.16604775000000002, - "url": "https://www.numpy.org" + "snipgenie": { + "credit": 0.099, + "url": "https://github.com/dmnfarrell/snipgenie" }, - "pandas": { - "credit": 0.0026977500000000144, - "url": "https://pandas.pydata.org" + "biopython": { + "credit": 0.099, + "url": "https://biopython.org/" }, "matplotlib": { - "credit": 0.14142857142857143, + "credit": 0.10653923076923077, "url": "https://matplotlib.org" }, - "biopython": { - "credit": 0.14142857142857143, - "url": "https://biopython.org/" - }, "pyvcf": { - "credit": 0.001414285714285729, + "credit": 0.0009900000000000048, "url": "https://github.com/jamescasbon/PyVCF" }, - "pyfaidx": { - "credit": 0.14142857142857143, - "url": "http://mattshirley.com" - }, "bcbio_gff": { - "credit": 0.14142857142857143, + "credit": 0.099, "url": "https://github.com/chapmanb/bcbb/tree/master/gff" }, - "pytest-xdist": { - "credit": 0.004704781105990783, - "url": "https://github.com/pytest-dev/pytest-xdist" + "pyfaidx": { + "credit": 0.099, + "url": "http://mattshirley.com" }, - "pytest": { - "credit": 0.009838638248847925, - "url": "https://docs.pytest.org/en/latest/" + "cycler": { + "credit": 0.099, + "url": "https://github.com/matplotlib/cycler" }, - "hypothesis": { - "credit": 0.001677254464285714, - "url": "https://hypothesis.works" + "fonttools": { + "credit": 0.0009900000000000048, + "url": "http://github.com/fonttools/fonttools" }, - "pytz": { - "credit": 0.02461917857142857, - "url": "http://pythonhosted.org/pytz" + "kiwisolver": { + "credit": 0.0009900000000000048, + "url": "https://github.com/nucleic/kiwi" }, - "python-dateutil": { - "credit": 0.02461917857142857, - "url": "https://github.com/dateutil/dateutil" + "pillow": { + "credit": 0.0009900000000000048, + "url": "https://python-pillow.org" }, "setuptools": { - "credit": 0.0014001428571428498, + "credit": 0.0009800999999999976, "url": "https://github.com/pypa/setuptools" }, - "filelock": { - "credit": 0.008321816820276497, - "url": "https://github.com/tox-dev/py-filelock" + "xattr": { + "credit": 7.539230769230791e-05, + "url": "http://github.com/xattr/xattr" }, - "setproctitle": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/setproctitle" + "unicodedata2": { + "credit": 7.539230769230791e-05, + "url": "http://github.com/mikekap/unicodedata2" }, - "psutil": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/psutil" + "munkres": { + "credit": 0.007539230769230769, + "url": "https://software.clapper.org/munkres/" }, - "pytest-forked": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/pytest-forked" + "brotli": { + "credit": 0.007539230769230769, + "url": "https://github.com/google/brotli" }, - "execnet": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/execnet" + "scipy": { + "credit": 7.539230769230791e-05, + "url": "https://www.scipy.org" }, - "xmlschema": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/xmlschema" + "brotlicffi": { + "credit": 7.539230769230791e-05, + "url": "https://github.com/python-hyper/brotlicffi" }, - "requests": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/requests" + "skia-pathops": { + "credit": 7.539230769230791e-05, + "url": "https://github.com/fonttools/skia-pathops" }, - "pygments": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pygments" + "sympy": { + "credit": 7.539230769230791e-05, + "url": "https://sympy.org" }, - "nose": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/nose" + "lz4": { + "credit": 7.539230769230878e-05, + "url": "https://github.com/python-lz4/python-lz4" }, - "mock": { - "credit": 0.005915321284562212, - "url": "https://pypi.org/project/mock" + "zopfli": { + "credit": 7.539230769230791e-05, + "url": "https://github.com/fonttools/py-zopfli" }, - "argcomplete": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/argcomplete" + "lxml": { + "credit": 0.007539230769230769, + "url": "https://lxml.de/" }, - "colorama": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/colorama" + "fs": { + "credit": 0.007539230769230769, + "url": "https://github.com/PyFilesystem/pyfilesystem2" }, - "atomicwrites": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/atomicwrites" + "typing-extensions": { + "credit": 0.09801, + "url": "https://pypi.org/project/typing-extensions" }, - "importlib-metadata": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/importlib-metadata" + "pytest-timeout": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pytest-timeout" }, - "tomli": { - "credit": 0.005915321284562212, - "url": "https://pypi.org/project/tomli" + "pytest-cov": { + "credit": 0.010499594851116624, + "url": "https://pypi.org/project/pytest-cov" }, - "py": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/py" + "pytest": { + "credit": 0.021695352543424317, + "url": "https://pypi.org/project/pytest" }, - "pluggy": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.0014438973214285712, + "credit": 0.006125625, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.006125625, + "url": "https://pypi.org/project/markdown2" }, - "attrs": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/attrs" + "defusedxml": { + "credit": 0.006125625, + "url": "https://pypi.org/project/defusedxml" }, - "tzdata": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/tzdata" + "coverage": { + "credit": 0.009857544230769231, + "url": "https://pypi.org/project/coverage" }, - "backports.zoneinfo": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/backports.zoneinfo" + "check-manifest": { + "credit": 0.006125625, + "url": "https://pypi.org/project/check-manifest" }, - "rich": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/rich" + "sphinxext-opengraph": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "redis": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/redis" + "sphinx-rtd-theme": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "libcst": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/libcst" + "sphinx-removed-in": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "lark-parser": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lark-parser" + "sphinx-issues": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-issues" }, - "dpcontracts": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/dpcontracts" + "sphinx-copybutton": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "django": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/django" - }, - "click": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/click" - }, - "black": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/black" + "sphinx": { + "credit": 0.010499594851116624, + "url": "https://pypi.org/project/sphinx" }, - "sortedcontainers": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/sortedcontainers" + "olefile": { + "credit": 0.006125625, + "url": "https://pypi.org/project/olefile" }, "pytest-mypy": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pytest-mypy" }, - "pytest-cov": { - "credit": 0.00447142396313364, - "url": "https://pypi.org/project/pytest-cov" - }, "pytest-black": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pytest-black" }, + "tomli": { + "credit": 0.0031299967741935486, + "url": "https://pypi.org/project/tomli" + }, "tomli-w": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/tomli-w" }, "ini2toml": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/ini2toml" }, "pip-run": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pip-run" }, + "filelock": { + "credit": 0.0031299967741935486, + "url": "https://pypi.org/project/filelock" + }, "build": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/build" }, "jaraco.path": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/jaraco.path" }, + "pytest-xdist": { + "credit": 0.006861916004962779, + "url": "https://pypi.org/project/pytest-xdist" + }, "jaraco.envs": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/jaraco.envs" }, "pip": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pip" }, "wheel": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/wheel" }, "virtualenv": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/virtualenv" }, "flake8-2020": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/flake8-2020" }, + "mock": { + "credit": 0.0031299967741935486, + "url": "https://pypi.org/project/mock" + }, "pytest-perf": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pytest-perf" }, "pytest-enabler": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pytest-enabler" }, "pytest-flake8": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pytest-checkdocs" }, "furo": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/furo" }, "sphinxcontrib-towncrier": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/sphinxcontrib-towncrier" }, "sphinx-inline-tabs": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/sphinx-inline-tabs" }, "sphinx-favicon": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/sphinx-favicon" }, "pygments-github-lexers": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/pygments-github-lexers" }, "jaraco.tidelift": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/jaraco.tidelift" }, "rst.linker": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.00447142396313364, + "credit": 0.0031299967741935486, "url": "https://pypi.org/project/jaraco.packaging" }, - "sphinx": { - "credit": 0.00447142396313364, - "url": "https://pypi.org/project/sphinx" + "cffi": { + "credit": 0.011195757692307693, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.0037319192307692308, + "url": "https://pypi.org/project/pytest-randomly" + }, + "numpy": { + "credit": 0.0074638384615384615, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.0037319192307692308, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.0074638384615384615, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0012439730769230768, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" } } } \ No newline at end of file diff --git a/_repos/github/dpalmasan/TRUNAJOD2.0/README.md b/_repos/github/dpalmasan/TRUNAJOD2.0/README.md index 62c80bd3..eec89764 100644 --- a/_repos/github/dpalmasan/TRUNAJOD2.0/README.md +++ b/_repos/github/dpalmasan/TRUNAJOD2.0/README.md @@ -8,54 +8,71 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[cupy-cuda92](https://pypi.org/project/cupy-cuda92)|0.024| -|pypi|[cupy-cuda91](https://pypi.org/project/cupy-cuda91)|0.024| -|pypi|[cupy-cuda90](https://pypi.org/project/cupy-cuda90)|0.024| -|pypi|[cupy-cuda80](https://pypi.org/project/cupy-cuda80)|0.024| -|pypi|[cupy-cuda112](https://pypi.org/project/cupy-cuda112)|0.024| -|pypi|[cupy-cuda111](https://pypi.org/project/cupy-cuda111)|0.024| -|pypi|[cupy-cuda110](https://pypi.org/project/cupy-cuda110)|0.024| -|pypi|[cupy-cuda102](https://pypi.org/project/cupy-cuda102)|0.024| -|pypi|[cupy-cuda101](https://pypi.org/project/cupy-cuda101)|0.024| -|pypi|[cupy-cuda100](https://pypi.org/project/cupy-cuda100)|0.024| -|pypi|[cupy](https://pypi.org/project/cupy)|0.024| -|pypi|[srsly](https://pypi.org/project/srsly)|0.024| -|pypi|[pythainlp](https://github.com/PyThaiNLP/pythainlp)|0.023| -|pypi|[spacy-ray](https://pypi.org/project/spacy-ray)|0.023| -|pypi|[spacy-lookups-data](https://pypi.org/project/spacy-lookups-data)|0.023| -|pypi|[natto-py](https://pypi.org/project/natto-py)|0.023| -|pypi|[sudachidict-core](https://pypi.org/project/sudachidict-core)|0.023| -|pypi|[sudachipy](https://pypi.org/project/sudachipy)|0.023| -|pypi|[cupy-cuda115](https://pypi.org/project/cupy-cuda115)|0.023| -|pypi|[cupy-cuda114](https://pypi.org/project/cupy-cuda114)|0.023| -|pypi|[cupy-cuda113](https://pypi.org/project/cupy-cuda113)|0.023| -|pypi|[thinc-apple-ops](https://pypi.org/project/thinc-apple-ops)|0.023| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.023| -|pypi|[langcodes](https://pypi.org/project/langcodes)|0.023| -|pypi|[packaging](https://pypi.org/project/packaging)|0.023| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.023| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.023| -|pypi|[pydantic](https://pypi.org/project/pydantic)|0.023| -|pypi|[requests](https://pypi.org/project/requests)|0.023| -|pypi|[numpy](https://pypi.org/project/numpy)|0.023| -|pypi|[tqdm](https://pypi.org/project/tqdm)|0.023| -|pypi|[pathy](https://pypi.org/project/pathy)|0.023| -|pypi|[typer](https://pypi.org/project/typer)|0.023| -|pypi|[catalogue](https://pypi.org/project/catalogue)|0.023| -|pypi|[wasabi](https://pypi.org/project/wasabi)|0.023| -|pypi|[blis](https://pypi.org/project/blis)|0.023| -|pypi|[thinc](https://pypi.org/project/thinc)|0.023| -|pypi|[preshed](https://pypi.org/project/preshed)|0.023| -|pypi|[cymem](https://pypi.org/project/cymem)|0.023| -|pypi|[murmurhash](https://pypi.org/project/murmurhash)|0.023| -|pypi|[spacy-loggers](https://pypi.org/project/spacy-loggers)|0.023| -|pypi|[spacy-legacy](https://pypi.org/project/spacy-legacy)|0.023| -|pypi|[spacy](https://spacy.io)|0.011| +|pypi|[wasabi](https://ines.io)|0.114| +|pypi|[cymem](https://github.com/explosion/cymem)|0.087| +|pypi|[murmurhash](https://github.com/explosion/murmurhash)|0.087| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.082| +|pypi|[typer](https://github.com/tiangolo/typer)|0.064| +|pypi|[srsly](https://github.com/explosion/srsly)|0.059| +|pypi|[numpy](https://pypi.org/project/numpy)|0.059| +|pypi|[spacy-legacy](https://spacy.io)|0.058| +|pypi|[language-data](https://pypi.org/project/language-data)|0.054| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.045| +|pypi|[zipp](https://pypi.org/project/zipp)|0.027| +|pypi|[Babel](https://pypi.org/project/Babel)|0.027| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.021| +|pypi|[email-validator](https://pypi.org/project/email-validator)|0.014| +|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.014| |setup.py|github/dpalmasan/TRUNAJOD2.0|0.01| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.001| -|pypi|[spacy-alignments](https://pypi.org/project/spacy-alignments)|0.001| -|pypi|[torch](https://pypi.org/project/torch)|0.001| -|pypi|[transformers](https://pypi.org/project/transformers)|0.001| +|pypi|[typer-cli](https://pypi.org/project/typer-cli)|0.006| +|pypi|[mock](https://pypi.org/project/mock)|0.006| +|pypi|[pytest-coverage](https://pypi.org/project/pytest-coverage)|0.006| +|pypi|[pytest](https://pypi.org/project/pytest)|0.006| +|pypi|[boto3](https://pypi.org/project/boto3)|0.006| +|pypi|[google-cloud-storage](https://pypi.org/project/google-cloud-storage)|0.006| +|pypi|[smart-open](https://pypi.org/project/smart-open)|0.006| +|pypi|[blis](https://github.com/explosion/cython-blis)|0.005| +|pypi|[catalogue](https://github.com/explosion/catalogue)|0.005| +|pypi|[preshed](https://github.com/explosion/preshed)|0.005| +|pypi|[pydantic](https://github.com/samuelcolvin/pydantic)|0.005| +|pypi|[cupy-cuda92](https://pypi.org/project/cupy-cuda92)|0.004| +|pypi|[cupy-cuda91](https://pypi.org/project/cupy-cuda91)|0.004| +|pypi|[cupy-cuda90](https://pypi.org/project/cupy-cuda90)|0.004| +|pypi|[cupy-cuda80](https://pypi.org/project/cupy-cuda80)|0.004| +|pypi|[cupy-cuda115](https://pypi.org/project/cupy-cuda115)|0.004| +|pypi|[cupy-cuda114](https://pypi.org/project/cupy-cuda114)|0.004| +|pypi|[cupy-cuda113](https://pypi.org/project/cupy-cuda113)|0.004| +|pypi|[cupy-cuda112](https://pypi.org/project/cupy-cuda112)|0.004| +|pypi|[cupy-cuda111](https://pypi.org/project/cupy-cuda111)|0.004| +|pypi|[cupy-cuda110](https://pypi.org/project/cupy-cuda110)|0.004| +|pypi|[cupy-cuda102](https://pypi.org/project/cupy-cuda102)|0.004| +|pypi|[cupy-cuda101](https://pypi.org/project/cupy-cuda101)|0.004| +|pypi|[cupy-cuda100](https://pypi.org/project/cupy-cuda100)|0.004| +|pypi|[cupy](https://pypi.org/project/cupy)|0.004| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.004| +|pypi|[langcodes](https://github.com/rspeer/langcodes)|0.003| +|pypi|[pathy](https://github.com/justindujardin/pathy)|0.003| +|pypi|[spacy-loggers](https://github.com/explosion/spacy-loggers)|0.003| +|pypi|[thinc](https://github.com/explosion/thinc)|0.003| +|pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.003| +|pypi|[spacy-transformers](https://spacy.io)|0.003| +|pypi|[pythainlp](https://pypi.org/project/pythainlp)|0.003| +|pypi|[spacy-ray](https://pypi.org/project/spacy-ray)|0.003| +|pypi|[spacy-lookups-data](https://pypi.org/project/spacy-lookups-data)|0.003| +|pypi|[natto-py](https://pypi.org/project/natto-py)|0.003| +|pypi|[sudachidict-core](https://pypi.org/project/sudachidict-core)|0.003| +|pypi|[sudachipy](https://pypi.org/project/sudachipy)|0.003| +|pypi|[thinc-apple-ops](https://pypi.org/project/thinc-apple-ops)|0.003| +|pypi|[packaging](https://pypi.org/project/packaging)|0.003| +|pypi|[requests](https://pypi.org/project/requests)|0.003| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.003| +|pypi|[torch](https://pypi.org/project/torch)|0.002| +|pypi|[tensorflow](https://pypi.org/project/tensorflow)|0.002| +|pypi|[mxnet](https://pypi.org/project/mxnet)|0.002| +|pypi|[ml-datasets](https://pypi.org/project/ml-datasets)|0.002| +|pypi|[contextvars](https://pypi.org/project/contextvars)|0.002| +|pypi|[spacy](https://spacy.io)|0.001| +|pypi|[TRUNAJOD](https://github.com/dpalmasan/TRUNAJOD2.0)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/dpalmasan/TRUNAJOD2.0/badge.png b/_repos/github/dpalmasan/TRUNAJOD2.0/badge.png index 78b29402..2dc104ac 100644 Binary files a/_repos/github/dpalmasan/TRUNAJOD2.0/badge.png and b/_repos/github/dpalmasan/TRUNAJOD2.0/badge.png differ diff --git a/_repos/github/dpalmasan/TRUNAJOD2.0/data.json b/_repos/github/dpalmasan/TRUNAJOD2.0/data.json index da82694c..1d1cebad 100644 --- a/_repos/github/dpalmasan/TRUNAJOD2.0/data.json +++ b/_repos/github/dpalmasan/TRUNAJOD2.0/data.json @@ -6,197 +6,261 @@ } }, "pypi": { + "TRUNAJOD": { + "credit": 0.0005500000000000019, + "url": "https://github.com/dpalmasan/TRUNAJOD2.0" + }, "spacy": { - "credit": 0.011227358413132715, + "credit": 0.0010945000000000121, "url": "https://spacy.io" }, + "blis": { + "credit": 0.004826346961740437, + "url": "https://github.com/explosion/cython-blis" + }, + "catalogue": { + "credit": 0.004826346961740437, + "url": "https://github.com/explosion/catalogue" + }, + "cymem": { + "credit": 0.08650134696174043, + "url": "https://github.com/explosion/cymem" + }, + "langcodes": { + "credit": 0.003069895348837211, + "url": "https://github.com/rspeer/langcodes" + }, + "murmurhash": { + "credit": 0.08650134696174043, + "url": "https://github.com/explosion/murmurhash" + }, + "pathy": { + "credit": 0.003069895348837211, + "url": "https://github.com/justindujardin/pathy" + }, + "preshed": { + "credit": 0.004826346961740437, + "url": "https://github.com/explosion/preshed" + }, + "pydantic": { + "credit": 0.004826346961740437, + "url": "https://github.com/samuelcolvin/pydantic" + }, + "spacy-legacy": { + "credit": 0.05751989534883721, + "url": "https://spacy.io" + }, + "spacy-loggers": { + "credit": 0.003069895348837211, + "url": "https://github.com/explosion/spacy-loggers" + }, + "srsly": { + "credit": 0.05927634696174044, + "url": "https://github.com/explosion/srsly" + }, + "thinc": { + "credit": 0.003069895348837211, + "url": "https://github.com/explosion/thinc" + }, + "typer": { + "credit": 0.06356989534883721, + "url": "https://github.com/tiangolo/typer" + }, + "wasabi": { + "credit": 0.11372634696174043, + "url": "https://ines.io" + }, + "jinja2": { + "credit": 0.003069895348837211, + "url": "https://palletsprojects.com/p/jinja/" + }, + "MarkupSafe": { + "credit": 0.08222499999999999, + "url": "https://palletsprojects.com/p/markupsafe/" + }, "spacy-transformers": { - "credit": 0.0002279302325581406, + "credit": 0.002519895348837209, "url": "https://spacy.io" }, "pythainlp": { - "credit": 0.022793023255813952, - "url": "https://github.com/PyThaiNLP/pythainlp" + "credit": 0.002519895348837209, + "url": "https://pypi.org/project/pythainlp" }, "spacy-ray": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/spacy-ray" }, "spacy-lookups-data": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/spacy-lookups-data" }, "natto-py": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/natto-py" }, "sudachidict-core": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/sudachidict-core" }, "sudachipy": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/sudachipy" }, "cupy-cuda92": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda92" }, "cupy-cuda91": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda91" }, "cupy-cuda90": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda90" }, "cupy-cuda80": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda80" }, "cupy-cuda115": { - "credit": 0.022793023255813952, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda115" }, "cupy-cuda114": { - "credit": 0.022793023255813952, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda114" }, "cupy-cuda113": { - "credit": 0.022793023255813952, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda113" }, "cupy-cuda112": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda112" }, "cupy-cuda111": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda111" }, "cupy-cuda110": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda110" }, "cupy-cuda102": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda102" }, "cupy-cuda101": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda101" }, "cupy-cuda100": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy-cuda100" }, "cupy": { - "credit": 0.024120381668946648, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/cupy" }, "thinc-apple-ops": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/thinc-apple-ops" }, "typing-extensions": { - "credit": 0.022793023255813952, + "credit": 0.04511384696174043, "url": "https://pypi.org/project/typing-extensions" }, - "langcodes": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/langcodes" - }, "packaging": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/packaging" }, "setuptools": { - "credit": 0.022793023255813952, + "credit": 0.004276346961740435, "url": "https://pypi.org/project/setuptools" }, - "jinja2": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/jinja2" - }, - "pydantic": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/pydantic" - }, "requests": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/requests" }, "numpy": { - "credit": 0.022793023255813952, + "credit": 0.058726346961740436, "url": "https://pypi.org/project/numpy" }, "tqdm": { - "credit": 0.022793023255813952, + "credit": 0.002519895348837209, "url": "https://pypi.org/project/tqdm" }, - "pathy": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/pathy" - }, - "typer": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/typer" - }, - "catalogue": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/catalogue" - }, - "srsly": { - "credit": 0.024120381668946648, - "url": "https://pypi.org/project/srsly" - }, - "wasabi": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/wasabi" + "zipp": { + "credit": 0.027225, + "url": "https://pypi.org/project/zipp" }, - "blis": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/blis" + "language-data": { + "credit": 0.05445, + "url": "https://pypi.org/project/language-data" }, - "thinc": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/thinc" + "typer-cli": { + "credit": 0.00605, + "url": "https://pypi.org/project/typer-cli" }, - "preshed": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/preshed" + "mock": { + "credit": 0.00605, + "url": "https://pypi.org/project/mock" }, - "cymem": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/cymem" + "pytest-coverage": { + "credit": 0.00605, + "url": "https://pypi.org/project/pytest-coverage" }, - "murmurhash": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/murmurhash" + "pytest": { + "credit": 0.00605, + "url": "https://pypi.org/project/pytest" }, - "spacy-loggers": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/spacy-loggers" + "boto3": { + "credit": 0.00605, + "url": "https://pypi.org/project/boto3" }, - "spacy-legacy": { - "credit": 0.022793023255813952, - "url": "https://pypi.org/project/spacy-legacy" + "google-cloud-storage": { + "credit": 0.00605, + "url": "https://pypi.org/project/google-cloud-storage" }, "dataclasses": { - "credit": 0.0013273584131326948, + "credit": 0.021418951612903227, "url": "https://pypi.org/project/dataclasses" }, - "spacy-alignments": { - "credit": 0.0013273584131326948, - "url": "https://pypi.org/project/spacy-alignments" + "smart-open": { + "credit": 0.00605, + "url": "https://pypi.org/project/smart-open" + }, + "email-validator": { + "credit": 0.0136125, + "url": "https://pypi.org/project/email-validator" + }, + "python-dotenv": { + "credit": 0.0136125, + "url": "https://pypi.org/project/python-dotenv" }, "torch": { - "credit": 0.0013273584131326948, + "credit": 0.0017564516129032258, "url": "https://pypi.org/project/torch" }, - "transformers": { - "credit": 0.0013273584131326948, - "url": "https://pypi.org/project/transformers" + "tensorflow": { + "credit": 0.0017564516129032258, + "url": "https://pypi.org/project/tensorflow" + }, + "mxnet": { + "credit": 0.0017564516129032258, + "url": "https://pypi.org/project/mxnet" + }, + "ml-datasets": { + "credit": 0.0017564516129032258, + "url": "https://pypi.org/project/ml-datasets" + }, + "contextvars": { + "credit": 0.0017564516129032258, + "url": "https://pypi.org/project/contextvars" + }, + "Babel": { + "credit": 0.027225, + "url": "https://pypi.org/project/Babel" } } } \ No newline at end of file diff --git a/_repos/github/dynamicslab/pysindy/badge.png b/_repos/github/dynamicslab/pysindy/badge.png index eab03310..08b0b118 100644 Binary files a/_repos/github/dynamicslab/pysindy/badge.png and b/_repos/github/dynamicslab/pysindy/badge.png differ diff --git a/_repos/github/eScatter/pyelsepa/badge.png b/_repos/github/eScatter/pyelsepa/badge.png index 94d4951e..b1a94901 100644 Binary files a/_repos/github/eScatter/pyelsepa/badge.png and b/_repos/github/eScatter/pyelsepa/badge.png differ diff --git a/_repos/github/eWaterCycle/grpc4bmi/README.md b/_repos/github/eWaterCycle/grpc4bmi/README.md index 7bc7ae68..82f7e61b 100644 --- a/_repos/github/eWaterCycle/grpc4bmi/README.md +++ b/_repos/github/eWaterCycle/grpc4bmi/README.md @@ -8,44 +8,64 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.282| -|pypi|[numpy](https://www.numpy.org)|0.11| -|pypi|[bmipy](http://csdms.colorado.edu)|0.11| -|pypi|[semver](https://github.com/python-semver/python-semver)|0.11| -|pypi|[six](https://github.com/benjaminp/six)|0.065| -|pypi|[enum34](https://bitbucket.org/stoneleaf/enum34)|0.063| -|pypi|[futures](https://github.com/agronholm/pythonfutures)|0.063| -|pypi|[grpcio-tools](https://grpc.io)|0.036| -|pypi|[grpcio](https://grpc.io)|0.03| -|pypi|[cryptography](https://github.com/pyca/cryptography)|0.02| -|pypi|[idna](https://github.com/kjd/idna)|0.018| -|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.017| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.225| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.123| +|pypi|[semver](https://github.com/python-semver/python-semver)|0.092| +|pypi|[bmipy](http://csdms.colorado.edu)|0.083| +|pypi|[six](https://github.com/benjaminp/six)|0.051| +|pypi|[enum34](https://bitbucket.org/stoneleaf/enum34)|0.05| +|pypi|[futures](https://github.com/agronholm/pythonfutures)|0.05| +|pypi|[Babel](https://pypi.org/project/Babel)|0.041| +|pypi|[grpcio-tools](https://grpc.io)|0.029| +|pypi|[grpcio](https://grpc.io)|0.027| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.022| +|pypi|[websockets](https://github.com/aaugustin/websockets)|0.019| +|pypi|[wsaccel](https://github.com/methane/wsaccel)|0.019| +|pypi|[Sphinx](https://www.sphinx-doc.org/)|0.019| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.016| +|pypi|[idna](https://github.com/kjd/idna)|0.015| +|pypi|[pywin32](https://github.com/mhammond/pywin32)|0.014| +|pypi|[numpy](https://www.numpy.org)|0.01| |setup.py|github/eWaterCycle/grpc4bmi|0.01| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.009| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| -|pypi|[websockets](https://pypi.org/project/websockets)|0.003| -|pypi|[wsaccel](https://pypi.org/project/wsaccel)|0.003| -|pypi|[python-socks](https://pypi.org/project/python-socks)|0.003| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.003| -|pypi|[pytest](https://pypi.org/project/pytest)|0.003| -|pypi|[pretend](https://pypi.org/project/pretend)|0.003| -|pypi|[flaky](https://pypi.org/project/flaky)|0.003| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.003| +|pypi|[basic-modeling-interface](https://github.com/bmi-forum/bmi-python)|0.009| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.008| +|pypi|[pytest](https://pypi.org/project/pytest)|0.005| +|pypi|[trio](https://pypi.org/project/trio)|0.004| +|pypi|[curio](https://pypi.org/project/curio)|0.004| +|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.004| +|pypi|[anyio](https://pypi.org/project/anyio)|0.004| +|pypi|[python-socks](https://github.com/romis2012/python-socks)|0.002| +|pypi|[websocket-client](https://github.com/websocket-client/websocket-client.git)|0.002| +|pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.002| +|pypi|[pretend](https://pypi.org/project/pretend)|0.002| +|pypi|[flaky](https://pypi.org/project/flaky)|0.002| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| +|pypi|[mypy](https://pypi.org/project/mypy)|0.002| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| +|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| |pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| |pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| |pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| |pypi|[chardet](https://pypi.org/project/chardet)|0.002| |pypi|[certifi](https://pypi.org/project/certifi)|0.002| |pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| -|pypi|[gssapi](https://pypi.org/project/gssapi)|0.002| -|pypi|[invoke](https://pypi.org/project/invoke)|0.002| -|pypi|[pyasn1](https://pypi.org/project/pyasn1)|0.002| -|pypi|[pynacl](https://pypi.org/project/pynacl)|0.002| -|pypi|[bcrypt](https://pypi.org/project/bcrypt)|0.002| +|pypi|[gssapi](https://pypi.org/project/gssapi)|0.001| +|pypi|[invoke](https://pypi.org/project/invoke)|0.001| +|pypi|[pyasn1](https://pypi.org/project/pyasn1)|0.001| +|pypi|[pynacl](https://pypi.org/project/pynacl)|0.001| +|pypi|[bcrypt](https://pypi.org/project/bcrypt)|0.001| +|pypi|[pyOpenSSL](https://pyopenssl.org/)|0.001| +|pypi|[paramiko](https://paramiko.org)|0.001| +|pypi|[requests](https://requests.readthedocs.io)|0.001| +|pypi|[pandas](https://pypi.org/project/pandas)|0.001| +|pypi|[tzlocal](https://pypi.org/project/tzlocal)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[cffi](https://pypi.org/project/cffi)|0.001| |pypi|[googleapis-common-protos](https://github.com/googleapis/python-api-common-protos)|0.001| |pypi|[grpcio-reflection](https://grpc.io)|0.001| -|pypi|[grpcio-status](https://grpc.io)|0.001| |pypi|[docker](https://github.com/docker/docker-py)|0.001| +|pypi|[grpc4bmi](https://github.com/eWaterCycle/grpc4bmi)|0.001| +|pypi|[grpcio-status](https://grpc.io)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/eWaterCycle/grpc4bmi/badge.png b/_repos/github/eWaterCycle/grpc4bmi/badge.png index e522fa0c..343950d3 100644 Binary files a/_repos/github/eWaterCycle/grpc4bmi/badge.png and b/_repos/github/eWaterCycle/grpc4bmi/badge.png differ diff --git a/_repos/github/eWaterCycle/grpc4bmi/data.json b/_repos/github/eWaterCycle/grpc4bmi/data.json index b853d08d..92abddd1 100644 --- a/_repos/github/eWaterCycle/grpc4bmi/data.json +++ b/_repos/github/eWaterCycle/grpc4bmi/data.json @@ -6,169 +6,241 @@ } }, "pypi": { + "grpc4bmi": { + "credit": 0.0008250000000000063, + "url": "https://github.com/eWaterCycle/grpc4bmi" + }, "grpcio": { - "credit": 0.02950475000000001, + "credit": 0.02671143750000001, "url": "https://grpc.io" }, "grpcio-reflection": { - "credit": 0.0011000000000000038, + "credit": 0.0009157500000000068, "url": "https://grpc.io" }, "grpcio-status": { - "credit": 0.0011000000000000038, + "credit": 0.0008250000000000063, "url": "https://grpc.io" }, - "googleapis-common-protos": { - "credit": 0.001463000000000006, - "url": "https://github.com/googleapis/python-api-common-protos" - }, "protobuf": { - "credit": 0.28215275, + "credit": 0.22518168749999995, "url": "https://developers.google.com/protocol-buffers/" }, - "numpy": { - "credit": 0.11, - "url": "https://www.numpy.org" - }, - "docker": { - "credit": 0.0011000000000000038, - "url": "https://github.com/docker/docker-py" + "googleapis-common-protos": { + "credit": 0.001097250000000008, + "url": "https://github.com/googleapis/python-api-common-protos" }, "bmipy": { - "credit": 0.11, + "credit": 0.0825, "url": "http://csdms.colorado.edu" }, + "docker": { + "credit": 0.0009157500000000068, + "url": "https://github.com/docker/docker-py" + }, "semver": { - "credit": 0.11, + "credit": 0.091575, "url": "https://github.com/python-semver/python-semver" }, + "websocket-client": { + "credit": 0.002225142857142863, + "url": "https://github.com/websocket-client/websocket-client.git" + }, + "jinja2": { + "credit": 0.0019480312500000062, + "url": "https://palletsprojects.com/p/jinja/" + }, + "MarkupSafe": { + "credit": 0.1233375, + "url": "https://palletsprojects.com/p/markupsafe/" + }, + "rpy2": { + "credit": 9.075000000000055e-05, + "url": "https://rpy2.github.io" + }, + "typeguard": { + "credit": 9.075000000000055e-05, + "url": "https://pypi.org/project/typeguard" + }, + "basic-modeling-interface": { + "credit": 0.009075, + "url": "https://github.com/bmi-forum/bmi-python" + }, + "numpy": { + "credit": 0.01019803125, + "url": "https://www.numpy.org" + }, "grpcio-tools": { - "credit": 0.03620925, + "credit": 0.029403, "url": "https://grpc.io" }, "enum34": { - "credit": 0.063162, + "credit": 0.04961756249999999, "url": "https://bitbucket.org/stoneleaf/enum34" }, "futures": { - "credit": 0.063162, + "credit": 0.04961756249999999, "url": "https://github.com/agronholm/pythonfutures" }, "six": { - "credit": 0.06508719642857143, + "credit": 0.05106145982142856, "url": "https://github.com/benjaminp/six" }, "idna": { - "credit": 0.017757367346938776, + "credit": 0.014601489795918366, "url": "https://github.com/kjd/idna" }, "cryptography": { - "credit": 0.020049267857142856, + "credit": 0.01632041517857143, "url": "https://github.com/pyca/cryptography" }, "pyOpenSSL": { - "credit": 0.00015557142857142853, + "credit": 0.001400142857142857, "url": "https://pyopenssl.org/" }, "paramiko": { - "credit": 0.00015557142857142853, + "credit": 0.001400142857142857, "url": "https://paramiko.org" }, "pywin32": { - "credit": 0.017482339285714285, + "credit": 0.01439521875, "url": "https://github.com/mhammond/pywin32" }, "requests": { - "credit": 0.0001555714285714268, + "credit": 0.001400142857142857, "url": "https://requests.readthedocs.io" }, - "websocket-client": { - "credit": 0.00015557142857142853, - "url": "https://github.com/websocket-client/websocket-client.git" + "websockets": { + "credit": 0.018645235714285713, + "url": "https://github.com/aaugustin/websockets" + }, + "wsaccel": { + "credit": 0.018645235714285713, + "url": "https://github.com/methane/wsaccel" + }, + "python-socks": { + "credit": 0.002473585714285714, + "url": "https://github.com/romis2012/python-socks" + }, + "sphinx-rtd-theme": { + "credit": 0.02236728214285714, + "url": "https://github.com/readthedocs/sphinx_rtd_theme" + }, + "Sphinx": { + "credit": 0.018645235714285713, + "url": "https://www.sphinx-doc.org/" + }, + "Babel": { + "credit": 0.0408375, + "url": "https://pypi.org/project/Babel" + }, + "pandas": { + "credit": 0.00112303125, + "url": "https://pypi.org/project/pandas" }, "setuptools": { - "credit": 0.00898425, - "url": "https://github.com/pypa/setuptools" + "credit": 0.00786121875, + "url": "https://pypi.org/project/setuptools" }, "pytest": { - "credit": 0.002566928571428571, + "credit": 0.004845077678571429, "url": "https://pypi.org/project/pytest" }, + "tzlocal": { + "credit": 0.00112303125, + "url": "https://pypi.org/project/tzlocal" + }, + "pytz": { + "credit": 0.00112303125, + "url": "https://pypi.org/project/pytz" + }, + "cffi": { + "credit": 0.00112303125, + "url": "https://pypi.org/project/cffi" + }, + "mypy": { + "credit": 0.0017968499999999998, + "url": "https://pypi.org/project/mypy" + }, + "typing-extensions": { + "credit": 0.0017968499999999998, + "url": "https://pypi.org/project/typing-extensions" + }, + "sphinx-autodoc-typehints": { + "credit": 0.0017968499999999998, + "url": "https://pypi.org/project/sphinx-autodoc-typehints" + }, "pretend": { - "credit": 0.002566928571428571, + "credit": 0.0019251964285714287, "url": "https://pypi.org/project/pretend" }, "flaky": { - "credit": 0.002566928571428571, + "credit": 0.0019251964285714287, "url": "https://pypi.org/project/flaky" }, - "sphinx-rtd-theme": { - "credit": 0.005647242857142857, - "url": "https://pypi.org/project/sphinx-rtd-theme" - }, "sphinx": { - "credit": 0.002566928571428571, + "credit": 0.0019251964285714287, "url": "https://pypi.org/project/sphinx" }, "gssapi": { - "credit": 0.0019251964285714285, + "credit": 0.0014438973214285715, "url": "https://pypi.org/project/gssapi" }, "invoke": { - "credit": 0.0019251964285714285, + "credit": 0.0014438973214285715, "url": "https://pypi.org/project/invoke" }, "pyasn1": { - "credit": 0.0019251964285714285, + "credit": 0.0014438973214285715, "url": "https://pypi.org/project/pyasn1" }, "pynacl": { - "credit": 0.0019251964285714285, + "credit": 0.0014438973214285715, "url": "https://pypi.org/project/pynacl" }, "bcrypt": { - "credit": 0.0019251964285714285, + "credit": 0.0014438973214285715, "url": "https://pypi.org/project/bcrypt" }, "win-inet-pton": { - "credit": 0.0022002244897959184, + "credit": 0.0016501683673469387, "url": "https://pypi.org/project/win-inet-pton" }, "PySocks": { - "credit": 0.0022002244897959184, + "credit": 0.0016501683673469387, "url": "https://pypi.org/project/PySocks" }, "charset-normalizer": { - "credit": 0.0022002244897959184, + "credit": 0.0016501683673469387, "url": "https://pypi.org/project/charset-normalizer" }, "chardet": { - "credit": 0.0022002244897959184, + "credit": 0.0016501683673469387, "url": "https://pypi.org/project/chardet" }, "certifi": { - "credit": 0.0022002244897959184, + "credit": 0.0016501683673469387, "url": "https://pypi.org/project/certifi" }, "urllib3": { - "credit": 0.0022002244897959184, + "credit": 0.0016501683673469387, "url": "https://pypi.org/project/urllib3" }, - "websockets": { - "credit": 0.0030803142857142854, - "url": "https://pypi.org/project/websockets" + "trio": { + "credit": 0.0040429125, + "url": "https://pypi.org/project/trio" }, - "wsaccel": { - "credit": 0.0030803142857142854, - "url": "https://pypi.org/project/wsaccel" + "curio": { + "credit": 0.0040429125, + "url": "https://pypi.org/project/curio" }, - "python-socks": { - "credit": 0.0030803142857142854, - "url": "https://pypi.org/project/python-socks" + "async-timeout": { + "credit": 0.0040429125, + "url": "https://pypi.org/project/async-timeout" }, - "Sphinx": { - "credit": 0.0030803142857142854, - "url": "https://pypi.org/project/Sphinx" + "anyio": { + "credit": 0.0040429125, + "url": "https://pypi.org/project/anyio" } } } \ No newline at end of file diff --git a/_repos/github/eWaterCycle/jupyterlab_thredds/README.md b/_repos/github/eWaterCycle/jupyterlab_thredds/README.md index d720a665..9d65c08f 100644 --- a/_repos/github/eWaterCycle/jupyterlab_thredds/README.md +++ b/_repos/github/eWaterCycle/jupyterlab_thredds/README.md @@ -8,73 +8,68 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.128| -|pypi|[siphon](https://github.com/Unidata/siphon)|0.124| -|pypi|[traitlets](https://github.com/ipython/traitlets)|0.124| -|pypi|[xyzservices](https://pypi.org/project/xyzservices)|0.041| -|pypi|[traittypes](https://pypi.org/project/traittypes)|0.041| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.041| -|pypi|[requests](https://pypi.org/project/requests)|0.03| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.02| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.02| -|pypi|[pyproj](https://pypi.org/project/pyproj)|0.02| -|pypi|[pytz](https://pypi.org/project/pytz)|0.02| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.02| -|pypi|[ipykernel](https://ipython.org)|0.014| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.025| +|pypi|[traittypes](https://pypi.org/project/traittypes)|0.025| +|pypi|[xyzservices](https://pypi.org/project/xyzservices)|0.025| +|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.021| +|pypi|[notebook](http://jupyter.org)|0.021| +|pypi|[OWSLib](https://pypi.org/project/OWSLib)|0.021| +|pypi|[siphon](https://pypi.org/project/siphon)|0.021| +|pypi|[xarray](https://pypi.org/project/xarray)|0.021| +|pypi|[aiosignal](https://pypi.org/project/aiosignal)|0.02| +|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.02| +|pypi|[frozenlist](https://pypi.org/project/frozenlist)|0.02| +|pypi|[multidict](https://pypi.org/project/multidict)|0.02| +|pypi|[yarl](https://pypi.org/project/yarl)|0.02| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.019| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.019| +|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.019| +|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.019| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.019| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.019| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.019| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.019| +|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|0.019| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.019| +|pypi|[pyproj](https://pypi.org/project/pyproj)|0.019| +|pypi|[pyzmq](https://pypi.org/project/pyzmq)|0.019| +|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|0.019| +|pypi|[terminado](https://pypi.org/project/terminado)|0.019| +|pypi|[tornado](https://pypi.org/project/tornado)|0.019| +|pypi|[argon2-cffi](https://pypi.org/project/argon2-cffi)|0.019| +|pypi|[cftime](https://pypi.org/project/cftime)|0.019| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.019| +|pypi|[debugpy](https://pypi.org/project/debugpy)|0.019| +|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.019| +|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.019| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.019| +|pypi|[mistune](https://pypi.org/project/mistune)|0.019| +|pypi|[nbclient](https://pypi.org/project/nbclient)|0.019| +|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|0.019| +|pypi|[soupsieve](https://pypi.org/project/soupsieve)|0.019| +|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|0.019| +|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|0.019| +|pypi|[bleach](https://pypi.org/project/bleach)|0.019| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.019| +|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|0.019| +|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|0.019| +|pypi|[psutil](https://pypi.org/project/psutil)|0.019| +|pypi|[tinycss2](https://pypi.org/project/tinycss2)|0.019| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.019| +|pypi|[pycparser](https://pypi.org/project/pycparser)|0.019| |setup.py|github/eWaterCycle/jupyterlab_thredds|0.01| -|pypi|[pytest-console-scripts](https://pypi.org/project/pytest-console-scripts)|0.009| -|pypi|[pytest-tornasync](https://pypi.org/project/pytest-tornasync)|0.009| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| -|pypi|[pytest](https://pypi.org/project/pytest)|0.009| -|pypi|[nbval](https://pypi.org/project/nbval)|0.009| -|pypi|[coverage](https://pypi.org/project/coverage)|0.009| -|pypi|[tornado](https://pypi.org/project/tornado)|0.009| -|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|0.009| -|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|0.009| -|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|0.009| -|pypi|[notebook-shim](https://pypi.org/project/notebook-shim)|0.009| -|pypi|[cchardet](https://pypi.org/project/cchardet)|0.009| -|pypi|[Brotli](https://pypi.org/project/Brotli)|0.009| -|pypi|[aiodns](https://pypi.org/project/aiodns)|0.009| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.009| -|pypi|[asynctest](https://pypi.org/project/asynctest)|0.009| -|pypi|[idna-ssl](https://pypi.org/project/idna-ssl)|0.009| -|pypi|[aiosignal](https://pypi.org/project/aiosignal)|0.009| -|pypi|[frozenlist](https://pypi.org/project/frozenlist)|0.009| -|pypi|[yarl](https://pypi.org/project/yarl)|0.009| -|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.009| -|pypi|[multidict](https://pypi.org/project/multidict)|0.009| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.009| -|pypi|[attrs](https://pypi.org/project/attrs)|0.009| -|pypi|[scanpydoc](https://pypi.org/project/scanpydoc)|0.005| -|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.005| -|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.005| -|pypi|[ipython](https://pypi.org/project/ipython)|0.005| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| -|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|0.005| -|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|0.005| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.005| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.005| -|pypi|[dask](https://pypi.org/project/dask)|0.005| -|pypi|[pooch](https://pypi.org/project/pooch)|0.005| -|pypi|[cfgrib](https://pypi.org/project/cfgrib)|0.005| -|pypi|[rasterio](https://pypi.org/project/rasterio)|0.005| -|pypi|[cftime](https://pypi.org/project/cftime)|0.005| -|pypi|[fsspec](https://pypi.org/project/fsspec)|0.005| -|pypi|[zarr](https://pypi.org/project/zarr)|0.005| -|pypi|[pydap](https://pypi.org/project/pydap)|0.005| -|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|0.005| -|pypi|[numbagg](https://pypi.org/project/numbagg)|0.005| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.005| -|pypi|[scipy](https://pypi.org/project/scipy)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[pandas](https://pypi.org/project/pandas)|0.005| -|pypi|[numpy](https://pypi.org/project/numpy)|0.005| -|pypi|[notebook](http://jupyter.org)|0.001| -|pypi|[xarray](https://github.com/pydata/xarray)|0.001| -|pypi|[ipyleaflet](https://github.com/jupyter-widgets/ipyleaflet)|0.001| -|pypi|[OWSLib](https://geopython.github.io/OWSLib)|0.001| -|pypi|[aiohttp](https://github.com/aio-libs/aiohttp)|0.001| +|pypi|[aiohttp](https://github.com/aio-libs/aiohttp)|0.002| +|pypi|[ipyleaflet](https://github.com/jupyter-widgets/ipyleaflet)|0.002| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.002| +|pypi|[cchardet](https://pypi.org/project/cchardet)|0.001| +|pypi|[Brotli](https://pypi.org/project/Brotli)|0.001| +|pypi|[aiodns](https://pypi.org/project/aiodns)|0.001| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.001| +|pypi|[asynctest](https://pypi.org/project/asynctest)|0.001| +|pypi|[idna-ssl](https://pypi.org/project/idna-ssl)|0.001| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.001| +|pypi|[attrs](https://pypi.org/project/attrs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/eWaterCycle/jupyterlab_thredds/badge.png b/_repos/github/eWaterCycle/jupyterlab_thredds/badge.png index cd2cee23..cbf0f1b8 100644 Binary files a/_repos/github/eWaterCycle/jupyterlab_thredds/badge.png and b/_repos/github/eWaterCycle/jupyterlab_thredds/badge.png differ diff --git a/_repos/github/eWaterCycle/jupyterlab_thredds/data.json b/_repos/github/eWaterCycle/jupyterlab_thredds/data.json index ed0d2e14..0ff0a45f 100644 --- a/_repos/github/eWaterCycle/jupyterlab_thredds/data.json +++ b/_repos/github/eWaterCycle/jupyterlab_thredds/data.json @@ -6,268 +6,252 @@ } }, "pypi": { - "notebook": { - "credit": 0.0012375000000000025, - "url": "http://jupyter.org" + "jupyterlab-thredds": { + "credit": 0.00018679245283018814, + "url": "https://github.com/eWaterCycle/jupyterlab_thredds" }, - "siphon": { - "credit": 0.12375, - "url": "https://github.com/Unidata/siphon" + "aiohttp": { + "credit": 0.0024983490566037733, + "url": "https://github.com/aio-libs/aiohttp" }, - "xarray": { - "credit": 0.0012375000000000025, - "url": "https://github.com/pydata/xarray" + "ipyleaflet": { + "credit": 0.0024983490566037733, + "url": "https://github.com/jupyter-widgets/ipyleaflet" }, "netCDF4": { - "credit": 0.12846201923076922, + "credit": 0.020990801886792455, "url": "http://github.com/Unidata/netcdf4-python" }, - "ipyleaflet": { - "credit": 0.0012375000000000025, - "url": "https://github.com/jupyter-widgets/ipyleaflet" + "notebook": { + "credit": 0.020990801886792455, + "url": "http://jupyter.org" }, "OWSLib": { - "credit": 0.0012375000000000025, - "url": "https://geopython.github.io/OWSLib" + "credit": 0.020990801886792455, + "url": "https://pypi.org/project/OWSLib" }, - "traitlets": { - "credit": 0.12375, - "url": "https://github.com/ipython/traitlets" - }, - "aiohttp": { - "credit": 0.0012375000000000025, - "url": "https://github.com/aio-libs/aiohttp" - }, - "ipykernel": { - "credit": 0.01413605769230769, - "url": "https://ipython.org" + "siphon": { + "credit": 0.020990801886792455, + "url": "https://pypi.org/project/siphon" }, - "pytest-console-scripts": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/pytest-console-scripts" + "xarray": { + "credit": 0.020990801886792455, + "url": "https://pypi.org/project/xarray" }, - "pytest-tornasync": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/pytest-tornasync" + "aiosignal": { + "credit": 0.020101741654571844, + "url": "https://pypi.org/project/aiosignal" }, - "requests": { - "credit": 0.029842788461538462, - "url": "https://pypi.org/project/requests" + "async-timeout": { + "credit": 0.020101741654571844, + "url": "https://pypi.org/project/async-timeout" }, - "pytest-cov": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/pytest-cov" + "beautifulsoup4": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/beautifulsoup4" }, - "pytest": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/pytest" + "frozenlist": { + "credit": 0.020101741654571844, + "url": "https://pypi.org/project/frozenlist" }, - "nbval": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/nbval" + "ipywidgets": { + "credit": 0.024843396226415095, + "url": "https://pypi.org/project/ipywidgets" }, - "coverage": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/coverage" + "ipykernel": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/ipykernel" }, - "tornado": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/tornado" + "ipython-genutils": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/ipython-genutils" }, - "jupyter-server": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/jupyter-server" + "jupyter-client": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/jupyter-client" }, - "jupyterlab-server": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/jupyterlab-server" + "jupyter-core": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/jupyter-core" }, - "jupyterlab": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/jupyterlab" + "multidict": { + "credit": 0.020101741654571844, + "url": "https://pypi.org/project/multidict" }, - "notebook-shim": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/notebook-shim" + "nbconvert": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/nbconvert" }, - "scanpydoc": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/scanpydoc" + "jinja2": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/jinja2" }, - "nbsphinx": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/nbsphinx" + "nbformat": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/nbformat" }, - "jupyter-client": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/jupyter-client" + "nest-asyncio": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/nest-asyncio" }, - "ipython": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/ipython" + "protobuf": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/protobuf" }, - "sphinx-rtd-theme": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/sphinx-rtd-theme" + "pyproj": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/pyproj" }, - "sphinx-autosummary-accessors": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/sphinx-autosummary-accessors" + "pyzmq": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/pyzmq" }, - "nc-time-axis": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/nc-time-axis" + "Send2Trash": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/Send2Trash" }, - "seaborn": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/seaborn" + "terminado": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/terminado" }, - "matplotlib": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/matplotlib" + "tornado": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/tornado" }, - "dask": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/dask" + "traittypes": { + "credit": 0.024843396226415095, + "url": "https://pypi.org/project/traittypes" }, - "pooch": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/pooch" + "xyzservices": { + "credit": 0.024843396226415095, + "url": "https://pypi.org/project/xyzservices" }, - "cfgrib": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/cfgrib" + "yarl": { + "credit": 0.020101741654571844, + "url": "https://pypi.org/project/yarl" }, - "rasterio": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/rasterio" + "argon2-cffi": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/argon2-cffi" }, "cftime": { - "credit": 0.0047120192307692306, + "credit": 0.01867924528301887, "url": "https://pypi.org/project/cftime" }, - "fsspec": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/fsspec" + "prometheus-client": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/prometheus-client" }, - "zarr": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/zarr" + "debugpy": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/debugpy" }, - "pydap": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/pydap" + "entrypoints": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/entrypoints" }, - "h5netcdf": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/h5netcdf" + "jupyterlab-widgets": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/jupyterlab-widgets" }, - "numbagg": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/numbagg" + "MarkupSafe": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/MarkupSafe" }, - "bottleneck": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/bottleneck" + "mistune": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/mistune" }, - "scipy": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/scipy" + "nbclient": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/nbclient" }, - "packaging": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/packaging" + "pandocfilters": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/pandocfilters" }, - "pandas": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/pandas" + "soupsieve": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/soupsieve" }, - "numpy": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/numpy" + "widgetsnbextension": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/widgetsnbextension" }, - "xyzservices": { - "credit": 0.0408375, - "url": "https://pypi.org/project/xyzservices" + "argon2-cffi-bindings": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/argon2-cffi-bindings" }, - "traittypes": { - "credit": 0.0408375, - "url": "https://pypi.org/project/traittypes" + "bleach": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/bleach" }, - "ipywidgets": { - "credit": 0.0408375, - "url": "https://pypi.org/project/ipywidgets" + "defusedxml": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/defusedxml" }, - "dataclasses": { - "credit": 0.02041875, - "url": "https://pypi.org/project/dataclasses" + "fastjsonschema": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/fastjsonschema" }, - "pyyaml": { - "credit": 0.02041875, - "url": "https://pypi.org/project/pyyaml" + "jupyterlab-pygments": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/jupyterlab-pygments" }, - "pyproj": { - "credit": 0.02041875, - "url": "https://pypi.org/project/pyproj" + "psutil": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/psutil" + }, + "tinycss2": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/tinycss2" }, - "pytz": { - "credit": 0.02041875, - "url": "https://pypi.org/project/pytz" + "cffi": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/cffi" }, - "python-dateutil": { - "credit": 0.02041875, - "url": "https://pypi.org/project/python-dateutil" + "webencodings": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/webencodings" + }, + "pycparser": { + "credit": 0.01867924528301887, + "url": "https://pypi.org/project/pycparser" + }, + "traitlets": { + "credit": 0.002311556603773585, + "url": "https://pypi.org/project/traitlets" }, "cchardet": { - "credit": 0.009424038461538461, + "credit": 0.0014224963715529755, "url": "https://pypi.org/project/cchardet" }, "Brotli": { - "credit": 0.009424038461538461, + "credit": 0.0014224963715529755, "url": "https://pypi.org/project/Brotli" }, "aiodns": { - "credit": 0.009424038461538461, + "credit": 0.0014224963715529755, "url": "https://pypi.org/project/aiodns" }, "typing-extensions": { - "credit": 0.009424038461538461, + "credit": 0.0014224963715529755, "url": "https://pypi.org/project/typing-extensions" }, "asynctest": { - "credit": 0.009424038461538461, + "credit": 0.0014224963715529755, "url": "https://pypi.org/project/asynctest" }, "idna-ssl": { - "credit": 0.009424038461538461, + "credit": 0.0014224963715529755, "url": "https://pypi.org/project/idna-ssl" }, - "aiosignal": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/aiosignal" - }, - "frozenlist": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/frozenlist" - }, - "yarl": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/yarl" - }, - "async-timeout": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/async-timeout" - }, - "multidict": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/multidict" - }, "charset-normalizer": { - "credit": 0.009424038461538461, + "credit": 0.0014224963715529755, "url": "https://pypi.org/project/charset-normalizer" }, "attrs": { - "credit": 0.009424038461538461, + "credit": 0.0014224963715529755, "url": "https://pypi.org/project/attrs" } } diff --git a/_repos/github/easybuilders/easybuild/README.md b/_repos/github/easybuilders/easybuild/README.md index dcbbed4b..d78994db 100644 --- a/_repos/github/easybuilders/easybuild/README.md +++ b/_repos/github/easybuilders/easybuild/README.md @@ -9,9 +9,10 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/easybuilders/easybuild|0.01| -|pypi|[easybuild-framework](https://easybuild.io)|0.003| -|pypi|[easybuild-easyblocks](https://easybuild.io)|0.003| -|pypi|[easybuild-easyconfigs](https://easybuild.io)|0.003| +|pypi|[easybuild](https://easybuild.io)|0.002| +|pypi|[easybuild-easyblocks](https://easybuild.io)|0.002| +|pypi|[easybuild-easyconfigs](https://easybuild.io)|0.002| +|pypi|[easybuild-framework](https://easybuild.io)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/easybuilders/easybuild/badge.png b/_repos/github/easybuilders/easybuild/badge.png index 07615cc6..fe97e20e 100644 Binary files a/_repos/github/easybuilders/easybuild/badge.png and b/_repos/github/easybuilders/easybuild/badge.png differ diff --git a/_repos/github/easybuilders/easybuild/data.json b/_repos/github/easybuilders/easybuild/data.json index 76e315c4..20c548f3 100644 --- a/_repos/github/easybuilders/easybuild/data.json +++ b/_repos/github/easybuilders/easybuild/data.json @@ -6,16 +6,20 @@ } }, "pypi": { - "easybuild-framework": { - "credit": 0.0033000000000000004, + "easybuild": { + "credit": 0.002475, "url": "https://easybuild.io" }, "easybuild-easyblocks": { - "credit": 0.0033000000000000004, + "credit": 0.002475, "url": "https://easybuild.io" }, "easybuild-easyconfigs": { - "credit": 0.0033000000000000004, + "credit": 0.002475, + "url": "https://easybuild.io" + }, + "easybuild-framework": { + "credit": 0.002475, "url": "https://easybuild.io" } } diff --git a/_repos/github/edwardoughton/itmlogic/README.md b/_repos/github/edwardoughton/itmlogic/README.md index 382cf165..53e08521 100644 --- a/_repos/github/edwardoughton/itmlogic/README.md +++ b/_repos/github/edwardoughton/itmlogic/README.md @@ -9,8 +9,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/edwardoughton/itmlogic|0.01| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.005| -|pypi|[numpy](https://www.numpy.org)|0.005| +|pypi|[itmlogic](https://github.com/edwardoughton/itmlogic)|0.01| +|pypi|[numpy](https://www.numpy.org)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/edwardoughton/itmlogic/badge.png b/_repos/github/edwardoughton/itmlogic/badge.png index 1e6b3c31..264c52b6 100644 Binary files a/_repos/github/edwardoughton/itmlogic/badge.png and b/_repos/github/edwardoughton/itmlogic/badge.png differ diff --git a/_repos/github/edwardoughton/itmlogic/data.json b/_repos/github/edwardoughton/itmlogic/data.json index 08301f90..d9b8433d 100644 --- a/_repos/github/edwardoughton/itmlogic/data.json +++ b/_repos/github/edwardoughton/itmlogic/data.json @@ -6,12 +6,12 @@ } }, "pypi": { - "setuptools_scm": { - "credit": 0.00495, - "url": "https://github.com/pypa/setuptools_scm/" + "itmlogic": { + "credit": 0.0099, + "url": "https://github.com/edwardoughton/itmlogic" }, "numpy": { - "credit": 0.00495, + "credit": 0.009801, "url": "https://www.numpy.org" } } diff --git a/_repos/github/ekaterinailin/AltaiPony/badge.png b/_repos/github/ekaterinailin/AltaiPony/badge.png index e5f2fe58..e51655c6 100644 Binary files a/_repos/github/ekaterinailin/AltaiPony/badge.png and b/_repos/github/ekaterinailin/AltaiPony/badge.png differ diff --git a/_repos/github/elkebir-group/Jumper/README.md b/_repos/github/elkebir-group/Jumper/README.md index 2658755d..56ad09a3 100644 --- a/_repos/github/elkebir-group/Jumper/README.md +++ b/_repos/github/elkebir-group/Jumper/README.md @@ -9,53 +9,29 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |pypi|[pysam](https://github.com/pysam-developers/pysam)|0.495| -|pypi|[numpy](https://www.numpy.org)|0.086| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.086| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.086| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.04| -|pypi|[execnet](https://pypi.org/project/execnet)|0.013| -|pypi|[py](https://pypi.org/project/py)|0.012| +|pypi|[tornado](http://www.tornadoweb.org/)|0.082| +|pypi|[terminaltables](https://github.com/matthewdeanmartin/terminaltables)|0.082| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.082| +|pypi|[timeout-decorator](https://github.com/pnpnpn/timeout-decorator)|0.082| +|pypi|[future](https://python-future.org)|0.082| +|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.013| +|pypi|[idna](https://github.com/kjd/idna)|0.013| +|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.013| +|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.012| +|pypi|[chardet](https://github.com/chardet/chardet)|0.012| |setup.py|github/elkebir-group/Jumper|0.01| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| -|pypi|[attrs](https://pypi.org/project/attrs)|0.01| -|pypi|[pandas](https://pandas.pydata.org)|0.009| -|pypi|[mock](https://pypi.org/project/mock)|0.007| -|pypi|[hypothesis](https://hypothesis.works)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.005| -|pypi|[pygments](https://pypi.org/project/pygments)|0.005| -|pypi|[nose](https://pypi.org/project/nose)|0.005| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.005| -|pypi|[colorama](https://pypi.org/project/colorama)|0.005| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.005| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.005| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.004| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.004| -|pypi|[rich](https://pypi.org/project/rich)|0.004| -|pypi|[redis](https://pypi.org/project/redis)|0.004| -|pypi|[libcst](https://pypi.org/project/libcst)|0.004| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.004| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.004| -|pypi|[django](https://pypi.org/project/django)|0.004| -|pypi|[click](https://pypi.org/project/click)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.004| -|pypi|[wmi](https://pypi.org/project/wmi)|0.002| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.002| -|pypi|[enum34](https://pypi.org/project/enum34)|0.002| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.002| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.002| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| -|pypi|[furo](https://pypi.org/project/furo)|0.002| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.001| +|pypi|[jumper](https://vlab.jumper.io)|0.005| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| +|pypi|[coverage](https://pypi.org/project/coverage)|0.003| +|pypi|[pytest](https://pypi.org/project/pytest)|0.003| +|pypi|[ipaddress](https://github.com/phihag/ipaddress)|0.001| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.001| +|pypi|[pyOpenSSL](https://pyopenssl.org/)|0.001| +|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.001| +|pypi|[brotli](https://pypi.org/project/brotli)|0.001| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.001| +|pypi|[requests](https://requests.readthedocs.io)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/elkebir-group/Jumper/badge.png b/_repos/github/elkebir-group/Jumper/badge.png index c22a85c3..cbd69aec 100644 Binary files a/_repos/github/elkebir-group/Jumper/badge.png and b/_repos/github/elkebir-group/Jumper/badge.png differ diff --git a/_repos/github/elkebir-group/Jumper/data.json b/_repos/github/elkebir-group/Jumper/data.json index 3349402e..bef42c9e 100644 --- a/_repos/github/elkebir-group/Jumper/data.json +++ b/_repos/github/elkebir-group/Jumper/data.json @@ -6,209 +6,109 @@ } }, "pypi": { + "jumper": { + "credit": 0.00495000000000001, + "url": "https://vlab.jumper.io" + }, "pysam": { "credit": 0.495, "url": "https://github.com/pysam-developers/pysam" }, - "pandas": { - "credit": 0.00944212500000001, - "url": "https://pandas.pydata.org" - }, - "pytest-xdist": { - "credit": 0.000816750000000005, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.04046536828125, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.0058703906250000045, - "url": "https://hypothesis.works" - }, - "numpy": { - "credit": 0.086167125, - "url": "https://www.numpy.org" - }, - "pytz": { - "credit": 0.086167125, - "url": "http://pythonhosted.org/pytz" + "tornado": { + "credit": 0.081675, + "url": "http://www.tornadoweb.org/" }, - "python-dateutil": { - "credit": 0.086167125, - "url": "https://github.com/dateutil/dateutil" + "terminaltables": { + "credit": 0.081675, + "url": "https://github.com/matthewdeanmartin/terminaltables" }, - "filelock": { - "credit": 0.0001347637500000009, - "url": "https://github.com/tox-dev/py-filelock" - }, - "setproctitle": { - "credit": 0.0001347637500000009, - "url": "https://github.com/dvarrazzo/py-setproctitle" - }, - "psutil": { - "credit": 0.00013476375000000262, - "url": "https://github.com/giampaolo/psutil" - }, - "pytest-forked": { - "credit": 0.0001347637500000009, - "url": "https://github.com/pytest-dev/pytest-forked" - }, - "execnet": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/execnet" - }, - "xmlschema": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/xmlschema" + "termcolor": { + "credit": 0.081675, + "url": "http://pypi.python.org/pypi/termcolor" }, "requests": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.0072772424999999995, - "url": "https://pypi.org/project/mock" - }, - "argcomplete": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.009545765624999999, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/tomli" + "credit": 0.000816750000000005, + "url": "https://requests.readthedocs.io" }, - "py": { - "credit": 0.01172444625, - "url": "https://pypi.org/project/py" + "timeout-decorator": { + "credit": 0.081675, + "url": "https://github.com/pnpnpn/timeout-decorator" }, - "pluggy": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/pluggy" + "future": { + "credit": 0.081675, + "url": "https://python-future.org" }, - "packaging": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/packaging" + "win-inet-pton": { + "credit": 0.01155117857142857, + "url": "https://github.com/hickeroar/win_inet_pton" }, - "iniconfig": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/iniconfig" + "PySocks": { + "credit": 0.012821808214285713, + "url": "https://github.com/Anorov/PySocks" }, - "attrs": { - "credit": 0.009545765624999999, - "url": "https://pypi.org/project/attrs" + "charset-normalizer": { + "credit": 0.00011551178571428573, + "url": "https://github.com/ousret/charset_normalizer" }, - "tzdata": { - "credit": 0.004492125, - "url": "https://pypi.org/project/tzdata" + "idna": { + "credit": 0.012821808214285713, + "url": "https://github.com/kjd/idna" }, - "backports.zoneinfo": { - "credit": 0.004492125, - "url": "https://pypi.org/project/backports.zoneinfo" + "chardet": { + "credit": 0.01155117857142857, + "url": "https://github.com/chardet/chardet" }, - "rich": { - "credit": 0.004492125, - "url": "https://pypi.org/project/rich" + "certifi": { + "credit": 0.012821808214285713, + "url": "https://certifiio.readthedocs.io/en/latest/" }, - "redis": { - "credit": 0.004492125, - "url": "https://pypi.org/project/redis" + "urllib3": { + "credit": 0.00011551178571428573, + "url": "https://urllib3.readthedocs.io/" }, - "libcst": { - "credit": 0.004492125, - "url": "https://pypi.org/project/libcst" + "unicodedata2": { + "credit": 0.00011435666785714234, + "url": "http://github.com/mikekap/unicodedata2" }, - "lark-parser": { - "credit": 0.004492125, - "url": "https://pypi.org/project/lark-parser" + "ipaddress": { + "credit": 0.0012706296428571426, + "url": "https://github.com/phihag/ipaddress" }, - "dpcontracts": { - "credit": 0.004492125, - "url": "https://pypi.org/project/dpcontracts" + "cryptography": { + "credit": 0.0012706296428571426, + "url": "https://github.com/pyca/cryptography" }, - "django": { - "credit": 0.004492125, - "url": "https://pypi.org/project/django" + "pyOpenSSL": { + "credit": 0.0012706296428571426, + "url": "https://pyopenssl.org/" }, - "click": { - "credit": 0.004492125, - "url": "https://pypi.org/project/click" + "brotlipy": { + "credit": 0.0012706296428571426, + "url": "https://pypi.org/project/brotlipy" }, - "black": { - "credit": 0.004492125, - "url": "https://pypi.org/project/black" + "brotli": { + "credit": 0.0012706296428571426, + "url": "https://pypi.org/project/brotli" }, - "sortedcontainers": { - "credit": 0.004492125, - "url": "https://pypi.org/project/sortedcontainers" + "brotlicffi": { + "credit": 0.0012706296428571426, + "url": "https://pypi.org/project/brotlicffi" }, - "pytest-timeout": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/pytest-timeout" + "pytest-randomly": { + "credit": 0.0028303275294642855, + "url": "https://pypi.org/project/pytest-randomly" }, - "pytest-cov": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/pytest-cov" + "pytest-xdist": { + "credit": 0.0028303275294642855, + "url": "https://pypi.org/project/pytest-xdist" }, "coverage": { - "credit": 0.0016677014062499997, + "credit": 0.0028303275294642855, "url": "https://pypi.org/project/coverage" }, - "covdefaults": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/covdefaults" - }, - "sphinx-autodoc-typehints": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "sphinx": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/sphinx" - }, - "furo": { - "credit": 0.0016677014062499997, - "url": "https://pypi.org/project/furo" - }, - "wmi": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/wmi" - }, - "pywin32": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/pywin32" - }, - "enum34": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/enum34" - }, - "unittest2": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/unittest2" - }, - "ipaddress": { - "credit": 0.0022236018749999995, - "url": "https://pypi.org/project/ipaddress" + "pytest": { + "credit": 0.0028303275294642855, + "url": "https://pypi.org/project/pytest" } } } \ No newline at end of file diff --git a/_repos/github/elwinter/nnde/README.md b/_repos/github/elwinter/nnde/README.md index 181fd9a4..840d43e7 100644 --- a/_repos/github/elwinter/nnde/README.md +++ b/_repos/github/elwinter/nnde/README.md @@ -8,10 +8,52 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[matplotlib](https://matplotlib.org)|0.178| +|pypi|[nnde](https://github.com/elwinter/nnde)|0.165| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.165| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.163| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[coverage](https://pypi.org/project/coverage)|0.018| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.013| +|pypi|[brotli](https://github.com/google/brotli)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| +|pypi|[numpy](https://pypi.org/project/numpy)|0.012| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.01| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.01| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.01| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.01| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.01| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.01| +|pypi|[olefile](https://pypi.org/project/olefile)|0.01| |setup.py|github/elwinter/nnde|0.01| -|pypi|[numpy](https://www.numpy.org)|0.007| -|pypi|[matplotlib](https://matplotlib.org)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.003| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.006| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.002| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scandir](https://pypi.org/project/scandir)|0.002| +|pypi|[typing](https://pypi.org/project/typing)|0.002| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/elwinter/nnde/badge.png b/_repos/github/elwinter/nnde/badge.png index 42c6f9ae..3e928d3a 100644 Binary files a/_repos/github/elwinter/nnde/badge.png and b/_repos/github/elwinter/nnde/badge.png differ diff --git a/_repos/github/elwinter/nnde/data.json b/_repos/github/elwinter/nnde/data.json index fc5a6b6b..8a31672b 100644 --- a/_repos/github/elwinter/nnde/data.json +++ b/_repos/github/elwinter/nnde/data.json @@ -6,17 +6,225 @@ } }, "pypi": { + "nnde": { + "credit": 0.165, + "url": "https://github.com/elwinter/nnde" + }, "matplotlib": { - "credit": 0.0033000000000000004, + "credit": 0.17756538461538462, "url": "https://matplotlib.org" }, - "numpy": { - "credit": 0.006567, - "url": "https://www.numpy.org" + "cycler": { + "credit": 0.165, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0016500000000000126, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0016500000000000126, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0016500000000000126, + "url": "https://python-pillow.org" + }, + "xattr": { + "credit": 0.00012565384615384652, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 0.00012565384615384652, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.012565384615384615, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.012565384615384615, + "url": "https://github.com/google/brotli" }, "scipy": { - "credit": 0.0033000000000000004, + "credit": 0.00012565384615384652, "url": "https://www.scipy.org" + }, + "brotlicffi": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 0.00012565384615384652, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.012565384615384615, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 0.00012565384615384652, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.16335, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 0.00010209375000000062, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.002175382211538462, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.04231295102163461, + "url": "https://docs.pytest.org/en/latest/" + }, + "pyroma": { + "credit": 0.010209375, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.010209375, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.010209375, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.010209375, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.017692650540865384, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.010209375, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.012282663461538461, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.010209375, + "url": "https://pypi.org/project/olefile" + }, + "cffi": { + "credit": 0.01865959615384615, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.007483275540865385, + "url": "https://pypi.org/project/pytest-xdist" + }, + "numpy": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.007774831730769231, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.002818376502403846, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/virtualenv" + }, + "process-tests": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/enveda/RPath/badge.png b/_repos/github/enveda/RPath/badge.png index b109fce6..35141e7f 100644 Binary files a/_repos/github/enveda/RPath/badge.png and b/_repos/github/enveda/RPath/badge.png differ diff --git a/_repos/github/equib/pyEQUIB/README.md b/_repos/github/equib/pyEQUIB/README.md index 0db71d5f..d694922e 100644 --- a/_repos/github/equib/pyEQUIB/README.md +++ b/_repos/github/equib/pyEQUIB/README.md @@ -8,44 +8,52 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.825| +|pypi|[numpy](https://www.numpy.org)|0.397| +|pypi|[pytest](https://pypi.org/project/pytest)|0.073| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.072| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.072| +|pypi|[astropy](http://astropy.org)|0.044| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.013| +|pypi|[scipy](https://www.scipy.org)|0.011| +|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.01| +|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.01| +|pypi|[pytest-astropy](https://github.com/astropy/pytest-astropy)|0.01| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.01| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.01| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.01| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.01| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.01| +|pypi|[ipython](https://pypi.org/project/ipython)|0.01| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.01| +|pypi|[asdf](https://pypi.org/project/asdf)|0.01| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.01| +|pypi|[jplephem](https://pypi.org/project/jplephem)|0.01| +|pypi|[pytz](https://pypi.org/project/pytz)|0.01| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.01| +|pypi|[pandas](https://pypi.org/project/pandas)|0.01| +|pypi|[bleach](https://pypi.org/project/bleach)|0.01| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.01| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.01| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.01| +|pypi|[h5py](https://pypi.org/project/h5py)|0.01| +|pypi|[dask](https://pypi.org/project/dask)|0.01| +|pypi|[certifi](https://pypi.org/project/certifi)|0.01| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.01| |setup.py|github/equib/pyEQUIB|0.01| -|pypi|[scipy](https://www.scipy.org)|0.008| -|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.005| -|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.005| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.005| -|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.005| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.005| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.005| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.005| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.005| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| -|pypi|[pytest](https://pypi.org/project/pytest)|0.005| -|pypi|[ipython](https://pypi.org/project/ipython)|0.005| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.005| -|pypi|[asdf](https://pypi.org/project/asdf)|0.005| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.005| -|pypi|[jplephem](https://pypi.org/project/jplephem)|0.005| -|pypi|[pytz](https://pypi.org/project/pytz)|0.005| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.005| -|pypi|[pandas](https://pypi.org/project/pandas)|0.005| -|pypi|[bleach](https://pypi.org/project/bleach)|0.005| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.005| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.005| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.005| -|pypi|[h5py](https://pypi.org/project/h5py)|0.005| -|pypi|[dask](https://pypi.org/project/dask)|0.005| -|pypi|[certifi](https://pypi.org/project/certifi)|0.005| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.005| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.005| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.005| +|pypi|[tomli](https://pypi.org/project/tomli)|0.007| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.007| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.004| +|pypi|[objgraph](https://mg.pov.lt/objgraph/)|0.004| +|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.004| |pypi|[atomneb](https://atomneb.github.io/AtomNeb-py/)|0.003| -|pypi|[astropy](http://astropy.org)|0.002| +|pypi|[pyequib](https://equib.github.io/pyEQUIB/)|0.002| +|pypi|[filelock](https://pypi.org/project/filelock)|0.001| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.001| +|pypi|[psutil](https://pypi.org/project/psutil)|0.001| +|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.001| +|pypi|[execnet](https://pypi.org/project/execnet)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/equib/pyEQUIB/badge.png b/_repos/github/equib/pyEQUIB/badge.png index 93645af9..49165c33 100644 Binary files a/_repos/github/equib/pyEQUIB/badge.png and b/_repos/github/equib/pyEQUIB/badge.png differ diff --git a/_repos/github/equib/pyEQUIB/data.json b/_repos/github/equib/pyEQUIB/data.json index 93e187b3..96e6c75a 100644 --- a/_repos/github/equib/pyEQUIB/data.json +++ b/_repos/github/equib/pyEQUIB/data.json @@ -6,161 +6,185 @@ } }, "pypi": { - "numpy": { - "credit": 0.8246704714285715, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.007920471428571454, - "url": "https://www.scipy.org" + "pyequib": { + "credit": 0.002475000000000005, + "url": "https://equib.github.io/pyEQUIB/" }, "atomneb": { - "credit": 0.003300000000000025, + "credit": 0.00329175000000001, "url": "https://atomneb.github.io/AtomNeb-py/" }, "astropy": { - "credit": 0.00163350000000001, + "credit": 0.04412925000000001, "url": "http://astropy.org" }, + "pyerfa": { + "credit": 0.01294106785714286, + "url": "https://github.com/liberfa/pyerfa" + }, + "scipy": { + "credit": 0.01128281785714286, + "url": "https://www.scipy.org" + }, + "numpy": { + "credit": 0.3971971928571429, + "url": "https://www.numpy.org" + }, "sgp4": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://github.com/brandon-rhodes/python-sgp4" }, "skyfield": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "http://github.com/brandon-rhodes/python-skyfield/" }, "coverage": { - "credit": 4.620471428571412e-05, + "credit": 0.0035353607142857143, "url": "https://github.com/nedbat/coveragepy" }, "objgraph": { - "credit": 4.620471428571412e-05, + "credit": 0.0035353607142857143, "url": "https://mg.pov.lt/objgraph/" }, "pytest-xdist": { - "credit": 0.0046204714285714285, + "credit": 0.0035353607142857143, "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest-astropy": { - "credit": 0.0046204714285714285, - "url": "https://pypi.org/project/pytest-astropy" + "credit": 0.010466067857142856, + "url": "https://github.com/astropy/pytest-astropy" }, "pytest-astropy-header": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/pytest-astropy-header" }, "pytest-doctestplus": { - "credit": 0.0046204714285714285, + "credit": 0.07172231785714286, "url": "https://pypi.org/project/pytest-doctestplus" }, "Jinja2": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/Jinja2" }, "sphinx-changelog": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/sphinx-changelog" }, "sphinx-astropy": { - "credit": 0.0046204714285714285, + "credit": 0.07172231785714286, "url": "https://pypi.org/project/sphinx-astropy" }, "sphinx": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/typing-extensions" }, "pytest": { - "credit": 0.0046204714285714285, + "credit": 0.07287743571428572, "url": "https://pypi.org/project/pytest" }, "ipython": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/ipython" }, "bottleneck": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/bottleneck" }, "asdf": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/asdf" }, "mpmath": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/mpmath" }, "jplephem": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/jplephem" }, "pytz": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/pytz" }, "sortedcontainers": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/sortedcontainers" }, "pandas": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/pandas" }, "bleach": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/bleach" }, "html5lib": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/html5lib" }, "beautifulsoup4": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/beautifulsoup4" }, "pyarrow": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/pyarrow" }, "h5py": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/h5py" }, "dask": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/dask" }, "certifi": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/certifi" }, "matplotlib": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/matplotlib" }, "packaging": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/packaging" }, "PyYAML": { - "credit": 0.0046204714285714285, + "credit": 0.010466067857142856, "url": "https://pypi.org/project/PyYAML" }, - "pyerfa": { - "credit": 0.0046204714285714285, - "url": "https://pypi.org/project/pyerfa" - }, "tomli": { - "credit": 0.004574266714285714, + "credit": 0.006930707142857142, "url": "https://pypi.org/project/tomli" }, "graphviz": { - "credit": 0.004574266714285714, + "credit": 0.006930707142857142, "url": "https://pypi.org/project/graphviz" + }, + "filelock": { + "credit": 0.0011551178571428571, + "url": "https://pypi.org/project/filelock" + }, + "setproctitle": { + "credit": 0.0011551178571428571, + "url": "https://pypi.org/project/setproctitle" + }, + "psutil": { + "credit": 0.0011551178571428571, + "url": "https://pypi.org/project/psutil" + }, + "pytest-forked": { + "credit": 0.0011551178571428571, + "url": "https://pypi.org/project/pytest-forked" + }, + "execnet": { + "credit": 0.0011551178571428571, + "url": "https://pypi.org/project/execnet" } } } \ No newline at end of file diff --git a/_repos/github/era-urban/wrfpy/README.md b/_repos/github/era-urban/wrfpy/README.md index f65206ef..e601b35d 100644 --- a/_repos/github/era-urban/wrfpy/README.md +++ b/_repos/github/era-urban/wrfpy/README.md @@ -8,58 +8,62 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.148| -|pypi|[numpy](https://www.numpy.org)|0.102| -|pypi|[PyYAML](https://pyyaml.org/)|0.102| -|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.099| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.099| -|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.099| -|pypi|[Babel](http://babel.pocoo.org/)|0.049| -|pypi|[ppft](https://pypi.org/project/ppft)|0.025| -|pypi|[pox](https://pypi.org/project/pox)|0.025| -|pypi|[multiprocess](https://pypi.org/project/multiprocess)|0.025| -|pypi|[dill](https://pypi.org/project/dill)|0.025| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.019| -|pypi|[pytest](https://pypi.org/project/pytest)|0.019| -|pypi|[pretend](https://pypi.org/project/pretend)|0.016| -|pypi|[flaky](https://pypi.org/project/flaky)|0.016| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.016| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.016| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.116| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.104| +|pypi|[numpy](https://www.numpy.org)|0.085| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.073| +|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.073| +|pypi|[pox](https://github.com/uqfoundation/pox)|0.073| +|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.07| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.068| +|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.058| +|pypi|[objgraph](https://mg.pov.lt/objgraph/)|0.058| +|pypi|[Babel](https://pypi.org/project/Babel)|0.035| +|pypi|[pytest](https://pypi.org/project/pytest)|0.026| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.016| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.016| +|pypi|[ppft](https://github.com/uqfoundation/ppft)|0.015| +|pypi|[PyYAML](https://pyyaml.org/)|0.013| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|github/era-urban/wrfpy|0.01| -|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.004| -|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.003| -|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.003| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.003| -|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.003| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.003| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.003| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.003| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[ipython](https://pypi.org/project/ipython)|0.003| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.003| -|pypi|[asdf](https://pypi.org/project/asdf)|0.003| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.003| -|pypi|[jplephem](https://pypi.org/project/jplephem)|0.003| -|pypi|[pytz](https://pypi.org/project/pytz)|0.003| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.003| -|pypi|[pandas](https://pypi.org/project/pandas)|0.003| -|pypi|[bleach](https://pypi.org/project/bleach)|0.003| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.003| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.003| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.003| -|pypi|[h5py](https://pypi.org/project/h5py)|0.003| -|pypi|[dask](https://pypi.org/project/dask)|0.003| -|pypi|[certifi](https://pypi.org/project/certifi)|0.003| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.003| -|pypi|[scipy](https://pypi.org/project/scipy)|0.003| -|pypi|[packaging](https://pypi.org/project/packaging)|0.003| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.003| +|pypi|[pretend](https://pypi.org/project/pretend)|0.01| +|pypi|[flaky](https://pypi.org/project/flaky)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.002| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.002| +|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.002| +|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.002| +|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.002| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.002| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.002| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.002| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.002| +|pypi|[asdf](https://pypi.org/project/asdf)|0.002| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.002| +|pypi|[jplephem](https://pypi.org/project/jplephem)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| +|pypi|[pandas](https://pypi.org/project/pandas)|0.002| +|pypi|[bleach](https://pypi.org/project/bleach)|0.002| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.002| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.002| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.002| +|pypi|[h5py](https://pypi.org/project/h5py)|0.002| +|pypi|[dask](https://pypi.org/project/dask)|0.002| +|pypi|[certifi](https://pypi.org/project/certifi)|0.002| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.002| +|pypi|[scipy](https://pypi.org/project/scipy)|0.002| +|pypi|[packaging](https://pypi.org/project/packaging)|0.002| +|pypi|[tomli](https://pypi.org/project/tomli)|0.002| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.002| +|pypi|[WRFpy](https://github.com/ERA-URBAN/wrfpy)|0.001| +|pypi|[pathos](https://github.com/uqfoundation/pathos)|0.001| |pypi|[pyOpenSSL](https://pyopenssl.org/)|0.001| +|pypi|[cftime](https://pypi.org/project/cftime)|0.001| +|pypi|[cffi](http://cffi.readthedocs.org)|0.001| |pypi|[astropy](http://astropy.org)|0.001| -|pypi|[pathos](https://github.com/uqfoundation/pathos)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/era-urban/wrfpy/badge.png b/_repos/github/era-urban/wrfpy/badge.png index 0f4f74e8..ffdcf5fd 100644 Binary files a/_repos/github/era-urban/wrfpy/badge.png and b/_repos/github/era-urban/wrfpy/badge.png differ diff --git a/_repos/github/era-urban/wrfpy/data.json b/_repos/github/era-urban/wrfpy/data.json index 52c17ce2..11ee1023 100644 --- a/_repos/github/era-urban/wrfpy/data.json +++ b/_repos/github/era-urban/wrfpy/data.json @@ -6,216 +6,228 @@ } }, "pypi": { - "numpy": { - "credit": 0.10180028571428572, - "url": "https://www.numpy.org" + "WRFpy": { + "credit": 0.0005823529411764714, + "url": "https://github.com/ERA-URBAN/wrfpy" + }, + "astropy": { + "credit": 0.0005823529411764644, + "url": "http://astropy.org" + }, + "f90nml": { + "credit": 0.06976588235294118, + "url": "http://github.com/marshallward/f90nml" }, "Jinja2": { - "credit": 0.003790285714285719, + "credit": 0.002344885714285716, "url": "https://palletsprojects.com/p/jinja/" }, "MarkupSafe": { - "credit": 0.148005, + "credit": 0.10429999411764705, "url": "https://palletsprojects.com/p/markupsafe/" }, - "PyYAML": { - "credit": 0.10180028571428572, - "url": "https://pyyaml.org/" - }, - "f90nml": { - "credit": 0.099, - "url": "http://github.com/marshallward/f90nml" - }, - "python-dateutil": { - "credit": 0.099, - "url": "https://github.com/dateutil/dateutil" - }, - "astropy": { - "credit": 0.0009900000000000048, - "url": "http://astropy.org" + "netCDF4": { + "credit": 0.05823529411764706, + "url": "http://github.com/Unidata/netcdf4-python" }, "pathos": { - "credit": 0.0009900000000000048, + "credit": 0.0005823529411764714, "url": "https://github.com/uqfoundation/pathos" }, - "netCDF4": { - "credit": 0.099, - "url": "http://github.com/Unidata/netcdf4-python" - }, "pyOpenSSL": { - "credit": 0.0009900000000000186, + "credit": 0.0005823529411764714, "url": "https://pyopenssl.org/" }, - "Babel": { - "credit": 0.049005, - "url": "http://babel.pocoo.org/" + "cryptography": { + "credit": 0.06784411764705882, + "url": "https://github.com/pyca/cryptography" + }, + "dill": { + "credit": 0.07264852941176471, + "url": "https://github.com/uqfoundation/dill" + }, + "multiprocess": { + "credit": 0.07264852941176471, + "url": "https://github.com/uqfoundation/multiprocess" + }, + "pox": { + "credit": 0.07264852941176471, + "url": "https://github.com/uqfoundation/pox" + }, + "ppft": { + "credit": 0.014995588235294118, + "url": "https://github.com/uqfoundation/ppft" + }, + "pyerfa": { + "credit": 0.002229579831932774, + "url": "https://github.com/liberfa/pyerfa" + }, + "cftime": { + "credit": 0.0005823529411764714, + "url": "https://pypi.org/project/cftime" + }, + "cffi": { + "credit": 0.0005823529411764714, + "url": "http://cffi.readthedocs.org" + }, + "pycparser": { + "credit": 0.11588823529411765, + "url": "https://github.com/eliben/pycparser" + }, + "PyYAML": { + "credit": 0.013177815126050419, + "url": "https://pyyaml.org/" + }, + "numpy": { + "credit": 0.08524399159663865, + "url": "https://www.numpy.org" }, "sgp4": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://github.com/brandon-rhodes/python-sgp4" }, "skyfield": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "http://github.com/brandon-rhodes/python-skyfield/" }, "coverage": { - "credit": 2.8002857142857187e-05, + "credit": 1.6472268907563115e-05, "url": "https://github.com/nedbat/coveragepy" }, "objgraph": { - "credit": 2.8002857142857187e-05, + "credit": 0.057669413445378154, "url": "https://mg.pov.lt/objgraph/" }, "pytest-xdist": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest-astropy": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/pytest-astropy" }, "pytest-astropy-header": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/pytest-astropy-header" }, "pytest-doctestplus": { - "credit": 0.0028002857142857144, + "credit": 0.01606046218487395, "url": "https://pypi.org/project/pytest-doctestplus" }, "sphinx-changelog": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/sphinx-changelog" }, "sphinx-astropy": { - "credit": 0.0028002857142857144, + "credit": 0.01606046218487395, "url": "https://pypi.org/project/sphinx-astropy" }, "sphinx": { - "credit": 0.019135285714285712, + "credit": 0.011256050420168067, "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/typing-extensions" }, "pytest": { - "credit": 0.019135285714285712, + "credit": 0.025669285714285714, "url": "https://pypi.org/project/pytest" }, "ipython": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/ipython" }, "bottleneck": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/bottleneck" }, "asdf": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/asdf" }, "mpmath": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/mpmath" }, "jplephem": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/jplephem" }, "pytz": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/pytz" }, "sortedcontainers": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/sortedcontainers" }, "pandas": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/pandas" }, "bleach": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/bleach" }, "html5lib": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/html5lib" }, "beautifulsoup4": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/beautifulsoup4" }, "pyarrow": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/pyarrow" }, "h5py": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/h5py" }, "dask": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/dask" }, "certifi": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/certifi" }, "matplotlib": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/matplotlib" }, "scipy": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/scipy" }, "packaging": { - "credit": 0.0028002857142857144, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/packaging" }, - "pyerfa": { - "credit": 0.0028002857142857144, - "url": "https://pypi.org/project/pyerfa" - }, - "ppft": { - "credit": 0.0245025, - "url": "https://pypi.org/project/ppft" - }, - "pox": { - "credit": 0.0245025, - "url": "https://pypi.org/project/pox" - }, - "multiprocess": { - "credit": 0.0245025, - "url": "https://pypi.org/project/multiprocess" - }, - "dill": { - "credit": 0.0245025, - "url": "https://pypi.org/project/dill" + "Babel": { + "credit": 0.03453411176470588, + "url": "https://pypi.org/project/Babel" }, "pretend": { - "credit": 0.016335, + "credit": 0.009608823529411765, "url": "https://pypi.org/project/pretend" }, "flaky": { - "credit": 0.016335, + "credit": 0.009608823529411765, "url": "https://pypi.org/project/flaky" }, "sphinx-rtd-theme": { - "credit": 0.016335, + "credit": 0.009608823529411765, "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "cryptography": { - "credit": 0.016335, - "url": "https://pypi.org/project/cryptography" - }, "tomli": { - "credit": 0.002772282857142857, + "credit": 0.0016307546218487395, "url": "https://pypi.org/project/tomli" }, "graphviz": { - "credit": 0.002772282857142857, + "credit": 0.0016307546218487395, "url": "https://pypi.org/project/graphviz" } } diff --git a/_repos/github/erikbern/ann-benchmarks/badge.png b/_repos/github/erikbern/ann-benchmarks/badge.png index cbf25a58..793f395e 100644 Binary files a/_repos/github/erikbern/ann-benchmarks/badge.png and b/_repos/github/erikbern/ann-benchmarks/badge.png differ diff --git a/_repos/github/exafmm/exafmm-t/badge.png b/_repos/github/exafmm/exafmm-t/badge.png index 7045a4fd..d63c624f 100644 Binary files a/_repos/github/exafmm/exafmm-t/badge.png and b/_repos/github/exafmm/exafmm-t/badge.png differ diff --git a/_repos/github/fAndreuzzi/BisPy/README.md b/_repos/github/fAndreuzzi/BisPy/README.md index d61e92cb..4cf4a3b2 100644 --- a/_repos/github/fAndreuzzi/BisPy/README.md +++ b/_repos/github/fAndreuzzi/BisPy/README.md @@ -8,76 +8,39 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[llist](https://github.com/ajakubek/python-llist)|0.495| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.037| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.028| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.024| -|pypi|[pandas](https://pypi.org/project/pandas)|0.024| -|pypi|[numpy](https://pypi.org/project/numpy)|0.024| -|pypi|[pydot](https://github.com/pydot/pydot)|0.023| -|pypi|[pygraphviz](http://pygraphviz.github.io)|0.023| -|pypi|[lxml](https://lxml.de/)|0.023| -|pypi|[nb2plots](http://github.com/matthew-brett/nb2plots)|0.023| -|pypi|[sphinx-gallery](https://sphinx-gallery.github.io)|0.023| +|pypi|[llist](https://github.com/ajakubek/python-llist)|0.493| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.025| +|pypi|[pydot](https://pypi.org/project/pydot)|0.023| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.023| +|pypi|[lxml](https://pypi.org/project/lxml)|0.023| +|pypi|[texext](https://pypi.org/project/texext)|0.023| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.023| +|pypi|[pillow](https://pypi.org/project/pillow)|0.023| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.023| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.023| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.023| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.023| |pypi|[mypy](https://pypi.org/project/mypy)|0.023| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.023| |pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.023| |pypi|[black](https://pypi.org/project/black)|0.023| +|pypi|[pandas](https://pypi.org/project/pandas)|0.023| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.023| |pypi|[scipy](https://pypi.org/project/scipy)|0.023| -|pypi|[coverage](https://pypi.org/project/coverage)|0.016| -|pypi|[requests](https://pypi.org/project/requests)|0.013| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.01| +|pypi|[numpy](https://pypi.org/project/numpy)|0.023| |setup.py|github/fAndreuzzi/BisPy|0.01| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.007| +|pypi|[coverage](https://pypi.org/project/coverage)|0.01| +|pypi|[codecov](https://github.com/codecov/codecov-python)|0.008| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.008| +|pypi|[requests](https://pypi.org/project/requests)|0.008| |pypi|[networkx](https://networkx.org/)|0.005| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.004| -|pypi|[pydata-sphinx-theme](https://pydata-sphinx-theme.readthedocs.io/en/latest/)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| -|pypi|[hunter](https://pypi.org/project/hunter)|0.003| -|pypi|[fields](https://pypi.org/project/fields)|0.003| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[attrs](https://pypi.org/project/attrs)|0.001| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.001| -|pypi|[pyroma](https://pypi.org/project/pyroma)|0.001| -|pypi|[markdown2](https://pypi.org/project/markdown2)|0.001| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.001| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.001| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.001| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.001| -|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.001| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.001| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.001| -|pypi|[olefile](https://pypi.org/project/olefile)|0.001| -|pypi|[codecov](https://github.com/codecov/codecov-python)|0.001| -|pypi|[numpydoc](https://numpydoc.readthedocs.io)|0.001| -|pypi|[nox](https://pypi.org/project/nox)|0.001| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.001| -|pypi|[xarray](https://pypi.org/project/xarray)|0.001| -|pypi|[plotly](https://pypi.org/project/plotly)|0.001| -|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|0.001| -|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|0.001| -|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|0.001| -|pypi|[pytest-regressions](https://pypi.org/project/pytest-regressions)|0.001| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.001| -|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|0.001| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.001| -|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|0.001| +|pypi|[BisPy](https://github.com/fAndreuzzi/BisPy)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[six](https://pypi.org/project/six)|0.002| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| +|pypi|[hunter](https://pypi.org/project/hunter)|0.002| +|pypi|[fields](https://pypi.org/project/fields)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/fAndreuzzi/BisPy/badge.png b/_repos/github/fAndreuzzi/BisPy/badge.png index be7d69a9..dd3cbbdb 100644 Binary files a/_repos/github/fAndreuzzi/BisPy/badge.png and b/_repos/github/fAndreuzzi/BisPy/badge.png differ diff --git a/_repos/github/fAndreuzzi/BisPy/data.json b/_repos/github/fAndreuzzi/BisPy/data.json index 9dd2b990..c47c1da5 100644 --- a/_repos/github/fAndreuzzi/BisPy/data.json +++ b/_repos/github/fAndreuzzi/BisPy/data.json @@ -6,289 +6,133 @@ } }, "pypi": { - "networkx": { - "credit": 0.00495000000000001, - "url": "https://networkx.org/" + "BisPy": { + "credit": 0.003300000000000025, + "url": "https://github.com/fAndreuzzi/BisPy" }, "llist": { - "credit": 0.495, + "credit": 0.49335, "url": "https://github.com/ajakubek/python-llist" }, + "networkx": { + "credit": 0.004933500000000035, + "url": "https://networkx.org/" + }, "codecov": { - "credit": 0.001237807453416149, + "credit": 0.007856357142857142, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.007302176203416149, + "credit": 0.007856357142857142, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.01018997084627329, + "credit": 0.025183124999999997, "url": "https://docs.pytest.org/en/latest/" }, "pydot": { - "credit": 0.023335714285714286, - "url": "https://github.com/pydot/pydot" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.023335714285714286, - "url": "http://pygraphviz.github.io" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.023335714285714286, - "url": "https://lxml.de/" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.0002333571428571428, - "url": "http://github.com/matthew-brett/texext" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.023335714285714286, - "url": "http://github.com/matthew-brett/nb2plots" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/nb2plots" }, "pillow": { - "credit": 0.0002333571428571428, - "url": "https://python-pillow.org" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/pillow" }, "numpydoc": { - "credit": 0.001237807453416149, - "url": "https://numpydoc.readthedocs.io" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.023335714285714286, - "url": "https://sphinx-gallery.github.io" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.003246708074534162, - "url": "https://pydata-sphinx-theme.readthedocs.io/en/latest/" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.03710086875, - "url": "https://www.sphinx-doc.org/" + "credit": 0.02325792857142857, + "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.023335714285714286, + "credit": 0.02325792857142857, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.024340164596273292, + "credit": 0.02325792857142857, "url": "https://pypi.org/project/pre-commit" }, "pyupgrade": { - "credit": 0.023335714285714286, + "credit": 0.02325792857142857, "url": "https://pypi.org/project/pyupgrade" }, "black": { - "credit": 0.023335714285714286, + "credit": 0.02325792857142857, "url": "https://pypi.org/project/black" }, "pandas": { - "credit": 0.024340164596273292, + "credit": 0.02325792857142857, "url": "https://pypi.org/project/pandas" }, "matplotlib": { - "credit": 0.027956185714285715, + "credit": 0.02325792857142857, "url": "https://pypi.org/project/matplotlib" }, "scipy": { - "credit": 0.023335714285714286, + "credit": 0.02325792857142857, "url": "https://pypi.org/project/scipy" }, "numpy": { - "credit": 0.024340164596273292, + "credit": 0.02325792857142857, "url": "https://pypi.org/project/numpy" }, "coverage": { - "credit": 0.015882870535714286, + "credit": 0.009625982142857143, "url": "https://pypi.org/project/coverage" }, "requests": { - "credit": 0.012995075892857142, + "credit": 0.007700785714285714, "url": "https://pypi.org/project/requests" }, "virtualenv": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.010588580357142857, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/fields" - }, - "xmlschema": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/xmlschema" - }, - "pygments": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/mock" - }, - "hypothesis": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.0038922449534161494, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/attrs" - }, - "docutils": { - "credit": 0.007700785714285715, - "url": "https://pypi.org/project/docutils" - }, - "pytest-timeout": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pytest-timeout" - }, - "pyroma": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pyroma" - }, - "markdown2": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/markdown2" - }, - "defusedxml": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/defusedxml" - }, - "check-manifest": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/check-manifest" - }, - "sphinxext-opengraph": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinxext-opengraph" - }, - "sphinx-rtd-theme": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinx-rtd-theme" - }, - "sphinx-removed-in": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinx-removed-in" - }, - "sphinx-issues": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinx-issues" - }, - "sphinx-copybutton": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/sphinx-copybutton" - }, - "olefile": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/olefile" - }, - "Jinja2": { - "credit": 0.0046204714285714285, - "url": "https://pypi.org/project/Jinja2" - }, - "nox": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/nox" - }, - "pyyaml": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/pyyaml" - }, - "xarray": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/xarray" - }, - "plotly": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/plotly" - }, - "jupyter_sphinx": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/jupyter_sphinx" - }, - "sphinx-sitemap": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/sphinx-sitemap" - }, - "sphinxext-rediraffe": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/sphinxext-rediraffe" - }, - "pytest-regressions": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/pytest-regressions" - }, - "myst-parser": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/myst-parser" - }, - "docutils!=0.17.0": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/docutils!=0.17.0" - }, - "beautifulsoup4": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/beautifulsoup4" - }, - "sphinx<5,>=3.5.4": { - "credit": 0.0010044503105590063, - "url": "https://pypi.org/project/sphinx<5,>=3.5.4" } } } \ No newline at end of file diff --git a/_repos/github/fair-data/fairdatapoint-client/README.md b/_repos/github/fair-data/fairdatapoint-client/README.md index 25343cbb..3384ce39 100644 --- a/_repos/github/fair-data/fairdatapoint-client/README.md +++ b/_repos/github/fair-data/fairdatapoint-client/README.md @@ -8,100 +8,49 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[rdflib-jsonld](https://github.com/RDFLib/rdflib-jsonld)|0.33| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.047| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.047| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.047| -|pypi|[idna](https://pypi.org/project/idna)|0.047| -|pypi|[chardet](https://pypi.org/project/chardet)|0.047| -|pypi|[certifi](https://pypi.org/project/certifi)|0.047| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.047| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.034| -|pypi|[berkeleydb](https://www.jcea.es/programacion/pybsddb.htm)|0.027| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.027| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.027| -|pypi|[isodate](https://pypi.org/project/isodate)|0.027| -|pypi|[six](https://pypi.org/project/six)|0.017| -|pypi|[webencodings](https://pypi.org/project/webencodings)|0.013| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.013| -|pypi|[pbr](https://pypi.org/project/pbr)|0.013| +|pypi|[rdflib-jsonld](https://github.com/RDFLib/rdflib-jsonld)|0.272| +|pypi|[six](https://pypi.org/project/six)|0.248| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.048| +|pypi|[requests](https://pypi.org/project/requests)|0.032| +|pypi|[rdflib](https://github.com/RDFLib/rdflib)|0.027| +|pypi|[requests-mock](https://requests-mock.readthedocs.io/)|0.025| +|pypi|[ipython](https://ipython.org)|0.025| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.025| +|pypi|[isodate](https://github.com/gweis/isodate/)|0.023| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.022| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.021| +|pypi|[pytest-subtests](https://pypi.org/project/pytest-subtests)|0.02| +|pypi|[networkx](https://pypi.org/project/networkx)|0.02| +|pypi|[berkeleydb](https://pypi.org/project/berkeleydb)|0.02| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.02| +|pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|0.02| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.02| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.02| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.02| |setup.py|github/fair-data/fairdatapoint-client|0.01| -|pypi|[requests](https://requests.readthedocs.io)|0.006| -|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.009| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.006| +|pypi|[docopt](https://pypi.org/project/docopt)|0.006| |pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| |pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| |pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| |pypi|[hunter](https://pypi.org/project/hunter)|0.003| |pypi|[fields](https://pypi.org/project/fields)|0.003| -|pypi|[coverage](https://pypi.org/project/coverage)|0.003| -|pypi|[rdflib](https://github.com/RDFLib/rdflib)|0.003| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.003| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.003| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.003| -|pypi|[colorama](https://pypi.org/project/colorama)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.002| +|pypi|[fairdatapoint-client](https://github.com/fair-data/fairdatapoint-client)|0.002| |pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| |pypi|[pygments](https://pypi.org/project/pygments)|0.002| |pypi|[nose](https://pypi.org/project/nose)|0.002| |pypi|[mock](https://pypi.org/project/mock)|0.002| |pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| |pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| |pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| |pypi|[tomli](https://pypi.org/project/tomli)|0.002| |pypi|[py](https://pypi.org/project/py)|0.002| |pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| +|pypi|[packaging](https://pypi.org/project/packaging)|0.002| |pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| |pypi|[attrs](https://pypi.org/project/attrs)|0.002| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.001| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.001| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| -|pypi|[ipython](https://pypi.org/project/ipython)|0.001| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.001| -|pypi|[zipp](https://pypi.org/project/zipp)|0.001| -|pypi|[codecov](https://pypi.org/project/codecov)|0.001| -|pypi|[pydot](https://pypi.org/project/pydot)|0.001| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.001| -|pypi|[lxml](https://pypi.org/project/lxml)|0.001| -|pypi|[texext](https://pypi.org/project/texext)|0.001| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.001| -|pypi|[pillow](https://pypi.org/project/pillow)|0.001| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.001| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.001| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[pandas](https://pypi.org/project/pandas)|0.001| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.001| -|pypi|[scipy](https://pypi.org/project/scipy)|0.001| -|pypi|[numpy](https://pypi.org/project/numpy)|0.001| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.001| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.001| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.001| -|pypi|[isort](https://pypi.org/project/isort)|0.001| -|pypi|[flake8](https://pypi.org/project/flake8)|0.001| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.001| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.001| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.001| -|pypi|[babel](https://pypi.org/project/babel)|0.001| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.001| -|pypi|[docutils](https://pypi.org/project/docutils)|0.001| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.001| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.001| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.001| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.001| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.001| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.001| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.001| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/fair-data/fairdatapoint-client/badge.png b/_repos/github/fair-data/fairdatapoint-client/badge.png index c8750d0f..3e294b3b 100644 Binary files a/_repos/github/fair-data/fairdatapoint-client/badge.png and b/_repos/github/fair-data/fairdatapoint-client/badge.png differ diff --git a/_repos/github/fair-data/fairdatapoint-client/data.json b/_repos/github/fair-data/fairdatapoint-client/data.json index 1f16e432..5a1152c7 100644 --- a/_repos/github/fair-data/fairdatapoint-client/data.json +++ b/_repos/github/fair-data/fairdatapoint-client/data.json @@ -6,393 +6,181 @@ } }, "pypi": { + "fairdatapoint-client": { + "credit": 0.002475000000000005, + "url": "https://github.com/fair-data/fairdatapoint-client" + }, "rdflib": { - "credit": 0.003300000000000025, + "credit": 0.026977500000000005, "url": "https://github.com/RDFLib/rdflib" }, "rdflib-jsonld": { - "credit": 0.33, + "credit": 0.2720025, "url": "https://github.com/RDFLib/rdflib-jsonld" }, - "requests": { - "credit": 0.006062656875000025, - "url": "https://requests.readthedocs.io" + "isodate": { + "credit": 0.022893750000000004, + "url": "https://github.com/gweis/isodate/" }, - "pytest-subtests": { - "credit": 0.00027225000000000166, - "url": "https://github.com/pytest-dev/pytest-subtests" + "requests-mock": { + "credit": 0.0245025, + "url": "https://requests-mock.readthedocs.io/" + }, + "coveralls": { + "credit": 0.0002450249999999994, + "url": "http://github.com/TheKevJames/coveralls-python" }, "pytest-cov": { - "credit": 0.003053089285714287, + "credit": 0.020663775, "url": "https://github.com/pytest-dev/pytest-cov" }, + "pytest-datadir-ng": { + "credit": 0.0002450249999999994, + "url": "https://github.com/Tblue/pytest-datadir-ng" + }, "pytest": { - "credit": 0.03445304303571429, + "credit": 0.047953434375, "url": "https://docs.pytest.org/en/latest/" }, + "ipython": { + "credit": 0.0245025, + "url": "https://ipython.org" + }, + "Sphinx": { + "credit": 0.0245025, + "url": "https://pypi.org/project/Sphinx" + }, + "requests": { + "credit": 0.0320829609375, + "url": "https://pypi.org/project/requests" + }, + "pytest-subtests": { + "credit": 0.02041875, + "url": "https://pypi.org/project/pytest-subtests" + }, "networkx": { - "credit": 0.00027225000000000166, - "url": "https://networkx.org/" + "credit": 0.02041875, + "url": "https://pypi.org/project/networkx" }, "berkeleydb": { - "credit": 0.027225, - "url": "https://www.jcea.es/programacion/pybsddb.htm" + "credit": 0.02041875, + "url": "https://pypi.org/project/berkeleydb" }, "html5lib": { - "credit": 0.00027225000000000166, - "url": "https://github.com/html5lib/html5lib-python" + "credit": 0.02041875, + "url": "https://pypi.org/project/html5lib" }, "sphinxcontrib-apidoc": { - "credit": 0.00027225000000000166, - "url": "https://github.com/sphinx-contrib/apidoc" + "credit": 0.02041875, + "url": "https://pypi.org/project/sphinxcontrib-apidoc" }, "sphinx": { - "credit": 0.003053089285714287, - "url": "https://www.sphinx-doc.org/" + "credit": 0.02041875, + "url": "https://pypi.org/project/sphinx" }, "importlib-metadata": { - "credit": 0.0030349068750000017, - "url": "https://github.com/python/importlib_metadata" + "credit": 0.021934842187499998, + "url": "https://pypi.org/project/importlib-metadata" }, "setuptools": { - "credit": 0.027225, - "url": "https://github.com/pypa/setuptools" + "credit": 0.02041875, + "url": "https://pypi.org/project/setuptools" }, "pyparsing": { - "credit": 0.027225, + "credit": 0.02041875, "url": "https://pypi.org/project/pyparsing" }, - "isodate": { - "credit": 0.027225, - "url": "https://pypi.org/project/isodate" - }, - "win-inet-pton": { - "credit": 0.04667142857142857, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.04667142857142857, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.04667142857142857, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.04667142857142857, - "url": "https://pypi.org/project/idna" + "six": { + "credit": 0.248057184375, + "url": "https://pypi.org/project/six" }, - "chardet": { - "credit": 0.04667142857142857, - "url": "https://pypi.org/project/chardet" + "PyYAML": { + "credit": 0.00606436875, + "url": "https://pypi.org/project/PyYAML" }, - "certifi": { - "credit": 0.04667142857142857, - "url": "https://pypi.org/project/certifi" + "docopt": { + "credit": 0.00606436875, + "url": "https://pypi.org/project/docopt" }, - "urllib3": { - "credit": 0.04667142857142857, - "url": "https://pypi.org/project/urllib3" + "coverage": { + "credit": 0.009096553125, + "url": "https://pypi.org/project/coverage" }, "virtualenv": { - "credit": 0.0033690937499999997, + "credit": 0.003032184375, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.0033690937499999997, + "credit": 0.003032184375, "url": "https://pypi.org/project/pytest-xdist" }, - "six": { - "credit": 0.01684546875, - "url": "https://pypi.org/project/six" - }, "process-tests": { - "credit": 0.0033690937499999997, + "credit": 0.003032184375, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.0033690937499999997, + "credit": 0.003032184375, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.0033690937499999997, + "credit": 0.003032184375, "url": "https://pypi.org/project/fields" }, - "coverage": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/coverage" - }, "xmlschema": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/xmlschema" }, "pygments": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.002762656875, + "credit": 0.0015160921875, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/atomicwrites" }, "tomli": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.004260031875, + "credit": 0.0015160921875, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.0016845468749999998, + "credit": 0.0015160921875, "url": "https://pypi.org/project/attrs" - }, - "codecov": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/codecov" - }, - "pydot": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/pydot" - }, - "pygraphviz": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/pygraphviz" - }, - "lxml": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lxml" - }, - "texext": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/texext" - }, - "nb2plots": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/nb2plots" - }, - "pillow": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/pillow" - }, - "numpydoc": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/numpydoc" - }, - "sphinx-gallery": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/sphinx-gallery" - }, - "pydata-sphinx-theme": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/pydata-sphinx-theme" - }, - "mypy": { - "credit": 0.0023615742857142855, - "url": "https://pypi.org/project/mypy" - }, - "pre-commit": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/pre-commit" - }, - "pyupgrade": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/pyupgrade" - }, - "black": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/black" - }, - "pandas": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/pandas" - }, - "matplotlib": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/matplotlib" - }, - "scipy": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/scipy" - }, - "numpy": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/numpy" - }, - "webencodings": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/webencodings" - }, - "Sphinx": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/Sphinx" - }, - "pbr": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/pbr" - }, - "types-requests": { - "credit": 0.00107811, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.00107811, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.00107811, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.00107811, - "url": "https://pypi.org/project/isort" - }, - "flake8": { - "credit": 0.00107811, - "url": "https://pypi.org/project/flake8" - }, - "sphinxcontrib-websupport": { - "credit": 0.00107811, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "imagesize": { - "credit": 0.00107811, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.00107811, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.00107811, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.00107811, - "url": "https://pypi.org/project/snowballstemmer" - }, - "docutils": { - "credit": 0.00107811, - "url": "https://pypi.org/project/docutils" - }, - "Pygments": { - "credit": 0.00107811, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.00107811, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.00107811, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.00107811, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.00107811, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.00107811, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.00107811, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.00107811, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "importlib-resources": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/importlib-resources" - }, - "pytest-mypy": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/pytest-mypy" - }, - "pytest-black": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/pytest-black" - }, - "pytest-perf": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/pytest-perf" - }, - "flufl.flake8": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/flufl.flake8" - }, - "pyfakefs": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/pyfakefs" - }, - "pytest-enabler": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-flake8": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "ipython": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/ipython" - }, - "rst.linker": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "typing-extensions": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/typing-extensions" - }, - "zipp": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/zipp" } } } \ No newline at end of file diff --git a/_repos/github/fair-software/fairtally/badge.png b/_repos/github/fair-software/fairtally/badge.png index 2291e408..6695196f 100644 Binary files a/_repos/github/fair-software/fairtally/badge.png and b/_repos/github/fair-software/fairtally/badge.png differ diff --git a/_repos/github/fair-software/howfairis/badge.png b/_repos/github/fair-software/howfairis/badge.png index f402adbd..3a15f21c 100644 Binary files a/_repos/github/fair-software/howfairis/badge.png and b/_repos/github/fair-software/howfairis/badge.png differ diff --git a/_repos/github/fakedrtom/oncogemini/badge.png b/_repos/github/fakedrtom/oncogemini/badge.png index c71dd80f..e092b2c5 100644 Binary files a/_repos/github/fakedrtom/oncogemini/badge.png and b/_repos/github/fakedrtom/oncogemini/badge.png differ diff --git a/_repos/github/felixchenier/kineticstoolkit/README.md b/_repos/github/felixchenier/kineticstoolkit/README.md index a835204a..0e8f8c2b 100644 --- a/_repos/github/felixchenier/kineticstoolkit/README.md +++ b/_repos/github/felixchenier/kineticstoolkit/README.md @@ -8,75 +8,77 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.174| -|pypi|[matplotlib](https://matplotlib.org)|0.148| -|pypi|[limitedinteraction](https://felixchenier.uqam.ca/limitedinteraction/)|0.141| -|pypi|[PyQt5-Qt5](https://www.riverbankcomputing.com/software/pyqt/)|0.07| -|pypi|[PyQt5-sip](https://www.riverbankcomputing.com/software/sip/)|0.07| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.025| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.025| -|pypi|[requests](https://pypi.org/project/requests)|0.019| -|pypi|[colorama](https://pypi.org/project/colorama)|0.019| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.018| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.018| -|pypi|[wheel](https://pypi.org/project/wheel)|0.018| -|pypi|[twine](https://pypi.org/project/twine)|0.018| -|pypi|[py-make](https://pypi.org/project/py-make)|0.018| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.018| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.014| -|pypi|[scipy](https://www.scipy.org)|0.01| +|pypi|[PyQt5-Qt5](https://www.riverbankcomputing.com/software/pyqt/)|0.106| +|pypi|[PyQt5-sip](https://www.riverbankcomputing.com/software/sip/)|0.106| +|pypi|[matplotlib](https://matplotlib.org)|0.084| +|pypi|[limitedinteraction](https://felixchenier.uqam.ca/limitedinteraction/)|0.078| +|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.071| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.071| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.07| +|pypi|[six](https://pypi.org/project/six)|0.07| +|pypi|[attrs](https://pypi.org/project/attrs)|0.026| +|pypi|[typing_extensions](https://pypi.org/project/typing_extensions)|0.023| +|pypi|[exceptiongroup](https://pypi.org/project/exceptiongroup)|0.023| +|pypi|[scipy](https://pypi.org/project/scipy)|0.013| +|pypi|[requests](https://pypi.org/project/requests)|0.011| |setup.py|github/felixchenier/kineticstoolkit|0.01| -|pypi|[pandas](https://pandas.pydata.org)|0.009| -|pypi|[black](https://github.com/psf/black)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.007| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.007| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.007| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.007| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.007| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.007| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.007| +|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|0.008| +|pypi|[requests-cache](https://github.com/reclosedev/requests-cache)|0.008| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.008| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.008| +|pypi|[pandas](https://pypi.org/project/pandas)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.007| |pypi|[sphinx](https://pypi.org/project/sphinx)|0.007| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.007| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.007| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.007| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.007| -|pypi|[joblib](https://pypi.org/project/joblib)|0.007| -|pypi|[psutil](https://pypi.org/project/psutil)|0.005| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| -|pypi|[lxml](https://pypi.org/project/lxml)|0.001| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.001| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.001| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.001| +|pypi|[xattr](https://pypi.org/project/xattr)|0.005| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.005| +|pypi|[munkres](https://pypi.org/project/munkres)|0.005| +|pypi|[brotli](https://pypi.org/project/brotli)|0.005| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.005| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| +|pypi|[lz4](https://pypi.org/project/lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[lxml](https://pypi.org/project/lxml)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| +|pypi|[pytest](https://pypi.org/project/pytest)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.004| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[cattrs](https://github.com/python-attrs/cattrs)|0.004| +|pypi|[url-normalize](https://github.com/niksite/url-normalize)|0.004| +|pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|0.003| +|pypi|[sphinx-panels](https://pypi.org/project/sphinx-panels)|0.003| +|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.003| +|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.003| +|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|0.003| +|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.003| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.003| +|pypi|[linkify-it-py](https://pypi.org/project/linkify-it-py)|0.003| +|pypi|[furo](https://pypi.org/project/furo)|0.003| +|pypi|[ujson](https://pypi.org/project/ujson)|0.003| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.003| +|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.003| +|pypi|[bson](https://pypi.org/project/bson)|0.003| +|pypi|[redis](https://pypi.org/project/redis)|0.003| +|pypi|[pymongo](https://pypi.org/project/pymongo)|0.003| +|pypi|[botocore](https://pypi.org/project/botocore)|0.003| +|pypi|[boto3](https://pypi.org/project/boto3)|0.003| +|pypi|[platformdirs](https://pypi.org/project/platformdirs)|0.003| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.003| +|pypi|[kineticstoolkit](https://kineticstoolkit.uqam.ca)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/felixchenier/kineticstoolkit/badge.png b/_repos/github/felixchenier/kineticstoolkit/badge.png index e488e3b0..e53aa8de 100644 Binary files a/_repos/github/felixchenier/kineticstoolkit/badge.png and b/_repos/github/felixchenier/kineticstoolkit/badge.png differ diff --git a/_repos/github/felixchenier/kineticstoolkit/data.json b/_repos/github/felixchenier/kineticstoolkit/data.json index 1bd8c106..b7bc5de1 100644 --- a/_repos/github/felixchenier/kineticstoolkit/data.json +++ b/_repos/github/felixchenier/kineticstoolkit/data.json @@ -6,289 +6,285 @@ } }, "pypi": { - "pandas": { - "credit": 0.009365096938775524, - "url": "https://pandas.pydata.org" - }, - "pyqt5": { - "credit": 0.001414285714285729, - "url": "https://www.riverbankcomputing.com/software/pyqt/" + "kineticstoolkit": { + "credit": 0.0007071428571428645, + "url": "https://kineticstoolkit.uqam.ca" }, - "scipy": { - "credit": 0.010281857142857157, - "url": "https://www.scipy.org" + "limitedinteraction": { + "credit": 0.07849285714285714, + "url": "https://felixchenier.uqam.ca/limitedinteraction/" }, "matplotlib": { - "credit": 0.14809591836734695, + "credit": 0.08387802197802198, "url": "https://matplotlib.org" }, - "scikit-learn": { - "credit": 0.001414285714285729, - "url": "http://scikit-learn.org" - }, - "limitedinteraction": { - "credit": 0.14142857142857143, - "url": "https://felixchenier.uqam.ca/limitedinteraction/" + "pyqt5": { + "credit": 0.008485714285714293, + "url": "https://www.riverbankcomputing.com/software/pyqt/" }, - "tqdm": { - "credit": 0.001414285714285729, - "url": "https://tqdm.github.io" + "requests-cache": { + "credit": 0.008485714285714293, + "url": "https://github.com/reclosedev/requests-cache" }, - "pytest-xdist": { - "credit": 0.0002333571428571428, - "url": "https://github.com/pytest-dev/pytest-xdist" + "appdirs": { + "credit": 0.07071428571428572, + "url": "http://github.com/ActiveState/appdirs" }, - "pytest": { - "credit": 0.014234785714285712, - "url": "https://docs.pytest.org/en/latest/" + "cattrs": { + "credit": 0.0035074285714285784, + "url": "https://github.com/python-attrs/cattrs" }, - "hypothesis": { - "credit": 0.001677254464285714, - "url": "https://hypothesis.works" + "cycler": { + "credit": 0.07071428571428572, + "url": "https://github.com/matplotlib/cycler" }, - "numpy": { - "credit": 0.17350103571428574, - "url": "https://www.numpy.org" + "fonttools": { + "credit": 0.0007071428571428645, + "url": "http://github.com/fonttools/fonttools" }, - "pytz": { - "credit": 0.02461917857142857, - "url": "http://pythonhosted.org/pytz" + "kiwisolver": { + "credit": 0.0007071428571428645, + "url": "https://github.com/nucleic/kiwi" }, - "python-dateutil": { - "credit": 0.02461917857142857, - "url": "https://github.com/dateutil/dateutil" + "pillow": { + "credit": 0.0007071428571428645, + "url": "https://python-pillow.org" }, "PyQt5-Qt5": { - "credit": 0.07000714285714285, + "credit": 0.10571785714285714, "url": "https://www.riverbankcomputing.com/software/pyqt/" }, "PyQt5-sip": { - "credit": 0.07000714285714285, + "credit": 0.10571785714285714, "url": "https://www.riverbankcomputing.com/software/sip/" }, - "pyamg": { - "credit": 6.667346938775409e-05, - "url": "https://github.com/pyamg/pyamg" + "url-normalize": { + "credit": 0.0035074285714285784, + "url": "https://github.com/niksite/url-normalize" }, - "mypy": { - "credit": 6.667346938775409e-05, - "url": "http://www.mypy-lang.org/" + "requests": { + "credit": 0.010578857142857142, + "url": "https://pypi.org/project/requests" }, - "black": { - "credit": 0.007950811224489795, - "url": "https://github.com/psf/black" + "tqdm": { + "credit": 0.007778571428571428, + "url": "https://pypi.org/project/tqdm" }, - "flake8": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/flake8" + "scikit-learn": { + "credit": 0.007778571428571428, + "url": "https://pypi.org/project/scikit-learn" }, - "pytest-cov": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/pytest-cov" + "scipy": { + "credit": 0.013163736263736263, + "url": "https://pypi.org/project/scipy" }, - "sphinxext-opengraph": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinxext-opengraph" + "pandas": { + "credit": 0.007778571428571428, + "url": "https://pypi.org/project/pandas" }, - "sphinx-prompt": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinx-prompt" + "sphinxcontrib-apidoc": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/sphinxcontrib-apidoc" }, - "Pillow": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/Pillow" + "sphinx-panels": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/sphinx-panels" }, - "numpydoc": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/numpydoc" + "sphinx-notfound-page": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/sphinx-notfound-page" }, - "sphinx-gallery": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinx-gallery" + "sphinx-inline-tabs": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/sphinx-inline-tabs" }, - "sphinx": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/sphinx" + "sphinx-copybutton": { + "credit": 0.007175732142857142, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "seaborn": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/seaborn" + "sphinx-automodapi": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/sphinx-automodapi" }, - "scikit-image": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/scikit-image" + "sphinx-autodoc-typehints": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/sphinx-autodoc-typehints" }, - "memory-profiler": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/memory-profiler" + "sphinx": { + "credit": 0.007175732142857142, + "url": "https://pypi.org/project/sphinx" }, - "threadpoolctl": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/threadpoolctl" + "myst-parser": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/myst-parser" }, - "joblib": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/joblib" + "linkify-it-py": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/linkify-it-py" }, - "requests": { - "credit": 0.018945683035714284, - "url": "https://pypi.org/project/requests" + "furo": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/furo" }, - "slack-sdk": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/slack-sdk" + "ujson": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/ujson" }, - "ipywidgets": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/ipywidgets" + "pyyaml": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/pyyaml" }, - "wheel": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/wheel" + "itsdangerous": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/itsdangerous" }, - "twine": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/twine" + "bson": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/bson" }, - "py-make": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/py-make" + "redis": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/redis" }, - "importlib-resources": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/importlib-resources" + "pymongo": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/pymongo" }, - "colorama": { - "credit": 0.018945683035714284, - "url": "https://pypi.org/project/colorama" + "botocore": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/botocore" }, - "filelock": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/filelock" + "boto3": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/boto3" }, - "setproctitle": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/setproctitle" + "platformdirs": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/platformdirs" }, - "psutil": { - "credit": 0.004950505102040816, - "url": "https://pypi.org/project/psutil" + "attrs": { + "credit": 0.026135999999999996, + "url": "https://pypi.org/project/attrs" }, - "pytest-forked": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/pytest-forked" + "urllib3": { + "credit": 0.002800285714285714, + "url": "https://pypi.org/project/urllib3" }, - "execnet": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/execnet" + "typing_extensions": { + "credit": 0.023335714285714283, + "url": "https://pypi.org/project/typing_extensions" }, - "xmlschema": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/xmlschema" + "exceptiongroup": { + "credit": 0.023335714285714283, + "url": "https://pypi.org/project/exceptiongroup" }, - "pygments": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pygments" + "xattr": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/xattr" }, - "nose": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/nose" + "unicodedata2": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/unicodedata2" }, - "mock": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/mock" + "munkres": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/munkres" }, - "argcomplete": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/argcomplete" + "brotli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotli" }, - "atomicwrites": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/atomicwrites" + "brotlicffi": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotlicffi" }, - "importlib-metadata": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/importlib-metadata" + "skia-pathops": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/skia-pathops" }, - "tomli": { - "credit": 0.0025440095663265307, - "url": "https://pypi.org/project/tomli" + "sympy": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/sympy" }, - "py": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/py" + "lz4": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/lz4" }, - "pluggy": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pluggy" + "zopfli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/zopfli" }, - "packaging": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/packaging" + "lxml": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/lxml" }, - "iniconfig": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/iniconfig" + "fs": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/fs" }, - "attrs": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/attrs" + "typing-extensions": { + "credit": 0.07000714285714285, + "url": "https://pypi.org/project/typing-extensions" }, - "tzdata": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/tzdata" + "pytest-timeout": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pytest-timeout" }, - "backports.zoneinfo": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/backports.zoneinfo" + "pytest-cov": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pytest-cov" }, - "rich": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/rich" + "pytest": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pytest" }, - "redis": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/redis" + "pyroma": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pyroma" }, - "libcst": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/libcst" + "packaging": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/packaging" }, - "lark-parser": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lark-parser" + "markdown2": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/markdown2" }, - "dpcontracts": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/dpcontracts" + "defusedxml": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/defusedxml" }, - "django": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/django" + "coverage": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/coverage" }, - "click": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/click" + "check-manifest": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/check-manifest" }, - "sortedcontainers": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/sortedcontainers" + "sphinxext-opengraph": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "lxml": { - "credit": 0.0011001122448979592, - "url": "https://pypi.org/project/lxml" + "sphinx-rtd-theme": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "typed-ast": { - "credit": 0.0011001122448979592, - "url": "https://pypi.org/project/typed-ast" + "sphinx-removed-in": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "mypy-extensions": { - "credit": 0.0011001122448979592, - "url": "https://pypi.org/project/mypy-extensions" + "sphinx-issues": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-issues" }, - "typing-extensions": { - "credit": 0.0011001122448979592, - "url": "https://pypi.org/project/typing-extensions" + "olefile": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/olefile" + }, + "six": { + "credit": 0.07000714285714285, + "url": "https://pypi.org/project/six" } } } \ No newline at end of file diff --git a/_repos/github/felixchenier/kineticstoolkit/setup.py b/_repos/github/felixchenier/kineticstoolkit/setup.py index aa5f940f..245a9d12 100644 --- a/_repos/github/felixchenier/kineticstoolkit/setup.py +++ b/_repos/github/felixchenier/kineticstoolkit/setup.py @@ -32,12 +32,14 @@ 'scipy', 'matplotlib', 'scikit-learn', - 'limitedinteraction', + 'limitedinteraction', # For UI 'tqdm', + 'requests', # To download documentation examples + 'requests-cache', # To check for warning messages on import # 'ffmpeg', # Facultative, for matplotlib html5 animations ], classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', diff --git a/_repos/github/fermisurfaces/IFermi/README.md b/_repos/github/fermisurfaces/IFermi/README.md index b37c3761..953cdd47 100644 --- a/_repos/github/fermisurfaces/IFermi/README.md +++ b/_repos/github/fermisurfaces/IFermi/README.md @@ -8,105 +8,41 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.236| -|pypi|[matplotlib](https://matplotlib.org)|0.071| -|pypi|[ruamel.yaml](https://pypi.org/project/ruamel.yaml)|0.064| -|pypi|[BoltzTraP2](https://www.boltztrap.org)|0.062| -|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.061| -|pypi|[scipy](https://www.scipy.org)|0.051| -|pypi|[six](https://pypi.org/project/six)|0.031| -|pypi|[tenacity](https://pypi.org/project/tenacity)|0.031| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.031| -|pypi|[colorama](https://pypi.org/project/colorama)|0.031| -|pypi|[dask](https://pypi.org/project/dask)|0.022| -|pypi|[numpy-stl](https://pypi.org/project/numpy-stl)|0.02| -|pypi|[wmi](https://pypi.org/project/wmi)|0.01| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.01| -|pypi|[enum34](https://pypi.org/project/enum34)|0.01| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.01| -|pypi|[mock](https://pypi.org/project/mock)|0.01| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.01| +|pypi|[ifermi](https://github.com/fermisurfaces/IFermi)|0.029| +|pypi|[pymatgen](https://pypi.org/project/pymatgen)|0.029| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.029| +|pypi|[monty](https://pypi.org/project/monty)|0.029| +|pypi|[networkx](https://pypi.org/project/networkx)|0.029| +|pypi|[spglib](https://pypi.org/project/spglib)|0.029| +|pypi|[BoltzTraP2](https://pypi.org/project/BoltzTraP2)|0.029| +|pypi|[meshcut](https://pypi.org/project/meshcut)|0.029| +|pypi|[psutil](https://pypi.org/project/psutil)|0.029| +|pypi|[pyfftw](https://pypi.org/project/pyfftw)|0.029| +|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.029| +|pypi|[tabulate](https://pypi.org/project/tabulate)|0.029| +|pypi|[trimesh](https://pypi.org/project/trimesh)|0.029| +|pypi|[cycler](https://pypi.org/project/cycler)|0.029| +|pypi|[fonttools](https://pypi.org/project/fonttools)|0.029| +|pypi|[imageio](https://pypi.org/project/imageio)|0.029| +|pypi|[kiwisolver](https://pypi.org/project/kiwisolver)|0.029| +|pypi|[palettable](https://pypi.org/project/palettable)|0.029| +|pypi|[pillow](https://pypi.org/project/pillow)|0.029| +|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.029| +|pypi|[ruamel.yaml](https://pypi.org/project/ruamel.yaml)|0.029| +|pypi|[tifffile](https://pypi.org/project/tifffile)|0.029| +|pypi|[uncertainties](https://pypi.org/project/uncertainties)|0.029| +|pypi|[ase](https://pypi.org/project/ase)|0.029| +|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.029| +|pypi|[numpy-stl](https://pypi.org/project/numpy-stl)|0.029| +|pypi|[pybtex](https://pypi.org/project/pybtex)|0.029| +|pypi|[sympy](https://pypi.org/project/sympy)|0.029| +|pypi|[latexcodec](https://pypi.org/project/latexcodec)|0.029| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.029| +|pypi|[python-utils](https://pypi.org/project/python-utils)|0.029| +|pypi|[ruamel.yaml.clib](https://pypi.org/project/ruamel.yaml.clib)|0.029| +|pypi|[cftime](https://pypi.org/project/cftime)|0.029| +|pypi|[future](https://pypi.org/project/future)|0.029| |setup.py|github/fermisurfaces/IFermi|0.01| -|pypi|[pandas](https://pypi.org/project/pandas)|0.008| -|pypi|[networkx](https://networkx.org/)|0.008| -|pypi|[pytest](https://pypi.org/project/pytest)|0.007| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.007| -|pypi|[pillow](https://pypi.org/project/pillow)|0.007| -|pypi|[plotly](https://plotly.com/python/)|0.006| -|pypi|[sympy](https://pypi.org/project/sympy)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.005| -|pypi|[lxml](https://pypi.org/project/lxml)|0.005| -|pypi|[codecov](https://pypi.org/project/codecov)|0.005| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.005| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.005| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| -|pypi|[monty](https://github.com/materialsvirtuallab/monty)|0.004| -|pypi|[spglib](http://spglib.github.io/spglib/)|0.004| -|pypi|[tabulate](https://github.com/astanin/python-tabulate)|0.004| -|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|0.003| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.003| -|pypi|[tqdm](https://pypi.org/project/tqdm)|0.003| -|pypi|[pybtex](https://pypi.org/project/pybtex)|0.003| -|pypi|[uncertainties](https://pypi.org/project/uncertainties)|0.003| -|pypi|[palettable](https://pypi.org/project/palettable)|0.003| -|pypi|[pydot](https://pypi.org/project/pydot)|0.003| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.003| -|pypi|[texext](https://pypi.org/project/texext)|0.003| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.003| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.003| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.003| -|pypi|[black](https://pypi.org/project/black)|0.003| -|pypi|[scikit-image](https://scikit-image.org)|0.003| -|pypi|[psutil](https://github.com/giampaolo/psutil)|0.003| -|pypi|[pyinstrument](https://pypi.org/project/pyinstrument)|0.002| -|pypi|[coveralls](https://pypi.org/project/coveralls)|0.002| -|pypi|[ezdxf](https://pypi.org/project/ezdxf)|0.002| -|pypi|[rtree](https://pypi.org/project/rtree)|0.002| -|pypi|[glooey](https://pypi.org/project/glooey)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.002| -|pypi|[pyglet](https://pypi.org/project/pyglet)|0.002| -|pypi|[colorlog](https://pypi.org/project/colorlog)|0.002| -|pypi|[pycollada](https://pypi.org/project/pycollada)|0.002| -|pypi|[msgpack](https://pypi.org/project/msgpack)|0.002| -|pypi|[triangle](https://pypi.org/project/triangle)|0.002| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| -|pypi|[python-fcl](https://pypi.org/project/python-fcl)|0.002| -|pypi|[svg.path](https://pypi.org/project/svg.path)|0.002| -|pypi|[meshio](https://pypi.org/project/meshio)|0.002| -|pypi|[mapbox-earcut](https://pypi.org/project/mapbox-earcut)|0.002| -|pypi|[xxhash](https://pypi.org/project/xxhash)|0.002| -|pypi|[shapely](https://pypi.org/project/shapely)|0.002| -|pypi|[xatlas](https://pypi.org/project/xatlas)|0.002| -|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|0.002| -|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|0.002| -|pypi|[flake8](https://pypi.org/project/flake8)|0.002| -|pypi|[asv](https://pypi.org/project/asv)|0.002| -|pypi|[qtpy](https://pypi.org/project/qtpy)|0.002| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.002| -|pypi|[astropy](https://pypi.org/project/astropy)|0.002| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.002| -|pypi|[kaleido](https://pypi.org/project/kaleido)|0.002| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.002| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.002| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.002| -|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.002| -|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.002| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.002| -|pypi|[pooch](https://pypi.org/project/pooch)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.002| -|pypi|[tifffile](https://pypi.org/project/tifffile)|0.002| -|pypi|[imageio](https://pypi.org/project/imageio)|0.002| -|pypi|[wslink](https://pypi.org/project/wslink)|0.001| -|pypi|[pymatgen](https://pymatgen.org)|0.001| -|pypi|[trimesh](https://github.com/mikedh/trimesh)|0.001| -|pypi|[meshcut](https://github.com/julienr/meshcut)|0.001| -|pypi|[pyfftw](https://github.com/pyFFTW/pyFFTW)|0.001| -|pypi|[click](https://palletsprojects.com/p/click/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/fermisurfaces/IFermi/badge.png b/_repos/github/fermisurfaces/IFermi/badge.png index e980c55e..eef59261 100644 Binary files a/_repos/github/fermisurfaces/IFermi/badge.png and b/_repos/github/fermisurfaces/IFermi/badge.png differ diff --git a/_repos/github/fermisurfaces/IFermi/data.json b/_repos/github/fermisurfaces/IFermi/data.json index d5c3b885..2c6b0ffe 100644 --- a/_repos/github/fermisurfaces/IFermi/data.json +++ b/_repos/github/fermisurfaces/IFermi/data.json @@ -6,401 +6,141 @@ } }, "pypi": { - "numpy": { - "credit": 0.23615608842165897, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.05132341407955373, - "url": "https://www.scipy.org" - }, - "matplotlib": { - "credit": 0.07083008035714286, - "url": "https://matplotlib.org" + "ifermi": { + "credit": 0.02911764705882353, + "url": "https://github.com/fermisurfaces/IFermi" }, "pymatgen": { - "credit": 0.0006187500000000012, - "url": "https://pymatgen.org" - }, - "BoltzTraP2": { - "credit": 0.061875, - "url": "https://www.boltztrap.org" - }, - "trimesh": { - "credit": 0.0006187500000000012, - "url": "https://github.com/mikedh/trimesh" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/pymatgen" }, - "meshcut": { - "credit": 0.0006187500000000012, - "url": "https://github.com/julienr/meshcut" - }, - "scikit-image": { - "credit": 0.0025947580645161302, - "url": "https://scikit-image.org" + "matplotlib": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/matplotlib" }, "monty": { - "credit": 0.003842763157894738, - "url": "https://github.com/materialsvirtuallab/monty" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/monty" + }, + "networkx": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/networkx" }, "spglib": { - "credit": 0.003842763157894738, - "url": "http://spglib.github.io/spglib/" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/spglib" }, - "plotly": { - "credit": 0.005592941729323309, - "url": "https://plotly.com/python/" + "BoltzTraP2": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/BoltzTraP2" }, - "pyfftw": { - "credit": 0.0006187500000000012, - "url": "https://github.com/pyFFTW/pyFFTW" + "meshcut": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/meshcut" }, "psutil": { - "credit": 0.0025947580645161302, - "url": "https://github.com/giampaolo/psutil" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/psutil" }, - "click": { - "credit": 0.0006187500000000012, - "url": "https://palletsprojects.com/p/click/" + "pyfftw": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/pyfftw" }, - "networkx": { - "credit": 0.007568949793839439, - "url": "https://networkx.org/" + "scikit-image": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/scikit-image" }, "tabulate": { - "credit": 0.003842763157894738, - "url": "https://github.com/astanin/python-tabulate" - }, - "vtk": { - "credit": 3.224013157894761e-05, - "url": "https://vtk.org" - }, - "ase": { - "credit": 0.0032240131578947367, - "url": "https://wiki.fysik.dtu.dk/ase" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/tabulate" }, - "netcdf4": { - "credit": 0.0032240131578947367, - "url": "https://pypi.org/project/netcdf4" + "trimesh": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/trimesh" }, - "tqdm": { - "credit": 0.0032240131578947367, - "url": "https://pypi.org/project/tqdm" + "cycler": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/cycler" }, - "pybtex": { - "credit": 0.0032240131578947367, - "url": "https://pypi.org/project/pybtex" - }, - "uncertainties": { - "credit": 0.0032240131578947367, - "url": "https://pypi.org/project/uncertainties" + "fonttools": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/fonttools" }, - "pandas": { - "credit": 0.007891156015037593, - "url": "https://pypi.org/project/pandas" + "imageio": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/imageio" }, - "sympy": { - "credit": 0.005200021222410866, - "url": "https://pypi.org/project/sympy" + "kiwisolver": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/kiwisolver" }, "palettable": { - "credit": 0.0032240131578947367, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/palettable" }, - "ruamel.yaml": { - "credit": 0.06448026315789473, - "url": "https://pypi.org/project/ruamel.yaml" - }, - "requests": { - "credit": 0.005200021222410866, - "url": "https://pypi.org/project/requests" - }, - "pytest": { - "credit": 0.006643150921658986, - "url": "https://pypi.org/project/pytest" - }, - "pyinstrument": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/pyinstrument" - }, - "coveralls": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/coveralls" - }, - "ezdxf": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/ezdxf" - }, - "pytest-cov": { - "credit": 0.006643150921658986, - "url": "https://pypi.org/project/pytest-cov" - }, - "rtree": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/rtree" - }, - "glooey": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/glooey" - }, - "chardet": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/chardet" - }, - "jsonschema": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/jsonschema" - }, - "pyglet": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/pyglet" - }, - "colorlog": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/colorlog" - }, - "pycollada": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/pycollada" - }, - "lxml": { - "credit": 0.004892972350230415, - "url": "https://pypi.org/project/lxml" - }, - "msgpack": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/msgpack" - }, - "triangle": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/triangle" - }, - "setuptools": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/setuptools" - }, - "python-fcl": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/python-fcl" - }, - "svg.path": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/svg.path" - }, "pillow": { - "credit": 0.006643150921658986, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/pillow" }, - "meshio": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/meshio" - }, - "mapbox-earcut": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/mapbox-earcut" - }, - "xxhash": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/xxhash" - }, - "shapely": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/shapely" - }, - "xatlas": { - "credit": 0.001976008064516129, - "url": "https://pypi.org/project/xatlas" - }, - "numpy-stl": { - "credit": 0.02041875, - "url": "https://pypi.org/project/numpy-stl" - }, - "pytest-faulthandler": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/pytest-faulthandler" - }, - "pytest-localserver": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/pytest-localserver" - }, - "flake8": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/flake8" - }, - "codecov": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/codecov" - }, - "asv": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/asv" - }, - "qtpy": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/qtpy" - }, - "pyamg": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/pyamg" - }, - "astropy": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/astropy" - }, - "SimpleITK": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/SimpleITK" - }, - "kaleido": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/kaleido" - }, - "ipywidgets": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/ipywidgets" - }, - "myst-parser": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/myst-parser" - }, - "seaborn": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/seaborn" - }, - "cloudpickle": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/cloudpickle" - }, - "dask": { - "credit": 0.022168928571428572, - "url": "https://pypi.org/project/dask" - }, - "scikit-learn": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/scikit-learn" - }, - "pytest-runner": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/pytest-runner" - }, - "sphinx-copybutton": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/sphinx-copybutton" - }, - "numpydoc": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/numpydoc" - }, - "sphinx-gallery": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinx-gallery" - }, - "sphinx": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinx" - }, - "pooch": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/pooch" - }, - "packaging": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/packaging" - }, "PyWavelets": { - "credit": 0.0017501785714285714, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/PyWavelets" }, + "ruamel.yaml": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/ruamel.yaml" + }, "tifffile": { - "credit": 0.0017501785714285714, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/tifffile" }, - "imageio": { - "credit": 0.0017501785714285714, - "url": "https://pypi.org/project/imageio" - }, - "six": { - "credit": 0.030628125, - "url": "https://pypi.org/project/six" - }, - "tenacity": { - "credit": 0.030628125, - "url": "https://pypi.org/project/tenacity" - }, - "wmi": { - "credit": 0.010209375, - "url": "https://pypi.org/project/wmi" - }, - "pywin32": { - "credit": 0.010209375, - "url": "https://pypi.org/project/pywin32" - }, - "enum34": { - "credit": 0.010209375, - "url": "https://pypi.org/project/enum34" - }, - "unittest2": { - "credit": 0.010209375, - "url": "https://pypi.org/project/unittest2" - }, - "mock": { - "credit": 0.010209375, - "url": "https://pypi.org/project/mock" - }, - "ipaddress": { - "credit": 0.010209375, - "url": "https://pypi.org/project/ipaddress" - }, - "importlib-metadata": { - "credit": 0.030628125, - "url": "https://pypi.org/project/importlib-metadata" - }, - "colorama": { - "credit": 0.030628125, - "url": "https://pypi.org/project/colorama" + "uncertainties": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/uncertainties" }, - "pydot": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/pydot" + "ase": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/ase" }, - "pygraphviz": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/pygraphviz" + "netCDF4": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/netCDF4" }, - "texext": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/texext" + "numpy-stl": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/numpy-stl" }, - "nb2plots": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/nb2plots" + "pybtex": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/pybtex" }, - "pydata-sphinx-theme": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/pydata-sphinx-theme" + "sympy": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/sympy" }, - "mypy": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/mypy" + "latexcodec": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/latexcodec" }, - "pre-commit": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/pre-commit" + "mpmath": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/mpmath" }, - "pyupgrade": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/pyupgrade" + "python-utils": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/python-utils" }, - "black": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/black" + "ruamel.yaml.clib": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/ruamel.yaml.clib" }, - "wcwidth": { - "credit": 0.06125625, - "url": "https://pypi.org/project/wcwidth" + "cftime": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/cftime" }, - "wslink": { - "credit": 0.0010639243421052631, - "url": "https://pypi.org/project/wslink" + "future": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/future" } } } \ No newline at end of file diff --git a/_repos/github/fitbenchmarking/fitbenchmarking/README.md b/_repos/github/fitbenchmarking/fitbenchmarking/README.md index 05c0ccab..015450c5 100644 --- a/_repos/github/fitbenchmarking/fitbenchmarking/README.md +++ b/_repos/github/fitbenchmarking/fitbenchmarking/README.md @@ -8,63 +8,70 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.268| -|pypi|[docutils](http://docutils.sourceforge.net/)|0.124| -|pypi|[matplotlib](https://matplotlib.org)|0.124| -|pypi|[lxml](https://lxml.de/)|0.124| -|pypi|[Babel](http://babel.pocoo.org/)|0.061| -|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.061| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.022| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.022| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.017| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.01| -|pypi|[types-backports](https://github.com/python/typeshed)|0.01| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.01| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.01| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.01| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.01| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.01| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.01| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.01| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.01| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.135| +|pypi|[matplotlib](https://matplotlib.org)|0.101| +|pypi|[lxml](https://lxml.de/)|0.101| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.094| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.09| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.089| +|pypi|[Babel](https://pypi.org/project/Babel)|0.045| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.013| +|pypi|[pytest](https://pypi.org/project/pytest)|0.013| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.013| +|pypi|[scipy](https://pypi.org/project/scipy)|0.011| |setup.py|github/fitbenchmarking/fitbenchmarking|0.01| -|pypi|[filelock](https://pypi.org/project/filelock)|0.006| -|pypi|[attrs](https://pypi.org/project/attrs)|0.005| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.003| -|pypi|[execnet](https://pypi.org/project/execnet)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| -|pypi|[pandas](https://pandas.pydata.org)|0.002| -|pypi|[hypothesis](https://hypothesis.works)|0.001| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.001| -|pypi|[configparser](https://github.com/jaraco/configparser/)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.007| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.007| +|pypi|[types-backports](https://pypi.org/project/types-backports)|0.007| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.007| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.007| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.007| +|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.007| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.007| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.007| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.007| +|pypi|[munkres](https://pypi.org/project/munkres)|0.007| +|pypi|[brotli](https://pypi.org/project/brotli)|0.007| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.007| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.007| +|pypi|[sympy](https://pypi.org/project/sympy)|0.007| +|pypi|[lz4](https://pypi.org/project/lz4)|0.007| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.007| +|pypi|[fs](https://pypi.org/project/fs)|0.007| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[coverage](https://pypi.org/project/coverage)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[configparser](https://github.com/jaraco/configparser/)|0.005| +|pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.005| +|pypi|[numdifftools](https://github.com/pbrod/numdifftools)|0.004| +|pypi|[iminuit](http://github.com/scikit-hep/iminuit)|0.004| +|pypi|[dill](https://pypi.org/project/dill)|0.004| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.004| +|pypi|[h5py](https://pypi.org/project/h5py)|0.004| +|pypi|[levmar](https://pypi.org/project/levmar)|0.004| +|pypi|[gradient-free-optimizers](https://pypi.org/project/gradient-free-optimizers)|0.004| +|pypi|[bumps](https://pypi.org/project/bumps)|0.004| +|pypi|[tinycc](https://pypi.org/project/tinycc)|0.004| +|pypi|[sasmodels](https://pypi.org/project/sasmodels)|0.004| +|pypi|[dfogn](https://pypi.org/project/dfogn)|0.004| +|pypi|[DFO-LS](https://pypi.org/project/DFO-LS)|0.004| +|pypi|[pandas](https://pypi.org/project/pandas)|0.004| +|pypi|[numpy](https://pypi.org/project/numpy)|0.004| +|pypi|[FitBenchmarking](http://fitbenchmarking.com)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/fitbenchmarking/fitbenchmarking/badge.png b/_repos/github/fitbenchmarking/fitbenchmarking/badge.png index ec379ce3..35e8602d 100644 Binary files a/_repos/github/fitbenchmarking/fitbenchmarking/badge.png and b/_repos/github/fitbenchmarking/fitbenchmarking/badge.png differ diff --git a/_repos/github/fitbenchmarking/fitbenchmarking/data.json b/_repos/github/fitbenchmarking/fitbenchmarking/data.json index 5f6bcc18..d516ea26 100644 --- a/_repos/github/fitbenchmarking/fitbenchmarking/data.json +++ b/_repos/github/fitbenchmarking/fitbenchmarking/data.json @@ -6,237 +6,257 @@ } }, "pypi": { - "docutils": { - "credit": 0.12375, - "url": "http://docutils.sourceforge.net/" - }, - "numpy": { - "credit": 0.26780428125, - "url": "https://www.numpy.org" + "FitBenchmarking": { + "credit": 0.000899999999999998, + "url": "http://fitbenchmarking.com" }, "matplotlib": { - "credit": 0.12375, + "credit": 0.10130884615384615, "url": "https://matplotlib.org" }, - "scipy": { - "credit": 0.0012375000000000025, - "url": "https://www.scipy.org" + "configparser": { + "credit": 0.005354999999999998, + "url": "https://github.com/jaraco/configparser/" + }, + "docutils": { + "credit": 0.094455, + "url": "http://docutils.sourceforge.net/" + }, + "jinja2": { + "credit": 0.005354999999999998, + "url": "https://palletsprojects.com/p/jinja/" }, "lxml": { - "credit": 0.12375, + "credit": 0.10130884615384615, "url": "https://lxml.de/" }, - "pandas": { - "credit": 0.0023605312500000024, - "url": "https://pandas.pydata.org" + "cycler": { + "credit": 0.09, + "url": "https://github.com/matplotlib/cycler" }, - "jinja2": { - "credit": 0.0012375000000000025, - "url": "https://palletsprojects.com/p/jinja/" + "fonttools": { + "credit": 0.000899999999999998, + "url": "http://github.com/fonttools/fonttools" }, - "configparser": { - "credit": 0.0012375000000000025, - "url": "https://github.com/jaraco/configparser/" + "kiwisolver": { + "credit": 0.000899999999999998, + "url": "https://github.com/nucleic/kiwi" }, - "pytest-xdist": { - "credit": 0.00020418750000000124, - "url": "https://github.com/pytest-dev/pytest-xdist" + "MarkupSafe": { + "credit": 0.13455, + "url": "https://palletsprojects.com/p/markupsafe/" }, - "pytest": { - "credit": 0.0174325078125, - "url": "https://docs.pytest.org/en/latest/" + "pillow": { + "credit": 0.000899999999999998, + "url": "https://python-pillow.org" }, - "hypothesis": { - "credit": 0.0014675976562500011, - "url": "https://hypothesis.works" + "numdifftools": { + "credit": 0.004455, + "url": "https://github.com/pbrod/numdifftools" }, - "pytz": { - "credit": 0.02154178125, - "url": "http://pythonhosted.org/pytz" + "iminuit": { + "credit": 0.004455, + "url": "http://github.com/scikit-hep/iminuit" }, - "python-dateutil": { - "credit": 0.02154178125, - "url": "https://github.com/dateutil/dateutil" + "dill": { + "credit": 0.004455, + "url": "https://pypi.org/project/dill" }, - "Babel": { - "credit": 0.06125625, - "url": "http://babel.pocoo.org/" + "pyyaml": { + "credit": 0.004455, + "url": "https://pypi.org/project/pyyaml" }, - "MarkupSafe": { - "credit": 0.06125625, - "url": "https://palletsprojects.com/p/markupsafe/" + "h5py": { + "credit": 0.004455, + "url": "https://pypi.org/project/h5py" + }, + "levmar": { + "credit": 0.004455, + "url": "https://pypi.org/project/levmar" + }, + "gradient-free-optimizers": { + "credit": 0.004455, + "url": "https://pypi.org/project/gradient-free-optimizers" + }, + "bumps": { + "credit": 0.004455, + "url": "https://pypi.org/project/bumps" + }, + "tinycc": { + "credit": 0.004455, + "url": "https://pypi.org/project/tinycc" + }, + "sasmodels": { + "credit": 0.004455, + "url": "https://pypi.org/project/sasmodels" + }, + "dfogn": { + "credit": 0.004455, + "url": "https://pypi.org/project/dfogn" + }, + "DFO-LS": { + "credit": 0.004455, + "url": "https://pypi.org/project/DFO-LS" + }, + "pandas": { + "credit": 0.004455, + "url": "https://pypi.org/project/pandas" + }, + "scipy": { + "credit": 0.011308846153846154, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.004455, + "url": "https://pypi.org/project/numpy" }, "pytest-mypy": { - "credit": 0.00010209375000000062, - "url": "https://github.com/dbader/pytest-mypy" + "credit": 0.007425, + "url": "https://pypi.org/project/pytest-mypy" }, "pytest-black": { - "credit": 0.010209375, - "url": "https://github.com/shopkeep/pytest-black" + "credit": 0.007425, + "url": "https://pypi.org/project/pytest-black" }, "types-backports": { - "credit": 0.010209375, - "url": "https://github.com/python/typeshed" + "credit": 0.007425, + "url": "https://pypi.org/project/types-backports" }, "pytest-enabler": { - "credit": 0.010209375, - "url": "https://github.com/jaraco/pytest-enabler" + "credit": 0.007425, + "url": "https://pypi.org/project/pytest-enabler" }, "pytest-cov": { - "credit": 0.010209375, + "credit": 0.01299375, "url": "https://pypi.org/project/pytest-cov" }, "pytest-flake8": { - "credit": 0.010209375, + "credit": 0.007425, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.010209375, + "credit": 0.007425, "url": "https://pypi.org/project/pytest-checkdocs" }, + "pytest": { + "credit": 0.01299375, + "url": "https://pypi.org/project/pytest" + }, "jaraco.tidelift": { - "credit": 0.010209375, + "credit": 0.007425, "url": "https://pypi.org/project/jaraco.tidelift" }, "rst.linker": { - "credit": 0.010209375, + "credit": 0.007425, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.010209375, + "credit": 0.007425, "url": "https://pypi.org/project/jaraco.packaging" }, "sphinx": { - "credit": 0.010209375, + "credit": 0.01299375, "url": "https://pypi.org/project/sphinx" }, - "filelock": { - "credit": 0.0058959140624999995, - "url": "https://pypi.org/project/filelock" - }, - "setproctitle": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/setproctitle" - }, - "psutil": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/psutil" - }, - "pytest-forked": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/pytest-forked" + "Babel": { + "credit": 0.04455, + "url": "https://pypi.org/project/Babel" }, - "execnet": { - "credit": 0.0033690937499999997, - "url": "https://pypi.org/project/execnet" + "xattr": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/xattr" }, - "xmlschema": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/xmlschema" + "unicodedata2": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/unicodedata2" }, - "requests": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/requests" + "munkres": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/munkres" }, - "pygments": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/pygments" + "brotli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotli" }, - "nose": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/nose" + "brotlicffi": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotlicffi" }, - "mock": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/mock" + "skia-pathops": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/skia-pathops" }, - "argcomplete": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/argcomplete" + "sympy": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/sympy" }, - "colorama": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/colorama" + "lz4": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lz4" }, - "atomicwrites": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/atomicwrites" + "zopfli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/zopfli" }, - "importlib-metadata": { - "credit": 0.0023864414062499998, - "url": "https://pypi.org/project/importlib-metadata" + "fs": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/fs" }, - "tomli": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/tomli" + "typing-extensions": { + "credit": 0.0891, + "url": "https://pypi.org/project/typing-extensions" }, - "py": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/py" + "pytest-timeout": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pytest-timeout" }, - "pluggy": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.0012634101562499999, + "credit": 0.00556875, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.0012634101562499999, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.004913261718749999, - "url": "https://pypi.org/project/attrs" - }, - "tzdata": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/rich" + "markdown2": { + "credit": 0.00556875, + "url": "https://pypi.org/project/markdown2" }, - "redis": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/redis" + "defusedxml": { + "credit": 0.00556875, + "url": "https://pypi.org/project/defusedxml" }, - "libcst": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/libcst" + "coverage": { + "credit": 0.00556875, + "url": "https://pypi.org/project/coverage" }, - "lark-parser": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/lark-parser" + "check-manifest": { + "credit": 0.00556875, + "url": "https://pypi.org/project/check-manifest" }, - "dpcontracts": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/dpcontracts" + "sphinxext-opengraph": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "django": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/django" + "sphinx-rtd-theme": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "click": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/click" + "sphinx-removed-in": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "black": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/black" + "sphinx-issues": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-issues" }, - "sortedcontainers": { - "credit": 0.00112303125, - "url": "https://pypi.org/project/sortedcontainers" + "sphinx-copybutton": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "mypy": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/mypy" + "olefile": { + "credit": 0.00556875, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/fruzsinaagocs/oscode/README.md b/_repos/github/fruzsinaagocs/oscode/README.md index 055e6f87..69bbd299 100644 --- a/_repos/github/fruzsinaagocs/oscode/README.md +++ b/_repos/github/fruzsinaagocs/oscode/README.md @@ -8,62 +8,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.66| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.036| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.034| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.034| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.025| -|pypi|[flake8](https://pypi.org/project/flake8)|0.012| |setup.py|github/fruzsinaagocs/oscode|0.01| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.009| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.009| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.009| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.009| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.009| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.009| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.009| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.008| -|pypi|[attrs](https://pypi.org/project/attrs)|0.008| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.007| -|pypi|[mock](https://pypi.org/project/mock)|0.007| -|pypi|[mypy](https://pypi.org/project/mypy)|0.006| -|pypi|[filelock](https://pypi.org/project/filelock)|0.006| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.005| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.005| -|pypi|[pep517](https://pypi.org/project/pep517)|0.004| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.003| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.003| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| -|pypi|[six](https://pypi.org/project/six)|0.003| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| -|pypi|[hunter](https://pypi.org/project/hunter)|0.003| -|pypi|[fields](https://pypi.org/project/fields)|0.003| -|pypi|[coverage](https://pypi.org/project/coverage)|0.003| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.002| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.002| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.002| -|pypi|[toml](https://pypi.org/project/toml)|0.002| -|pypi|[docutils](https://pypi.org/project/docutils)|0.002| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.002| -|pypi|[path](https://pypi.org/project/path)|0.002| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.002| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| -|pypi|[keyring](https://pypi.org/project/keyring)|0.002| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.002| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[colorama](https://pypi.org/project/colorama)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| +|pypi|[pyoscode](https://github.com/fruzsinaagocs/oscode)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/fruzsinaagocs/oscode/badge.png b/_repos/github/fruzsinaagocs/oscode/badge.png index 7c630ed4..d2d1e9bc 100644 Binary files a/_repos/github/fruzsinaagocs/oscode/badge.png and b/_repos/github/fruzsinaagocs/oscode/badge.png differ diff --git a/_repos/github/fruzsinaagocs/oscode/data.json b/_repos/github/fruzsinaagocs/oscode/data.json index 7a5db7cd..66b39633 100644 --- a/_repos/github/fruzsinaagocs/oscode/data.json +++ b/_repos/github/fruzsinaagocs/oscode/data.json @@ -6,233 +6,9 @@ } }, "pypi": { - "numpy": { - "credit": 0.66, - "url": "https://www.numpy.org" - }, - "pytest-runner": { - "credit": 0.003300000000000025, - "url": "https://github.com/pytest-dev/pytest-runner/" - }, - "pytest-mypy": { - "credit": 0.00931454010989011, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-black": { - "credit": 0.034194001648351645, - "url": "https://github.com/shopkeep/pytest-black" - }, - "types-setuptools": { - "credit": 0.02513076923076923, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.00025130769230769304, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.00931454010989011, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.00931454010989011, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.00931454010989011, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.00931454010989011, - "url": "https://github.com/jaraco/pytest-checkdocs" - }, - "pytest": { - "credit": 0.036059961263736263, - "url": "https://docs.pytest.org/en/latest/" - }, - "jaraco.tidelift": { - "credit": 0.00025130769230769304, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.00931454010989011, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.00931454010989011, - "url": "https://github.com/jaraco/jaraco.packaging" - }, - "sphinx": { - "credit": 0.034194001648351645, - "url": "https://www.sphinx-doc.org/" - }, - "mypy": { - "credit": 0.0062198653846153844, - "url": "https://pypi.org/project/mypy" - }, - "filelock": { - "credit": 0.0062198653846153844, - "url": "https://pypi.org/project/filelock" - }, - "attrs": { - "credit": 0.007774831730769231, - "url": "https://pypi.org/project/attrs" - }, - "mock": { - "credit": 0.006530858653846153, - "url": "https://pypi.org/project/mock" - }, - "virtualenv": { - "credit": 0.008085825, - "url": "https://pypi.org/project/virtualenv" - }, - "pytest-shutil": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.0031099326923076922, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.0031099326923076922, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.0031099326923076922, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.0031099326923076922, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.0031099326923076922, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.0031099326923076922, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.012439730769230769, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.003435735164835165, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.007182463598901099, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pep517": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/docutils" - }, - "xmlschema": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/nose" - }, - "hypothesis": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.0015549663461538461, - "url": "https://pypi.org/project/iniconfig" - }, - "importlib-resources": { - "credit": 0.0016586307692307693, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.0016586307692307693, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.0016586307692307693, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.0016586307692307693, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/types-python-dateutil" - }, - "path": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/path" - }, - "python-dateutil": { - "credit": 0.0017771043956043956, - "url": "https://pypi.org/project/python-dateutil" + "pyoscode": { + "credit": 0.0099, + "url": "https://github.com/fruzsinaagocs/oscode" } } } \ No newline at end of file diff --git a/_repos/github/ggciag/mandyoc/badge.png b/_repos/github/ggciag/mandyoc/badge.png index b0abfcc4..2dfa7aa3 100644 Binary files a/_repos/github/ggciag/mandyoc/badge.png and b/_repos/github/ggciag/mandyoc/badge.png differ diff --git a/_repos/github/ghislainv/forestatrisk/badge.png b/_repos/github/ghislainv/forestatrisk/badge.png index f0fc09e7..bf43a596 100644 Binary files a/_repos/github/ghislainv/forestatrisk/badge.png and b/_repos/github/ghislainv/forestatrisk/badge.png differ diff --git a/_repos/github/girder/viime/README.md b/_repos/github/girder/viime/README.md index e7c1d3ac..17e0516c 100644 --- a/_repos/github/girder/viime/README.md +++ b/_repos/github/girder/viime/README.md @@ -8,92 +8,114 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[Flask](https://pypi.org/project/Flask)|0.085| -|pypi|[alembic](https://alembic.sqlalchemy.org)|0.082| -|pypi|[click](https://pypi.org/project/click)|0.079| -|pypi|[dogpile.cache](https://github.com/sqlalchemy/dogpile.cache)|0.062| -|pypi|[matplotlib](https://matplotlib.org)|0.062| -|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.062| -|pypi|[watchdog](https://pypi.org/project/watchdog)|0.061| -|pypi|[et-xmlfile](https://pypi.org/project/et-xmlfile)|0.061| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.033| -|pypi|[Six](https://pypi.org/project/Six)|0.031| -|pypi|[pytest](https://pypi.org/project/pytest)|0.022| -|pypi|[Flask-SQLAlchemy](https://pypi.org/project/Flask-SQLAlchemy)|0.02| -|pypi|[pytz](https://pypi.org/project/pytz)|0.017| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.012| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.011| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.01| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.01| -|pypi|[numpy](https://pypi.org/project/numpy)|0.01| +|pypi|[et-xmlfile](https://foss.heptapod.net/openpyxl/et_xmlfile)|0.07| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.06| +|pypi|[SQLAlchemy](https://www.sqlalchemy.org)|0.054| +|pypi|[pbr](https://docs.openstack.org/pbr/latest/)|0.053| +|pypi|[Flask](https://pypi.org/project/Flask)|0.048| +|pypi|[alembic](https://alembic.sqlalchemy.org)|0.047| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.04| +|pypi|[click](https://pypi.org/project/click)|0.04| +|pypi|[matplotlib](https://matplotlib.org)|0.038| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.037| +|pypi|[dogpile.cache](https://github.com/sqlalchemy/dogpile.cache)|0.035| +|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.035| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.035| +|pypi|[greenlet](https://greenlet.readthedocs.io/)|0.035| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.035| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.03| +|pypi|[Babel](https://pypi.org/project/Babel)|0.026| +|pypi|[Six](https://pypi.org/project/Six)|0.018| +|pypi|[pytest](https://pypi.org/project/pytest)|0.017| +|pypi|[Flask-SQLAlchemy](https://pypi.org/project/Flask-SQLAlchemy)|0.012| |setup.py|github/girder/viime|0.01| -|pypi|[flake8](https://pypi.org/project/flake8)|0.01| -|pypi|[mypy](https://pypi.org/project/mypy)|0.009| -|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.009| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.009| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.009| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.009| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.009| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.009| -|pypi|[idna](https://pypi.org/project/idna)|0.009| -|pypi|[chardet](https://pypi.org/project/chardet)|0.009| -|pypi|[certifi](https://pypi.org/project/certifi)|0.009| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.009| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.007| -|pypi|[tox](https://pypi.org/project/tox)|0.007| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.007| -|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.007| -|pypi|[packaging](https://pypi.org/project/packaging)|0.007| -|pypi|[autodocsumm](https://pypi.org/project/autodocsumm)|0.004| -|pypi|[sphinx-version-warning](https://pypi.org/project/sphinx-version-warning)|0.004| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[simplejson](https://pypi.org/project/simplejson)|0.004| -|pypi|[marshmallow](https://github.com/marshmallow-code/marshmallow)|0.004| -|pypi|[furo](https://pypi.org/project/furo)|0.003| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.003| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.003| -|pypi|[falcon](https://pypi.org/project/falcon)|0.003| -|pypi|[pyramid](https://pypi.org/project/pyramid)|0.003| -|pypi|[tornado](https://pypi.org/project/tornado)|0.003| -|pypi|[bottle](https://pypi.org/project/bottle)|0.003| -|pypi|[Django](https://pypi.org/project/Django)|0.003| -|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|0.003| -|pypi|[webtest-aiohttp](https://pypi.org/project/webtest-aiohttp)|0.003| -|pypi|[webtest](https://pypi.org/project/webtest)|0.003| -|pypi|[furl](https://pypi.org/project/furl)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[pyodbc](https://pypi.org/project/pyodbc)|0.002| -|pypi|[isort](https://pypi.org/project/isort)|0.002| -|pypi|[pymysql](https://pypi.org/project/pymysql)|0.002| -|pypi|[pg8000](https://pypi.org/project/pg8000)|0.002| -|pypi|[psycopg2cffi](https://pypi.org/project/psycopg2cffi)|0.002| -|pypi|[psycopg2](https://pypi.org/project/psycopg2)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[flexmock](https://pypi.org/project/flexmock)|0.002| -|pypi|[docutils](https://pypi.org/project/docutils)|0.002| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.002| -|pypi|[phonenumbers](https://pypi.org/project/phonenumbers)|0.002| -|pypi|[pendulum](https://pypi.org/project/pendulum)|0.002| -|pypi|[passlib](https://pypi.org/project/passlib)|0.002| -|pypi|[intervals](https://pypi.org/project/intervals)|0.002| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.002| -|pypi|[colour](https://pypi.org/project/colour)|0.002| -|pypi|[Babel](https://pypi.org/project/Babel)|0.002| -|pypi|[arrow](https://pypi.org/project/arrow)|0.002| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.002| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| -|pypi|[python-dotenv](https://github.com/theskumar/python-dotenv)|0.001| -|pypi|[flask](https://palletsprojects.com/p/flask)|0.001| -|pypi|[flask-cors](https://github.com/corydolphin/flask-cors)|0.001| -|pypi|[flask-migrate](https://github.com/miguelgrinberg/flask-migrate)|0.001| -|pypi|[flask-sqlalchemy](https://github.com/pallets/flask-sqlalchemy)|0.001| -|pypi|[pandas](https://pandas.pydata.org)|0.001| -|pypi|[requests](https://requests.readthedocs.io)|0.001| -|pypi|[sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils)|0.001| -|pypi|[webargs](https://github.com/marshmallow-code/webargs)|0.001| -|pypi|[openpyxl](https://openpyxl.readthedocs.io)|0.001| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| +|pypi|[lingua](https://pypi.org/project/lingua)|0.007| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.007| +|pypi|[sphinx-issues](https://github.com/sloria/sphinx-issues)|0.006| +|pypi|[flake8](https://pypi.org/project/flake8)|0.005| +|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.005| +|pypi|[python-dotenv](https://github.com/theskumar/python-dotenv)|0.005| +|pypi|[asgiref](https://pypi.org/project/asgiref)|0.005| +|pypi|[tox](https://pypi.org/project/tox)|0.004| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| +|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.004| +|pypi|[mypy](https://pypi.org/project/mypy)|0.004| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| +|pypi|[pytz](https://pypi.org/project/pytz)|0.004| +|pypi|[xattr](https://pypi.org/project/xattr)|0.003| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.003| +|pypi|[munkres](https://pypi.org/project/munkres)|0.003| +|pypi|[brotli](https://pypi.org/project/brotli)|0.003| +|pypi|[scipy](https://pypi.org/project/scipy)|0.003| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.003| +|pypi|[sympy](https://pypi.org/project/sympy)|0.003| +|pypi|[lz4](https://pypi.org/project/lz4)|0.003| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.003| +|pypi|[lxml](https://pypi.org/project/lxml)|0.003| +|pypi|[fs](https://pypi.org/project/fs)|0.003| +|pypi|[autodocsumm](https://github.com/Chilipp/autodocsumm)|0.003| +|pypi|[alabaster](https://alabaster.readthedocs.io)|0.003| +|pypi|[simplejson](https://pypi.org/project/simplejson)|0.003| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.002| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.002| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.002| +|pypi|[coverage](https://pypi.org/project/coverage)|0.002| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.002| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.002| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.002| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.002| +|pypi|[olefile](https://pypi.org/project/olefile)|0.002| +|pypi|[marshmallow](https://github.com/marshmallow-code/marshmallow)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.002| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.002| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.002| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.002| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.002| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| +|pypi|[zipp](https://pypi.org/project/zipp)|0.002| +|pypi|[furo](https://pypi.org/project/furo)|0.002| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.002| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.002| +|pypi|[falcon](https://pypi.org/project/falcon)|0.002| +|pypi|[pyramid](https://pypi.org/project/pyramid)|0.002| +|pypi|[tornado](https://pypi.org/project/tornado)|0.002| +|pypi|[bottle](https://pypi.org/project/bottle)|0.002| +|pypi|[Django](https://pypi.org/project/Django)|0.002| +|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|0.002| +|pypi|[webtest-aiohttp](https://pypi.org/project/webtest-aiohttp)|0.002| +|pypi|[webtest](https://pypi.org/project/webtest)|0.002| +|pypi|[furl](https://pypi.org/project/furl)|0.001| +|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| +|pypi|[pyodbc](https://pypi.org/project/pyodbc)|0.001| +|pypi|[isort](https://pypi.org/project/isort)|0.001| +|pypi|[pymysql](https://pypi.org/project/pymysql)|0.001| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.001| +|pypi|[pg8000](https://pypi.org/project/pg8000)|0.001| +|pypi|[psycopg2cffi](https://pypi.org/project/psycopg2cffi)|0.001| +|pypi|[psycopg2](https://pypi.org/project/psycopg2)|0.001| +|pypi|[mock](https://pypi.org/project/mock)|0.001| +|pypi|[flexmock](https://pypi.org/project/flexmock)|0.001| +|pypi|[docutils](https://pypi.org/project/docutils)|0.001| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.001| +|pypi|[phonenumbers](https://pypi.org/project/phonenumbers)|0.001| +|pypi|[pendulum](https://pypi.org/project/pendulum)|0.001| +|pypi|[passlib](https://pypi.org/project/passlib)|0.001| +|pypi|[intervals](https://pypi.org/project/intervals)|0.001| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.001| +|pypi|[colour](https://pypi.org/project/colour)|0.001| +|pypi|[arrow](https://pypi.org/project/arrow)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/girder/viime/badge.png b/_repos/github/girder/viime/badge.png index 6f46223b..248ff233 100644 Binary files a/_repos/github/girder/viime/badge.png and b/_repos/github/girder/viime/badge.png differ diff --git a/_repos/github/girder/viime/data.json b/_repos/github/girder/viime/data.json index a1772f94..674fd056 100644 --- a/_repos/github/girder/viime/data.json +++ b/_repos/github/girder/viime/data.json @@ -6,349 +6,485 @@ } }, "pypi": { + "marshmallow": { + "credit": 0.0020204081632653097, + "url": "https://github.com/marshmallow-code/marshmallow" + }, + "webargs": { + "credit": 0.00035357142857143226, + "url": "https://github.com/marshmallow-code/webargs" + }, + "Werkzeug": { + "credit": 0.005354081632653065, + "url": "https://palletsprojects.com/p/werkzeug/" + }, "alembic": { - "credit": 0.08229375, + "credit": 0.047025, "url": "https://alembic.sqlalchemy.org" }, "dogpile.cache": { - "credit": 0.061875, + "credit": 0.03535714285714286, "url": "https://github.com/sqlalchemy/dogpile.cache" }, "flask": { - "credit": 0.0006187500000000012, + "credit": 0.00035357142857143226, "url": "https://palletsprojects.com/p/flask" }, "flask-cors": { - "credit": 0.0006187500000000012, + "credit": 0.00035357142857143226, "url": "https://github.com/corydolphin/flask-cors" }, "flask-migrate": { - "credit": 0.0006187500000000012, + "credit": 0.00035357142857143226, "url": "https://github.com/miguelgrinberg/flask-migrate" }, "flask-sqlalchemy": { - "credit": 0.0006187500000000012, + "credit": 0.00035357142857143226, "url": "https://github.com/pallets/flask-sqlalchemy" }, - "marshmallow": { - "credit": 0.003535714285714287, - "url": "https://github.com/marshmallow-code/marshmallow" - }, "matplotlib": { - "credit": 0.061875, + "credit": 0.03804972527472528, "url": "https://matplotlib.org" }, - "pandas": { - "credit": 0.0006187500000000012, - "url": "https://pandas.pydata.org" + "openpyxl": { + "credit": 0.00035357142857143226, + "url": "https://openpyxl.readthedocs.io" }, "python-dotenv": { - "credit": 0.0007062589285714294, + "credit": 0.005354081632653065, "url": "https://github.com/theskumar/python-dotenv" }, - "requests": { - "credit": 0.0006187500000000012, - "url": "https://requests.readthedocs.io" - }, "sklearn": { - "credit": 0.061875, + "credit": 0.03535714285714286, "url": "https://pypi.python.org/pypi/scikit-learn/" }, "sqlalchemy-utils": { - "credit": 0.0006187500000000012, + "credit": 0.00035357142857143226, "url": "https://github.com/kvesteri/sqlalchemy-utils" }, - "webargs": { - "credit": 0.0006187500000000012, - "url": "https://github.com/marshmallow-code/webargs" - }, - "Werkzeug": { - "credit": 0.009369642857142858, - "url": "https://palletsprojects.com/p/werkzeug/" + "cycler": { + "credit": 0.03535714285714286, + "url": "https://github.com/matplotlib/cycler" }, - "openpyxl": { - "credit": 0.0006187500000000012, - "url": "https://openpyxl.readthedocs.io" - }, - "asgiref": { - "credit": 8.750892857142811e-05, - "url": "https://github.com/django/asgiref/" + "fonttools": { + "credit": 0.00035357142857143226, + "url": "http://github.com/fonttools/fonttools" }, "importlib-metadata": { - "credit": 0.008750892857142856, + "credit": 0.029856581632653062, "url": "https://github.com/python/importlib_metadata" }, - "click": { - "credit": 0.07867052678571428, - "url": "https://pypi.org/project/click" - }, "itsdangerous": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/itsdangerous" + "credit": 0.04035765306122449, + "url": "https://palletsprojects.com/p/itsdangerous/" }, "Jinja2": { - "credit": 0.011019642857142856, - "url": "https://pypi.org/project/Jinja2" - }, - "Six": { - "credit": 0.030628125, - "url": "https://pypi.org/project/Six" + "credit": 0.006650510204081636, + "url": "https://palletsprojects.com/p/jinja/" }, - "Flask": { - "credit": 0.08459196428571428, - "url": "https://pypi.org/project/Flask" + "kiwisolver": { + "credit": 0.00035357142857143226, + "url": "https://github.com/nucleic/kiwi" }, - "Flask-SQLAlchemy": { - "credit": 0.02041875, - "url": "https://pypi.org/project/Flask-SQLAlchemy" + "pillow": { + "credit": 0.00035357142857143226, + "url": "https://python-pillow.org" }, "SQLAlchemy": { - "credit": 0.032896875, - "url": "https://pypi.org/project/SQLAlchemy" + "credit": 0.054155357142857144, + "url": "https://www.sqlalchemy.org" + }, + "stevedore": { + "credit": 0.00035357142857143226, + "url": "https://docs.openstack.org/stevedore/latest/" + }, + "et-xmlfile": { + "credit": 0.07036071428571428, + "url": "https://foss.heptapod.net/openpyxl/et_xmlfile" + }, + "Mako": { + "credit": 0.00035357142857143226, + "url": "https://www.makotemplates.org/" + }, + "greenlet": { + "credit": 0.03535714285714286, + "url": "https://greenlet.readthedocs.io/" + }, + "MarkupSafe": { + "credit": 0.059859642857142854, + "url": "https://palletsprojects.com/p/markupsafe/" + }, + "pbr": { + "credit": 0.05285892857142857, + "url": "https://docs.openstack.org/pbr/latest/" }, "autodocsumm": { - "credit": 0.004375446428571428, - "url": "https://pypi.org/project/autodocsumm" + "credit": 0.002500255102040816, + "url": "https://github.com/Chilipp/autodocsumm" }, "sphinx-version-warning": { - "credit": 0.004375446428571428, - "url": "https://pypi.org/project/sphinx-version-warning" + "credit": 2.5002551020408218e-05, + "url": "https://github.com/humitos/sphinx-version-warning" }, "alabaster": { - "credit": 0.004375446428571428, - "url": "https://pypi.org/project/alabaster" + "credit": 0.002500255102040816, + "url": "https://alabaster.readthedocs.io" }, "sphinx-issues": { - "credit": 0.007292410714285714, - "url": "https://pypi.org/project/sphinx-issues" + "credit": 0.006354815051020407, + "url": "https://github.com/sloria/sphinx-issues" }, "sphinx": { - "credit": 0.004375446428571428, + "credit": 0.009107873724489795, "url": "https://pypi.org/project/sphinx" }, "tox": { - "credit": 0.007292410714285714, + "credit": 0.004167091836734693, "url": "https://pypi.org/project/tox" }, "pre-commit": { - "credit": 0.007292410714285714, + "credit": 0.004167091836734693, "url": "https://pypi.org/project/pre-commit" }, "flake8-bugbear": { - "credit": 0.007292410714285714, + "credit": 0.004167091836734693, "url": "https://pypi.org/project/flake8-bugbear" }, "flake8": { - "credit": 0.009561160714285713, + "credit": 0.005463520408163265, "url": "https://pypi.org/project/flake8" }, "mypy": { - "credit": 0.009458256696428571, + "credit": 0.004167091836734693, "url": "https://pypi.org/project/mypy" }, "simplejson": { - "credit": 0.004375446428571428, + "credit": 0.002500255102040816, "url": "https://pypi.org/project/simplejson" }, "pytz": { - "credit": 0.016853571428571426, + "credit": 0.0037966836734693874, "url": "https://pypi.org/project/pytz" }, "pytest": { - "credit": 0.02193638169642857, + "credit": 0.01659660076530612, "url": "https://pypi.org/project/pytest" }, "packaging": { - "credit": 0.007292410714285714, + "credit": 0.008299457908163263, "url": "https://pypi.org/project/packaging" }, - "pytest-xdist": { - "credit": 0.010209375, - "url": "https://pypi.org/project/pytest-xdist" + "furo": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/furo" }, - "hypothesis": { - "credit": 0.010209375, - "url": "https://pypi.org/project/hypothesis" + "Sphinx": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/Sphinx" }, - "numpy": { - "credit": 0.010209375, - "url": "https://pypi.org/project/numpy" + "aiohttp": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/aiohttp" }, - "python-dateutil": { - "credit": 0.012478125, - "url": "https://pypi.org/project/python-dateutil" + "falcon": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/falcon" + }, + "pyramid": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/pyramid" + }, + "tornado": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/tornado" + }, + "bottle": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/bottle" + }, + "Django": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/Django" + }, + "Flask": { + "credit": 0.048338265306122445, + "url": "https://pypi.org/project/Flask" + }, + "pytest-aiohttp": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/pytest-aiohttp" }, - "win-inet-pton": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/win-inet-pton" + "webtest-aiohttp": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/webtest-aiohttp" }, - "PySocks": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/PySocks" + "webtest": { + "credit": 0.0016668367346938774, + "url": "https://pypi.org/project/webtest" }, - "charset-normalizer": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/charset-normalizer" + "watchdog": { + "credit": 0.035003571428571426, + "url": "https://pypi.org/project/watchdog" }, - "idna": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/idna" + "asgiref": { + "credit": 0.005000510204081632, + "url": "https://pypi.org/project/asgiref" }, - "chardet": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/chardet" + "click": { + "credit": 0.04000408163265306, + "url": "https://pypi.org/project/click" }, - "certifi": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/certifi" + "Six": { + "credit": 0.017501785714285713, + "url": "https://pypi.org/project/Six" }, - "urllib3": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/urllib3" + "Flask-SQLAlchemy": { + "credit": 0.011667857142857141, + "url": "https://pypi.org/project/Flask-SQLAlchemy" }, "furl": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/furl" }, "backports.zoneinfo": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/backports.zoneinfo" }, "pyodbc": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/pyodbc" }, "isort": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/isort" }, "pymysql": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/pymysql" }, + "python-dateutil": { + "credit": 0.0012964285714285714, + "url": "https://pypi.org/project/python-dateutil" + }, "pg8000": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/pg8000" }, "psycopg2cffi": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/psycopg2cffi" }, "psycopg2": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/psycopg2" }, "mock": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/mock" }, "flexmock": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/flexmock" }, "docutils": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/docutils" }, "Pygments": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/Pygments" }, "phonenumbers": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/phonenumbers" }, "pendulum": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/pendulum" }, "passlib": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/passlib" }, "intervals": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/intervals" }, "cryptography": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/cryptography" }, "colour": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/colour" }, "Babel": { - "credit": 0.00226875, + "credit": 0.02579892857142857, "url": "https://pypi.org/project/Babel" }, "arrow": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/arrow" }, "six": { - "credit": 0.00226875, + "credit": 0.0012964285714285714, "url": "https://pypi.org/project/six" }, - "furo": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/furo" + "xattr": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/xattr" }, - "Sphinx": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/Sphinx" + "unicodedata2": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/unicodedata2" }, - "aiohttp": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/aiohttp" + "munkres": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/munkres" }, - "falcon": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/falcon" + "brotli": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/brotli" }, - "pyramid": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/pyramid" + "scipy": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/scipy" }, - "tornado": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/tornado" + "brotlicffi": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/brotlicffi" }, - "bottle": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/bottle" + "skia-pathops": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/skia-pathops" }, - "Django": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/Django" + "sympy": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/sympy" }, - "pytest-aiohttp": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/pytest-aiohttp" + "lz4": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/lz4" }, - "webtest-aiohttp": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/webtest-aiohttp" + "zopfli": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/zopfli" }, - "webtest": { - "credit": 0.0029169642857142858, - "url": "https://pypi.org/project/webtest" + "lxml": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/lxml" }, - "watchdog": { - "credit": 0.06125625, - "url": "https://pypi.org/project/watchdog" + "fs": { + "credit": 0.0026925824175824172, + "url": "https://pypi.org/project/fs" }, - "et-xmlfile": { - "credit": 0.06125625, - "url": "https://pypi.org/project/et-xmlfile" + "importlib-resources": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/importlib-resources" + }, + "pytest-mypy": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/pytest-mypy" + }, + "pytest-black": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/pytest-black" + }, + "pytest-perf": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/pytest-perf" + }, + "flufl.flake8": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/flufl.flake8" + }, + "pyfakefs": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/pyfakefs" + }, + "pytest-enabler": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/pytest-enabler" + }, + "pytest-cov": { + "credit": 0.0041323660714285716, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest-flake8": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/pytest-flake8" }, - "pytest-asyncio": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/pytest-asyncio" + "pytest-checkdocs": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/pytest-checkdocs" + }, + "ipython": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/ipython" + }, + "rst.linker": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/rst.linker" + }, + "jaraco.packaging": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/jaraco.packaging" }, "typing-extensions": { - "credit": 0.002165845982142857, + "credit": 0.036948214285714286, "url": "https://pypi.org/project/typing-extensions" + }, + "zipp": { + "credit": 0.001944642857142857, + "url": "https://pypi.org/project/zipp" + }, + "pytest-timeout": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-copybutton": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.002187723214285714, + "url": "https://pypi.org/project/olefile" + }, + "lingua": { + "credit": 0.0070007142857142855, + "url": "https://pypi.org/project/lingua" } } } \ No newline at end of file diff --git a/_repos/github/glotzerlab/coxeter/README.md b/_repos/github/glotzerlab/coxeter/README.md index cca2c0f3..424860d1 100644 --- a/_repos/github/glotzerlab/coxeter/README.md +++ b/_repos/github/glotzerlab/coxeter/README.md @@ -8,10 +8,49 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[numpy](https://www.numpy.org)|0.685| +|pypi|[matplotlib](https://matplotlib.org)|0.061| +|pypi|[miniball](https://github.com/marmakoide/miniball)|0.061| +|pypi|[rowan](https://github.com/glotzerlab/rowan)|0.014| |setup.py|github/glotzerlab/coxeter|0.01| -|pypi|[numpy](https://www.numpy.org)|0.01| -|pypi|[rowan](https://github.com/glotzerlab/rowan)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.003| +|pypi|[scipy](https://www.scipy.org)|0.009| +|pypi|[pythreejs](https://pypi.org/project/pythreejs)|0.009| +|pypi|[pyside2](https://pypi.org/project/pyside2)|0.009| +|pypi|[vispy](https://pypi.org/project/vispy)|0.009| +|pypi|[pyside](https://pypi.org/project/pyside)|0.009| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.007| +|pypi|[attrs](https://pypi.org/project/attrs)|0.007| +|pypi|[coxeter](https://github.com/glotzerlab/coxeter)|0.005| +|pypi|[hypothesis](https://hypothesis.works)|0.004| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.004| +|pypi|[xmlschema](https://github.com/sissaschool/xmlschema)|0.004| +|pypi|[requests](https://pypi.org/project/requests)|0.004| +|pypi|[pygments](https://pypi.org/project/pygments)|0.004| +|pypi|[nose](https://pypi.org/project/nose)|0.004| +|pypi|[mock](https://pypi.org/project/mock)|0.004| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.004| +|pypi|[colorama](https://pypi.org/project/colorama)|0.004| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.004| +|pypi|[tomli](https://pypi.org/project/tomli)|0.004| +|pypi|[py](https://pypi.org/project/py)|0.004| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.004| +|pypi|[tzdata](https://pypi.org/project/tzdata)|0.003| +|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.003| +|pypi|[rich](https://pypi.org/project/rich)|0.003| +|pypi|[redis](https://pypi.org/project/redis)|0.003| +|pypi|[pytz](https://pypi.org/project/pytz)|0.003| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.003| +|pypi|[pandas](https://pypi.org/project/pandas)|0.003| +|pypi|[libcst](https://pypi.org/project/libcst)|0.003| +|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.003| +|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.003| +|pypi|[django](https://pypi.org/project/django)|0.003| +|pypi|[click](https://pypi.org/project/click)|0.003| +|pypi|[black](https://pypi.org/project/black)|0.003| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.003| +|pypi|[plato-draw](https://plato-draw.readthedocs.io/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/glotzerlab/coxeter/badge.png b/_repos/github/glotzerlab/coxeter/badge.png index 79e3cede..49035d1f 100644 Binary files a/_repos/github/glotzerlab/coxeter/badge.png and b/_repos/github/glotzerlab/coxeter/badge.png differ diff --git a/_repos/github/glotzerlab/coxeter/data.json b/_repos/github/glotzerlab/coxeter/data.json index bb8569cd..f22da7a8 100644 --- a/_repos/github/glotzerlab/coxeter/data.json +++ b/_repos/github/glotzerlab/coxeter/data.json @@ -6,17 +6,173 @@ } }, "pypi": { - "numpy": { - "credit": 0.009833999999999999, - "url": "https://www.numpy.org" + "coxeter": { + "credit": 0.00495000000000001, + "url": "https://github.com/glotzerlab/coxeter" }, "rowan": { - "credit": 0.0033000000000000004, + "credit": 0.014225946428571442, "url": "https://github.com/glotzerlab/rowan" }, + "pytest": { + "credit": 0.003981656250000003, + "url": "https://docs.pytest.org/en/latest/" + }, + "plato-draw": { + "credit": 0.0006125624999999968, + "url": "https://plato-draw.readthedocs.io/" + }, + "matplotlib": { + "credit": 0.06125625, + "url": "https://matplotlib.org" + }, + "hypothesis": { + "credit": 0.004402792968750003, + "url": "https://hypothesis.works" + }, + "miniball": { + "credit": 0.06125625, + "url": "https://github.com/marmakoide/miniball" + }, "scipy": { - "credit": 0.0033000000000000004, + "credit": 0.009275946428571432, "url": "https://www.scipy.org" + }, + "numpy": { + "credit": 0.6846261026785716, + "url": "https://www.numpy.org" + }, + "xmlschema": { + "credit": 0.0037902304687499997, + "url": "https://github.com/sissaschool/xmlschema" + }, + "requests": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/requests" + }, + "pygments": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/pygments" + }, + "nose": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/nose" + }, + "mock": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/mock" + }, + "argcomplete": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/argcomplete" + }, + "colorama": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/colorama" + }, + "atomicwrites": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/atomicwrites" + }, + "importlib-metadata": { + "credit": 0.007159324218749999, + "url": "https://pypi.org/project/importlib-metadata" + }, + "tomli": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/tomli" + }, + "py": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/py" + }, + "pluggy": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/pluggy" + }, + "packaging": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/packaging" + }, + "iniconfig": { + "credit": 0.0037902304687499997, + "url": "https://pypi.org/project/iniconfig" + }, + "attrs": { + "credit": 0.007159324218749999, + "url": "https://pypi.org/project/attrs" + }, + "pythreejs": { + "credit": 0.008663383928571428, + "url": "https://pypi.org/project/pythreejs" + }, + "pyside2": { + "credit": 0.008663383928571428, + "url": "https://pypi.org/project/pyside2" + }, + "vispy": { + "credit": 0.008663383928571428, + "url": "https://pypi.org/project/vispy" + }, + "pyside": { + "credit": 0.008663383928571428, + "url": "https://pypi.org/project/pyside" + }, + "tzdata": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/tzdata" + }, + "backports.zoneinfo": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/backports.zoneinfo" + }, + "rich": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/rich" + }, + "redis": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/redis" + }, + "pytz": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/pytz" + }, + "python-dateutil": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/python-dateutil" + }, + "pandas": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/pandas" + }, + "libcst": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/libcst" + }, + "lark-parser": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/lark-parser" + }, + "dpcontracts": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/dpcontracts" + }, + "django": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/django" + }, + "click": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/click" + }, + "black": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/black" + }, + "sortedcontainers": { + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/sortedcontainers" } } } \ No newline at end of file diff --git a/_repos/github/glotzerlab/freud/README.md b/_repos/github/glotzerlab/freud/README.md index fb038c70..d63dbabe 100644 --- a/_repos/github/glotzerlab/freud/README.md +++ b/_repos/github/glotzerlab/freud/README.md @@ -10,8 +10,9 @@ exclude_from_search: true |-------|----|------| |setup.py|github/glotzerlab/freud|0.01| |pypi|[numpy](https://www.numpy.org)|0.01| -|pypi|[rowan](https://github.com/glotzerlab/rowan)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.003| +|pypi|[rowan](https://github.com/glotzerlab/rowan)|0.007| +|pypi|[freud-analysis](https://github.com/glotzerlab/freud)|0.005| +|pypi|[scipy](https://www.scipy.org)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/glotzerlab/freud/badge.png b/_repos/github/glotzerlab/freud/badge.png index 55fc9d22..524fa58c 100644 Binary files a/_repos/github/glotzerlab/freud/badge.png and b/_repos/github/glotzerlab/freud/badge.png differ diff --git a/_repos/github/glotzerlab/freud/data.json b/_repos/github/glotzerlab/freud/data.json index 7c1a1571..60ec7d1a 100644 --- a/_repos/github/glotzerlab/freud/data.json +++ b/_repos/github/glotzerlab/freud/data.json @@ -6,17 +6,21 @@ } }, "pypi": { - "numpy": { - "credit": 0.009833999999999999, - "url": "https://www.numpy.org" + "freud-analysis": { + "credit": 0.00495, + "url": "https://github.com/glotzerlab/freud" }, "rowan": { - "credit": 0.0033000000000000004, + "credit": 0.006583500000000001, "url": "https://github.com/glotzerlab/rowan" }, "scipy": { - "credit": 0.0033000000000000004, + "credit": 0.0016335, "url": "https://www.scipy.org" + }, + "numpy": { + "credit": 0.00976833, + "url": "https://www.numpy.org" } } } \ No newline at end of file diff --git a/_repos/github/grant-m-s/astronomicAL/badge.png b/_repos/github/grant-m-s/astronomicAL/badge.png index 8733914f..4a6109bb 100644 Binary files a/_repos/github/grant-m-s/astronomicAL/badge.png and b/_repos/github/grant-m-s/astronomicAL/badge.png differ diff --git a/_repos/github/gvilitechltd/LibSWIFFT/badge.png b/_repos/github/gvilitechltd/LibSWIFFT/badge.png index 5b859a04..97fd1423 100644 Binary files a/_repos/github/gvilitechltd/LibSWIFFT/badge.png and b/_repos/github/gvilitechltd/LibSWIFFT/badge.png differ diff --git a/_repos/github/hemanthpruthvi/PyAstroPol/badge.png b/_repos/github/hemanthpruthvi/PyAstroPol/badge.png index e68ab37f..51a64571 100644 Binary files a/_repos/github/hemanthpruthvi/PyAstroPol/badge.png and b/_repos/github/hemanthpruthvi/PyAstroPol/badge.png differ diff --git a/_repos/github/hiddenSymmetries/simsopt/README.md b/_repos/github/hiddenSymmetries/simsopt/README.md index b630687b..18f0def4 100644 --- a/_repos/github/hiddenSymmetries/simsopt/README.md +++ b/_repos/github/hiddenSymmetries/simsopt/README.md @@ -8,8 +8,55 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.119| +|pypi|[numpy](https://pypi.org/project/numpy)|0.082| +|pypi|[flatbuffers](https://google.github.io/flatbuffers/)|0.073| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.063| +|pypi|[jax](https://github.com/google/jax)|0.061| +|pypi|[nptyping](https://github.com/ramonhagenaars/nptyping)|0.061| +|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.061| +|pypi|[randomgen](https://github.com/bashtage/randomgen)|0.061| +|pypi|[mpmath](http://mpmath.org/)|0.058| +|pypi|[ruamel.yaml.clib](https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree)|0.058| +|pypi|[six](https://pypi.org/project/six)|0.058| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.019| +|pypi|[pytest](https://pypi.org/project/pytest)|0.019| +|pypi|[scipy](https://pypi.org/project/scipy)|0.017| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.015| +|pypi|[absl-py](https://github.com/abseil/abseil-py)|0.015| +|pypi|[wheel](https://pypi.org/project/wheel)|0.012| +|pypi|[codecov](https://pypi.org/project/codecov)|0.012| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.012| |setup.py|github/hiddenSymmetries/simsopt|0.01| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|0.007| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.007| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|0.007| +|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|0.005| +|pypi|[PyTest](https://pypi.org/project/PyTest)|0.005| +|pypi|[zipp](https://pypi.org/project/zipp)|0.005| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.005| +|pypi|[configparser](https://pypi.org/project/configparser)|0.005| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005| +|pypi|[bump2version](https://pypi.org/project/bump2version)|0.005| +|pypi|[tox](https://pypi.org/project/tox)|0.005| +|pypi|[Deprecated](https://github.com/tantale/deprecated)|0.003| +|pypi|[jaxlib](https://github.com/google/jax)|0.003| +|pypi|[monty](https://github.com/materialsvirtuallab/monty)|0.003| +|pypi|[pyevtk](https://github.com/pyscience-projects/pyevtk)|0.003| +|pypi|[sympy](https://sympy.org)|0.003| +|pypi|[mayavi](http://docs.enthought.com/mayavi/mayavi/)|0.003| +|pypi|[vtk](https://vtk.org)|0.003| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.003| +|pypi|[h5py](https://pypi.org/project/h5py)|0.003| +|pypi|[pyoculus](https://pypi.org/project/pyoculus)|0.003| +|pypi|[py-spec](https://pypi.org/project/py-spec)|0.003| +|pypi|[mpi4py](https://pypi.org/project/mpi4py)|0.003| +|pypi|[PyQt5-Qt5](https://pypi.org/project/PyQt5-Qt5)|0.001| +|pypi|[PyQt5-sip](https://pypi.org/project/PyQt5-sip)|0.001| +|pypi|[simsopt](https://github.com/hiddenSymmetries/simsopt)|0.001| +|pypi|[opt_einsum](https://github.com/dgasmith/opt_einsum)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/hiddenSymmetries/simsopt/badge.png b/_repos/github/hiddenSymmetries/simsopt/badge.png index e9e099f8..d731032b 100644 Binary files a/_repos/github/hiddenSymmetries/simsopt/badge.png and b/_repos/github/hiddenSymmetries/simsopt/badge.png differ diff --git a/_repos/github/hiddenSymmetries/simsopt/data.json b/_repos/github/hiddenSymmetries/simsopt/data.json index e86e88d8..bbce2b2b 100644 --- a/_repos/github/hiddenSymmetries/simsopt/data.json +++ b/_repos/github/hiddenSymmetries/simsopt/data.json @@ -6,9 +6,201 @@ } }, "pypi": { - "setuptools_scm": { - "credit": 0.0099, - "url": "https://github.com/pypa/setuptools_scm/" + "simsopt": { + "credit": 0.0005823529411764714, + "url": "https://github.com/hiddenSymmetries/simsopt" + }, + "Deprecated": { + "credit": 0.003202941176470589, + "url": "https://github.com/tantale/deprecated" + }, + "jax": { + "credit": 0.060855882352941176, + "url": "https://github.com/google/jax" + }, + "jaxlib": { + "credit": 0.003202941176470589, + "url": "https://github.com/google/jax" + }, + "monty": { + "credit": 0.003202941176470589, + "url": "https://github.com/materialsvirtuallab/monty" + }, + "nptyping": { + "credit": 0.060855882352941176, + "url": "https://github.com/ramonhagenaars/nptyping" + }, + "f90nml": { + "credit": 0.060855882352941176, + "url": "http://github.com/marshallward/f90nml" + }, + "pyevtk": { + "credit": 0.003202941176470589, + "url": "https://github.com/pyscience-projects/pyevtk" + }, + "randomgen": { + "credit": 0.060855882352941176, + "url": "https://github.com/bashtage/randomgen" + }, + "ruamel.yaml": { + "credit": 0.11850882352941176, + "url": "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree" + }, + "sympy": { + "credit": 0.003202941176470589, + "url": "https://sympy.org" + }, + "flatbuffers": { + "credit": 0.07264852941176471, + "url": "https://google.github.io/flatbuffers/" + }, + "mpmath": { + "credit": 0.05823529411764706, + "url": "http://mpmath.org/" + }, + "ruamel.yaml.clib": { + "credit": 0.05823529411764706, + "url": "https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree" + }, + "wrapt": { + "credit": 0.0634764705882353, + "url": "https://github.com/GrahamDumpleton/wrapt" + }, + "absl-py": { + "credit": 0.014995588235294118, + "url": "https://github.com/abseil/abseil-py" + }, + "opt_einsum": { + "credit": 0.0005823529411764714, + "url": "https://github.com/dgasmith/opt_einsum" + }, + "mayavi": { + "credit": 0.0026205882352941176, + "url": "http://docs.enthought.com/mayavi/mayavi/" + }, + "PyQt5": { + "credit": 2.620588235294121e-05, + "url": "https://www.riverbankcomputing.com/software/pyqt/" + }, + "vtk": { + "credit": 0.0026205882352941176, + "url": "https://vtk.org" + }, + "matplotlib": { + "credit": 0.0026205882352941176, + "url": "https://pypi.org/project/matplotlib" + }, + "h5py": { + "credit": 0.0026205882352941176, + "url": "https://pypi.org/project/h5py" + }, + "pyoculus": { + "credit": 0.0026205882352941176, + "url": "https://pypi.org/project/pyoculus" + }, + "py-spec": { + "credit": 0.0026205882352941176, + "url": "https://pypi.org/project/py-spec" + }, + "mpi4py": { + "credit": 0.0026205882352941176, + "url": "https://pypi.org/project/mpi4py" + }, + "sphinx-rtd-theme": { + "credit": 0.009827205882352941, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx": { + "credit": 0.015068382352941176, + "url": "https://pypi.org/project/sphinx" + }, + "scipy": { + "credit": 0.017033823529411764, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.08189338235294118, + "url": "https://pypi.org/project/numpy" + }, + "PyTest-Cov": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/PyTest-Cov" + }, + "PyTest": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/PyTest" + }, + "zipp": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/zipp" + }, + "sphinxcontrib-websupport": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/sphinxcontrib-websupport" + }, + "configparser": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/configparser" + }, + "importlib-resources": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/importlib-resources" + }, + "importlib-metadata": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/importlib-metadata" + }, + "bump2version": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/bump2version" + }, + "tox": { + "credit": 0.005241176470588235, + "url": "https://pypi.org/project/tox" + }, + "wheel": { + "credit": 0.011530588235294117, + "url": "https://pypi.org/project/wheel" + }, + "codecov": { + "credit": 0.011530588235294117, + "url": "https://pypi.org/project/codecov" + }, + "pytest-cov": { + "credit": 0.01873720588235294, + "url": "https://pypi.org/project/pytest-cov" + }, + "pycodestyle": { + "credit": 0.011530588235294117, + "url": "https://pypi.org/project/pycodestyle" + }, + "pytest": { + "credit": 0.01873720588235294, + "url": "https://pypi.org/project/pytest" + }, + "six": { + "credit": 0.05765294117647059, + "url": "https://pypi.org/project/six" + }, + "pytest-pep8": { + "credit": 0.007206617647058823, + "url": "https://pypi.org/project/pytest-pep8" + }, + "numpydoc": { + "credit": 0.007206617647058823, + "url": "https://pypi.org/project/numpydoc" + }, + "sphinxcontrib-napoleon": { + "credit": 0.007206617647058823, + "url": "https://pypi.org/project/sphinxcontrib-napoleon" + }, + "PyQt5-Qt5": { + "credit": 0.0012971911764705882, + "url": "https://pypi.org/project/PyQt5-Qt5" + }, + "PyQt5-sip": { + "credit": 0.0012971911764705882, + "url": "https://pypi.org/project/PyQt5-sip" } } } \ No newline at end of file diff --git a/_repos/github/hknd23/idcempy/README.md b/_repos/github/hknd23/idcempy/README.md index b2837159..e8dc941d 100644 --- a/_repos/github/hknd23/idcempy/README.md +++ b/_repos/github/hknd23/idcempy/README.md @@ -8,11 +8,12 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.714| +|pypi|[numpy](https://www.numpy.org)|0.707| |pypi|[pytz](http://pythonhosted.org/pytz)|0.057| |pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.057| |pypi|[pytest](https://docs.pytest.org/en/latest/)|0.027| |setup.py|github/hknd23/idcempy|0.01| +|pypi|[idcempy](https://github.com/hknd23/idcempy)|0.01| |pypi|[execnet](https://pypi.org/project/execnet)|0.009| |pypi|[py](https://pypi.org/project/py)|0.008| |pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.006| diff --git a/_repos/github/hknd23/idcempy/badge.png b/_repos/github/hknd23/idcempy/badge.png index 1dd2f2d2..ca1c01d7 100644 Binary files a/_repos/github/hknd23/idcempy/badge.png and b/_repos/github/hknd23/idcempy/badge.png differ diff --git a/_repos/github/hknd23/idcempy/data.json b/_repos/github/hknd23/idcempy/data.json index 71369be7..9d8b7106 100644 --- a/_repos/github/hknd23/idcempy/data.json +++ b/_repos/github/hknd23/idcempy/data.json @@ -6,208 +6,212 @@ } }, "pypi": { - "scipy": { - "credit": 0.003300000000000025, - "url": "https://www.scipy.org" + "idcempy": { + "credit": 0.00990000000000002, + "url": "https://github.com/hknd23/idcempy" + }, + "pandas": { + "credit": 0.0062318025000000195, + "url": "https://pandas.pydata.org" }, "numpy": { - "credit": 0.7141447500000001, + "credit": 0.7070033025, "url": "https://www.numpy.org" }, - "pandas": { - "credit": 0.006294750000000024, - "url": "https://pandas.pydata.org" + "scipy": { + "credit": 0.00326700000000002, + "url": "https://www.scipy.org" }, "pytest-xdist": { - "credit": 0.0005445000000000033, + "credit": 0.0005390550000000105, "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest": { - "credit": 0.0269769121875, + "credit": 0.026707143065624998, "url": "https://docs.pytest.org/en/latest/" }, "hypothesis": { - "credit": 0.003913593750000003, + "credit": 0.003874457812500003, "url": "https://hypothesis.works" }, "pytz": { - "credit": 0.057444749999999996, + "credit": 0.0568703025, "url": "http://pythonhosted.org/pytz" }, "python-dateutil": { - "credit": 0.057444749999999996, + "credit": 0.0568703025, "url": "https://github.com/dateutil/dateutil" }, "filelock": { - "credit": 8.984249999999944e-05, + "credit": 8.894407499999979e-05, "url": "https://github.com/tox-dev/py-filelock" }, "setproctitle": { - "credit": 8.984249999999944e-05, + "credit": 8.894407499999979e-05, "url": "https://github.com/dvarrazzo/py-setproctitle" }, "psutil": { - "credit": 8.984249999999944e-05, + "credit": 8.894407499999979e-05, "url": "https://github.com/giampaolo/psutil" }, "pytest-forked": { - "credit": 8.984249999999944e-05, + "credit": 8.894407499999979e-05, "url": "https://github.com/pytest-dev/pytest-forked" }, "execnet": { - "credit": 0.00898425, + "credit": 0.008894407499999998, "url": "https://pypi.org/project/execnet" }, "xmlschema": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/xmlschema" }, "requests": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/requests" }, "pygments": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.004851495, + "credit": 0.004802980049999999, "url": "https://pypi.org/project/mock" }, "argcomplete": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.006363843749999999, + "credit": 0.0063002053124999995, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.0078162975, + "credit": 0.007738134524999999, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.0033690937499999997, + "credit": 0.0033354028124999995, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.006363843749999999, + "credit": 0.0063002053124999995, "url": "https://pypi.org/project/attrs" }, "tzdata": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/tzdata" }, "backports.zoneinfo": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/backports.zoneinfo" }, "rich": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/rich" }, "redis": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/redis" }, "libcst": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/libcst" }, "lark-parser": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/lark-parser" }, "dpcontracts": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/dpcontracts" }, "django": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/django" }, "click": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/click" }, "black": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/black" }, "sortedcontainers": { - "credit": 0.0029947499999999996, + "credit": 0.0029648024999999996, "url": "https://pypi.org/project/sortedcontainers" }, "pytest-timeout": { - "credit": 0.0011118009375, + "credit": 0.0011006829281249998, "url": "https://pypi.org/project/pytest-timeout" }, "pytest-cov": { - "credit": 0.0011118009375, + "credit": 0.0011006829281249998, "url": "https://pypi.org/project/pytest-cov" }, "coverage": { - "credit": 0.0011118009375, + "credit": 0.0011006829281249998, "url": "https://pypi.org/project/coverage" }, "covdefaults": { - "credit": 0.0011118009375, + "credit": 0.0011006829281249998, "url": "https://pypi.org/project/covdefaults" }, "sphinx-autodoc-typehints": { - "credit": 0.0011118009375, + "credit": 0.0011006829281249998, "url": "https://pypi.org/project/sphinx-autodoc-typehints" }, "sphinx": { - "credit": 0.0011118009375, + "credit": 0.0011006829281249998, "url": "https://pypi.org/project/sphinx" }, "furo": { - "credit": 0.0011118009375, + "credit": 0.0011006829281249998, "url": "https://pypi.org/project/furo" }, "wmi": { - "credit": 0.00148240125, + "credit": 0.0014675772374999998, "url": "https://pypi.org/project/wmi" }, "pywin32": { - "credit": 0.00148240125, + "credit": 0.0014675772374999998, "url": "https://pypi.org/project/pywin32" }, "enum34": { - "credit": 0.00148240125, + "credit": 0.0014675772374999998, "url": "https://pypi.org/project/enum34" }, "unittest2": { - "credit": 0.00148240125, + "credit": 0.0014675772374999998, "url": "https://pypi.org/project/unittest2" }, "ipaddress": { - "credit": 0.00148240125, + "credit": 0.0014675772374999998, "url": "https://pypi.org/project/ipaddress" } } diff --git a/_repos/github/htjb/maxsmooth/README.md b/_repos/github/htjb/maxsmooth/README.md index c037123e..326cc056 100644 --- a/_repos/github/htjb/maxsmooth/README.md +++ b/_repos/github/htjb/maxsmooth/README.md @@ -8,12 +8,50 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[matplotlib](https://matplotlib.org)|0.133| +|pypi|[maxsmooth](https://github.com/htjb/maxsmooth)|0.124| +|pypi|[cvxopt](http://cvxopt.org)|0.124| +|pypi|[progressbar](http://code.google.com/p/python-progressbar)|0.124| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[pytest](https://pypi.org/project/pytest)|0.031| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| +|pypi|[coverage](https://pypi.org/project/coverage)|0.012| |setup.py|github/htjb/maxsmooth|0.01| -|pypi|[numpy](https://www.numpy.org)|0.004| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[cvxopt](http://cvxopt.org)|0.002| -|pypi|[matplotlib](https://matplotlib.org)|0.002| -|pypi|[progressbar](http://code.google.com/p/python-progressbar)|0.002| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.009| +|pypi|[brotli](https://github.com/google/brotli)|0.009| +|pypi|[lxml](https://lxml.de/)|0.009| +|pypi|[numpy](https://pypi.org/project/numpy)|0.009| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.009| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[enum34](https://pypi.org/project/enum34)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/htjb/maxsmooth/badge.png b/_repos/github/htjb/maxsmooth/badge.png index e4cc0434..36977fe4 100644 Binary files a/_repos/github/htjb/maxsmooth/badge.png and b/_repos/github/htjb/maxsmooth/badge.png differ diff --git a/_repos/github/htjb/maxsmooth/data.json b/_repos/github/htjb/maxsmooth/data.json index 04f134f4..1c4a0424 100644 --- a/_repos/github/htjb/maxsmooth/data.json +++ b/_repos/github/htjb/maxsmooth/data.json @@ -6,25 +6,217 @@ } }, "pypi": { - "numpy": { - "credit": 0.0039402, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.00198, - "url": "https://www.scipy.org" + "maxsmooth": { + "credit": 0.12375, + "url": "https://github.com/htjb/maxsmooth" }, "cvxopt": { - "credit": 0.00198, + "credit": 0.12375, "url": "http://cvxopt.org" }, "matplotlib": { - "credit": 0.00198, + "credit": 0.13317403846153847, "url": "https://matplotlib.org" }, "progressbar": { - "credit": 0.00198, + "credit": 0.12375, "url": "http://code.google.com/p/python-progressbar" + }, + "cycler": { + "credit": 0.12375, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0012375000000000025, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0012375000000000025, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" + }, + "xattr": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.009424038461538461, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.009424038461538461, + "url": "https://github.com/google/brotli" + }, + "scipy": { + "credit": 9.424038461538532e-05, + "url": "https://www.scipy.org" + }, + "brotlicffi": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 9.424038461538532e-05, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.009424038461538461, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.1225125, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 7.657031250000047e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.009211997596153846, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.03078715564903846, + "url": "https://pypi.org/project/pytest" + }, + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.012321930288461538, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.009211997596153846, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" + }, + "cffi": { + "credit": 0.013994697115384614, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-xdist" + }, + "numpy": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.005831123798076923, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/appdirs" } } } \ No newline at end of file diff --git a/_repos/github/icecube/FIRESONG/README.md b/_repos/github/icecube/FIRESONG/README.md index 2dc3c82c..ecb9cf3c 100644 --- a/_repos/github/icecube/FIRESONG/README.md +++ b/_repos/github/icecube/FIRESONG/README.md @@ -9,10 +9,11 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/icecube/FIRESONG|0.01| -|pypi|[numpy](https://www.numpy.org)|0.007| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.007| +|pypi|[tomli](https://pypi.org/project/tomli)|0.007| +|pypi|[firesong](https://github.com/icecube/FIRESONG)|0.005| +|pypi|[numpy](https://www.numpy.org)|0.003| +|pypi|[scipy](https://www.scipy.org)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/icecube/FIRESONG/badge.png b/_repos/github/icecube/FIRESONG/badge.png index 818f992b..628fea6a 100644 Binary files a/_repos/github/icecube/FIRESONG/badge.png and b/_repos/github/icecube/FIRESONG/badge.png differ diff --git a/_repos/github/icecube/FIRESONG/data.json b/_repos/github/icecube/FIRESONG/data.json index 04b0c925..09f28bee 100644 --- a/_repos/github/icecube/FIRESONG/data.json +++ b/_repos/github/icecube/FIRESONG/data.json @@ -6,20 +6,24 @@ } }, "pypi": { + "firesong": { + "credit": 0.00495, + "url": "https://github.com/icecube/FIRESONG" + }, "coverage": { - "credit": 0.0033000000000000004, + "credit": 0.006583500000000001, "url": "https://github.com/nedbat/coveragepy" }, - "numpy": { - "credit": 0.006567, - "url": "https://www.numpy.org" - }, "scipy": { - "credit": 0.0033000000000000004, + "credit": 0.0016335, "url": "https://www.scipy.org" }, + "numpy": { + "credit": 0.003250665, + "url": "https://www.numpy.org" + }, "tomli": { - "credit": 0.003267, + "credit": 0.006517665000000001, "url": "https://pypi.org/project/tomli" } } diff --git a/_repos/github/idptools/metapredict/README.md b/_repos/github/idptools/metapredict/README.md index 7fd7f759..23bffbbd 100644 --- a/_repos/github/idptools/metapredict/README.md +++ b/_repos/github/idptools/metapredict/README.md @@ -1,5 +1,5 @@ --- -title: github/idptools/metapredict +title: github.com/idptools/metapredict layout: repo tipue_search_active: true exclude_from_search: true @@ -8,43 +8,51 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.246| -|pypi|[matplotlib](https://matplotlib.org)|0.124| -|pypi|[protfasta](https://pypi.org/project/protfasta)|0.124| -|pypi|[alphaPredict](https://pypi.org/project/alphaPredict)|0.124| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.123| -|pypi|[pytest](https://pypi.org/project/pytest)|0.014| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.014| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.014| -|pypi|[certifi](https://pypi.org/project/certifi)|0.014| -|pypi|[idna](https://pypi.org/project/idna)|0.014| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.014| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.014| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.014| -|pypi|[brotli](https://pypi.org/project/brotli)|0.014| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.014| -|setup.py|github/idptools/metapredict|0.01| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.009| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.009| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.009| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.009| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.009| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.009| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.009| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.009| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| -|pypi|[mypy](https://pypi.org/project/mypy)|0.002| -|pypi|[filelock](https://pypi.org/project/filelock)|0.002| -|pypi|[attrs](https://pypi.org/project/attrs)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.002| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.002| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|0.001| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.218| +|pypi|[matplotlib](https://matplotlib.org)|0.118| +|pypi|[metapredict](https://github.com/idptools/metapredict.git)|0.11| +|pypi|[alphaPredict](https://pypi.org/project/alphaPredict)|0.11| +|pypi|[protfasta](https://pypi.org/project/protfasta)|0.11| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.11| +|pypi|[pytest](https://pypi.org/project/pytest)|0.027| +|pypi|[cffi](https://pypi.org/project/cffi)|0.012| +|pypi|[coverage](https://pypi.org/project/coverage)|0.011| +|setup.py|github.com/idptools/metapredict|0.01| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.008| +|pypi|[brotli](https://github.com/google/brotli)|0.008| +|pypi|[lxml](https://lxml.de/)|0.008| +|pypi|[numpy](https://pypi.org/project/numpy)|0.008| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.008| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.008| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.007| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.007| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.007| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.007| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.007| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.007| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.007| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.007| +|pypi|[olefile](https://pypi.org/project/olefile)|0.007| +|pypi|[enum34](https://pypi.org/project/enum34)|0.005| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.004| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.004| +|pypi|[psutil](https://pypi.org/project/psutil)|0.001| +|pypi|[flake8](https://pypi.org/project/flake8)|0.001| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.001| |pypi|[torch](https://pytorch.org/)|0.001| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[urllib3](https://urllib3.readthedocs.io/)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/idptools/metapredict/badge.png b/_repos/github/idptools/metapredict/badge.png index 4e601876..2c1359bd 100644 Binary files a/_repos/github/idptools/metapredict/badge.png and b/_repos/github/idptools/metapredict/badge.png differ diff --git a/_repos/github/idptools/metapredict/data.json b/_repos/github/idptools/metapredict/data.json index 8d97066a..680b68ff 100644 --- a/_repos/github/idptools/metapredict/data.json +++ b/_repos/github/idptools/metapredict/data.json @@ -1,162 +1,226 @@ { "setup.py": { - "github/idptools/metapredict": { + "github.com/idptools/metapredict": { "credit": 0.01, "url": null } }, "pypi": { - "pytest_runner": { - "credit": 0.0012375000000000025, - "url": "https://github.com/pytest-dev/pytest-runner/" + "metapredict": { + "credit": 0.11, + "url": "https://github.com/idptools/metapredict.git" }, - "torch": { - "credit": 0.0012375000000000025, - "url": "https://pytorch.org/" - }, - "numpy": { - "credit": 0.2462625, - "url": "https://www.numpy.org" + "alphaPredict": { + "credit": 0.11, + "url": "https://pypi.org/project/alphaPredict" }, "matplotlib": { - "credit": 0.12375, + "credit": 0.11837692307692307, "url": "https://matplotlib.org" }, "protfasta": { - "credit": 0.12375, + "credit": 0.11, "url": "https://pypi.org/project/protfasta" }, + "torch": { + "credit": 0.0011000000000000038, + "url": "https://pytorch.org/" + }, + "cycler": { + "credit": 0.11, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0011000000000000038, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0011000000000000038, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0011000000000000038, + "url": "https://python-pillow.org" + }, + "typing-extensions": { + "credit": 0.2178, + "url": "https://typing.readthedocs.io/" + }, + "xattr": { + "credit": 8.376923076923101e-05, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 8.376923076923101e-05, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.008376923076923077, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.008376923076923077, + "url": "https://github.com/google/brotli" + }, "scipy": { - "credit": 0.0012375000000000025, + "credit": 8.376923076923101e-05, "url": "https://www.scipy.org" }, - "urllib3": { - "credit": 0.0012375000000000025, - "url": "https://urllib3.readthedocs.io/" - }, - "alphaPredict": { - "credit": 0.12375, - "url": "https://pypi.org/project/alphaPredict" + "brotlicffi": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/python-hyper/brotlicffi" }, - "pytest-mypy": { - "credit": 9.424038461538532e-05, - "url": "https://github.com/dbader/pytest-mypy" + "skia-pathops": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/fonttools/skia-pathops" }, - "pytest-black": { - "credit": 0.009424038461538461, - "url": "https://github.com/shopkeep/pytest-black" + "sympy": { + "credit": 8.376923076923101e-05, + "url": "https://sympy.org" }, - "types-setuptools": { - "credit": 0.009424038461538461, - "url": "https://github.com/python/typeshed" + "lz4": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/python-lz4/python-lz4" }, - "pytest-virtualenv": { - "credit": 9.424038461538532e-05, - "url": "https://github.com/manahl/pytest-plugins" + "zopfli": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/fonttools/py-zopfli" }, - "pytest-enabler": { - "credit": 0.009424038461538461, - "url": "https://github.com/jaraco/pytest-enabler" + "lxml": { + "credit": 0.008376923076923077, + "url": "https://lxml.de/" }, - "pytest-cov": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/pytest-cov" + "fs": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" }, - "pytest-flake8": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/pytest-flake8" + "pytest-timeout": { + "credit": 6.806250000000041e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" }, - "pytest-checkdocs": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/pytest-checkdocs" + "pytest-cov": { + "credit": 0.008188442307692308, + "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.013622447596153844, + "credit": 0.027366360576923078, "url": "https://pypi.org/project/pytest" }, - "jaraco.tidelift": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/jaraco.tidelift" + "pyroma": { + "credit": 0.00680625, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.00680625, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00680625, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00680625, + "url": "https://pypi.org/project/defusedxml" }, - "rst.linker": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/rst.linker" + "coverage": { + "credit": 0.010952826923076923, + "url": "https://pypi.org/project/coverage" }, - "jaraco.packaging": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/jaraco.packaging" + "check-manifest": { + "credit": 0.00680625, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-copybutton" }, "sphinx": { - "credit": 0.009424038461538461, + "credit": 0.008188442307692308, "url": "https://pypi.org/project/sphinx" }, - "typing-extensions": { - "credit": 0.1225125, - "url": "https://pypi.org/project/typing-extensions" + "olefile": { + "credit": 0.00680625, + "url": "https://pypi.org/project/olefile" }, - "PySocks": { - "credit": 0.0136125, - "url": "https://pypi.org/project/PySocks" + "cffi": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/cffi" }, - "ipaddress": { - "credit": 0.0136125, - "url": "https://pypi.org/project/ipaddress" + "pytest-randomly": { + "credit": 0.004146576923076923, + "url": "https://pypi.org/project/pytest-randomly" }, - "certifi": { - "credit": 0.0136125, - "url": "https://pypi.org/project/certifi" + "pytest-xdist": { + "credit": 0.004146576923076923, + "url": "https://pypi.org/project/pytest-xdist" }, - "idna": { - "credit": 0.0136125, - "url": "https://pypi.org/project/idna" + "numpy": { + "credit": 0.008293153846153846, + "url": "https://pypi.org/project/numpy" }, - "cryptography": { - "credit": 0.0136125, - "url": "https://pypi.org/project/cryptography" + "enum34": { + "credit": 0.005183221153846154, + "url": "https://pypi.org/project/enum34" }, - "pyOpenSSL": { - "credit": 0.0136125, - "url": "https://pypi.org/project/pyOpenSSL" + "mpmath": { + "credit": 0.008293153846153846, + "url": "https://pypi.org/project/mpmath" }, - "brotlipy": { - "credit": 0.0136125, - "url": "https://pypi.org/project/brotlipy" + "psutil": { + "credit": 0.0013821923076923076, + "url": "https://pypi.org/project/psutil" }, - "brotli": { - "credit": 0.0136125, - "url": "https://pypi.org/project/brotli" + "flake8": { + "credit": 0.0013821923076923076, + "url": "https://pypi.org/project/flake8" }, - "brotlicffi": { - "credit": 0.0136125, - "url": "https://pypi.org/project/brotlicffi" + "sphinx-bootstrap-theme": { + "credit": 0.0013821923076923076, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" }, - "mypy": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/mypy" + "scandir": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/scandir" }, - "filelock": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/filelock" + "typing": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/typing" }, - "attrs": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/attrs" + "backports.os": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/backports.os" }, - "mock": { - "credit": 0.0018659596153846152, - "url": "https://pypi.org/project/mock" + "six": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/six" }, - "virtualenv": { - "credit": 0.0018659596153846152, - "url": "https://pypi.org/project/virtualenv" + "setuptools": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/setuptools" }, - "pytest-shutil": { - "credit": 0.0018659596153846152, - "url": "https://pypi.org/project/pytest-shutil" + "pytz": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/pytz" }, - "pytest-fixture-config": { - "credit": 0.0018659596153846152, - "url": "https://pypi.org/project/pytest-fixture-config" + "appdirs": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/appdirs" } } } \ No newline at end of file diff --git a/_repos/github/indralab/pybiopax/README.md b/_repos/github/indralab/pybiopax/README.md index 2cd58a72..76ed76b7 100644 --- a/_repos/github/indralab/pybiopax/README.md +++ b/_repos/github/indralab/pybiopax/README.md @@ -8,71 +8,69 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[lxml](https://lxml.de/)|0.33| -|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.058| -|pypi|[idna](https://github.com/kjd/idna)|0.058| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.058| -|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.052| -|pypi|[chardet](https://github.com/chardet/chardet)|0.052| -|pypi|[pytest](https://pypi.org/project/pytest)|0.041| -|pypi|[colorama](https://github.com/tartley/colorama)|0.041| -|pypi|[docopt](https://pypi.org/project/docopt)|0.04| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.03| -|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.011| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.011| -|pypi|[coverage](https://pypi.org/project/coverage)|0.011| -|pypi|[urllib3](https://urllib3.readthedocs.io/)|0.011| +|pypi|[lxml](https://lxml.de/)|0.658| +|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.029| +|pypi|[idna](https://github.com/kjd/idna)|0.029| +|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.029| +|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.026| +|pypi|[chardet](https://github.com/chardet/chardet)|0.026| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.026| +|pypi|[colorama](https://github.com/tartley/colorama)|0.02| +|pypi|[docopt](https://pypi.org/project/docopt)|0.02| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.015| +|pypi|[pytest](https://pypi.org/project/pytest)|0.015| |setup.py|github/indralab/pybiopax|0.01| -|pypi|[requests](https://requests.readthedocs.io)|0.008| -|pypi|[charset-normalizer](https://github.com/ousret/charset_normalizer)|0.006| -|pypi|[ipaddress](https://github.com/phihag/ipaddress)|0.005| -|pypi|[cryptography](https://github.com/pyca/cryptography)|0.005| -|pypi|[pyOpenSSL](https://pyopenssl.org/)|0.005| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.005| -|pypi|[brotli](https://pypi.org/project/brotli)|0.005| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| -|pypi|[rich](https://pypi.org/project/rich)|0.004| -|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.004| -|pypi|[keyring](https://pypi.org/project/keyring)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.004| -|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.004| -|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.004| -|pypi|[mock](https://pypi.org/project/mock)|0.004| -|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.004| -|pypi|[ipython](https://pypi.org/project/ipython)|0.004| -|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|0.004| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.004| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.004| -|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.004| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.004| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.004| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[zipp](https://pypi.org/project/zipp)|0.004| -|pypi|[tqdm](https://tqdm.github.io)|0.003| -|pypi|[moto](https://pypi.org/project/moto)|0.002| -|pypi|[databases](https://pypi.org/project/databases)|0.002| -|pypi|[psutil](https://pypi.org/project/psutil)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[flake8](https://pypi.org/project/flake8)|0.002| -|pypi|[codecov](https://pypi.org/project/codecov)|0.002| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.002| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.002| -|pypi|[Flask](https://pypi.org/project/Flask)|0.002| -|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|0.002| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.002| -|pypi|[websocket-client](https://pypi.org/project/websocket-client)|0.002| -|pypi|[websockets](https://pypi.org/project/websockets)|0.002| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.002| -|pypi|[boto3](https://pypi.org/project/boto3)|0.002| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.002| -|pypi|[aiodns](https://pypi.org/project/aiodns)|0.002| +|pypi|[urllib3](https://urllib3.readthedocs.io/)|0.005| +|pypi|[pybiopax](https://github.com/indralab/pybiopax)|0.005| +|pypi|[requests](https://requests.readthedocs.io)|0.004| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.003| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.003| +|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.003| +|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.003| +|pypi|[brotli](https://pypi.org/project/brotli)|0.003| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| +|pypi|[rich](https://pypi.org/project/rich)|0.002| +|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.002| +|pypi|[keyring](https://pypi.org/project/keyring)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.002| +|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.002| +|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|0.002| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.002| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.002| +|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.002| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.002| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.002| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.002| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| +|pypi|[zipp](https://pypi.org/project/zipp)|0.002| +|pypi|[tqdm](https://tqdm.github.io)|0.002| +|pypi|[moto](https://pypi.org/project/moto)|0.001| +|pypi|[databases](https://pypi.org/project/databases)|0.001| +|pypi|[psutil](https://pypi.org/project/psutil)|0.001| +|pypi|[black](https://pypi.org/project/black)|0.001| +|pypi|[flake8](https://pypi.org/project/flake8)|0.001| +|pypi|[codecov](https://pypi.org/project/codecov)|0.001| +|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.001| +|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.001| +|pypi|[Flask](https://pypi.org/project/Flask)|0.001| +|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|0.001| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.001| +|pypi|[websocket-client](https://pypi.org/project/websocket-client)|0.001| +|pypi|[websockets](https://pypi.org/project/websockets)|0.001| +|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.001| +|pypi|[boto3](https://pypi.org/project/boto3)|0.001| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.001| +|pypi|[aiodns](https://pypi.org/project/aiodns)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/indralab/pybiopax/badge.png b/_repos/github/indralab/pybiopax/badge.png index a07990cb..b18035d4 100644 Binary files a/_repos/github/indralab/pybiopax/badge.png and b/_repos/github/indralab/pybiopax/badge.png differ diff --git a/_repos/github/indralab/pybiopax/data.json b/_repos/github/indralab/pybiopax/data.json index e1498be3..3c7bb458 100644 --- a/_repos/github/indralab/pybiopax/data.json +++ b/_repos/github/indralab/pybiopax/data.json @@ -6,289 +6,281 @@ } }, "pypi": { + "pybiopax": { + "credit": 0.00495000000000001, + "url": "https://github.com/indralab/pybiopax" + }, "lxml": { - "credit": 0.33, + "credit": 0.65835, "url": "https://lxml.de/" }, - "requests": { - "credit": 0.008200500000000027, - "url": "https://requests.readthedocs.io" - }, "tqdm": { - "credit": 0.003300000000000025, + "credit": 0.00163350000000001, "url": "https://tqdm.github.io" }, - "win-inet-pton": { - "credit": 0.052447017857142855, - "url": "https://github.com/hickeroar/win_inet_pton" - }, - "PySocks": { - "credit": 0.057580875, - "url": "https://github.com/Anorov/PySocks" - }, - "charset-normalizer": { - "credit": 0.0062423035714285705, - "url": "https://github.com/ousret/charset_normalizer" - }, - "idna": { - "credit": 0.057580875, - "url": "https://github.com/kjd/idna" - }, - "chardet": { - "credit": 0.052447017857142855, - "url": "https://github.com/chardet/chardet" - }, - "certifi": { - "credit": 0.057580875, - "url": "https://certifiio.readthedocs.io/en/latest/" - }, - "urllib3": { - "credit": 0.01073442857142857, - "url": "https://urllib3.readthedocs.io/" + "requests": { + "credit": 0.00405924750000001, + "url": "https://requests.readthedocs.io" }, "slack-sdk": { - "credit": 0.0004083750000000025, + "credit": 0.00020214562500000047, "url": "https://github.com/slackapi/python-slack-sdk" }, "ipywidgets": { - "credit": 0.0004083750000000025, + "credit": 0.00020214562500000394, "url": "http://ipython.org" }, "wheel": { - "credit": 0.0004083750000000025, + "credit": 0.00020214562500000047, "url": "https://github.com/pypa/wheel" }, "twine": { - "credit": 0.0004083750000000025, + "credit": 0.000202145624999997, "url": "https://twine.readthedocs.io/" }, "py-make": { - "credit": 0.0004083750000000025, + "credit": 0.00020214562500000047, "url": "https://github.com/tqdm/pymake" }, "importlib-resources": { - "credit": 0.0004083750000000025, + "credit": 0.00020214562500000047, "url": "https://github.com/python/importlib_resources" }, "colorama": { - "credit": 0.0408375, + "credit": 0.020214562499999998, "url": "https://github.com/tartley/colorama" }, - "unicodedata2": { - "credit": 0.00046204714285714293, - "url": "http://github.com/mikekap/unicodedata2" + "win-inet-pton": { + "credit": 0.02596127383928571, + "url": "https://github.com/hickeroar/win_inet_pton" }, - "ipaddress": { - "credit": 0.005133857142857143, - "url": "https://github.com/phihag/ipaddress" + "PySocks": { + "credit": 0.028502533124999996, + "url": "https://github.com/Anorov/PySocks" }, - "cryptography": { - "credit": 0.005133857142857143, - "url": "https://github.com/pyca/cryptography" + "charset-normalizer": { + "credit": 0.00025961273839285705, + "url": "https://github.com/ousret/charset_normalizer" }, - "pyOpenSSL": { - "credit": 0.005133857142857143, - "url": "https://pyopenssl.org/" + "idna": { + "credit": 0.028502533124999996, + "url": "https://github.com/kjd/idna" }, - "brotlipy": { - "credit": 0.005133857142857143, - "url": "https://pypi.org/project/brotlipy" + "chardet": { + "credit": 0.02596127383928571, + "url": "https://github.com/chardet/chardet" }, - "brotli": { - "credit": 0.005133857142857143, - "url": "https://pypi.org/project/brotli" + "certifi": { + "credit": 0.028502533124999996, + "url": "https://certifiio.readthedocs.io/en/latest/" }, - "brotlicffi": { - "credit": 0.005133857142857143, - "url": "https://pypi.org/project/brotlicffi" + "urllib3": { + "credit": 0.005313542142857142, + "url": "https://urllib3.readthedocs.io/" }, "moto": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/moto" }, "databases": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/databases" }, "psutil": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/psutil" }, "black": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/black" }, "flake8": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/flake8" }, "codecov": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/codecov" }, "pytest-cov": { - "credit": 0.030060698684210525, + "credit": 0.014880045848684208, "url": "https://pypi.org/project/pytest-cov" }, "itsdangerous": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/itsdangerous" }, "Werkzeug": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/Werkzeug" }, "Flask": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/Flask" }, "Flask-Sockets": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/Flask-Sockets" }, "pytest-asyncio": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/pytest-asyncio" }, "pytest": { - "credit": 0.041496365469924815, + "credit": 0.014880045848684208, "url": "https://pypi.org/project/pytest" }, "websocket-client": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/websocket-client" }, "websockets": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/websockets" }, "SQLAlchemy": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/SQLAlchemy" }, "boto3": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/boto3" }, "aiohttp": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/aiohttp" }, "aiodns": { - "credit": 0.0021278486842105262, + "credit": 0.0010532850986842105, "url": "https://pypi.org/project/aiodns" }, "mock": { - "credit": 0.0040429125, + "credit": 0.0020012416874999996, "url": "https://pypi.org/project/mock" }, "jupyterlab-widgets": { - "credit": 0.0040429125, + "credit": 0.0020012416874999996, "url": "https://pypi.org/project/jupyterlab-widgets" }, "ipython": { - "credit": 0.0040429125, + "credit": 0.0020012416874999996, "url": "https://pypi.org/project/ipython" }, "widgetsnbextension": { - "credit": 0.0040429125, + "credit": 0.0020012416874999996, "url": "https://pypi.org/project/widgetsnbextension" }, "nbformat": { - "credit": 0.0040429125, + "credit": 0.0020012416874999996, "url": "https://pypi.org/project/nbformat" }, "traitlets": { - "credit": 0.0040429125, + "credit": 0.0020012416874999996, "url": "https://pypi.org/project/traitlets" }, "ipython-genutils": { - "credit": 0.0040429125, + "credit": 0.0020012416874999996, "url": "https://pypi.org/project/ipython-genutils" }, "ipykernel": { - "credit": 0.0040429125, + "credit": 0.0020012416874999996, "url": "https://pypi.org/project/ipykernel" }, "rich": { - "credit": 0.004492125, + "credit": 0.002223601875, "url": "https://pypi.org/project/rich" }, "rfc3986": { - "credit": 0.004492125, + "credit": 0.002223601875, "url": "https://pypi.org/project/rfc3986" }, "keyring": { - "credit": 0.004492125, + "credit": 0.002223601875, "url": "https://pypi.org/project/keyring" }, "importlib-metadata": { - "credit": 0.004492125, + "credit": 0.002223601875, "url": "https://pypi.org/project/importlib-metadata" }, "requests-toolbelt": { - "credit": 0.004492125, + "credit": 0.002223601875, "url": "https://pypi.org/project/requests-toolbelt" }, "readme-renderer": { - "credit": 0.004492125, + "credit": 0.002223601875, "url": "https://pypi.org/project/readme-renderer" }, "pkginfo": { - "credit": 0.004492125, + "credit": 0.002223601875, "url": "https://pypi.org/project/pkginfo" }, "docopt": { - "credit": 0.040429124999999996, + "credit": 0.020012416874999998, "url": "https://pypi.org/project/docopt" }, "pytest-mypy": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/pytest-mypy" }, "pytest-black": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/pytest-black" }, "pytest-enabler": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/pytest-enabler" }, "pytest-flake8": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/pytest-checkdocs" }, "rst.linker": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/jaraco.packaging" }, "sphinx": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/sphinx" }, "zipp": { - "credit": 0.003675375, + "credit": 0.0018193106249999999, "url": "https://pypi.org/project/zipp" }, - "pytest-randomly": { - "credit": 0.011435666785714286, - "url": "https://pypi.org/project/pytest-randomly" + "unicodedata2": { + "credit": 0.025701661100892854, + "url": "https://pypi.org/project/unicodedata2" + }, + "ipaddress": { + "credit": 0.0025412592857142853, + "url": "https://pypi.org/project/ipaddress" + }, + "cryptography": { + "credit": 0.0025412592857142853, + "url": "https://pypi.org/project/cryptography" + }, + "pyOpenSSL": { + "credit": 0.0025412592857142853, + "url": "https://pypi.org/project/pyOpenSSL" + }, + "brotlipy": { + "credit": 0.0025412592857142853, + "url": "https://pypi.org/project/brotlipy" }, - "pytest-xdist": { - "credit": 0.011435666785714286, - "url": "https://pypi.org/project/pytest-xdist" + "brotli": { + "credit": 0.0025412592857142853, + "url": "https://pypi.org/project/brotli" }, - "coverage": { - "credit": 0.011435666785714286, - "url": "https://pypi.org/project/coverage" + "brotlicffi": { + "credit": 0.0025412592857142853, + "url": "https://pypi.org/project/brotlicffi" } } } \ No newline at end of file diff --git a/_repos/github/inpefess/gym-saturation/badge.png b/_repos/github/inpefess/gym-saturation/badge.png index 2e1b7fde..4703735e 100644 Binary files a/_repos/github/inpefess/gym-saturation/badge.png and b/_repos/github/inpefess/gym-saturation/badge.png differ diff --git a/_repos/github/iomega/spec2vec/badge.png b/_repos/github/iomega/spec2vec/badge.png index 771ff7ab..1890bc0c 100644 Binary files a/_repos/github/iomega/spec2vec/badge.png and b/_repos/github/iomega/spec2vec/badge.png differ diff --git a/_repos/github/iontorrent/TS/badge.png b/_repos/github/iontorrent/TS/badge.png index fba049f4..46d7a3d5 100644 Binary files a/_repos/github/iontorrent/TS/badge.png and b/_repos/github/iontorrent/TS/badge.png differ diff --git a/_repos/github/jbuisine/macop/README.md b/_repos/github/jbuisine/macop/README.md index 44d0e3a6..6d9b8785 100644 --- a/_repos/github/jbuisine/macop/README.md +++ b/_repos/github/jbuisine/macop/README.md @@ -9,6 +9,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/jbuisine/macop|0.01| +|pypi|[macop](https://github.com/prise-3d/macop)|0.01| |pypi|[numpy](https://www.numpy.org)|0.01| diff --git a/_repos/github/jbuisine/macop/badge.png b/_repos/github/jbuisine/macop/badge.png index bf2367c1..b489446e 100644 Binary files a/_repos/github/jbuisine/macop/badge.png and b/_repos/github/jbuisine/macop/badge.png differ diff --git a/_repos/github/jbuisine/macop/data.json b/_repos/github/jbuisine/macop/data.json index 563c07fc..0d302080 100644 --- a/_repos/github/jbuisine/macop/data.json +++ b/_repos/github/jbuisine/macop/data.json @@ -6,8 +6,12 @@ } }, "pypi": { - "numpy": { + "macop": { "credit": 0.0099, + "url": "https://github.com/prise-3d/macop" + }, + "numpy": { + "credit": 0.009801, "url": "https://www.numpy.org" } } diff --git a/_repos/github/jdber1/opendrop/README.md b/_repos/github/jdber1/opendrop/README.md index 84f84f22..6f960640 100644 --- a/_repos/github/jdber1/opendrop/README.md +++ b/_repos/github/jdber1/opendrop/README.md @@ -8,52 +8,44 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.328| -|pypi|[pycairo](https://pycairo.readthedocs.io)|0.165| -|pypi|[pygobject](https://pygobject.readthedocs.io)|0.165| -|pypi|[matplotlib](https://matplotlib.org)|0.165| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.029| -|pypi|[dataclasses](https://github.com/ericvsmith/dataclasses)|0.025| -|pypi|[tomli](https://pypi.org/project/tomli)|0.012| +|pypi|[numpy](https://www.numpy.org)|0.219| +|pypi|[pycairo](https://pycairo.readthedocs.io)|0.11| +|pypi|[pygobject](https://pygobject.readthedocs.io)|0.11| +|pypi|[matplotlib](https://matplotlib.org)|0.11| +|pypi|[genicam](https://www.emva.org)|0.11| +|pypi|[typing_extensions](https://typing.readthedocs.io/)|0.11| +|pypi|[typing](https://pypi.org/project/typing)|0.054| +|pypi|[pathlib2](https://pypi.org/project/pathlib2)|0.054| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.021| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.019| +|pypi|[dataclasses](https://github.com/ericvsmith/dataclasses)|0.017| |requirements.txt|github/jdber1/opendrop|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.008| -|pypi|[mock](https://pypi.org/project/mock)|0.006| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.006| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.006| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.005| -|pypi|[build](https://pypi.org/project/build)|0.005| -|pypi|[lxml](https://pypi.org/project/lxml)|0.004| -|pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[colorama](https://pypi.org/project/colorama)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| -|pypi|[six](https://pypi.org/project/six)|0.003| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| -|pypi|[hunter](https://pypi.org/project/hunter)|0.003| -|pypi|[fields](https://pypi.org/project/fields)|0.003| -|pypi|[coverage](https://pypi.org/project/coverage)|0.003| -|pypi|[uvloop](http://github.com/MagicStack/uvloop)|0.002| -|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|0.002| -|pypi|[ipython](https://pypi.org/project/ipython)|0.002| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.002| -|pypi|[pathspec](https://pypi.org/project/pathspec)|0.002| -|pypi|[platformdirs](https://pypi.org/project/platformdirs)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[injector](https://github.com/alecthomas/injector)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[attrs](https://pypi.org/project/attrs)|0.001| +|pypi|[tomli](https://pypi.org/project/tomli)|0.007| +|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.004| +|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.004| +|pypi|[mock](https://pypi.org/project/mock)|0.003| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.003| +|pypi|[build](https://pypi.org/project/build)|0.003| +|pypi|[lxml](https://pypi.org/project/lxml)|0.003| +|pypi|[psutil](https://pypi.org/project/psutil)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[six](https://pypi.org/project/six)|0.002| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| +|pypi|[hunter](https://pypi.org/project/hunter)|0.002| +|pypi|[fields](https://pypi.org/project/fields)|0.002| +|pypi|[coverage](https://pypi.org/project/coverage)|0.002| +|pypi|[uvloop](https://pypi.org/project/uvloop)|0.001| +|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.001| +|pypi|[colorama](https://pypi.org/project/colorama)|0.001| +|pypi|[pathspec](https://pypi.org/project/pathspec)|0.001| +|pypi|[platformdirs](https://pypi.org/project/platformdirs)|0.001| +|pypi|[click](https://pypi.org/project/click)|0.001| +|pypi|[scipy](https://www.scipy.org)|0.001| +|pypi|[injector](https://github.com/alecthomas/injector)|0.001| +|pypi|[importlib_resources](http://importlib-resources.readthedocs.io/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/jdber1/opendrop/badge.png b/_repos/github/jdber1/opendrop/badge.png index 45182318..3763e6a1 100644 Binary files a/_repos/github/jdber1/opendrop/badge.png and b/_repos/github/jdber1/opendrop/badge.png differ diff --git a/_repos/github/jdber1/opendrop/data.json b/_repos/github/jdber1/opendrop/data.json index 74ae2f42..b0f19cb1 100644 --- a/_repos/github/jdber1/opendrop/data.json +++ b/_repos/github/jdber1/opendrop/data.json @@ -7,200 +7,168 @@ }, "pypi": { "pycairo": { - "credit": 0.165, + "credit": 0.11, "url": "https://pycairo.readthedocs.io" }, "pygobject": { - "credit": 0.165, + "credit": 0.11, "url": "https://pygobject.readthedocs.io" }, "numpy": { - "credit": 0.32835000000000003, + "credit": 0.21889999999999998, "url": "https://www.numpy.org" }, "matplotlib": { - "credit": 0.165, + "credit": 0.11, "url": "https://matplotlib.org" }, "scipy": { - "credit": 0.0016500000000000126, + "credit": 0.0011000000000000038, "url": "https://www.scipy.org" }, "injector": { - "credit": 0.0016500000000000126, + "credit": 0.0011000000000000038, "url": "https://github.com/alecthomas/injector" }, + "genicam": { + "credit": 0.11, + "url": "https://www.emva.org" + }, + "importlib_resources": { + "credit": 0.0011000000000000038, + "url": "http://importlib-resources.readthedocs.io/" + }, + "typing_extensions": { + "credit": 0.11, + "url": "https://typing.readthedocs.io/" + }, "dataclasses": { - "credit": 0.02511281868131868, + "credit": 0.01674187912087912, "url": "https://github.com/ericvsmith/dataclasses" }, "black": { - "credit": 0.0002333571428571428, + "credit": 0.0001555714285714268, "url": "https://github.com/psf/black" }, "mypy": { - "credit": 0.0002333571428571428, + "credit": 0.00015557142857142853, "url": "http://www.mypy-lang.org/" }, "check-manifest": { - "credit": 0.0002333571428571428, + "credit": 0.00015557142857142853, "url": "https://github.com/mgedmin/check-manifest" }, "pytest-cov": { - "credit": 0.0002333571428571428, + "credit": 0.00015557142857142853, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.007741623214285714, + "credit": 0.02056265357142857, "url": "https://docs.pytest.org/en/latest/" }, "typing-extensions": { - "credit": 0.02896321153846154, - "url": "https://typing.readthedocs.io/" + "credit": 0.01930880769230769, + "url": "https://pypi.org/project/typing-extensions" + }, + "typing": { + "credit": 0.05445, + "url": "https://pypi.org/project/typing" + }, + "pathlib2": { + "credit": 0.05445, + "url": "https://pypi.org/project/pathlib2" }, "uvloop": { - "credit": 0.0017771043956043956, - "url": "http://github.com/MagicStack/uvloop" + "credit": 0.0011847362637362638, + "url": "https://pypi.org/project/uvloop" }, "tokenize-rt": { - "credit": 0.0017771043956043956, + "credit": 0.0011847362637362638, "url": "https://pypi.org/project/tokenize-rt" }, "ipython": { - "credit": 0.0017771043956043956, + "credit": 0.0011847362637362638, "url": "https://pypi.org/project/ipython" }, "aiohttp": { - "credit": 0.0017771043956043956, + "credit": 0.0011847362637362638, "url": "https://pypi.org/project/aiohttp" }, "colorama": { - "credit": 0.003221001717032967, + "credit": 0.0011847362637362638, "url": "https://pypi.org/project/colorama" }, "typed-ast": { - "credit": 0.005627497252747253, + "credit": 0.003751664835164835, "url": "https://pypi.org/project/typed-ast" }, "tomli": { - "credit": 0.011691866002747252, + "credit": 0.00683197912087912, "url": "https://pypi.org/project/tomli" }, "mypy-extensions": { - "credit": 0.005627497252747253, + "credit": 0.003751664835164835, "url": "https://pypi.org/project/mypy-extensions" }, "pathspec": { - "credit": 0.0017771043956043956, + "credit": 0.0011847362637362638, "url": "https://pypi.org/project/pathspec" }, "platformdirs": { - "credit": 0.0017771043956043956, + "credit": 0.0011847362637362638, "url": "https://pypi.org/project/platformdirs" }, "click": { - "credit": 0.0017771043956043956, + "credit": 0.0011847362637362638, "url": "https://pypi.org/project/click" }, "lxml": { - "credit": 0.0038503928571428573, + "credit": 0.002566928571428571, "url": "https://pypi.org/project/lxml" }, "psutil": { - "credit": 0.0038503928571428573, + "credit": 0.002566928571428571, "url": "https://pypi.org/project/psutil" }, "mock": { - "credit": 0.00606436875, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/mock" }, "setuptools": { - "credit": 0.0046204714285714285, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/setuptools" }, "build": { - "credit": 0.0046204714285714285, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/build" }, "virtualenv": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/fields" }, "coverage": { - "credit": 0.002887794642857143, + "credit": 0.0019251964285714285, "url": "https://pypi.org/project/coverage" - }, - "xmlschema": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/nose" - }, - "hypothesis": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/argcomplete" - }, - "atomicwrites": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/importlib-metadata" - }, - "py": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/attrs" } } } \ No newline at end of file diff --git a/_repos/github/jiahecui/SenAOReFoc/badge.png b/_repos/github/jiahecui/SenAOReFoc/badge.png index 3bf6673a..5ac413d3 100644 Binary files a/_repos/github/jiahecui/SenAOReFoc/badge.png and b/_repos/github/jiahecui/SenAOReFoc/badge.png differ diff --git a/_repos/github/jianhuupenn/SpaGCN/badge.png b/_repos/github/jianhuupenn/SpaGCN/badge.png index 0f38b55c..e685e2b0 100644 Binary files a/_repos/github/jianhuupenn/SpaGCN/badge.png and b/_repos/github/jianhuupenn/SpaGCN/badge.png differ diff --git a/_repos/github/jmschrei/pomegranate/README.md b/_repos/github/jmschrei/pomegranate/README.md index 99ba395b..38e4a4cd 100644 --- a/_repos/github/jmschrei/pomegranate/README.md +++ b/_repos/github/jmschrei/pomegranate/README.md @@ -8,32 +8,80 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.499| -|pypi|[cython](http://cython.org/)|0.124| -|pypi|[joblib](https://joblib.readthedocs.io)|0.124| -|pypi|[pyyaml](https://pyyaml.org/)|0.124| +|pypi|[numpy](https://www.numpy.org)|0.15| +|pypi|[matplotlib](https://matplotlib.org)|0.094| +|pypi|[pygraphviz](http://pygraphviz.github.io)|0.089| +|pypi|[pyyaml](https://pyyaml.org/)|0.062| +|pypi|[cupy](https://cupy.dev/)|0.061| +|pypi|[joblib](https://joblib.readthedocs.io)|0.061| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.042| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.029| +|pypi|[pandas](https://pypi.org/project/pandas)|0.029| +|pypi|[scipy](https://www.scipy.org)|0.028| +|pypi|[pydot](https://github.com/pydot/pydot)|0.028| +|pypi|[lxml](https://lxml.de/)|0.028| +|pypi|[nb2plots](http://github.com/matthew-brett/nb2plots)|0.028| +|pypi|[sphinx-gallery](https://sphinx-gallery.github.io)|0.028| +|pypi|[mypy](https://pypi.org/project/mypy)|0.028| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.024| +|pypi|[coverage](https://pypi.org/project/coverage)|0.017| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.014| +|pypi|[requests](https://pypi.org/project/requests)|0.014| +|pypi|[six](https://pypi.org/project/six)|0.011| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.011| |setup.py|github/jmschrei/pomegranate|0.01| -|pypi|[scipy](https://www.scipy.org)|0.009| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.006| -|pypi|[pytest](https://pypi.org/project/pytest)|0.006| -|pypi|[sympy](https://pypi.org/project/sympy)|0.006| -|pypi|[pydot](https://pypi.org/project/pydot)|0.006| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.006| -|pypi|[lxml](https://pypi.org/project/lxml)|0.006| -|pypi|[texext](https://pypi.org/project/texext)|0.006| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.006| -|pypi|[pillow](https://pypi.org/project/pillow)|0.006| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.006| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.006| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.006| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| -|pypi|[mypy](https://pypi.org/project/mypy)|0.006| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.006| -|pypi|[pandas](https://pypi.org/project/pandas)|0.006| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.006| -|pypi|[coverage](https://pypi.org/project/coverage)|0.003| -|pypi|[requests](https://pypi.org/project/requests)|0.003| -|pypi|[networkx](https://networkx.org/)|0.001| +|pypi|[docutils](https://pypi.org/project/docutils)|0.008| +|pypi|[pydata-sphinx-theme](https://pydata-sphinx-theme.readthedocs.io/en/latest/)|0.006| +|pypi|[networkx](https://networkx.org/)|0.006| +|pypi|[pomegranate](http://pypi.python.org/pypi/pomegranate/)|0.005| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| +|pypi|[codecov](https://github.com/codecov/codecov-python)|0.004| +|pypi|[numpydoc](https://numpydoc.readthedocs.io)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[sympy](https://sympy.org)|0.003| +|pypi|[texext](http://github.com/matthew-brett/texext)|0.003| +|pypi|[pillow](https://python-pillow.org)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| +|pypi|[hunter](https://pypi.org/project/hunter)|0.003| +|pypi|[fields](https://pypi.org/project/fields)|0.003| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| +|pypi|[pygments](https://pypi.org/project/pygments)|0.002| +|pypi|[nose](https://pypi.org/project/nose)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[tomli](https://pypi.org/project/tomli)|0.002| +|pypi|[py](https://pypi.org/project/py)|0.002| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| +|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.002| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.002| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.002| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.002| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.002| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.002| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.002| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.002| +|pypi|[olefile](https://pypi.org/project/olefile)|0.002| +|pypi|[nox](https://pypi.org/project/nox)|0.001| +|pypi|[xarray](https://pypi.org/project/xarray)|0.001| +|pypi|[plotly](https://pypi.org/project/plotly)|0.001| +|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|0.001| +|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|0.001| +|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|0.001| +|pypi|[pytest-regressions](https://pypi.org/project/pytest-regressions)|0.001| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.001| +|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|0.001| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.001| +|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/jmschrei/pomegranate/badge.png b/_repos/github/jmschrei/pomegranate/badge.png index 7348faf3..1913b0d2 100644 Binary files a/_repos/github/jmschrei/pomegranate/badge.png and b/_repos/github/jmschrei/pomegranate/badge.png differ diff --git a/_repos/github/jmschrei/pomegranate/data.json b/_repos/github/jmschrei/pomegranate/data.json index abebff2d..10ee4e95 100644 --- a/_repos/github/jmschrei/pomegranate/data.json +++ b/_repos/github/jmschrei/pomegranate/data.json @@ -6,109 +6,297 @@ } }, "pypi": { - "cython": { - "credit": 0.12375, - "url": "http://cython.org/" + "pomegranate": { + "credit": 0.00495000000000001, + "url": "http://pypi.python.org/pypi/pomegranate/" }, - "numpy": { - "credit": 0.498650625, - "url": "https://www.numpy.org" + "networkx": { + "credit": 0.005562562500000014, + "url": "https://networkx.org/" + }, + "matplotlib": { + "credit": 0.09364242937499999, + "url": "https://matplotlib.org" + }, + "pygraphviz": { + "credit": 0.08879093437499999, + "url": "http://pygraphviz.github.io" + }, + "cupy": { + "credit": 0.06125625, + "url": "https://cupy.dev/" + }, + "pyyaml": { + "credit": 0.062310922826086954, + "url": "https://pyyaml.org/" }, "scipy": { - "credit": 0.008600625000000004, + "credit": 0.028147246875000004, "url": "https://www.scipy.org" }, "joblib": { - "credit": 0.12375, + "credit": 0.06125625, "url": "https://joblib.readthedocs.io" }, - "networkx": { - "credit": 0.0012375000000000025, - "url": "https://networkx.org/" - }, - "pyyaml": { - "credit": 0.12375, - "url": "https://pyyaml.org/" + "numpy": { + "credit": 0.15048929470108693, + "url": "https://www.numpy.org" }, "codecov": { - "credit": 6.125624999999985e-05, + "credit": 0.004331882201086956, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.006125625, + "credit": 0.010699469388586956, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.006125625, - "url": "https://pypi.org/project/pytest" + "credit": 0.013731653763586956, + "url": "https://docs.pytest.org/en/latest/" }, "sympy": { - "credit": 0.006125625, - "url": "https://pypi.org/project/sympy" + "credit": 0.003277209374999999, + "url": "https://sympy.org" }, "pydot": { - "credit": 0.006125625, - "url": "https://pypi.org/project/pydot" - }, - "pygraphviz": { - "credit": 0.006125625, - "url": "https://pypi.org/project/pygraphviz" + "credit": 0.027534684375, + "url": "https://github.com/pydot/pydot" }, "lxml": { - "credit": 0.006125625, - "url": "https://pypi.org/project/lxml" + "credit": 0.027534684375, + "url": "https://lxml.de/" }, "texext": { - "credit": 0.006125625, - "url": "https://pypi.org/project/texext" + "credit": 0.003277209374999999, + "url": "http://github.com/matthew-brett/texext" }, "nb2plots": { - "credit": 0.006125625, - "url": "https://pypi.org/project/nb2plots" + "credit": 0.027534684375, + "url": "http://github.com/matthew-brett/nb2plots" }, "pillow": { - "credit": 0.006125625, - "url": "https://pypi.org/project/pillow" + "credit": 0.003277209374999999, + "url": "https://python-pillow.org" }, "numpydoc": { - "credit": 0.006125625, - "url": "https://pypi.org/project/numpydoc" + "credit": 0.004331882201086956, + "url": "https://numpydoc.readthedocs.io" }, "sphinx-gallery": { - "credit": 0.006125625, - "url": "https://pypi.org/project/sphinx-gallery" + "credit": 0.027534684375, + "url": "https://sphinx-gallery.github.io" }, "pydata-sphinx-theme": { - "credit": 0.006125625, - "url": "https://pypi.org/project/pydata-sphinx-theme" + "credit": 0.0064412278532608655, + "url": "https://pydata-sphinx-theme.readthedocs.io/en/latest/" }, "sphinx": { - "credit": 0.006125625, - "url": "https://pypi.org/project/sphinx" + "credit": 0.041988096562499994, + "url": "https://www.sphinx-doc.org/" }, "mypy": { - "credit": 0.006125625, + "credit": 0.027534684375, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.006125625, + "credit": 0.028589357201086955, "url": "https://pypi.org/project/pre-commit" }, "pandas": { - "credit": 0.006125625, + "credit": 0.028589357201086955, "url": "https://pypi.org/project/pandas" }, - "matplotlib": { - "credit": 0.006125625, - "url": "https://pypi.org/project/matplotlib" - }, "coverage": { - "credit": 0.003032184375, + "credit": 0.016677014062500002, "url": "https://pypi.org/project/coverage" }, "requests": { - "credit": 0.003032184375, + "credit": 0.0136448296875, "url": "https://pypi.org/project/requests" + }, + "virtualenv": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/virtualenv" + }, + "pytest-xdist": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/pytest-xdist" + }, + "six": { + "credit": 0.011118009375, + "url": "https://pypi.org/project/six" + }, + "process-tests": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/fields" + }, + "xmlschema": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/xmlschema" + }, + "pygments": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/pygments" + }, + "nose": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/nose" + }, + "mock": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/mock" + }, + "hypothesis": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/hypothesis" + }, + "argcomplete": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/argcomplete" + }, + "colorama": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/colorama" + }, + "atomicwrites": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/atomicwrites" + }, + "importlib-metadata": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/importlib-metadata" + }, + "tomli": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/tomli" + }, + "py": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/py" + }, + "pluggy": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/pluggy" + }, + "packaging": { + "credit": 0.004086857201086957, + "url": "https://pypi.org/project/packaging" + }, + "iniconfig": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/iniconfig" + }, + "attrs": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/attrs" + }, + "mpmath": { + "credit": 0.024257475, + "url": "https://pypi.org/project/mpmath" + }, + "docutils": { + "credit": 0.008085825, + "url": "https://pypi.org/project/docutils" + }, + "pytest-timeout": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/olefile" + }, + "Jinja2": { + "credit": 0.004851495, + "url": "https://pypi.org/project/Jinja2" + }, + "nox": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/nox" + }, + "xarray": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/xarray" + }, + "plotly": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/plotly" + }, + "jupyter_sphinx": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/jupyter_sphinx" + }, + "sphinx-sitemap": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/sphinx-sitemap" + }, + "sphinxext-rediraffe": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/sphinxext-rediraffe" + }, + "pytest-regressions": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/pytest-regressions" + }, + "myst-parser": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/myst-parser" + }, + "docutils!=0.17.0": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/docutils!=0.17.0" + }, + "beautifulsoup4": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/beautifulsoup4" + }, + "sphinx<5,>=3.5.4": { + "credit": 0.0010546728260869566, + "url": "https://pypi.org/project/sphinx<5,>=3.5.4" } } } \ No newline at end of file diff --git a/_repos/github/jollejolles/pirecorder/README.md b/_repos/github/jollejolles/pirecorder/README.md index 9cf17189..7ee6dfc0 100644 --- a/_repos/github/jollejolles/pirecorder/README.md +++ b/_repos/github/jollejolles/pirecorder/README.md @@ -8,17 +8,58 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[matplotlib](https://matplotlib.org)|0.082| +|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.071| +|pypi|[localconfig](https://github.com/maxzheng/localconfig)|0.069| +|pypi|[cron-descriptor](https://github.com/Salamek/cron-descriptor)|0.069| +|pypi|[future](https://python-future.org)|0.069| +|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.069| +|pypi|[python-crontab](https://gitlab.com/doctormo/python-crontab/)|0.069| +|pypi|[pythutils](https://github.com/JolleJolles)|0.069| +|pypi|[objsize](https://github.com/liran-funaro/objsize)|0.062| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.062| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.061| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.061| +|pypi|[numpy](https://www.numpy.org)|0.044| |setup.py|github/jollejolles/pirecorder|0.01| -|pypi|[numpy](https://www.numpy.org)|0.002| -|pypi|[localconfig](https://github.com/maxzheng/localconfig)|0.002| -|pypi|[pythutils](https://github.com/JolleJolles)|0.001| -|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.001| -|pypi|[python-crontab](https://gitlab.com/doctormo/python-crontab/)|0.001| +|pypi|[pytest](https://pypi.org/project/pytest)|0.009| +|pypi|[cffi](https://pypi.org/project/cffi)|0.007| +|pypi|[pyyaml](https://pyyaml.org/)|0.007| +|pypi|[coverage](https://pypi.org/project/coverage)|0.006| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.005| +|pypi|[brotli](https://github.com/google/brotli)|0.005| +|pypi|[lz4](https://github.com/python-lz4/python-lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[lxml](https://pypi.org/project/lxml)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.003| +|pypi|[pytz](https://pypi.org/project/pytz)|0.003| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.002| +|pypi|[enum34](https://pypi.org/project/enum34)|0.002| |pypi|[croniter](http://github.com/kiorky/croniter)|0.001| -|pypi|[cron-descriptor](https://github.com/Salamek/cron-descriptor)|0.001| -|pypi|[pyyaml](https://pyyaml.org/)|0.001| -|pypi|[future](https://python-future.org)|0.001| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.001| +|pypi|[pirecorder](https://github.com/jollejolles)|0.001| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.001| +|pypi|[seaborn](https://seaborn.pydata.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[objgraph](https://mg.pov.lt/objgraph/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/jollejolles/pirecorder/badge.png b/_repos/github/jollejolles/pirecorder/badge.png index c39b63b6..3c3fb78a 100644 Binary files a/_repos/github/jollejolles/pirecorder/badge.png and b/_repos/github/jollejolles/pirecorder/badge.png differ diff --git a/_repos/github/jollejolles/pirecorder/data.json b/_repos/github/jollejolles/pirecorder/data.json index b0667cb9..2b24642d 100644 --- a/_repos/github/jollejolles/pirecorder/data.json +++ b/_repos/github/jollejolles/pirecorder/data.json @@ -6,45 +6,237 @@ } }, "pypi": { - "pythutils": { - "credit": 0.0009, - "url": "https://github.com/JolleJolles" + "pirecorder": { + "credit": 0.0006187500000000012, + "url": "https://github.com/jollejolles" + }, + "localconfig": { + "credit": 0.06868125, + "url": "https://github.com/maxzheng/localconfig" + }, + "cron-descriptor": { + "credit": 0.06868125, + "url": "https://github.com/Salamek/cron-descriptor" + }, + "croniter": { + "credit": 0.0006868125000000017, + "url": "http://github.com/kiorky/croniter" + }, + "future": { + "credit": 0.06868125, + "url": "https://python-future.org" }, "multiprocess": { - "credit": 0.0009, + "credit": 0.06868125, "url": "https://github.com/uqfoundation/multiprocess" }, "python-crontab": { - "credit": 0.0009, + "credit": 0.06868125, "url": "https://gitlab.com/doctormo/python-crontab/" }, - "croniter": { - "credit": 0.0009, - "url": "http://github.com/kiorky/croniter" + "pythutils": { + "credit": 0.06868125, + "url": "https://github.com/JolleJolles" }, - "cron-descriptor": { - "credit": 0.0009, - "url": "https://github.com/Salamek/cron-descriptor" + "dill": { + "credit": 0.0006187500000000012, + "url": "https://github.com/uqfoundation/dill" }, - "pyyaml": { - "credit": 0.0009, - "url": "https://pyyaml.org/" + "objsize": { + "credit": 0.061875, + "url": "https://github.com/liran-funaro/objsize" }, - "future": { - "credit": 0.0009, - "url": "https://python-future.org" + "seaborn": { + "credit": 0.0006187500000000012, + "url": "https://seaborn.pydata.org" + }, + "matplotlib": { + "credit": 0.08190108173076924, + "url": "https://matplotlib.org" + }, + "cycler": { + "credit": 0.061875, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0006187500000000012, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0006187500000000012, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0006187500000000012, + "url": "https://python-pillow.org" }, "numpy": { - "credit": 0.0018, + "credit": 0.044472953725961537, "url": "https://www.numpy.org" }, - "localconfig": { - "credit": 0.0018, - "url": "https://github.com/maxzheng/localconfig" + "pyyaml": { + "credit": 0.00680625, + "url": "https://pyyaml.org/" }, "python-dateutil": { - "credit": 0.000891, + "credit": 0.0705212578125, "url": "https://github.com/dateutil/dateutil" + }, + "objgraph": { + "credit": 0.0006125625000000037, + "url": "https://mg.pov.lt/objgraph/" + }, + "pandas": { + "credit": 0.00015314062500000093, + "url": "https://pandas.pydata.org" + }, + "scipy": { + "credit": 0.0002002608173076936, + "url": "https://www.scipy.org" + }, + "xattr": { + "credit": 4.712019230769266e-05, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 4.712019230769266e-05, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.0047120192307692306, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.0047120192307692306, + "url": "https://github.com/google/brotli" + }, + "brotlicffi": { + "credit": 4.712019230769266e-05, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 4.712019230769266e-05, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 4.712019230769266e-05, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 0.0047120192307692306, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.06125625, + "url": "https://pypi.org/project/typing-extensions" + }, + "pytest-timeout": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest": { + "credit": 0.00868778545673077, + "url": "https://pypi.org/project/pytest" + }, + "pyroma": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.006160965144230769, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.003828515625, + "url": "https://pypi.org/project/olefile" + }, + "graphviz": { + "credit": 0.060643687499999994, + "url": "https://pypi.org/project/graphviz" + }, + "pytest-xdist": { + "credit": 0.004859269831730769, + "url": "https://pypi.org/project/pytest-xdist" + }, + "hypothesis": { + "credit": 0.0025268203124999998, + "url": "https://pypi.org/project/hypothesis" + }, + "pytz": { + "credit": 0.0025268203124999998, + "url": "https://pypi.org/project/pytz" + }, + "cffi": { + "credit": 0.006997348557692307, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.002332449519230769, + "url": "https://pypi.org/project/pytest-randomly" + }, + "enum34": { + "credit": 0.002332449519230769, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/mpmath" } } } \ No newline at end of file diff --git a/_repos/github/jorisparet/partycls/README.md b/_repos/github/jorisparet/partycls/README.md index 53f61e8b..b850006f 100644 --- a/_repos/github/jorisparet/partycls/README.md +++ b/_repos/github/jorisparet/partycls/README.md @@ -9,8 +9,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/jorisparet/partycls|0.01| -|pypi|[numpy](https://www.numpy.org)|0.007| -|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.003| +|pypi|[partycls](https://pypi.org/project/partycls)|0.005| +|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.005| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/jorisparet/partycls/badge.png b/_repos/github/jorisparet/partycls/badge.png index 4190f17f..5601e8f7 100644 Binary files a/_repos/github/jorisparet/partycls/badge.png and b/_repos/github/jorisparet/partycls/badge.png differ diff --git a/_repos/github/jorisparet/partycls/data.json b/_repos/github/jorisparet/partycls/data.json index 080653a3..67102c92 100644 --- a/_repos/github/jorisparet/partycls/data.json +++ b/_repos/github/jorisparet/partycls/data.json @@ -6,12 +6,12 @@ } }, "pypi": { - "numpy": { - "credit": 0.006600000000000001, - "url": "https://www.numpy.org" + "partycls": { + "credit": 0.00495, + "url": "https://pypi.org/project/partycls" }, "sklearn": { - "credit": 0.0033000000000000004, + "credit": 0.00495, "url": "https://pypi.python.org/pypi/scikit-learn/" } } diff --git a/_repos/github/kerkelae/disimpy/badge.png b/_repos/github/kerkelae/disimpy/badge.png index e63b232f..b8307f6a 100644 Binary files a/_repos/github/kerkelae/disimpy/badge.png and b/_repos/github/kerkelae/disimpy/badge.png differ diff --git a/_repos/github/ketch/RK-Opt/badge.png b/_repos/github/ketch/RK-Opt/badge.png index 50dd1522..315060ea 100644 Binary files a/_repos/github/ketch/RK-Opt/badge.png and b/_repos/github/ketch/RK-Opt/badge.png differ diff --git a/_repos/github/ketch/nodepy/README.md b/_repos/github/ketch/nodepy/README.md index 3ad08a38..f7e524a2 100644 --- a/_repos/github/ketch/nodepy/README.md +++ b/_repos/github/ketch/nodepy/README.md @@ -8,46 +8,71 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.33| -|pypi|[matplotlib](https://matplotlib.org)|0.33| -|pypi|[pycodestyle](https://pycodestyle.pycqa.org/)|0.065| -|pypi|[tomli](https://pypi.org/project/tomli)|0.038| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.013| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.012| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.012| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.012| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.012| -|pypi|[hunter](https://pypi.org/project/hunter)|0.012| -|pypi|[fields](https://pypi.org/project/fields)|0.012| +|pypi|[matplotlib](https://matplotlib.org)|0.174| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.07| +|pypi|[mpmath](http://mpmath.org/)|0.052| +|pypi|[numpy](https://www.numpy.org)|0.05| +|pypi|[pycodestyle](https://pycodestyle.pycqa.org/)|0.049| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.046| +|pypi|[coverage](https://pypi.org/project/coverage)|0.027| +|pypi|[wheel](https://github.com/pypa/wheel)|0.025| +|pypi|[codecov](https://github.com/codecov/codecov-python)|0.025| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| +|pypi|[requests](https://pypi.org/project/requests)|0.014| |setup.py|github/ketch/nodepy|0.01| -|pypi|[requests](https://requests.readthedocs.io)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[mock](https://pypi.org/project/mock)|0.006| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[colorama](https://pypi.org/project/colorama)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[packaging](https://pypi.org/project/packaging)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[attrs](https://pypi.org/project/attrs)|0.006| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.005| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.005| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.005| -|pypi|[idna](https://pypi.org/project/idna)|0.005| -|pypi|[chardet](https://pypi.org/project/chardet)|0.005| -|pypi|[certifi](https://pypi.org/project/certifi)|0.005| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.005| -|pypi|[sympy](https://sympy.org)|0.003| -|pypi|[mpmath](http://mpmath.org/)|0.003| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.001| -|pypi|[wheel](https://github.com/pypa/wheel)|0.001| -|pypi|[codecov](https://github.com/codecov/codecov-python)|0.001| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.009| +|pypi|[brotli](https://github.com/google/brotli)|0.009| +|pypi|[lxml](https://lxml.de/)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[packaging](https://pypi.org/project/packaging)|0.009| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[enum34](https://pypi.org/project/enum34)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| +|pypi|[six](https://pypi.org/project/six)|0.004| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| +|pypi|[hunter](https://pypi.org/project/hunter)|0.003| +|pypi|[fields](https://pypi.org/project/fields)|0.003| +|pypi|[sympy](https://sympy.org)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| +|pypi|[pygments](https://pypi.org/project/pygments)|0.002| +|pypi|[nose](https://pypi.org/project/nose)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[tomli](https://pypi.org/project/tomli)|0.002| +|pypi|[py](https://pypi.org/project/py)|0.002| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| +|pypi|[attrs](https://pypi.org/project/attrs)|0.002| +|pypi|[nodepy](https://github.com/ketch/nodepy)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/ketch/nodepy/badge.png b/_repos/github/ketch/nodepy/badge.png index b2a4fab6..a92b9e70 100644 Binary files a/_repos/github/ketch/nodepy/badge.png and b/_repos/github/ketch/nodepy/badge.png differ diff --git a/_repos/github/ketch/nodepy/data.json b/_repos/github/ketch/nodepy/data.json index dbe3af12..f2fa1c13 100644 --- a/_repos/github/ketch/nodepy/data.json +++ b/_repos/github/ketch/nodepy/data.json @@ -6,161 +6,297 @@ } }, "pypi": { - "numpy": { - "credit": 0.33, - "url": "https://www.numpy.org" + "nodepy": { + "credit": 0.0012375000000000025, + "url": "https://github.com/ketch/nodepy" + }, + "matplotlib": { + "credit": 0.17401153846153847, + "url": "https://matplotlib.org" }, "sympy": { - "credit": 0.003300000000000025, + "credit": 0.0017401153846153903, "url": "https://sympy.org" }, - "matplotlib": { - "credit": 0.33, - "url": "https://matplotlib.org" + "cycler": { + "credit": 0.12375, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0012375000000000025, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0012375000000000025, + "url": "https://github.com/nucleic/kiwi" }, "mpmath": { - "credit": 0.00326700000000002, + "credit": 0.052221548076923086, "url": "http://mpmath.org/" }, + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" + }, + "numpy": { + "credit": 0.05016729807692308, + "url": "https://www.numpy.org" + }, + "xattr": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.009424038461538461, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.009424038461538461, + "url": "https://github.com/google/brotli" + }, + "scipy": { + "credit": 9.424038461538532e-05, + "url": "https://www.scipy.org" + }, + "brotlicffi": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/skia-pathops" + }, + "lz4": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.009424038461538461, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.1225125, + "url": "https://typing.readthedocs.io/" + }, "wheel": { - "credit": 0.0006468659999999959, + "credit": 0.024502499999999997, "url": "https://github.com/pypa/wheel" }, "codecov": { - "credit": 0.0006468659999999959, + "credit": 0.024502499999999997, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.0009670646699999966, + "credit": 0.045843235096153845, "url": "https://github.com/pytest-dev/pytest-cov" }, "pycodestyle": { - "credit": 0.0646866, + "credit": 0.048759975, "url": "https://pycodestyle.pycqa.org/" }, "pytest": { - "credit": 0.012934489961249997, + "credit": 0.07045057752403847, "url": "https://docs.pytest.org/en/latest/" }, + "pytest-timeout": { + "credit": 7.657031250000047e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.0091731234375, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" + }, "coverage": { - "credit": 0.01228762396125, - "url": "https://github.com/nedbat/coveragepy" + "credit": 0.027482852163461538, + "url": "https://pypi.org/project/coverage" }, - "requests": { - "credit": 0.006303911315625001, - "url": "https://requests.readthedocs.io" + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" }, - "virtualenv": { - "credit": 0.01196742529125, - "url": "https://virtualenv.pypa.io/" + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.009211997596153846, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" + }, + "cffi": { + "credit": 0.013994697115384614, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-randomly" }, "pytest-xdist": { - "credit": 0.01196742529125, + "credit": 0.007697083413461538, "url": "https://pypi.org/project/pytest-xdist" }, + "enum34": { + "credit": 0.005831123798076923, + "url": "https://pypi.org/project/enum34" + }, + "psutil": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/backports.os" + }, "six": { - "credit": 0.01196742529125, + "credit": 0.004198409134615385, "url": "https://pypi.org/project/six" }, + "setuptools": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/appdirs" + }, + "requests": { + "credit": 0.0136448296875, + "url": "https://pypi.org/project/requests" + }, + "virtualenv": { + "credit": 0.003032184375, + "url": "https://pypi.org/project/virtualenv" + }, "process-tests": { - "credit": 0.01196742529125, + "credit": 0.003032184375, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.01196742529125, + "credit": 0.003032184375, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.01196742529125, + "credit": 0.003032184375, "url": "https://pypi.org/project/fields" }, "xmlschema": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/xmlschema" }, "pygments": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.037683380975625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/pluggy" }, - "packaging": { - "credit": 0.005983712645625, - "url": "https://pypi.org/project/packaging" - }, "iniconfig": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.005983712645625, + "credit": 0.0015160921875, "url": "https://pypi.org/project/attrs" - }, - "win-inet-pton": { - "credit": 0.004528524047142857, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.004528524047142857, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.004528524047142857, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.004528524047142857, - "url": "https://pypi.org/project/idna" - }, - "chardet": { - "credit": 0.004528524047142857, - "url": "https://pypi.org/project/chardet" - }, - "certifi": { - "credit": 0.004528524047142857, - "url": "https://pypi.org/project/certifi" - }, - "urllib3": { - "credit": 0.004528524047142857, - "url": "https://pypi.org/project/urllib3" } } } \ No newline at end of file diff --git a/_repos/github/kinnala/scikit-fem/badge.png b/_repos/github/kinnala/scikit-fem/badge.png index cedc52df..b5666713 100644 Binary files a/_repos/github/kinnala/scikit-fem/badge.png and b/_repos/github/kinnala/scikit-fem/badge.png differ diff --git a/_repos/github/kkjawz/coref-ee/badge.png b/_repos/github/kkjawz/coref-ee/badge.png index c75ce4f7..6f2b422e 100644 Binary files a/_repos/github/kkjawz/coref-ee/badge.png and b/_repos/github/kkjawz/coref-ee/badge.png differ diff --git a/_repos/github/lantunes/cellpylib/README.md b/_repos/github/lantunes/cellpylib/README.md index 5e6d38ca..878f7883 100644 --- a/_repos/github/lantunes/cellpylib/README.md +++ b/_repos/github/lantunes/cellpylib/README.md @@ -8,9 +8,52 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[matplotlib](https://matplotlib.org)|0.178| +|pypi|[cellpylib](http://github.com/lantunes/cellpylib)|0.165| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.165| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.163| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[coverage](https://pypi.org/project/coverage)|0.018| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.013| +|pypi|[brotli](https://github.com/google/brotli)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| +|pypi|[numpy](https://pypi.org/project/numpy)|0.012| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.01| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.01| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.01| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.01| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.01| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.01| +|pypi|[olefile](https://pypi.org/project/olefile)|0.01| |setup.py|github/lantunes/cellpylib|0.01| -|pypi|[numpy](https://www.numpy.org)|0.005| -|pypi|[matplotlib](https://matplotlib.org)|0.005| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.006| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.002| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scandir](https://pypi.org/project/scandir)|0.002| +|pypi|[typing](https://pypi.org/project/typing)|0.002| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/lantunes/cellpylib/badge.png b/_repos/github/lantunes/cellpylib/badge.png index c7da73f0..fa1568a0 100644 Binary files a/_repos/github/lantunes/cellpylib/badge.png and b/_repos/github/lantunes/cellpylib/badge.png differ diff --git a/_repos/github/lantunes/cellpylib/data.json b/_repos/github/lantunes/cellpylib/data.json index 92262314..0a6a3914 100644 --- a/_repos/github/lantunes/cellpylib/data.json +++ b/_repos/github/lantunes/cellpylib/data.json @@ -6,13 +6,225 @@ } }, "pypi": { - "numpy": { - "credit": 0.00495, - "url": "https://www.numpy.org" + "cellpylib": { + "credit": 0.165, + "url": "http://github.com/lantunes/cellpylib" }, "matplotlib": { - "credit": 0.00495, + "credit": 0.17756538461538462, "url": "https://matplotlib.org" + }, + "cycler": { + "credit": 0.165, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0016500000000000126, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0016500000000000126, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0016500000000000126, + "url": "https://python-pillow.org" + }, + "xattr": { + "credit": 0.00012565384615384652, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 0.00012565384615384652, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.012565384615384615, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.012565384615384615, + "url": "https://github.com/google/brotli" + }, + "scipy": { + "credit": 0.00012565384615384652, + "url": "https://www.scipy.org" + }, + "brotlicffi": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 0.00012565384615384652, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.012565384615384615, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 0.00012565384615384652, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.16335, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 0.00010209375000000062, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.002175382211538462, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.04231295102163461, + "url": "https://docs.pytest.org/en/latest/" + }, + "pyroma": { + "credit": 0.010209375, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.010209375, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.010209375, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.010209375, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.017692650540865384, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.010209375, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.012282663461538461, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.010209375, + "url": "https://pypi.org/project/olefile" + }, + "cffi": { + "credit": 0.01865959615384615, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.007483275540865385, + "url": "https://pypi.org/project/pytest-xdist" + }, + "numpy": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.007774831730769231, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.002818376502403846, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/virtualenv" + }, + "process-tests": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/learningsimulator/learningsimulator/badge.png b/_repos/github/learningsimulator/learningsimulator/badge.png index f32cadd8..b7884af4 100644 Binary files a/_repos/github/learningsimulator/learningsimulator/badge.png and b/_repos/github/learningsimulator/learningsimulator/badge.png differ diff --git a/_repos/github/linqs/psl/badge.png b/_repos/github/linqs/psl/badge.png index d5832ee8..9d2c15f1 100644 Binary files a/_repos/github/linqs/psl/badge.png and b/_repos/github/linqs/psl/badge.png differ diff --git a/_repos/github/lkmklsmn/DrivAER/badge.png b/_repos/github/lkmklsmn/DrivAER/badge.png index 19f0a3d3..4ff913ef 100644 Binary files a/_repos/github/lkmklsmn/DrivAER/badge.png and b/_repos/github/lkmklsmn/DrivAER/badge.png differ diff --git a/_repos/github/lutteropp/NetRAX/README.md b/_repos/github/lutteropp/NetRAX/README.md index f62b9b70..007a9ff6 100644 --- a/_repos/github/lutteropp/NetRAX/README.md +++ b/_repos/github/lutteropp/NetRAX/README.md @@ -29,6 +29,7 @@ exclude_from_search: true |pypi|[pandas](https://pandas.pydata.org)|0.007| |pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.007| |pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.006| |pypi|[pydot](https://pypi.org/project/pydot)|0.006| |pypi|[lxml](https://pypi.org/project/lxml)|0.006| |pypi|[texext](https://pypi.org/project/texext)|0.006| @@ -37,8 +38,6 @@ exclude_from_search: true |pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.006| |pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.006| |pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.006| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.006| -|pypi|[black](https://pypi.org/project/black)|0.006| |pypi|[scipy](https://pypi.org/project/scipy)|0.006| |pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.005| |pypi|[coverage](https://pypi.org/project/coverage)|0.005| diff --git a/_repos/github/lutteropp/NetRAX/badge.png b/_repos/github/lutteropp/NetRAX/badge.png index 4953dcad..aacab5ec 100644 Binary files a/_repos/github/lutteropp/NetRAX/badge.png and b/_repos/github/lutteropp/NetRAX/badge.png differ diff --git a/_repos/github/lutteropp/NetRAX/data.json b/_repos/github/lutteropp/NetRAX/data.json index aa24dbcf..c7d6afdc 100644 --- a/_repos/github/lutteropp/NetRAX/data.json +++ b/_repos/github/lutteropp/NetRAX/data.json @@ -15,7 +15,7 @@ "url": "https://github.com/django-crispy-forms/django-crispy-forms" }, "numpy": { - "credit": 0.15000267857142857, + "credit": 0.15029437499999998, "url": "https://www.numpy.org" }, "networkx": { @@ -23,15 +23,15 @@ "url": "https://networkx.org/" }, "matplotlib": { - "credit": 0.12958392857142856, + "credit": 0.129875625, "url": "https://matplotlib.org" }, "pygraphviz": { - "credit": 0.12958392857142856, + "credit": 0.129875625, "url": "http://pygraphviz.github.io" }, "pandas": { - "credit": 0.007071428571428574, + "credit": 0.0073631250000000025, "url": "https://pandas.pydata.org" }, "argparse": { @@ -63,71 +63,67 @@ "url": "https://github.com/django/asgiref/" }, "codecov": { - "credit": 5.83392857142857e-05, + "credit": 6.125624999999985e-05, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.03299086607142857, + "credit": 0.0332825625, "url": "https://pypi.org/project/pytest" }, + "sympy": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sympy" + }, "pydot": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/pydot" }, "lxml": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/nb2plots" }, "pillow": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/pillow" }, "numpydoc": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.007518475446428571, + "credit": 0.007810171875, "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.010887569196428571, + "credit": 0.011179265625, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.007518475446428571, + "credit": 0.007810171875, "url": "https://pypi.org/project/pre-commit" }, - "pyupgrade": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/pyupgrade" - }, - "black": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/black" - }, "scipy": { - "credit": 0.0058339285714285715, + "credit": 0.006125625, "url": "https://pypi.org/project/scipy" }, "pytest-xdist": { @@ -155,7 +151,7 @@ "url": "https://pypi.org/project/sphinx-notfound-page" }, "coverage": { - "credit": 0.004572341517857143, + "credit": 0.00471673125, "url": "https://pypi.org/project/coverage" }, "tomli": { @@ -187,7 +183,7 @@ "url": "https://pypi.org/project/pytest-asyncio" }, "requests": { - "credit": 0.002887794642857143, + "credit": 0.003032184375, "url": "https://pypi.org/project/requests" } } diff --git a/_repos/github/malonge/RagTag/README.md b/_repos/github/malonge/RagTag/README.md index 20d4a836..93cde5b5 100644 --- a/_repos/github/malonge/RagTag/README.md +++ b/_repos/github/malonge/RagTag/README.md @@ -8,10 +8,12 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.259| |pypi|[intervaltree](https://github.com/chaimleib/intervaltree)|0.247| |pypi|[pysam](https://github.com/pysam-developers/pysam)|0.247| +|pypi|[sortedcontainers](http://www.grantjenks.com/docs/sortedcontainers/)|0.198| +|pypi|[numpy](https://www.numpy.org)|0.061| |pypi|[pytest](https://docs.pytest.org/en/latest/)|0.013| +|pypi|[sympy](https://pypi.org/project/sympy)|0.012| |pypi|[pydot](https://pypi.org/project/pydot)|0.012| |pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.012| |pypi|[lxml](https://pypi.org/project/lxml)|0.012| @@ -24,15 +26,16 @@ exclude_from_search: true |pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| |pypi|[mypy](https://pypi.org/project/mypy)|0.012| |pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.012| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.012| -|pypi|[black](https://pypi.org/project/black)|0.012| |pypi|[pandas](https://pypi.org/project/pandas)|0.012| |pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.012| |pypi|[scipy](https://pypi.org/project/scipy)|0.012| |setup.py|github/malonge/RagTag|0.01| -|pypi|[coverage](https://pypi.org/project/coverage)|0.007| -|pypi|[requests](https://pypi.org/project/requests)|0.006| +|pypi|[coverage](https://pypi.org/project/coverage)|0.006| +|pypi|[requests](https://pypi.org/project/requests)|0.005| +|pypi|[codecov](https://github.com/codecov/codecov-python)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.003| |pypi|[networkx](https://networkx.org/)|0.002| +|pypi|[RagTag](https://github.com/malonge/RagTag)|0.002| |pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| |pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| |pypi|[six](https://pypi.org/project/six)|0.001| diff --git a/_repos/github/malonge/RagTag/badge.png b/_repos/github/malonge/RagTag/badge.png index 3a4afd36..30a43248 100644 Binary files a/_repos/github/malonge/RagTag/badge.png and b/_repos/github/malonge/RagTag/badge.png differ diff --git a/_repos/github/malonge/RagTag/data.json b/_repos/github/malonge/RagTag/data.json index ca499c86..9d2ca19f 100644 --- a/_repos/github/malonge/RagTag/data.json +++ b/_repos/github/malonge/RagTag/data.json @@ -6,132 +6,136 @@ } }, "pypi": { + "RagTag": { + "credit": 0.0019800000000000095, + "url": "https://github.com/malonge/RagTag" + }, "intervaltree": { - "credit": 0.2475, + "credit": 0.247005, "url": "https://github.com/chaimleib/intervaltree" }, - "numpy": { - "credit": 0.2591678571428571, - "url": "https://www.numpy.org" + "networkx": { + "credit": 0.0024700499999999806, + "url": "https://networkx.org/" }, "pysam": { - "credit": 0.2475, + "credit": 0.247005, "url": "https://github.com/pysam-developers/pysam" }, - "networkx": { - "credit": 0.002475000000000005, - "url": "https://networkx.org/" + "sortedcontainers": { + "credit": 0.198, + "url": "http://www.grantjenks.com/docs/sortedcontainers/" + }, + "numpy": { + "credit": 0.061231747499999996, + "url": "https://www.numpy.org" }, "codecov": { - "credit": 0.0001166785714285714, + "credit": 0.0025237575000000008, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.0001166785714285714, + "credit": 0.0025237575000000008, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.013111754464285714, + "credit": 0.01343962125, "url": "https://docs.pytest.org/en/latest/" }, + "sympy": { + "credit": 0.012226747500000001, + "url": "https://pypi.org/project/sympy" + }, "pydot": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/nb2plots" }, "pillow": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/pillow" }, "numpydoc": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/pre-commit" }, - "pyupgrade": { - "credit": 0.011667857142857143, - "url": "https://pypi.org/project/pyupgrade" - }, - "black": { - "credit": 0.011667857142857143, - "url": "https://pypi.org/project/black" - }, "pandas": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/pandas" }, "matplotlib": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/matplotlib" }, "scipy": { - "credit": 0.011667857142857143, + "credit": 0.012226747500000001, "url": "https://pypi.org/project/scipy" }, "coverage": { - "credit": 0.0072194866071428575, + "credit": 0.00606436875, "url": "https://pypi.org/project/coverage" }, "requests": { - "credit": 0.005775589285714286, + "credit": 0.004851495, "url": "https://pypi.org/project/requests" }, "virtualenv": { - "credit": 0.0014438973214285715, + "credit": 0.00121287375, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.0014438973214285715, + "credit": 0.00121287375, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.0014438973214285715, + "credit": 0.00121287375, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.0014438973214285715, + "credit": 0.00121287375, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.0014438973214285715, + "credit": 0.00121287375, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.0014438973214285715, + "credit": 0.00121287375, "url": "https://pypi.org/project/fields" } } diff --git a/_repos/github/matchms/matchms/README.md b/_repos/github/matchms/matchms/README.md index aa5caed5..9dd285c5 100644 --- a/_repos/github/matchms/matchms/README.md +++ b/_repos/github/matchms/matchms/README.md @@ -13,8 +13,8 @@ exclude_from_search: true |pypi|[matplotlib](https://matplotlib.org)|0.115| |pypi|[numba](https://numba.pydata.org)|0.099| |pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.098| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.037| -|pypi|[pytest](https://pypi.org/project/pytest)|0.037| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.038| +|pypi|[pytest](https://pypi.org/project/pytest)|0.038| |pypi|[prospector](https://pypi.org/project/prospector)|0.033| |pypi|[pandas](https://pypi.org/project/pandas)|0.016| |pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.014| @@ -31,6 +31,7 @@ exclude_from_search: true |pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.011| |setup.py|github/matchms/matchms|0.01| |pypi|[scipy](https://www.scipy.org)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| |pypi|[pydot](https://pypi.org/project/pydot)|0.005| |pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.005| |pypi|[texext](https://pypi.org/project/texext)|0.005| @@ -42,8 +43,6 @@ exclude_from_search: true |pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| |pypi|[mypy](https://pypi.org/project/mypy)|0.005| |pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.005| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.005| -|pypi|[black](https://pypi.org/project/black)|0.005| |pypi|[requests](https://requests.readthedocs.io)|0.003| |pypi|[coverage](https://pypi.org/project/coverage)|0.002| |pypi|[pickydict](https://github.com/florian-huber/pickydict)|0.001| diff --git a/_repos/github/matchms/matchms/badge.png b/_repos/github/matchms/matchms/badge.png index cc40d78f..2bbd371f 100644 Binary files a/_repos/github/matchms/matchms/badge.png and b/_repos/github/matchms/matchms/badge.png differ diff --git a/_repos/github/matchms/matchms/data.json b/_repos/github/matchms/matchms/data.json index 328821b0..d39518ff 100644 --- a/_repos/github/matchms/matchms/data.json +++ b/_repos/github/matchms/matchms/data.json @@ -11,11 +11,11 @@ "url": "https://github.com/tantale/deprecated" }, "lxml": { - "credit": 0.11455714285714286, + "credit": 0.1147905, "url": "https://lxml.de/" }, "matplotlib": { - "credit": 0.11455714285714286, + "credit": 0.1147905, "url": "https://matplotlib.org" }, "networkx": { @@ -27,7 +27,7 @@ "url": "https://numba.pydata.org" }, "numpy": { - "credit": 0.21256714285714284, + "credit": 0.2128005, "url": "https://www.numpy.org" }, "pickydict": { @@ -39,11 +39,11 @@ "url": "http://pyteomics.readthedocs.io" }, "requests": { - "credit": 0.0033002357142857194, + "credit": 0.0034157475000000047, "url": "https://requests.readthedocs.io" }, "scipy": { - "credit": 0.005657142857142862, + "credit": 0.005890500000000005, "url": "https://www.scipy.org" }, "wrapt": { @@ -51,71 +51,67 @@ "url": "https://github.com/GrahamDumpleton/wrapt" }, "codecov": { - "credit": 4.667142857142821e-05, + "credit": 4.90050000000004e-05, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.03733714285714285, + "credit": 0.0375705, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.03733714285714285, + "credit": 0.0375705, "url": "https://pypi.org/project/pytest" }, + "sympy": { + "credit": 0.0049005, + "url": "https://pypi.org/project/sympy" + }, "pydot": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/pygraphviz" }, "texext": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/nb2plots" }, "pillow": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/pillow" }, "numpydoc": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.0046671428571428576, + "credit": 0.0049005, "url": "https://pypi.org/project/pre-commit" }, - "pyupgrade": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/pyupgrade" - }, - "black": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/black" - }, "pandas": { - "credit": 0.015557142857142858, + "credit": 0.0157905, "url": "https://pypi.org/project/pandas" }, "prospector": { @@ -171,7 +167,7 @@ "url": "https://pypi.org/project/urllib3" }, "coverage": { - "credit": 0.0023102357142857147, + "credit": 0.0024257475, "url": "https://pypi.org/project/coverage" } } diff --git a/_repos/github/matchms/matchms/setup.py b/_repos/github/matchms/matchms/setup.py index c5c38c77..7b84cbe9 100644 --- a/_repos/github/matchms/matchms/setup.py +++ b/_repos/github/matchms/matchms/setup.py @@ -43,7 +43,6 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], - test_suite="tests", python_requires='>=3.7', install_requires=[ "deprecated", @@ -64,7 +63,7 @@ "prospector[with_pyroma]", "pytest", "pytest-cov", - "sphinx>=3.0.0,!=3.2.0,!=3.5.0,<4.0.0", + "sphinx>=4.0.0", "sphinx_rtd_theme", "sphinxcontrib-apidoc", "testfixtures", diff --git a/_repos/github/matchms/ms2deepscore/README.md b/_repos/github/matchms/ms2deepscore/README.md index 02c83969..877634c3 100644 --- a/_repos/github/matchms/ms2deepscore/README.md +++ b/_repos/github/matchms/ms2deepscore/README.md @@ -24,26 +24,27 @@ exclude_from_search: true |pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.02| |pypi|[colorama](https://pypi.org/project/colorama)|0.02| |setup.py|github/matchms/ms2deepscore|0.01| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.008| -|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.008| -|pypi|[keras](https://pypi.org/project/keras)|0.008| -|pypi|[tf-estimator-nightly](https://pypi.org/project/tf-estimator-nightly)|0.008| -|pypi|[tensorboard](https://pypi.org/project/tensorboard)|0.008| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.008| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.008| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.008| -|pypi|[six](https://pypi.org/project/six)|0.008| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.008| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.008| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.008| -|pypi|[libclang](https://pypi.org/project/libclang)|0.008| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.008| -|pypi|[h5py](https://pypi.org/project/h5py)|0.008| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.008| -|pypi|[gast](https://pypi.org/project/gast)|0.008| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.008| -|pypi|[astunparse](https://pypi.org/project/astunparse)|0.008| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.008| +|pypi|[keras](https://pypi.org/project/keras)|0.007| +|pypi|[tensorflow-estimator](https://pypi.org/project/tensorflow-estimator)|0.007| +|pypi|[tensorboard](https://pypi.org/project/tensorboard)|0.007| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.007| +|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.007| +|pypi|[wrapt](https://pypi.org/project/wrapt)|0.007| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.007| +|pypi|[termcolor](https://pypi.org/project/termcolor)|0.007| +|pypi|[six](https://pypi.org/project/six)|0.007| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.007| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.007| +|pypi|[libclang](https://pypi.org/project/libclang)|0.007| +|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.007| +|pypi|[h5py](https://pypi.org/project/h5py)|0.007| +|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.007| +|pypi|[gast](https://pypi.org/project/gast)|0.007| +|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.007| +|pypi|[astunparse](https://pypi.org/project/astunparse)|0.007| +|pypi|[absl-py](https://pypi.org/project/absl-py)|0.007| |pypi|[yapf](https://pypi.org/project/yapf)|0.007| |pypi|[testfixtures](https://github.com/Simplistix/testfixtures)|0.007| |pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|0.007| diff --git a/_repos/github/matchms/ms2deepscore/badge.png b/_repos/github/matchms/ms2deepscore/badge.png index 14798b47..4e7f38a3 100644 Binary files a/_repos/github/matchms/ms2deepscore/badge.png and b/_repos/github/matchms/ms2deepscore/badge.png differ diff --git a/_repos/github/matchms/ms2deepscore/data.json b/_repos/github/matchms/ms2deepscore/data.json index 825a4a67..52f514fc 100644 --- a/_repos/github/matchms/ms2deepscore/data.json +++ b/_repos/github/matchms/ms2deepscore/data.json @@ -15,7 +15,7 @@ "url": "https://numba.pydata.org" }, "numpy": { - "credit": 0.20710574534161494, + "credit": 0.20675217391304349, "url": "https://www.numpy.org" }, "pandas": { @@ -130,84 +130,88 @@ "credit": 0.027225, "url": "https://pypi.org/project/python-dateutil" }, - "grpcio": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/grpcio" - }, - "tensorflow-io-gcs-filesystem": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/tensorflow-io-gcs-filesystem" - }, "keras": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/keras" }, - "tf-estimator-nightly": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/tf-estimator-nightly" + "tensorflow-estimator": { + "credit": 0.007425, + "url": "https://pypi.org/project/tensorflow-estimator" }, "tensorboard": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/tensorboard" }, + "grpcio": { + "credit": 0.007425, + "url": "https://pypi.org/project/grpcio" + }, + "tensorflow-io-gcs-filesystem": { + "credit": 0.007425, + "url": "https://pypi.org/project/tensorflow-io-gcs-filesystem" + }, "wrapt": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/wrapt" }, "typing-extensions": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/typing-extensions" }, "termcolor": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/termcolor" }, "six": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/six" }, "setuptools": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/setuptools" }, "protobuf": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/protobuf" }, + "packaging": { + "credit": 0.007425, + "url": "https://pypi.org/project/packaging" + }, "opt-einsum": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/opt-einsum" }, "libclang": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/libclang" }, "keras-preprocessing": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/keras-preprocessing" }, "h5py": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/h5py" }, "google-pasta": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/google-pasta" }, "gast": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/gast" }, "flatbuffers": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/flatbuffers" }, "astunparse": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/astunparse" }, "absl-py": { - "credit": 0.007778571428571428, + "credit": 0.007425, "url": "https://pypi.org/project/absl-py" }, "slack-sdk": { diff --git a/_repos/github/matplotlib/matplotlib/README.md b/_repos/github/matplotlib/matplotlib/README.md index e065ea3d..9ac790a7 100644 --- a/_repos/github/matplotlib/matplotlib/README.md +++ b/_repos/github/matplotlib/matplotlib/README.md @@ -8,49 +8,52 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.171| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.083| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.083| -|pypi|[setuptools_scm_git_archive](https://github.com/Changaco/setuptools_scm_git_archive/)|0.083| -|pypi|[cycler](https://github.com/matplotlib/cycler)|0.083| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.083| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.083| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.082| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.041| -|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.041| -|pypi|[pytest](https://pypi.org/project/pytest)|0.015| +|pypi|[matplotlib](https://matplotlib.org)|0.178| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.165| +|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.165| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.163| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[coverage](https://pypi.org/project/coverage)|0.018| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.013| +|pypi|[brotli](https://github.com/google/brotli)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| +|pypi|[numpy](https://pypi.org/project/numpy)|0.012| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.01| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.01| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.01| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.01| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.01| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.01| +|pypi|[olefile](https://pypi.org/project/olefile)|0.01| |setup.py|github/matplotlib/matplotlib|0.01| -|pypi|[cffi](https://pypi.org/project/cffi)|0.009| -|pypi|[coverage](https://pypi.org/project/coverage)|0.008| -|pypi|[munkres](https://software.clapper.org/munkres/)|0.006| -|pypi|[brotli](https://github.com/google/brotli)|0.006| -|pypi|[matplotlib](https://matplotlib.org)|0.006| -|pypi|[lxml](https://lxml.de/)|0.006| -|pypi|[fs](https://github.com/PyFilesystem/pyfilesystem2)|0.006| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.006| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.006| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| -|pypi|[packaging](https://github.com/pypa/packaging)|0.006| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| -|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| -|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| -|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| -|pypi|[olefile](https://pypi.org/project/olefile)|0.005| -|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.003| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| -|pypi|[enum34](https://pypi.org/project/enum34)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.001| -|pypi|[flake8](https://pypi.org/project/flake8)|0.001| -|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.001| -|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| -|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| -|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.006| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.002| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scandir](https://pypi.org/project/scandir)|0.002| +|pypi|[typing](https://pypi.org/project/typing)|0.002| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/matplotlib/matplotlib/badge.png b/_repos/github/matplotlib/matplotlib/badge.png index 64ecaacb..f4df81ee 100644 Binary files a/_repos/github/matplotlib/matplotlib/badge.png and b/_repos/github/matplotlib/matplotlib/badge.png differ diff --git a/_repos/github/matplotlib/matplotlib/data.json b/_repos/github/matplotlib/matplotlib/data.json index 1c759d39..322a2575 100644 --- a/_repos/github/matplotlib/matplotlib/data.json +++ b/_repos/github/matplotlib/matplotlib/data.json @@ -6,205 +6,225 @@ } }, "pypi": { - "certifi": { - "credit": 0.0825, - "url": "https://certifiio.readthedocs.io/en/latest/" - }, - "numpy": { - "credit": 0.1712198653846154, - "url": "https://www.numpy.org" - }, - "setuptools_scm": { - "credit": 0.0825, - "url": "https://github.com/pypa/setuptools_scm/" - }, - "setuptools_scm_git_archive": { - "credit": 0.0825, - "url": "https://github.com/Changaco/setuptools_scm_git_archive/" + "matplotlib": { + "credit": 0.17756538461538462, + "url": "https://matplotlib.org" }, "cycler": { - "credit": 0.0825, + "credit": 0.165, "url": "https://github.com/matplotlib/cycler" }, "fonttools": { - "credit": 0.0008250000000000063, + "credit": 0.0016500000000000126, "url": "http://github.com/fonttools/fonttools" }, "kiwisolver": { - "credit": 0.0008250000000000063, + "credit": 0.0016500000000000126, "url": "https://github.com/nucleic/kiwi" }, - "packaging": { - "credit": 0.005929687500000006, - "url": "https://github.com/pypa/packaging" - }, "pillow": { - "credit": 0.0008250000000000063, + "credit": 0.0016500000000000126, "url": "https://python-pillow.org" }, - "pyparsing": { - "credit": 0.0825, - "url": "https://pypi.org/project/pyparsing" - }, - "python-dateutil": { - "credit": 0.0825, - "url": "https://github.com/dateutil/dateutil" + "setuptools_scm": { + "credit": 0.165, + "url": "https://github.com/pypa/setuptools_scm/" }, "xattr": { - "credit": 6.282692307692326e-05, + "credit": 0.00012565384615384652, "url": "http://github.com/xattr/xattr" }, "unicodedata2": { - "credit": 6.282692307692326e-05, + "credit": 0.00012565384615384652, "url": "http://github.com/mikekap/unicodedata2" }, "munkres": { - "credit": 0.006282692307692308, + "credit": 0.012565384615384615, "url": "https://software.clapper.org/munkres/" }, "brotli": { - "credit": 0.006282692307692308, + "credit": 0.012565384615384615, "url": "https://github.com/google/brotli" }, "scipy": { - "credit": 6.282692307692326e-05, + "credit": 0.00012565384615384652, "url": "https://www.scipy.org" }, "brotlicffi": { - "credit": 6.282692307692326e-05, + "credit": 0.00012565384615384652, "url": "https://github.com/python-hyper/brotlicffi" }, "skia-pathops": { - "credit": 6.282692307692326e-05, + "credit": 0.00012565384615384652, "url": "https://github.com/fonttools/skia-pathops" }, "sympy": { - "credit": 6.282692307692326e-05, + "credit": 0.00012565384615384652, "url": "https://sympy.org" }, - "matplotlib": { - "credit": 0.006282692307692308, - "url": "https://matplotlib.org" - }, "lz4": { - "credit": 6.282692307692326e-05, + "credit": 0.00012565384615384652, "url": "https://github.com/python-lz4/python-lz4" }, "zopfli": { - "credit": 6.282692307692326e-05, + "credit": 0.00012565384615384652, "url": "https://github.com/fonttools/py-zopfli" }, "lxml": { - "credit": 0.006282692307692308, + "credit": 0.012565384615384615, "url": "https://lxml.de/" }, "fs": { - "credit": 0.006282692307692308, + "credit": 0.00012565384615384652, "url": "https://github.com/PyFilesystem/pyfilesystem2" }, "typing-extensions": { - "credit": 0.081675, - "url": "https://pypi.org/project/typing-extensions" + "credit": 0.16335, + "url": "https://typing.readthedocs.io/" }, "pytest-timeout": { - "credit": 0.0051046875, - "url": "https://pypi.org/project/pytest-timeout" + "credit": 0.00010209375000000062, + "url": "https://github.com/pytest-dev/pytest-timeout" }, "pytest-cov": { - "credit": 0.006141331730769231, - "url": "https://pypi.org/project/pytest-cov" + "credit": 0.002175382211538462, + "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.015471129807692307, - "url": "https://pypi.org/project/pytest" + "credit": 0.04231295102163461, + "url": "https://docs.pytest.org/en/latest/" }, "pyroma": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/pyroma" }, + "packaging": { + "credit": 0.010209375, + "url": "https://pypi.org/project/packaging" + }, "markdown2": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/markdown2" }, "defusedxml": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/defusedxml" }, "coverage": { - "credit": 0.008214620192307693, + "credit": 0.017692650540865384, "url": "https://pypi.org/project/coverage" }, "check-manifest": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/check-manifest" }, "sphinxext-opengraph": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/sphinxext-opengraph" }, "sphinx-rtd-theme": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx-removed-in": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/sphinx-removed-in" }, "sphinx-issues": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/sphinx-issues" }, "sphinx-copybutton": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/sphinx-copybutton" }, "sphinx": { - "credit": 0.006141331730769231, + "credit": 0.012282663461538461, "url": "https://pypi.org/project/sphinx" }, "olefile": { - "credit": 0.0051046875, + "credit": 0.010209375, "url": "https://pypi.org/project/olefile" }, - "jinja2": { - "credit": 0.0408375, - "url": "https://pypi.org/project/jinja2" - }, - "railroad-diagrams": { - "credit": 0.0408375, - "url": "https://pypi.org/project/railroad-diagrams" - }, "cffi": { - "credit": 0.009329798076923076, + "credit": 0.01865959615384615, "url": "https://pypi.org/project/cffi" }, "pytest-randomly": { - "credit": 0.0031099326923076922, + "credit": 0.0062198653846153844, "url": "https://pypi.org/project/pytest-randomly" }, "pytest-xdist": { - "credit": 0.0031099326923076922, + "credit": 0.007483275540865385, "url": "https://pypi.org/project/pytest-xdist" }, + "numpy": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/numpy" + }, "enum34": { - "credit": 0.0031099326923076922, + "credit": 0.007774831730769231, "url": "https://pypi.org/project/enum34" }, "mpmath": { - "credit": 0.0062198653846153844, + "credit": 0.012439730769230769, "url": "https://pypi.org/project/mpmath" }, "psutil": { - "credit": 0.0010366442307692307, + "credit": 0.0020732884615384615, "url": "https://pypi.org/project/psutil" }, "flake8": { - "credit": 0.0010366442307692307, + "credit": 0.0020732884615384615, "url": "https://pypi.org/project/flake8" }, "sphinx-bootstrap-theme": { - "credit": 0.0010366442307692307, + "credit": 0.0020732884615384615, "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.002818376502403846, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/virtualenv" + }, + "process-tests": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/medema-group/bigslice/README.md b/_repos/github/medema-group/bigslice/README.md index bf1de007..ddf6d00b 100644 --- a/_repos/github/medema-group/bigslice/README.md +++ b/_repos/github/medema-group/bigslice/README.md @@ -8,66 +8,35 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.245| -|pypi|[biopython](https://biopython.org/)|0.198| -|pypi|[pysqlite3](https://github.com/coleifer/pysqlite3)|0.198| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.034| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.034| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.02| -|pypi|[pandas](https://pandas.pydata.org)|0.013| -|pypi|[scipy](https://pypi.org/project/scipy)|0.012| -|pypi|[black](https://github.com/psf/black)|0.011| +|pypi|[biopython](https://biopython.org/)|0.395| +|pypi|[pysqlite3](https://github.com/coleifer/pysqlite3)|0.395| +|pypi|[numpy](https://www.numpy.org)|0.08| +|pypi|[pytest](https://pypi.org/project/pytest)|0.015| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.011| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.011| +|pypi|[pytz](https://pypi.org/project/pytz)|0.011| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.011| |setup.py|github/medema-group/bigslice|0.01| -|pypi|[flake8](https://pypi.org/project/flake8)|0.009| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.009| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.009| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.009| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.009| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.009| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.009| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.009| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.009| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.009| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.009| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.009| -|pypi|[joblib](https://pypi.org/project/joblib)|0.009| -|pypi|[psutil](https://pypi.org/project/psutil)|0.007| -|pypi|[filelock](https://pypi.org/project/filelock)|0.005| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.005| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.005| -|pypi|[execnet](https://pypi.org/project/execnet)|0.005| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| -|pypi|[tomli](https://pypi.org/project/tomli)|0.004| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[colorama](https://pypi.org/project/colorama)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[scikit-learn](http://scikit-learn.org)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[rich](https://pypi.org/project/rich)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[libcst](https://pypi.org/project/libcst)|0.002| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.002| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.002| -|pypi|[django](https://pypi.org/project/django)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| -|pypi|[lxml](https://pypi.org/project/lxml)|0.002| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.002| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.002| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| +|pypi|[scipy](https://pypi.org/project/scipy)|0.004| +|pypi|[pandas](https://pandas.pydata.org)|0.004| +|pypi|[bigslice](https://github.com/satriaphd/bigslice)|0.003| +|pypi|[mypy](http://www.mypy-lang.org/)|0.003| +|pypi|[black](https://pypi.org/project/black)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.003| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| +|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.003| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.003| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.003| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.003| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.003| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.003| +|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.003| +|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.003| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.003| +|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.003| +|pypi|[joblib](https://pypi.org/project/joblib)|0.003| +|pypi|[scikit-learn](http://scikit-learn.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/medema-group/bigslice/badge.png b/_repos/github/medema-group/bigslice/badge.png index 32671c5d..d0699586 100644 Binary files a/_repos/github/medema-group/bigslice/badge.png and b/_repos/github/medema-group/bigslice/badge.png differ diff --git a/_repos/github/medema-group/bigslice/data.json b/_repos/github/medema-group/bigslice/data.json index ecab287a..c2d9edca 100644 --- a/_repos/github/medema-group/bigslice/data.json +++ b/_repos/github/medema-group/bigslice/data.json @@ -6,253 +6,121 @@ } }, "pypi": { - "numpy": { - "credit": 0.24488145, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.013111135714285752, - "url": "https://pandas.pydata.org" + "bigslice": { + "credit": 0.003300000000000025, + "url": "https://github.com/satriaphd/bigslice" }, "biopython": { - "credit": 0.198, + "credit": 0.39534, "url": "https://biopython.org/" }, - "scikit-learn": { - "credit": 0.0019799999999999818, - "url": "http://scikit-learn.org" - }, "pysqlite3": { - "credit": 0.198, + "credit": 0.39534, "url": "https://github.com/coleifer/pysqlite3" }, - "pytest-xdist": { - "credit": 0.0003266999999999992, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.0199287, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.002348156249999999, - "url": "https://hypothesis.works" + "scikit-learn": { + "credit": 0.0006533999999999984, + "url": "http://scikit-learn.org" }, - "pytz": { - "credit": 0.03446685, - "url": "http://pythonhosted.org/pytz" + "pandas": { + "credit": 0.003733714285714284, + "url": "https://pandas.pydata.org" }, - "python-dateutil": { - "credit": 0.03446685, - "url": "https://github.com/dateutil/dateutil" + "numpy": { + "credit": 0.080217918, + "url": "https://www.numpy.org" }, "pyamg": { - "credit": 9.334285714285642e-05, + "credit": 3.0803142857143036e-05, "url": "https://github.com/pyamg/pyamg" }, "mypy": { - "credit": 9.334285714285642e-05, + "credit": 0.0030803142857142854, "url": "http://www.mypy-lang.org/" }, "black": { - "credit": 0.011131135714285714, - "url": "https://github.com/psf/black" + "credit": 0.0030803142857142854, + "url": "https://pypi.org/project/black" }, "flake8": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/flake8" }, "pytest-cov": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/pytest-cov" }, + "pytest": { + "credit": 0.014877917999999999, + "url": "https://pypi.org/project/pytest" + }, "sphinxext-opengraph": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/sphinxext-opengraph" }, "sphinx-prompt": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/sphinx-prompt" }, "Pillow": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/Pillow" }, "numpydoc": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/sphinx-gallery" }, "sphinx": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/sphinx" }, "seaborn": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/seaborn" }, "scikit-image": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/scikit-image" }, "memory-profiler": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/memory-profiler" }, "matplotlib": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/matplotlib" }, "threadpoolctl": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/threadpoolctl" }, "joblib": { - "credit": 0.009334285714285715, + "credit": 0.0030803142857142854, "url": "https://pypi.org/project/joblib" }, "scipy": { - "credit": 0.012414600000000001, + "credit": 0.0040968179999999995, "url": "https://pypi.org/project/scipy" }, - "filelock": { - "credit": 0.00539055, - "url": "https://pypi.org/project/filelock" - }, - "setproctitle": { - "credit": 0.00539055, - "url": "https://pypi.org/project/setproctitle" - }, - "psutil": { - "credit": 0.006930707142857143, - "url": "https://pypi.org/project/psutil" - }, - "pytest-forked": { - "credit": 0.00539055, - "url": "https://pypi.org/project/pytest-forked" - }, - "execnet": { - "credit": 0.00539055, - "url": "https://pypi.org/project/execnet" - }, - "xmlschema": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/mock" - }, - "argcomplete": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.00381830625, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.003561613392857143, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.00381830625, - "url": "https://pypi.org/project/attrs" - }, - "tzdata": { - "credit": 0.00179685, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.00179685, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.00179685, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.00179685, - "url": "https://pypi.org/project/redis" - }, - "libcst": { - "credit": 0.00179685, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.00179685, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.00179685, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.00179685, - "url": "https://pypi.org/project/django" - }, - "click": { - "credit": 0.00179685, - "url": "https://pypi.org/project/click" - }, - "sortedcontainers": { - "credit": 0.00179685, - "url": "https://pypi.org/project/sortedcontainers" - }, - "lxml": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/lxml" + "pytest-xdist": { + "credit": 0.0107811, + "url": "https://pypi.org/project/pytest-xdist" }, - "typed-ast": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/typed-ast" + "hypothesis": { + "credit": 0.0107811, + "url": "https://pypi.org/project/hypothesis" }, - "mypy-extensions": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/mypy-extensions" + "pytz": { + "credit": 0.0107811, + "url": "https://pypi.org/project/pytz" }, - "typing-extensions": { - "credit": 0.0015401571428571431, - "url": "https://pypi.org/project/typing-extensions" + "python-dateutil": { + "credit": 0.0107811, + "url": "https://pypi.org/project/python-dateutil" } } } \ No newline at end of file diff --git a/_repos/github/meinardmueller/libfmp/badge.png b/_repos/github/meinardmueller/libfmp/badge.png index dcb73199..db79e23b 100644 Binary files a/_repos/github/meinardmueller/libfmp/badge.png and b/_repos/github/meinardmueller/libfmp/badge.png differ diff --git a/_repos/github/meinardmueller/synctoolbox/badge.png b/_repos/github/meinardmueller/synctoolbox/badge.png index 5dadff22..5876be5d 100644 Binary files a/_repos/github/meinardmueller/synctoolbox/badge.png and b/_repos/github/meinardmueller/synctoolbox/badge.png differ diff --git a/_repos/github/mishioo/tesliper/README.md b/_repos/github/mishioo/tesliper/README.md index 1f1ad53b..5092d87a 100644 --- a/_repos/github/mishioo/tesliper/README.md +++ b/_repos/github/mishioo/tesliper/README.md @@ -9,9 +9,9 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/mishioo/tesliper|0.01| -|pypi|[numpy](https://www.numpy.org)|0.005| -|pypi|[openpyxl](https://openpyxl.readthedocs.io)|0.005| -|pypi|[et-xmlfile](https://foss.heptapod.net/openpyxl/et_xmlfile)|0.005| +|pypi|[et-xmlfile](https://foss.heptapod.net/openpyxl/et_xmlfile)|0.007| +|pypi|[tesliper](https://github.com/mishioo/tesliper)|0.003| +|pypi|[openpyxl](https://openpyxl.readthedocs.io)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/mishioo/tesliper/badge.png b/_repos/github/mishioo/tesliper/badge.png index 4651f112..442397f1 100644 Binary files a/_repos/github/mishioo/tesliper/badge.png and b/_repos/github/mishioo/tesliper/badge.png differ diff --git a/_repos/github/mishioo/tesliper/data.json b/_repos/github/mishioo/tesliper/data.json index 9cf60f75..d60e8bda 100644 --- a/_repos/github/mishioo/tesliper/data.json +++ b/_repos/github/mishioo/tesliper/data.json @@ -6,16 +6,16 @@ } }, "pypi": { - "numpy": { - "credit": 0.00495, - "url": "https://www.numpy.org" + "tesliper": { + "credit": 0.0033000000000000004, + "url": "https://github.com/mishioo/tesliper" }, "openpyxl": { - "credit": 0.00495, + "credit": 0.0033000000000000004, "url": "https://openpyxl.readthedocs.io" }, "et-xmlfile": { - "credit": 0.0049005, + "credit": 0.006567, "url": "https://foss.heptapod.net/openpyxl/et_xmlfile" } } diff --git a/_repos/github/mjacob1002/Eir/README.md b/_repos/github/mjacob1002/Eir/README.md index 7e30fe50..fcf8d469 100644 --- a/_repos/github/mjacob1002/Eir/README.md +++ b/_repos/github/mjacob1002/Eir/README.md @@ -8,47 +8,55 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.291| -|pypi|[matplotlib](https://matplotlib.org)|0.247| -|pypi|[six](https://github.com/benjaminp/six)|0.245| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.043| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.043| +|pypi|[matplotlib](https://matplotlib.org)|0.187| +|pypi|[six](https://github.com/benjaminp/six)|0.177| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.141| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.14| +|pypi|[numpy](https://www.numpy.org)|0.051| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cffi](https://pypi.org/project/cffi)|0.016| +|pypi|[coverage](https://pypi.org/project/coverage)|0.015| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.011| +|pypi|[brotli](https://github.com/google/brotli)|0.011| +|pypi|[lxml](https://lxml.de/)|0.011| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.011| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|github/mjacob1002/Eir|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.009| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.007| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.007| -|pypi|[psutil](https://pypi.org/project/psutil)|0.007| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.007| -|pypi|[execnet](https://pypi.org/project/execnet)|0.007| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005| -|pypi|[attrs](https://pypi.org/project/attrs)|0.005| -|pypi|[pandas](https://pandas.pydata.org)|0.005| -|pypi|[hypothesis](https://hypothesis.works)|0.003| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.003| -|pypi|[requests](https://pypi.org/project/requests)|0.003| -|pypi|[pygments](https://pypi.org/project/pygments)|0.003| -|pypi|[nose](https://pypi.org/project/nose)|0.003| -|pypi|[mock](https://pypi.org/project/mock)|0.003| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.003| -|pypi|[colorama](https://pypi.org/project/colorama)|0.003| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[py](https://pypi.org/project/py)|0.003| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.003| -|pypi|[packaging](https://pypi.org/project/packaging)|0.003| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.003| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.009| +|pypi|[packaging](https://pypi.org/project/packaging)|0.009| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.009| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.009| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.009| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.009| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.009| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.009| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.009| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.009| +|pypi|[olefile](https://pypi.org/project/olefile)|0.009| +|pypi|[pytz](https://pypi.org/project/pytz)|0.007| +|pypi|[enum34](https://pypi.org/project/enum34)|0.007| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.006| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| |pypi|[multipledispatch](http://github.com/mrocklin/multipledispatch/)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[rich](https://pypi.org/project/rich)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[libcst](https://pypi.org/project/libcst)|0.002| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.002| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.002| -|pypi|[django](https://pypi.org/project/django)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| +|pypi|[Eir](https://github.com/mjacob1002/Eir)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/mjacob1002/Eir/badge.png b/_repos/github/mjacob1002/Eir/badge.png index 6694cdc9..3afd0e8b 100644 Binary files a/_repos/github/mjacob1002/Eir/badge.png and b/_repos/github/mjacob1002/Eir/badge.png differ diff --git a/_repos/github/mjacob1002/Eir/data.json b/_repos/github/mjacob1002/Eir/data.json index ddb31840..6444f89b 100644 --- a/_repos/github/mjacob1002/Eir/data.json +++ b/_repos/github/mjacob1002/Eir/data.json @@ -6,169 +6,241 @@ } }, "pypi": { - "numpy": { - "credit": 0.2905835625, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.004721062500000005, - "url": "https://pandas.pydata.org" + "Eir": { + "credit": 0.001414285714285729, + "url": "https://github.com/mjacob1002/Eir" }, "matplotlib": { - "credit": 0.2475, + "credit": 0.18720247252747255, "url": "https://matplotlib.org" }, "multipledispatch": { - "credit": 0.002475000000000005, + "credit": 0.0017643214285714415, "url": "http://github.com/mrocklin/multipledispatch/" }, - "pytest-xdist": { - "credit": 0.0004083750000000025, - "url": "https://github.com/pytest-dev/pytest-xdist" + "cycler": { + "credit": 0.14142857142857143, + "url": "https://github.com/matplotlib/cycler" }, - "pytest": { - "credit": 0.009392625000000002, - "url": "https://docs.pytest.org/en/latest/" + "fonttools": { + "credit": 0.001414285714285729, + "url": "http://github.com/fonttools/fonttools" }, - "hypothesis": { - "credit": 0.0029351953125000023, - "url": "https://hypothesis.works" + "kiwisolver": { + "credit": 0.001414285714285729, + "url": "https://github.com/nucleic/kiwi" }, - "pytz": { - "credit": 0.0430835625, - "url": "http://pythonhosted.org/pytz" + "pillow": { + "credit": 0.001414285714285729, + "url": "https://python-pillow.org" }, - "python-dateutil": { - "credit": 0.0430835625, - "url": "https://github.com/dateutil/dateutil" + "pandas": { + "credit": 0.00035003571428571245, + "url": "https://pandas.pydata.org" + }, + "numpy": { + "credit": 0.05144178708791208, + "url": "https://www.numpy.org" }, "six": { - "credit": 0.245025, + "credit": 0.17708357271634614, "url": "https://github.com/benjaminp/six" }, - "filelock": { - "credit": 0.006738187499999999, - "url": "https://github.com/tox-dev/py-filelock" + "xattr": { + "credit": 0.00010770329670329627, + "url": "http://github.com/xattr/xattr" }, - "setproctitle": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/setproctitle" + "unicodedata2": { + "credit": 0.00010770329670329627, + "url": "http://github.com/mikekap/unicodedata2" }, - "psutil": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/psutil" + "munkres": { + "credit": 0.010770329670329669, + "url": "https://software.clapper.org/munkres/" }, - "pytest-forked": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/pytest-forked" + "brotli": { + "credit": 0.010770329670329669, + "url": "https://github.com/google/brotli" }, - "execnet": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/execnet" + "scipy": { + "credit": 0.00010770329670329627, + "url": "https://www.scipy.org" }, - "xmlschema": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/xmlschema" + "brotlicffi": { + "credit": 0.00010770329670329627, + "url": "https://github.com/python-hyper/brotlicffi" }, - "requests": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/requests" + "skia-pathops": { + "credit": 0.00010770329670329627, + "url": "https://github.com/fonttools/skia-pathops" }, - "pygments": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/pygments" + "sympy": { + "credit": 0.00010770329670329627, + "url": "https://sympy.org" }, - "nose": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/nose" + "lz4": { + "credit": 0.00010770329670329627, + "url": "https://github.com/python-lz4/python-lz4" }, - "mock": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/mock" + "zopfli": { + "credit": 0.00010770329670329627, + "url": "https://github.com/fonttools/py-zopfli" }, - "argcomplete": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/argcomplete" + "lxml": { + "credit": 0.010770329670329669, + "url": "https://lxml.de/" }, - "colorama": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/colorama" + "fs": { + "credit": 0.00010770329670329627, + "url": "https://github.com/PyFilesystem/pyfilesystem2" }, - "atomicwrites": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/atomicwrites" + "typing-extensions": { + "credit": 0.1400142857142857, + "url": "https://typing.readthedocs.io/" }, - "importlib-metadata": { - "credit": 0.0047728828124999996, - "url": "https://pypi.org/project/importlib-metadata" + "pytest-timeout": { + "credit": 8.750892857142811e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" }, - "tomli": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/tomli" + "pytest-cov": { + "credit": 0.0018646133241758235, + "url": "https://github.com/pytest-dev/pytest-cov" }, - "py": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/py" + "pytest": { + "credit": 0.042043833018543954, + "url": "https://docs.pytest.org/en/latest/" }, - "pluggy": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.0025268203124999998, + "credit": 0.008750892857142856, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.0025268203124999998, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.015165129035027472, + "url": "https://pypi.org/project/coverage" }, - "attrs": { - "credit": 0.0047728828124999996, - "url": "https://pypi.org/project/attrs" + "check-manifest": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.010527997252747251, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/olefile" + }, + "pytest-xdist": { + "credit": 0.0121898254635989, + "url": "https://pypi.org/project/pytest-xdist" + }, + "hypothesis": { + "credit": 0.005775589285714286, + "url": "https://pypi.org/project/hypothesis" + }, + "pytz": { + "credit": 0.007108417582417583, + "url": "https://pypi.org/project/pytz" + }, + "python-dateutil": { + "credit": 0.005775589285714286, + "url": "https://pypi.org/project/python-dateutil" + }, + "cffi": { + "credit": 0.015993939560439558, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.005331313186813186, + "url": "https://pypi.org/project/pytest-randomly" + }, + "enum34": { + "credit": 0.006664141483516483, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.010662626373626373, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0017771043956043954, + "url": "https://pypi.org/project/psutil" }, - "tzdata": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/tzdata" + "flake8": { + "credit": 0.0017771043956043954, + "url": "https://pypi.org/project/flake8" }, - "backports.zoneinfo": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/backports.zoneinfo" + "sphinx-bootstrap-theme": { + "credit": 0.0017771043956043954, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" }, - "rich": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/rich" + "scandir": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/scandir" }, - "redis": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/redis" + "typing": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/typing" }, - "libcst": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/libcst" + "backports.os": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/backports.os" }, - "lark-parser": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/lark-parser" + "setuptools": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/setuptools" }, - "dpcontracts": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/dpcontracts" + "appdirs": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/appdirs" }, - "django": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/django" + "virtualenv": { + "credit": 0.0010829229910714285, + "url": "https://pypi.org/project/virtualenv" }, - "click": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/click" + "process-tests": { + "credit": 0.0010829229910714285, + "url": "https://pypi.org/project/process-tests" }, - "black": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/black" + "hunter": { + "credit": 0.0010829229910714285, + "url": "https://pypi.org/project/hunter" }, - "sortedcontainers": { - "credit": 0.0022460625, - "url": "https://pypi.org/project/sortedcontainers" + "fields": { + "credit": 0.0010829229910714285, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/ml-evs/matador/badge.png b/_repos/github/ml-evs/matador/badge.png index 382215cc..9e9d8376 100644 Binary files a/_repos/github/ml-evs/matador/badge.png and b/_repos/github/ml-evs/matador/badge.png differ diff --git a/_repos/github/mms-fcul/PypKa/badge.png b/_repos/github/mms-fcul/PypKa/badge.png index 26a24aae..f88947f7 100644 Binary files a/_repos/github/mms-fcul/PypKa/badge.png and b/_repos/github/mms-fcul/PypKa/badge.png differ diff --git a/_repos/github/monarch-initiative/loinc2hpo/badge.png b/_repos/github/monarch-initiative/loinc2hpo/badge.png index 3c507fda..a62c14a6 100644 Binary files a/_repos/github/monarch-initiative/loinc2hpo/badge.png and b/_repos/github/monarch-initiative/loinc2hpo/badge.png differ diff --git a/_repos/github/mscroggs/symfem/README.md b/_repos/github/mscroggs/symfem/README.md index eff8b2c0..fcffde78 100644 --- a/_repos/github/mscroggs/symfem/README.md +++ b/_repos/github/mscroggs/symfem/README.md @@ -8,45 +8,46 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.495| -|pypi|[pycodestyle](https://pycodestyle.pycqa.org/)|0.097| -|pypi|[tomli](https://pypi.org/project/tomli)|0.057| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.019| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.018| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.018| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.018| -|pypi|[six](https://pypi.org/project/six)|0.018| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.018| -|pypi|[hunter](https://pypi.org/project/hunter)|0.018| -|pypi|[fields](https://pypi.org/project/fields)|0.018| +|pypi|[numpy](https://www.numpy.org)|0.163| +|pypi|[pycodestyle](https://pycodestyle.pycqa.org/)|0.162| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.086| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.066| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.052| +|pypi|[requests](https://requests.readthedocs.io)|0.042| +|pypi|[tomli](https://pypi.org/project/tomli)|0.042| +|pypi|[wheel](https://github.com/pypa/wheel)|0.033| +|pypi|[codecov](https://github.com/codecov/codecov-python)|0.033| +|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.02| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.02| +|pypi|[six](https://pypi.org/project/six)|0.02| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.02| +|pypi|[hunter](https://pypi.org/project/hunter)|0.02| +|pypi|[fields](https://pypi.org/project/fields)|0.02| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.01| +|pypi|[pygments](https://pypi.org/project/pygments)|0.01| +|pypi|[nose](https://pypi.org/project/nose)|0.01| +|pypi|[mock](https://pypi.org/project/mock)|0.01| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.01| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.01| +|pypi|[colorama](https://pypi.org/project/colorama)|0.01| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.01| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| +|pypi|[py](https://pypi.org/project/py)|0.01| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.01| +|pypi|[attrs](https://pypi.org/project/attrs)|0.01| |setup.py|github/mscroggs/symfem|0.01| -|pypi|[requests](https://requests.readthedocs.io)|0.009| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.009| -|pypi|[pygments](https://pypi.org/project/pygments)|0.009| -|pypi|[nose](https://pypi.org/project/nose)|0.009| -|pypi|[mock](https://pypi.org/project/mock)|0.009| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.009| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.009| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.009| -|pypi|[py](https://pypi.org/project/py)|0.009| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.009| -|pypi|[attrs](https://pypi.org/project/attrs)|0.009| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.007| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.007| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.007| -|pypi|[idna](https://pypi.org/project/idna)|0.007| -|pypi|[chardet](https://pypi.org/project/chardet)|0.007| -|pypi|[certifi](https://pypi.org/project/certifi)|0.007| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.007| +|pypi|[mpmath](http://mpmath.org/)|0.008| |pypi|[sympy](https://sympy.org)|0.005| -|pypi|[mpmath](http://mpmath.org/)|0.005| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.001| -|pypi|[wheel](https://github.com/pypa/wheel)|0.001| -|pypi|[codecov](https://github.com/codecov/codecov-python)|0.001| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.005| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.005| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.005| +|pypi|[idna](https://pypi.org/project/idna)|0.005| +|pypi|[chardet](https://pypi.org/project/chardet)|0.005| +|pypi|[certifi](https://pypi.org/project/certifi)|0.005| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.005| +|pypi|[symfem](https://github.com/mscroggs/symfem)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/mscroggs/symfem/badge.png b/_repos/github/mscroggs/symfem/badge.png index d1897699..d44d3ea5 100644 Binary files a/_repos/github/mscroggs/symfem/badge.png and b/_repos/github/mscroggs/symfem/badge.png differ diff --git a/_repos/github/mscroggs/symfem/data.json b/_repos/github/mscroggs/symfem/data.json index 8397421c..426299db 100644 --- a/_repos/github/mscroggs/symfem/data.json +++ b/_repos/github/mscroggs/symfem/data.json @@ -6,156 +6,160 @@ } }, "pypi": { + "symfem": { + "credit": 0.003300000000000025, + "url": "https://github.com/mscroggs/symfem" + }, "sympy": { - "credit": 0.00495000000000001, + "credit": 0.004933500000000035, "url": "https://sympy.org" }, - "numpy": { - "credit": 0.495, - "url": "https://www.numpy.org" - }, "mpmath": { - "credit": 0.00490050000000003, + "credit": 0.008184165000000077, "url": "http://mpmath.org/" }, + "numpy": { + "credit": 0.16335, + "url": "https://www.numpy.org" + }, "wheel": { - "credit": 0.0009702989999999939, + "credit": 0.03332013299999999, "url": "https://github.com/pypa/wheel" }, "codecov": { - "credit": 0.0009702989999999939, + "credit": 0.03332013299999999, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.0014505970049999914, + "credit": 0.065663433, "url": "https://github.com/pytest-dev/pytest-cov" }, "pycodestyle": { - "credit": 0.09702989999999999, + "credit": 0.16204646699999997, "url": "https://pycodestyle.pycqa.org/" }, "pytest": { - "credit": 0.01940173494187499, + "credit": 0.08575670812499998, "url": "https://docs.pytest.org/en/latest/" }, "coverage": { - "credit": 0.018431435941874998, + "credit": 0.052436575124999996, "url": "https://github.com/nedbat/coveragepy" }, "requests": { - "credit": 0.009455866973437498, + "credit": 0.0423899375625, "url": "https://requests.readthedocs.io" }, "virtualenv": { - "credit": 0.017951137936875, + "credit": 0.020093275125, "url": "https://virtualenv.pypa.io/" }, "pytest-xdist": { - "credit": 0.017951137936875, + "credit": 0.020093275125, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.017951137936875, + "credit": 0.020093275125, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.017951137936875, + "credit": 0.020093275125, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.017951137936875, + "credit": 0.020093275125, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.017951137936875, + "credit": 0.020093275125, "url": "https://pypi.org/project/fields" }, "xmlschema": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/xmlschema" }, "pygments": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.0565250714634375, + "credit": 0.0420665045625, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.0089755689684375, + "credit": 0.0100466375625, "url": "https://pypi.org/project/attrs" }, "win-inet-pton": { - "credit": 0.006792786070714285, + "credit": 0.004574266714285714, "url": "https://pypi.org/project/win-inet-pton" }, "PySocks": { - "credit": 0.006792786070714285, + "credit": 0.004574266714285714, "url": "https://pypi.org/project/PySocks" }, "charset-normalizer": { - "credit": 0.006792786070714285, + "credit": 0.004574266714285714, "url": "https://pypi.org/project/charset-normalizer" }, "idna": { - "credit": 0.006792786070714285, + "credit": 0.004574266714285714, "url": "https://pypi.org/project/idna" }, "chardet": { - "credit": 0.006792786070714285, + "credit": 0.004574266714285714, "url": "https://pypi.org/project/chardet" }, "certifi": { - "credit": 0.006792786070714285, + "credit": 0.004574266714285714, "url": "https://pypi.org/project/certifi" }, "urllib3": { - "credit": 0.006792786070714285, + "credit": 0.004574266714285714, "url": "https://pypi.org/project/urllib3" } } diff --git a/_repos/github/mswzeus/TargetNet/badge.png b/_repos/github/mswzeus/TargetNet/badge.png index e511f034..58a761fa 100644 Binary files a/_repos/github/mswzeus/TargetNet/badge.png and b/_repos/github/mswzeus/TargetNet/badge.png differ diff --git a/_repos/github/multiscale/muscle3/badge.png b/_repos/github/multiscale/muscle3/badge.png index b25e1270..b46fe8d4 100644 Binary files a/_repos/github/multiscale/muscle3/badge.png and b/_repos/github/multiscale/muscle3/badge.png differ diff --git a/_repos/github/mzy2240/ESA/badge.png b/_repos/github/mzy2240/ESA/badge.png index a32a6839..5d84706c 100644 Binary files a/_repos/github/mzy2240/ESA/badge.png and b/_repos/github/mzy2240/ESA/badge.png differ diff --git a/_repos/github/neuralhydrology/neuralhydrology/badge.png b/_repos/github/neuralhydrology/neuralhydrology/badge.png index 248aafc7..4a4e6c74 100644 Binary files a/_repos/github/neuralhydrology/neuralhydrology/badge.png and b/_repos/github/neuralhydrology/neuralhydrology/badge.png differ diff --git a/_repos/github/neuroanatomy/reorient/badge.png b/_repos/github/neuroanatomy/reorient/badge.png index 9f1962b9..c5949c1f 100644 Binary files a/_repos/github/neuroanatomy/reorient/badge.png and b/_repos/github/neuroanatomy/reorient/badge.png differ diff --git a/_repos/github/nextstrain/nextclade/badge.png b/_repos/github/nextstrain/nextclade/badge.png index 925500e0..eace02d8 100644 Binary files a/_repos/github/nextstrain/nextclade/badge.png and b/_repos/github/nextstrain/nextclade/badge.png differ diff --git a/_repos/github/ni1o1/transbigdata/README.md b/_repos/github/ni1o1/transbigdata/README.md index b78c2f13..b118594f 100644 --- a/_repos/github/ni1o1/transbigdata/README.md +++ b/_repos/github/ni1o1/transbigdata/README.md @@ -8,65 +8,80 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.432| -|pypi|[matplotlib](https://matplotlib.org)|0.165| -|pypi|[pyproj](https://github.com/pyproj4/pyproj)|0.041| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.036| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.035| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.035| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.017| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.014| -|pypi|[hypothesis](https://hypothesis.works)|0.012| +|pypi|[click](https://pypi.org/project/click)|0.119| +|pypi|[certifi](https://pypi.org/project/certifi)|0.1| +|pypi|[matplotlib](https://matplotlib.org)|0.095| +|pypi|[munch](https://github.com/Infinidat/munch)|0.082| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.076| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.075| +|pypi|[numpy](https://www.numpy.org)|0.066| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.059| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.03| +|pypi|[shapely](https://github.com/shapely/shapely)|0.01| |setup.py|github/ni1o1/transbigdata|0.01| |pypi|[six](https://pypi.org/project/six)|0.009| -|pypi|[attrs](https://pypi.org/project/attrs)|0.009| -|pypi|[mock](https://pypi.org/project/mock)|0.008| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.007| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.007| -|pypi|[hunter](https://pypi.org/project/hunter)|0.007| -|pypi|[fields](https://pypi.org/project/fields)|0.007| -|pypi|[coverage](https://pypi.org/project/coverage)|0.007| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.007| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.005| -|pypi|[pygments](https://pypi.org/project/pygments)|0.005| -|pypi|[nose](https://pypi.org/project/nose)|0.005| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.005| -|pypi|[colorama](https://pypi.org/project/colorama)|0.005| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.005| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[py](https://pypi.org/project/py)|0.005| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.005| -|pypi|[shapely](https://github.com/shapely/shapely)|0.005| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[click](https://pypi.org/project/click)|0.004| -|pypi|[pandas](https://pandas.pydata.org)|0.004| -|pypi|[boto3](https://pypi.org/project/boto3)|0.003| -|pypi|[ordereddict](https://pypi.org/project/ordereddict)|0.003| -|pypi|[argparse](https://pypi.org/project/argparse)|0.003| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.003| -|pypi|[munch](https://pypi.org/project/munch)|0.003| -|pypi|[click-plugins](https://pypi.org/project/click-plugins)|0.003| -|pypi|[cligj](https://pypi.org/project/cligj)|0.003| -|pypi|[certifi](https://pypi.org/project/certifi)|0.003| -|pypi|[geopandas](http://geopandas.org)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| +|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.008| +|pypi|[attrs](https://pypi.org/project/attrs)|0.008| +|pypi|[coverage](https://pypi.org/project/coverage)|0.008| +|pypi|[click-plugins](https://github.com/click-contrib/click-plugins)|0.007| +|pypi|[cligj](https://github.com/mapbox/cligj)|0.007| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| +|pypi|[boto3](https://pypi.org/project/boto3)|0.006| +|pypi|[ordereddict](https://pypi.org/project/ordereddict)|0.006| +|pypi|[argparse](https://pypi.org/project/argparse)|0.006| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[scipy](https://www.scipy.org)|0.006| +|pypi|[xattr](https://pypi.org/project/xattr)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[munkres](https://pypi.org/project/munkres)|0.006| +|pypi|[brotli](https://pypi.org/project/brotli)|0.006| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.006| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.006| +|pypi|[sympy](https://pypi.org/project/sympy)|0.006| +|pypi|[lz4](https://pypi.org/project/lz4)|0.006| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.006| +|pypi|[lxml](https://pypi.org/project/lxml)|0.006| +|pypi|[fs](https://pypi.org/project/fs)|0.006| +|pypi|[pytz](https://pypi.org/project/pytz)|0.005| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.005| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.005| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| +|pypi|[olefile](https://pypi.org/project/olefile)|0.005| +|pypi|[fiona](http://github.com/Toblerity/Fiona)|0.004| +|pypi|[pyproj](https://github.com/pyproj4/pyproj)|0.004| +|pypi|[pandas](https://pandas.pydata.org)|0.003| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| +|pypi|[hunter](https://pypi.org/project/hunter)|0.003| +|pypi|[fields](https://pypi.org/project/fields)|0.003| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| +|pypi|[requests](https://pypi.org/project/requests)|0.002| +|pypi|[pygments](https://pypi.org/project/pygments)|0.002| +|pypi|[nose](https://pypi.org/project/nose)|0.002| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[tomli](https://pypi.org/project/tomli)|0.002| +|pypi|[py](https://pypi.org/project/py)|0.002| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| +|pypi|[geopandas](http://geopandas.org)|0.001| +|pypi|[transbigdata](https://github.com/ni1o1/transbigdata)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/ni1o1/transbigdata/badge.png b/_repos/github/ni1o1/transbigdata/badge.png index 7e9fad4c..69949e59 100644 Binary files a/_repos/github/ni1o1/transbigdata/badge.png and b/_repos/github/ni1o1/transbigdata/badge.png differ diff --git a/_repos/github/ni1o1/transbigdata/data.json b/_repos/github/ni1o1/transbigdata/data.json index 7aace391..02553c02 100644 --- a/_repos/github/ni1o1/transbigdata/data.json +++ b/_repos/github/ni1o1/transbigdata/data.json @@ -6,241 +6,297 @@ } }, "pypi": { - "numpy": { - "credit": 0.4317369375, - "url": "https://www.numpy.org" + "transbigdata": { + "credit": 0.0007615384615384663, + "url": "https://github.com/ni1o1/transbigdata" }, - "pandas": { - "credit": 0.0035557500000000146, - "url": "https://pandas.pydata.org" + "geopandas": { + "credit": 0.0008871923076923128, + "url": "http://geopandas.org" }, "shapely": { - "credit": 0.004753650000000015, + "credit": 0.010455732692307698, "url": "https://github.com/shapely/shapely" }, - "geopandas": { - "credit": 0.0016500000000000126, - "url": "http://geopandas.org" + "matplotlib": { + "credit": 0.09451863905325444, + "url": "https://matplotlib.org" + }, + "cycler": { + "credit": 0.07615384615384616, + "url": "https://github.com/matplotlib/cycler" + }, + "fiona": { + "credit": 0.004059951923076929, + "url": "http://github.com/Toblerity/Fiona" + }, + "fonttools": { + "credit": 0.0007615384615384663, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0007615384615384663, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0007615384615384663, + "url": "https://python-pillow.org" + }, + "pyproj": { + "credit": 0.004059951923076929, + "url": "https://github.com/pyproj4/pyproj" + }, + "click-plugins": { + "credit": 0.007031665384615389, + "url": "https://github.com/click-contrib/click-plugins" + }, + "cligj": { + "credit": 0.007031665384615389, + "url": "https://github.com/mapbox/cligj" + }, + "munch": { + "credit": 0.08242397307692308, + "url": "https://github.com/Infinidat/munch" }, "scipy": { - "credit": 0.0016500000000000126, + "credit": 0.005925062130177515, "url": "https://www.scipy.org" }, - "matplotlib": { - "credit": 0.165, - "url": "https://matplotlib.org" + "pandas": { + "credit": 0.0034240673076923094, + "url": "https://pandas.pydata.org" }, - "pytest-xdist": { - "credit": 0.013748625, - "url": "https://github.com/pytest-dev/pytest-xdist" + "numpy": { + "credit": 0.06568554807692306, + "url": "https://www.numpy.org" + }, + "pytest-cov": { + "credit": 0.05929605, + "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.036454275, + "credit": 0.02989305, "url": "https://docs.pytest.org/en/latest/" }, - "hypothesis": { - "credit": 0.012064078125, - "url": "https://hypothesis.works" + "mock": { + "credit": 0.00782509326923077, + "url": "http://mock.readthedocs.org/en/latest/" }, - "pytz": { - "credit": 0.0354605625, - "url": "http://pythonhosted.org/pytz" + "boto3": { + "credit": 0.006270126923076923, + "url": "https://pypi.org/project/boto3" }, - "python-dateutil": { - "credit": 0.0354605625, - "url": "https://github.com/dateutil/dateutil" + "ordereddict": { + "credit": 0.006270126923076923, + "url": "https://pypi.org/project/ordereddict" }, - "pytest-cov": { - "credit": 0.016716150000000003, - "url": "https://github.com/pytest-dev/pytest-cov" + "argparse": { + "credit": 0.006270126923076923, + "url": "https://pypi.org/project/argparse" }, - "pyproj": { - "credit": 0.0408375, - "url": "https://github.com/pyproj4/pyproj" + "setuptools": { + "credit": 0.006270126923076923, + "url": "https://pypi.org/project/setuptools" }, - "fiona": { - "credit": 0.0004083750000000025, - "url": "http://github.com/Toblerity/Fiona" + "six": { + "credit": 0.009380059615384614, + "url": "https://pypi.org/project/six" }, - "filelock": { - "credit": 0.004492125, - "url": "https://github.com/tox-dev/py-filelock" + "click": { + "credit": 0.11935858846153845, + "url": "https://pypi.org/project/click" }, - "setproctitle": { - "credit": 0.004492125, - "url": "https://pypi.org/project/setproctitle" + "certifi": { + "credit": 0.10032203076923076, + "url": "https://pypi.org/project/certifi" }, - "psutil": { - "credit": 0.004492125, - "url": "https://pypi.org/project/psutil" + "attrs": { + "credit": 0.00782509326923077, + "url": "https://pypi.org/project/attrs" }, - "pytest-forked": { - "credit": 0.004492125, - "url": "https://pypi.org/project/pytest-forked" + "xattr": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/xattr" }, - "execnet": { - "credit": 0.004492125, - "url": "https://pypi.org/project/execnet" + "unicodedata2": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/unicodedata2" }, - "xmlschema": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/xmlschema" + "munkres": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/munkres" }, - "requests": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/requests" + "brotli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotli" }, - "pygments": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/pygments" + "brotlicffi": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/brotlicffi" }, - "nose": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/nose" + "skia-pathops": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/skia-pathops" }, - "mock": { - "credit": 0.007748915624999999, - "url": "https://pypi.org/project/mock" + "sympy": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/sympy" }, - "argcomplete": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/argcomplete" + "lz4": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lz4" }, - "colorama": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/colorama" + "zopfli": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/zopfli" }, - "atomicwrites": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/atomicwrites" + "lxml": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/lxml" }, - "importlib-metadata": { - "credit": 0.006551015624999999, - "url": "https://pypi.org/project/importlib-metadata" + "fs": { + "credit": 0.005799408284023668, + "url": "https://pypi.org/project/fs" }, - "tomli": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/tomli" + "typing-extensions": { + "credit": 0.07539230769230769, + "url": "https://pypi.org/project/typing-extensions" }, - "py": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/py" + "pytest-timeout": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pytest-timeout" }, - "pluggy": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.0050536406249999995, + "credit": 0.006266985576923076, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.0050536406249999995, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/markdown2" }, - "attrs": { - "credit": 0.009246290624999999, - "url": "https://pypi.org/project/attrs" + "defusedxml": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/defusedxml" }, - "tzdata": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/tzdata" + "coverage": { + "credit": 0.007821951923076923, + "url": "https://pypi.org/project/coverage" }, - "backports.zoneinfo": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/backports.zoneinfo" + "check-manifest": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/check-manifest" }, - "rich": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/rich" + "sphinxext-opengraph": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "redis": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/redis" + "sphinx-rtd-theme": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "libcst": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/libcst" + "sphinx-removed-in": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "lark-parser": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/lark-parser" + "sphinx-issues": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-issues" }, - "dpcontracts": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/dpcontracts" + "sphinx-copybutton": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "django": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/django" + "sphinx": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/sphinx" }, - "click": { - "credit": 0.004192649999999999, - "url": "https://pypi.org/project/click" + "olefile": { + "credit": 0.0047120192307692306, + "url": "https://pypi.org/project/olefile" + }, + "pytest-xdist": { + "credit": 0.008293153846153846, + "url": "https://pypi.org/project/pytest-xdist" }, - "black": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/black" + "hypothesis": { + "credit": 0.006738187499999999, + "url": "https://pypi.org/project/hypothesis" + }, + "pytz": { + "credit": 0.005183221153846153, + "url": "https://pypi.org/project/pytz" }, - "sortedcontainers": { - "credit": 0.0014973749999999998, - "url": "https://pypi.org/project/sortedcontainers" + "python-dateutil": { + "credit": 0.005183221153846153, + "url": "https://pypi.org/project/python-dateutil" }, "virtualenv": { - "credit": 0.006738187499999999, + "credit": 0.0031099326923076922, "url": "https://pypi.org/project/virtualenv" }, - "six": { - "credit": 0.0094334625, - "url": "https://pypi.org/project/six" - }, "process-tests": { - "credit": 0.006738187499999999, + "credit": 0.0031099326923076922, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.006738187499999999, + "credit": 0.0031099326923076922, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.006738187499999999, + "credit": 0.0031099326923076922, "url": "https://pypi.org/project/fields" }, - "coverage": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/coverage" + "xmlschema": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/xmlschema" }, - "boto3": { - "credit": 0.0026952749999999996, - "url": "https://pypi.org/project/boto3" + "requests": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/requests" }, - "ordereddict": { - "credit": 0.0026952749999999996, - "url": "https://pypi.org/project/ordereddict" + "pygments": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pygments" }, - "argparse": { - "credit": 0.0026952749999999996, - "url": "https://pypi.org/project/argparse" + "nose": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/nose" }, - "setuptools": { - "credit": 0.0026952749999999996, - "url": "https://pypi.org/project/setuptools" + "argcomplete": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/argcomplete" }, - "munch": { - "credit": 0.0026952749999999996, - "url": "https://pypi.org/project/munch" + "colorama": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/colorama" }, - "click-plugins": { - "credit": 0.0026952749999999996, - "url": "https://pypi.org/project/click-plugins" + "atomicwrites": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/atomicwrites" }, - "cligj": { - "credit": 0.0026952749999999996, - "url": "https://pypi.org/project/cligj" + "importlib-metadata": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/importlib-metadata" }, - "certifi": { - "credit": 0.0026952749999999996, - "url": "https://pypi.org/project/certifi" + "tomli": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/tomli" + }, + "py": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/py" + }, + "pluggy": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pluggy" + }, + "iniconfig": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/iniconfig" } } } \ No newline at end of file diff --git a/_repos/github/ni1o1/transbigdata/setup.py b/_repos/github/ni1o1/transbigdata/setup.py index e62b4975..2f8c86bf 100644 --- a/_repos/github/ni1o1/transbigdata/setup.py +++ b/_repos/github/ni1o1/transbigdata/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="transbigdata", - version="0.4.4", + version="0.4.5", author="Qing Yu", author_email="qingyu0815@foxmail.com", description="A Python package developed for transportation spatio-temporal big data processing and analysis.", diff --git a/_repos/github/nicolet5/DiffCapAnalyzer/README.md b/_repos/github/nicolet5/DiffCapAnalyzer/README.md index 6dc6c7f9..0844ac6f 100644 --- a/_repos/github/nicolet5/DiffCapAnalyzer/README.md +++ b/_repos/github/nicolet5/DiffCapAnalyzer/README.md @@ -8,65 +8,41 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[colorama](https://github.com/tartley/colorama)|0.031| -|pypi|[pytest](https://pypi.org/project/pytest)|0.022| -|pypi|[six](https://pypi.org/project/six)|0.022| -|pypi|[asteval](http://github.com/newville/asteval)|0.021| -|pypi|[atomicwrites](https://github.com/untitaker/python-atomicwrites)|0.021| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.021| -|pypi|[chardet](https://github.com/chardet/chardet)|0.021| -|pypi|[cycler](https://github.com/matplotlib/cycler)|0.021| -|pypi|[dash](https://plotly.com/dash)|0.021| -|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|0.021| -|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|0.021| -|pypi|[dash-renderer](https://pypi.org/project/dash-renderer)|0.021| -|pypi|[dash-table](https://pypi.org/project/dash-table)|0.021| -|pypi|[dash-table-experiments](https://pypi.org/project/dash-table-experiments)|0.021| -|pypi|[Flask](https://pypi.org/project/Flask)|0.021| -|pypi|[Flask-Compress](https://pypi.org/project/Flask-Compress)|0.021| -|pypi|[future](https://pypi.org/project/future)|0.021| -|pypi|[idna](https://pypi.org/project/idna)|0.021| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.021| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.021| -|pypi|[kiwisolver](https://pypi.org/project/kiwisolver)|0.021| -|pypi|[lmfit](https://pypi.org/project/lmfit)|0.021| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.021| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.021| -|pypi|[more-itertools](https://pypi.org/project/more-itertools)|0.021| -|pypi|[numpy](https://pypi.org/project/numpy)|0.021| -|pypi|[packaging](https://pypi.org/project/packaging)|0.021| -|pypi|[pandas](https://pypi.org/project/pandas)|0.021| -|pypi|[PeakUtils](https://pypi.org/project/PeakUtils)|0.021| -|pypi|[plotly](https://pypi.org/project/plotly)|0.021| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.021| -|pypi|[py](https://pypi.org/project/py)|0.021| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.021| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.021| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.021| -|pypi|[pytz](https://pypi.org/project/pytz)|0.021| -|pypi|[requests](https://pypi.org/project/requests)|0.021| -|pypi|[retrying](https://pypi.org/project/retrying)|0.021| -|pypi|[scipy](https://pypi.org/project/scipy)|0.021| -|pypi|[ua-parser](https://pypi.org/project/ua-parser)|0.021| -|pypi|[uncertainties](https://pypi.org/project/uncertainties)|0.021| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.021| -|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.021| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.021| -|pypi|[wincertstore](https://pypi.org/project/wincertstore)|0.021| -|pypi|[tomli](https://pypi.org/project/tomli)|0.02| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.01| +|pypi|[DiffCapAnalyzer](https://github.com/nicolet5/DiffCapAnalyzer)|0.029| +|pypi|[asteval](https://pypi.org/project/asteval)|0.029| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.029| +|pypi|[chardet](https://pypi.org/project/chardet)|0.029| +|pypi|[colorama](https://pypi.org/project/colorama)|0.029| +|pypi|[coverage](https://pypi.org/project/coverage)|0.029| +|pypi|[cycler](https://pypi.org/project/cycler)|0.029| +|pypi|[dash](https://pypi.org/project/dash)|0.029| +|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|0.029| +|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|0.029| +|pypi|[dash-table](https://pypi.org/project/dash-table)|0.029| +|pypi|[dash-renderer](https://pypi.org/project/dash-renderer)|0.029| +|pypi|[dash-table-experiments](https://pypi.org/project/dash-table-experiments)|0.029| +|pypi|[Flask](https://pypi.org/project/Flask)|0.029| +|pypi|[Flask-Compress](https://pypi.org/project/Flask-Compress)|0.029| +|pypi|[future](https://pypi.org/project/future)|0.029| +|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.029| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.029| +|pypi|[kiwisolver](https://pypi.org/project/kiwisolver)|0.029| +|pypi|[lmfit](https://pypi.org/project/lmfit)|0.029| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.029| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.029| +|pypi|[more-itertools](https://pypi.org/project/more-itertools)|0.029| +|pypi|[PeakUtils](https://pypi.org/project/PeakUtils)|0.029| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.029| +|pypi|[retrying](https://pypi.org/project/retrying)|0.029| +|pypi|[ua-parser](https://pypi.org/project/ua-parser)|0.029| +|pypi|[uncertainties](https://pypi.org/project/uncertainties)|0.029| +|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.029| +|pypi|[wincertstore](https://pypi.org/project/wincertstore)|0.029| +|pypi|[fonttools](https://pypi.org/project/fonttools)|0.029| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.029| +|pypi|[pillow](https://pypi.org/project/pillow)|0.029| +|pypi|[brotli](https://pypi.org/project/brotli)|0.029| |setup.py|github/nicolet5/DiffCapAnalyzer|0.01| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.002| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.002| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| -|pypi|[furo](https://pypi.org/project/furo)|0.002| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.002| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.002| -|pypi|[mypy](https://pypi.org/project/mypy)|0.002| -|pypi|[pympler](https://pypi.org/project/pympler)|0.002| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/nicolet5/DiffCapAnalyzer/badge.png b/_repos/github/nicolet5/DiffCapAnalyzer/badge.png index 0302f8fd..df0129d8 100644 Binary files a/_repos/github/nicolet5/DiffCapAnalyzer/badge.png and b/_repos/github/nicolet5/DiffCapAnalyzer/badge.png differ diff --git a/_repos/github/nicolet5/DiffCapAnalyzer/data.json b/_repos/github/nicolet5/DiffCapAnalyzer/data.json index 3981b757..c3b97863 100644 --- a/_repos/github/nicolet5/DiffCapAnalyzer/data.json +++ b/_repos/github/nicolet5/DiffCapAnalyzer/data.json @@ -6,245 +6,141 @@ } }, "pypi": { + "DiffCapAnalyzer": { + "credit": 0.02911764705882353, + "url": "https://github.com/nicolet5/DiffCapAnalyzer" + }, "asteval": { - "credit": 0.020625, - "url": "http://github.com/newville/asteval" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/asteval" }, "atomicwrites": { - "credit": 0.020625, - "url": "https://github.com/untitaker/python-atomicwrites" - }, - "attrs": { - "credit": 0.00020625000000000157, - "url": "https://www.attrs.org/" - }, - "certifi": { - "credit": 0.020625, - "url": "https://certifiio.readthedocs.io/en/latest/" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/atomicwrites" }, "chardet": { - "credit": 0.020625, - "url": "https://github.com/chardet/chardet" - }, - "Click": { - "credit": 0.00020625000000000157, - "url": "https://palletsprojects.com/p/click/" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/chardet" }, "colorama": { - "credit": 0.030834375, - "url": "https://github.com/tartley/colorama" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/colorama" }, "coverage": { - "credit": 0.0017769230769230785, - "url": "https://github.com/nedbat/coveragepy" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/coverage" }, "cycler": { - "credit": 0.020625, - "url": "https://github.com/matplotlib/cycler" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/cycler" }, "dash": { - "credit": 0.020625, - "url": "https://plotly.com/dash" + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/dash" }, "dash-core-components": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/dash-core-components" }, "dash-html-components": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/dash-html-components" }, - "dash-renderer": { - "credit": 0.020625, - "url": "https://pypi.org/project/dash-renderer" - }, "dash-table": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/dash-table" }, + "dash-renderer": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/dash-renderer" + }, "dash-table-experiments": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/dash-table-experiments" }, "Flask": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/Flask" }, "Flask-Compress": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/Flask-Compress" }, "future": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/future" }, - "idna": { - "credit": 0.020625, - "url": "https://pypi.org/project/idna" - }, "itsdangerous": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/itsdangerous" }, "Jinja2": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/Jinja2" }, "kiwisolver": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/kiwisolver" }, "lmfit": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/lmfit" }, "MarkupSafe": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/MarkupSafe" }, "matplotlib": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/matplotlib" }, "more-itertools": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/more-itertools" }, - "numpy": { - "credit": 0.020625, - "url": "https://pypi.org/project/numpy" - }, - "packaging": { - "credit": 0.020625, - "url": "https://pypi.org/project/packaging" - }, - "pandas": { - "credit": 0.020625, - "url": "https://pypi.org/project/pandas" - }, "PeakUtils": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/PeakUtils" }, - "plotly": { - "credit": 0.020625, - "url": "https://pypi.org/project/plotly" - }, - "pluggy": { - "credit": 0.020625, - "url": "https://pypi.org/project/pluggy" - }, - "py": { - "credit": 0.020625, - "url": "https://pypi.org/project/py" - }, - "pyparsing": { - "credit": 0.020625, - "url": "https://pypi.org/project/pyparsing" - }, - "pytest": { - "credit": 0.022195673076923078, - "url": "https://pypi.org/project/pytest" - }, "pytest-cov": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/pytest-cov" }, - "python-dateutil": { - "credit": 0.020625, - "url": "https://pypi.org/project/python-dateutil" - }, - "pytz": { - "credit": 0.020625, - "url": "https://pypi.org/project/pytz" - }, - "requests": { - "credit": 0.020625, - "url": "https://pypi.org/project/requests" - }, "retrying": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/retrying" }, - "scipy": { - "credit": 0.020625, - "url": "https://pypi.org/project/scipy" - }, - "six": { - "credit": 0.022195673076923078, - "url": "https://pypi.org/project/six" - }, "ua-parser": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/ua-parser" }, "uncertainties": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/uncertainties" }, - "urllib3": { - "credit": 0.020625, - "url": "https://pypi.org/project/urllib3" - }, - "wcwidth": { - "credit": 0.020625, - "url": "https://pypi.org/project/wcwidth" - }, "Werkzeug": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/Werkzeug" }, "wincertstore": { - "credit": 0.020625, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/wincertstore" }, - "cloudpickle": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "sphinx": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/sphinx" - }, - "furo": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/furo" - }, - "zope.interface": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "mypy": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/mypy" - }, - "pympler": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/pympler" - }, - "hypothesis": { - "credit": 0.001570673076923077, - "url": "https://pypi.org/project/hypothesis" + "fonttools": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/fonttools" }, "importlib-metadata": { - "credit": 0.010209375, + "credit": 0.02911764705882353, "url": "https://pypi.org/project/importlib-metadata" }, - "tomli": { - "credit": 0.02041875, - "url": "https://pypi.org/project/tomli" + "pillow": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/pillow" + }, + "brotli": { + "credit": 0.02911764705882353, + "url": "https://pypi.org/project/brotli" } } } \ No newline at end of file diff --git a/_repos/github/nlesc-ave/ave-rest-service/README.md b/_repos/github/nlesc-ave/ave-rest-service/README.md index b3e64132..e8e0ef06 100644 --- a/_repos/github/nlesc-ave/ave-rest-service/README.md +++ b/_repos/github/nlesc-ave/ave-rest-service/README.md @@ -8,42 +8,61 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.287| -|pypi|[whoosh](http://bitbucket.org/mchaput/whoosh)|0.124| -|pypi|[pybedtools](https://github.com/daler/pybedtools)|0.124| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.085| -|pypi|[click](https://palletsprojects.com/p/click/)|0.077| -|pypi|[colorama](https://pypi.org/project/colorama)|0.061| -|pypi|[coloredlogs](https://pypi.org/project/coloredlogs)|0.041| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.023| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.018| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.018| -|pypi|[pytest](https://pypi.org/project/pytest)|0.01| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.102| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.078| +|pypi|[clickclick](https://codeberg.org/hjacobs/python-clickclick)|0.069| +|pypi|[inflection](https://github.com/jpvanhal/inflection)|0.069| +|pypi|[pybedtools](https://github.com/daler/pybedtools)|0.066| +|pypi|[whoosh](http://bitbucket.org/mchaput/whoosh)|0.066| +|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.066| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.065| +|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|0.033| +|pypi|[Babel](https://pypi.org/project/Babel)|0.033| +|pypi|[capturer](https://pypi.org/project/capturer)|0.033| +|pypi|[click](https://pypi.org/project/click)|0.031| +|pypi|[coloredlogs](https://coloredlogs.readthedocs.io)|0.022| +|pypi|[numpy](https://pypi.org/project/numpy)|0.022| +|pypi|[pyreadline3](https://pypi.org/project/pyreadline3)|0.022| +|pypi|[pyreadline](https://pypi.org/project/pyreadline)|0.022| +|pypi|[monotonic](https://pypi.org/project/monotonic)|0.022| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.013| |setup.py|github/nlesc-ave/ave-rest-service|0.01| -|pypi|[flask](https://palletsprojects.com/p/flask)|0.007| -|pypi|[aiohttp-remotes](https://pypi.org/project/aiohttp-remotes)|0.006| -|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|0.006| -|pypi|[testfixtures](https://pypi.org/project/testfixtures)|0.006| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.006| -|pypi|[decorator](https://pypi.org/project/decorator)|0.006| -|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|0.006| -|pypi|[sphinx-autoapi](https://pypi.org/project/sphinx-autoapi)|0.006| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.006| -|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|0.006| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.006| -|pypi|[packaging](https://pypi.org/project/packaging)|0.006| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|0.006| -|pypi|[inflection](https://pypi.org/project/inflection)|0.006| -|pypi|[requests](https://pypi.org/project/requests)|0.006| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.006| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.006| -|pypi|[clickclick](https://pypi.org/project/clickclick)|0.006| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.004| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.004| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.01| +|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.009| +|pypi|[asgiref](https://pypi.org/project/asgiref)|0.009| +|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.009| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.007| +|pypi|[pytest](https://pypi.org/project/pytest)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.005| +|pypi|[flask](https://palletsprojects.com/p/flask)|0.004| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|0.004| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.004| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.004| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.004| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.004| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.004| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| +|pypi|[ipython](https://pypi.org/project/ipython)|0.004| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| +|pypi|[zipp](https://pypi.org/project/zipp)|0.004| +|pypi|[pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp)|0.003| +|pypi|[testfixtures](https://pypi.org/project/testfixtures)|0.003| +|pypi|[decorator](https://pypi.org/project/decorator)|0.003| +|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|0.003| +|pypi|[sphinx-autoapi](https://pypi.org/project/sphinx-autoapi)|0.003| +|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|0.003| +|pypi|[requests](https://pypi.org/project/requests)|0.003| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.003| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.003| |pypi|[connexion](https://github.com/zalando/connexion)|0.001| |pypi|[cyvcf2](https://github.com/brentp/cyvcf2/)|0.001| -|pypi|[scipy](https://www.scipy.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/nlesc-ave/ave-rest-service/badge.png b/_repos/github/nlesc-ave/ave-rest-service/badge.png index 6cd21ca3..32f85832 100644 Binary files a/_repos/github/nlesc-ave/ave-rest-service/badge.png and b/_repos/github/nlesc-ave/ave-rest-service/badge.png differ diff --git a/_repos/github/nlesc-ave/ave-rest-service/data.json b/_repos/github/nlesc-ave/ave-rest-service/data.json index 781f282b..c6376b6e 100644 --- a/_repos/github/nlesc-ave/ave-rest-service/data.json +++ b/_repos/github/nlesc-ave/ave-rest-service/data.json @@ -6,153 +6,225 @@ } }, "pypi": { - "flask": { - "credit": 0.007071428571428574, - "url": "https://palletsprojects.com/p/flask" - }, - "click": { - "credit": 0.07690355357142857, - "url": "https://palletsprojects.com/p/click/" - }, "connexion": { - "credit": 0.0012375000000000025, + "credit": 0.0006599999999999939, "url": "https://github.com/zalando/connexion" }, - "whoosh": { - "credit": 0.12375, - "url": "http://bitbucket.org/mchaput/whoosh" - }, - "pybedtools": { - "credit": 0.12375, - "url": "https://github.com/daler/pybedtools" + "flask": { + "credit": 0.0037714285714285658, + "url": "https://palletsprojects.com/p/flask" }, "cyvcf2": { - "credit": 0.0012375000000000025, + "credit": 0.0006599999999999939, "url": "https://github.com/brentp/cyvcf2/" }, - "numpy": { - "credit": 0.2871, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.0012375000000000025, - "url": "https://www.scipy.org" + "pybedtools": { + "credit": 0.066, + "url": "https://github.com/daler/pybedtools" }, - "python-dotenv": { - "credit": 0.00017501785714285623, - "url": "https://github.com/theskumar/python-dotenv" + "whoosh": { + "credit": 0.066, + "url": "http://bitbucket.org/mchaput/whoosh" }, - "asgiref": { - "credit": 0.00017501785714285623, - "url": "https://github.com/django/asgiref/" + "clickclick": { + "credit": 0.06911142857142857, + "url": "https://codeberg.org/hjacobs/python-clickclick" }, "importlib-metadata": { - "credit": 0.08459196428571429, + "credit": 0.013105714285714281, "url": "https://github.com/python/importlib_metadata" }, + "inflection": { + "credit": 0.06911142857142857, + "url": "https://github.com/jpvanhal/inflection" + }, "itsdangerous": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/itsdangerous" + "credit": 0.07844571428571429, + "url": "https://palletsprojects.com/p/itsdangerous/" }, "Jinja2": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/Jinja2" + "credit": 0.009994285714285709, + "url": "https://palletsprojects.com/p/jinja/" }, - "Werkzeug": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/Werkzeug" + "werkzeug": { + "credit": 0.0037714285714285658, + "url": "https://palletsprojects.com/p/werkzeug/" + }, + "coloredlogs": { + "credit": 0.022439999999999998, + "url": "https://coloredlogs.readthedocs.io" + }, + "pysam": { + "credit": 0.066, + "url": "https://github.com/pysam-developers/pysam" }, - "colorama": { - "credit": 0.06125625, - "url": "https://pypi.org/project/colorama" + "humanfriendly": { + "credit": 0.03333, + "url": "https://humanfriendly.readthedocs.io" + }, + "MarkupSafe": { + "credit": 0.10178142857142858, + "url": "https://palletsprojects.com/p/markupsafe/" }, "aiohttp-remotes": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/aiohttp-remotes" + "credit": 3.111428571428562e-05, + "url": "https://github.com/aio-libs/aiohttp-remotes" }, "pytest-aiohttp": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/pytest-aiohttp" + "credit": 0.003111428571428572, + "url": "https://github.com/aio-libs/pytest-aiohttp" }, "testfixtures": { - "credit": 0.0058339285714285715, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/testfixtures" }, "pytest-cov": { - "credit": 0.0058339285714285715, + "credit": 0.006741428571428572, "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.010165620535714286, + "credit": 0.006741428571428572, "url": "https://pypi.org/project/pytest" }, "decorator": { - "credit": 0.0058339285714285715, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/decorator" }, "swagger-ui-bundle": { - "credit": 0.0058339285714285715, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/swagger-ui-bundle" }, "sphinx-autoapi": { - "credit": 0.0058339285714285715, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/sphinx-autoapi" }, - "MarkupSafe": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/MarkupSafe" - }, "aiohttp-jinja2": { - "credit": 0.0058339285714285715, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/aiohttp-jinja2" }, "aiohttp": { - "credit": 0.0058339285714285715, + "credit": 0.004651585714285715, "url": "https://pypi.org/project/aiohttp" }, "packaging": { - "credit": 0.0058339285714285715, + "credit": 0.006741428571428572, "url": "https://pypi.org/project/packaging" }, - "werkzeug": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/werkzeug" - }, - "inflection": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/inflection" - }, "requests": { - "credit": 0.0058339285714285715, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/requests" }, "PyYAML": { - "credit": 0.0058339285714285715, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/PyYAML" }, "jsonschema": { - "credit": 0.0058339285714285715, + "credit": 0.003111428571428572, "url": "https://pypi.org/project/jsonschema" }, - "clickclick": { - "credit": 0.0058339285714285715, - "url": "https://pypi.org/project/clickclick" + "python-dotenv": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/python-dotenv" }, - "coloredlogs": { - "credit": 0.0408375, - "url": "https://pypi.org/project/coloredlogs" + "asgiref": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/asgiref" + }, + "click": { + "credit": 0.03111428571428572, + "url": "https://pypi.org/project/click" + }, + "Werkzeug": { + "credit": 0.009334285714285715, + "url": "https://pypi.org/project/Werkzeug" + }, + "numpy": { + "credit": 0.021780000000000004, + "url": "https://pypi.org/project/numpy" + }, + "importlib-resources": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/importlib-resources" + }, + "pytest-mypy": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pytest-mypy" }, - "mypy": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/mypy" + "pytest-black": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pytest-black" }, - "pytest-asyncio": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/pytest-asyncio" + "pytest-perf": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pytest-perf" + }, + "flufl.flake8": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/flufl.flake8" + }, + "pyfakefs": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pyfakefs" + }, + "pytest-enabler": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pytest-enabler" + }, + "pytest-flake8": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pytest-flake8" + }, + "pytest-checkdocs": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/pytest-checkdocs" + }, + "ipython": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/ipython" + }, + "rst.linker": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/rst.linker" + }, + "jaraco.packaging": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/jaraco.packaging" + }, + "sphinx": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.004331691964285714, + "credit": 0.0051701571428571435, "url": "https://pypi.org/project/typing-extensions" + }, + "zipp": { + "credit": 0.0036300000000000004, + "url": "https://pypi.org/project/zipp" + }, + "Babel": { + "credit": 0.032670000000000005, + "url": "https://pypi.org/project/Babel" + }, + "watchdog": { + "credit": 0.06534000000000001, + "url": "https://pypi.org/project/watchdog" + }, + "capturer": { + "credit": 0.032670000000000005, + "url": "https://pypi.org/project/capturer" + }, + "pyreadline3": { + "credit": 0.021780000000000004, + "url": "https://pypi.org/project/pyreadline3" + }, + "pyreadline": { + "credit": 0.021780000000000004, + "url": "https://pypi.org/project/pyreadline" + }, + "monotonic": { + "credit": 0.021780000000000004, + "url": "https://pypi.org/project/monotonic" } } } \ No newline at end of file diff --git a/_repos/github/nlesc-nano/CAT/README.md b/_repos/github/nlesc-nano/CAT/README.md index d09e152b..607c9361 100644 --- a/_repos/github/nlesc-nano/CAT/README.md +++ b/_repos/github/nlesc-nano/CAT/README.md @@ -8,40 +8,40 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.238| -|pypi|[contextlib2](http://contextlib2.readthedocs.org)|0.141| -|pypi|[pyyaml](https://pyyaml.org/)|0.079| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.079| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.073| -|pypi|[dill](https://pypi.org/project/dill)|0.035| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.035| -|pypi|[pytest](https://pypi.org/project/pytest)|0.032| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.021| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.021| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.015| -|pypi|[wheel](https://pypi.org/project/wheel)|0.012| -|pypi|[twine](https://pypi.org/project/twine)|0.012| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.012| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.012| -|pypi|[pytz](https://pypi.org/project/pytz)|0.012| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.012| +|pypi|[numpy](https://www.numpy.org)|0.256| +|pypi|[contextlib2](http://contextlib2.readthedocs.org)|0.152| +|pypi|[pyyaml](https://pyyaml.org/)|0.085| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.078| +|pypi|[dill](https://pypi.org/project/dill)|0.038| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.038| +|pypi|[pytest](https://pypi.org/project/pytest)|0.035| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.022| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.022| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.016| +|pypi|[wheel](https://pypi.org/project/wheel)|0.013| +|pypi|[twine](https://pypi.org/project/twine)|0.013| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.013| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.013| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.013| +|pypi|[pytz](https://pypi.org/project/pytz)|0.013| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.013| |pypi|[pandas](https://pandas.pydata.org)|0.011| |setup.py|github/nlesc-nano/CAT|0.01| -|pypi|[h5py](https://pypi.org/project/h5py)|0.008| -|pypi|[assertionlib](https://pypi.org/project/assertionlib)|0.008| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.008| +|pypi|[h5py](https://pypi.org/project/h5py)|0.009| +|pypi|[assertionlib](https://pypi.org/project/assertionlib)|0.009| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.009| +|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.009| |pypi|[Nano-Utils](https://github.com/nlesc-nano/Nano-Utils)|0.008| -|pypi|[schema](https://github.com/keleshev/schema)|0.006| -|pypi|[ipython](https://ipython.org)|0.005| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.005| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.005| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.005| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.005| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.005| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.005| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.005| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.005| +|pypi|[schema](https://github.com/keleshev/schema)|0.007| +|pypi|[ipython](https://ipython.org)|0.006| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.006| +|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.006| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.006| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.006| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.006| +|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.006| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.006| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.006| |pypi|[plams](https://www.scm.com/doc/plams/)|0.004| |pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|0.003| |pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|0.003| diff --git a/_repos/github/nlesc-nano/CAT/badge.png b/_repos/github/nlesc-nano/CAT/badge.png index bc583659..c648e16f 100644 Binary files a/_repos/github/nlesc-nano/CAT/badge.png and b/_repos/github/nlesc-nano/CAT/badge.png differ diff --git a/_repos/github/nlesc-nano/CAT/data.json b/_repos/github/nlesc-nano/CAT/data.json index 2b58dbb1..a1bead38 100644 --- a/_repos/github/nlesc-nano/CAT/data.json +++ b/_repos/github/nlesc-nano/CAT/data.json @@ -7,211 +7,211 @@ }, "pypi": { "Nano-Utils": { - "credit": 0.00770785714285715, + "credit": 0.008300769230769235, "url": "https://github.com/nlesc-nano/Nano-Utils" }, "numpy": { - "credit": 0.23758259340659343, + "credit": 0.2558581775147929, "url": "https://www.numpy.org" }, "scipy": { - "credit": 0.0007071428571428645, + "credit": 0.0007615384615384663, "url": "https://www.scipy.org" }, "pandas": { - "credit": 0.010508142857142863, + "credit": 0.011316461538461543, "url": "https://pandas.pydata.org" }, "pyyaml": { - "credit": 0.07889973626373627, + "credit": 0.08496894674556213, "url": "https://pyyaml.org/" }, "schema": { - "credit": 0.006092307692307699, + "credit": 0.006560946745562134, "url": "https://github.com/keleshev/schema" }, "AssertionLib": { - "credit": 0.0007071428571428645, + "credit": 0.0007615384615384663, "url": "https://github.com/nlesc-nano/AssertionLib" }, "plams": { - "credit": 0.0035074285714285784, + "credit": 0.003777230769230774, "url": "https://www.scm.com/doc/plams/" }, "contextlib2": { - "credit": 0.14072142857142855, + "credit": 0.15154615384615383, "url": "http://contextlib2.readthedocs.org" }, - "typing-extensions": { - "credit": 0.07889973626373627, - "url": "https://typing.readthedocs.io/" - }, "qmflows": { - "credit": 0.0007071428571428645, + "credit": 0.0007615384615384663, "url": "https://github.com/SCM-NV/qmflows" }, "rdkit-pypi": { - "credit": 0.0007071428571428645, + "credit": 0.0007615384615384663, "url": "https://github.com/kuelumbus/rdkit-pypi" }, "packaging": { - "credit": 0.0007071428571428645, + "credit": 0.0007615384615384663, "url": "https://github.com/pypa/packaging" }, "pytest-runner": { - "credit": 0.0007071428571428645, + "credit": 0.0007615384615384663, "url": "https://github.com/pytest-dev/pytest-runner/" }, "ipython": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://ipython.org" }, "h5py": { - "credit": 0.008185450549450548, + "credit": 0.008815100591715976, "url": "https://pypi.org/project/h5py" }, "pytest-cov": { - "credit": 0.020571329670329666, + "credit": 0.022153739644970413, "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.03223918681318681, + "credit": 0.03471912426035503, "url": "https://pypi.org/project/pytest" }, "assertionlib": { - "credit": 0.008185450549450548, + "credit": 0.008815100591715976, "url": "https://pypi.org/project/assertionlib" }, "sphinx-rtd-theme": { - "credit": 0.015186164835164833, + "credit": 0.016354331360946744, "url": "https://pypi.org/project/sphinx-rtd-theme" }, "sphinx": { - "credit": 0.020571329670329666, + "credit": 0.022153739644970413, "url": "https://pypi.org/project/sphinx" }, "wheel": { - "credit": 0.01238587912087912, + "credit": 0.013338639053254437, "url": "https://pypi.org/project/wheel" }, "twine": { - "credit": 0.01238587912087912, + "credit": 0.013338639053254437, "url": "https://pypi.org/project/twine" }, + "typing-extensions": { + "credit": 0.008815100591715976, + "url": "https://pypi.org/project/typing-extensions" + }, "pytest-xdist": { - "credit": 0.011667857142857141, + "credit": 0.012565384615384615, "url": "https://pypi.org/project/pytest-xdist" }, "hypothesis": { - "credit": 0.011667857142857141, + "credit": 0.012565384615384615, "url": "https://pypi.org/project/hypothesis" }, "pytz": { - "credit": 0.011667857142857141, + "credit": 0.012565384615384615, "url": "https://pypi.org/project/pytz" }, "python-dateutil": { - "credit": 0.011667857142857141, + "credit": 0.012565384615384615, "url": "https://pypi.org/project/python-dateutil" }, "pytest-mypy": { - "credit": 0.01238587912087912, + "credit": 0.013338639053254437, "url": "https://pypi.org/project/pytest-mypy" }, "dill": { - "credit": 0.035003571428571426, + "credit": 0.037696153846153845, "url": "https://pypi.org/project/dill" }, "pytest-pydocstyle": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/pytest-pydocstyle" }, "pytest-pycodestyle": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/pytest-pycodestyle" }, "pytest-mock": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/pytest-mock" }, "types-setuptools": { - "credit": 0.008185450549450548, + "credit": 0.008815100591715976, "url": "https://pypi.org/project/types-setuptools" }, "types-PyYAML": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/types-PyYAML" }, "mypy": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/mypy" }, "pandoc": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/pandoc" }, "jupyter": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/jupyter" }, "nbsphinx": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/nbsphinx" }, "sphinx-autodoc-typehints": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/sphinx-autodoc-typehints" }, "filelock": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/filelock" }, "pyparsing": { - "credit": 0.07280742857142856, + "credit": 0.07840799999999999, "url": "https://pypi.org/project/pyparsing" }, "noodles": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/noodles" }, "more-itertools": { - "credit": 0.002800285714285714, + "credit": 0.0030156923076923078, "url": "https://pypi.org/project/more-itertools" }, "Pillow": { - "credit": 0.035003571428571426, + "credit": 0.037696153846153845, "url": "https://pypi.org/project/Pillow" }, "pytest-black": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://pypi.org/project/pytest-black" }, "pytest-virtualenv": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://pypi.org/project/pytest-virtualenv" }, "pytest-enabler": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://pypi.org/project/pytest-enabler" }, "pytest-flake8": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://pypi.org/project/pytest-checkdocs" }, "jaraco.tidelift": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://pypi.org/project/jaraco.tidelift" }, "rst.linker": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.0053851648351648344, + "credit": 0.005799408284023668, "url": "https://pypi.org/project/jaraco.packaging" } } diff --git a/_repos/github/nlesc-nano/Moka/README.md b/_repos/github/nlesc-nano/Moka/README.md index d22b9bbe..d985d011 100644 --- a/_repos/github/nlesc-nano/Moka/README.md +++ b/_repos/github/nlesc-nano/Moka/README.md @@ -8,71 +8,71 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.166| -|pypi|[pyyaml](https://pyyaml.org/)|0.141| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.141| -|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.14| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.025| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.025| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.02| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.02| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.02| -|pypi|[idna](https://pypi.org/project/idna)|0.02| -|pypi|[chardet](https://pypi.org/project/chardet)|0.02| -|pypi|[certifi](https://pypi.org/project/certifi)|0.02| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.02| -|pypi|[requests](https://requests.readthedocs.io)|0.017| -|pypi|[mock](https://pypi.org/project/mock)|0.015| -|pypi|[stestr](http://stestr.readthedocs.io/en/latest/)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.015| -|pypi|[openstacksdk](https://pypi.org/project/openstacksdk)|0.014| -|pypi|[keystoneauth1](https://pypi.org/project/keystoneauth1)|0.014| -|pypi|[python-keystoneclient](https://pypi.org/project/python-keystoneclient)|0.014| -|pypi|[futures](https://pypi.org/project/futures)|0.014| -|pypi|[six](https://pypi.org/project/six)|0.014| +|pypi|[contextlib2](http://contextlib2.readthedocs.org)|0.657| +|pypi|[six](https://github.com/benjaminp/six)|0.037| +|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.034| +|pypi|[futures](https://github.com/agronholm/pythonfutures)|0.033| +|pypi|[tomli](https://pypi.org/project/tomli)|0.032| |setup.py|github/nlesc-nano/Moka|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.005| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[pandas](https://pandas.pydata.org)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|0.001| -|pypi|[schema](https://github.com/keleshev/schema)|0.001| -|pypi|[testtools](https://pypi.org/project/testtools)|0.001| -|pypi|[testscenarios](https://pypi.org/project/testscenarios)|0.001| -|pypi|[python-subunit](https://pypi.org/project/python-subunit)|0.001| -|pypi|[fixtures](https://pypi.org/project/fixtures)|0.001| -|pypi|[eventlet](https://pypi.org/project/eventlet)|0.001| -|pypi|[ddt](https://pypi.org/project/ddt)|0.001| -|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|0.001| -|pypi|[flake8](https://pypi.org/project/flake8)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[pbr](https://pypi.org/project/pbr)|0.009| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.007| +|pypi|[testtools](https://github.com/testing-cabal/testtools)|0.007| +|pypi|[fixtures](https://pypi.org/project/fixtures)|0.007| +|pypi|[keystoneauth1](https://docs.openstack.org/keystoneauth/latest/)|0.006| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.006| +|pypi|[python-subunit](https://pypi.org/project/python-subunit)|0.006| +|pypi|[ddt](https://pypi.org/project/ddt)|0.006| +|pypi|[stestr](http://stestr.readthedocs.io/en/latest/)|0.005| +|pypi|[requests](https://requests.readthedocs.io)|0.005| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.005| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.005| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.005| +|pypi|[idna](https://pypi.org/project/idna)|0.005| +|pypi|[chardet](https://pypi.org/project/chardet)|0.005| +|pypi|[certifi](https://pypi.org/project/certifi)|0.005| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.005| +|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|0.004| +|pypi|[oslo.utils](https://pypi.org/project/oslo.utils)|0.004| +|pypi|[oslo.config](https://pypi.org/project/oslo.config)|0.004| +|pypi|[stevedore](https://pypi.org/project/stevedore)|0.004| +|pypi|[hacking](https://docs.openstack.org/hacking/latest/)|0.004| +|pypi|[os-service-types](https://pypi.org/project/os-service-types)|0.003| +|pypi|[iso8601](https://pypi.org/project/iso8601)|0.003| +|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|0.003| +|pypi|[schema](https://github.com/keleshev/schema)|0.003| +|pypi|[testscenarios](https://pypi.org/project/testscenarios)|0.003| +|pypi|[eventlet](https://pypi.org/project/eventlet)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[oslo.serialization](https://pypi.org/project/oslo.serialization)|0.003| +|pypi|[oslo.i18n](https://pypi.org/project/oslo.i18n)|0.003| +|pypi|[debtcollector](https://pypi.org/project/debtcollector)|0.003| +|pypi|[doc8](https://pypi.org/project/doc8)|0.002| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| +|pypi|[subunit2sql](https://pypi.org/project/subunit2sql)|0.002| +|pypi|[voluptuous](https://pypi.org/project/voluptuous)|0.002| +|pypi|[cliff](https://pypi.org/project/cliff)|0.002| +|pypi|[future](https://pypi.org/project/future)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[requestsexceptions](https://pypi.org/project/requestsexceptions)|0.002| +|pypi|[netifaces](https://pypi.org/project/netifaces)|0.002| +|pypi|[munch](https://pypi.org/project/munch)|0.002| +|pypi|[jsonpatch](https://pypi.org/project/jsonpatch)|0.002| +|pypi|[jmespath](https://pypi.org/project/jmespath)|0.002| +|pypi|[dogpile.cache](https://pypi.org/project/dogpile.cache)|0.002| +|pypi|[decorator](https://pypi.org/project/decorator)|0.002| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[testresources](https://pypi.org/project/testresources)|0.001| +|pypi|[requests-mock](https://pypi.org/project/requests-mock)|0.001| +|pypi|[reno](https://pypi.org/project/reno)|0.001| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.001| +|pypi|[oslotest](https://pypi.org/project/oslotest)|0.001| +|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|0.001| +|pypi|[bandit](https://pypi.org/project/bandit)|0.001| +|pypi|[lxml](https://pypi.org/project/lxml)|0.001| +|pypi|[oauthlib](https://pypi.org/project/oauthlib)|0.001| +|pypi|[requests-kerberos](https://pypi.org/project/requests-kerberos)|0.001| +|pypi|[betamax](https://pypi.org/project/betamax)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/nlesc-nano/Moka/badge.png b/_repos/github/nlesc-nano/Moka/badge.png index 83801d7b..52cc186a 100644 Binary files a/_repos/github/nlesc-nano/Moka/badge.png and b/_repos/github/nlesc-nano/Moka/badge.png differ diff --git a/_repos/github/nlesc-nano/Moka/data.json b/_repos/github/nlesc-nano/Moka/data.json index e879fab3..4eddce34 100644 --- a/_repos/github/nlesc-nano/Moka/data.json +++ b/_repos/github/nlesc-nano/Moka/data.json @@ -6,269 +6,269 @@ } }, "pypi": { - "numpy": { - "credit": 0.16604775000000002, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.0026977500000000144, - "url": "https://pandas.pydata.org" - }, "python-swiftclient": { - "credit": 0.001414285714285729, + "credit": 0.003300000000000025, "url": "https://docs.openstack.org/python-swiftclient/latest/" }, - "pyyaml": { - "credit": 0.14142857142857143, - "url": "https://pyyaml.org/" - }, - "requests": { - "credit": 0.01685961160714287, - "url": "https://requests.readthedocs.io" - }, "schema": { - "credit": 0.001414285714285729, + "credit": 0.003300000000000025, "url": "https://github.com/keleshev/schema" }, - "typing-extensions": { - "credit": 0.14142857142857143, - "url": "https://typing.readthedocs.io/" - }, - "pytest-xdist": { - "credit": 0.0002333571428571428, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.005367214285714284, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.001677254464285714, - "url": "https://hypothesis.works" - }, - "pytz": { - "credit": 0.02461917857142857, - "url": "http://pythonhosted.org/pytz" - }, - "python-dateutil": { - "credit": 0.02461917857142857, - "url": "https://github.com/dateutil/dateutil" + "contextlib2": { + "credit": 0.6567000000000001, + "url": "http://contextlib2.readthedocs.org" }, "hacking": { - "credit": 0.00014001428571428637, + "credit": 0.0038348357142857135, "url": "https://docs.openstack.org/hacking/latest/" }, "stestr": { - "credit": 0.01538757, + "credit": 0.004758929999999999, "url": "http://stestr.readthedocs.io/en/latest/" }, "openstacksdk": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/openstacksdk" + "credit": 0.0003266999999999992, + "url": "https://docs.openstack.org/openstacksdk/" }, "mock": { - "credit": 0.015445325892857142, - "url": "https://pypi.org/project/mock" + "credit": 0.0338679, + "url": "http://mock.readthedocs.org/en/latest/" }, "keystoneauth1": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/keystoneauth1" + "credit": 0.005717249999999998, + "url": "https://docs.openstack.org/keystoneauth/latest/" }, "coverage": { - "credit": 0.01538757, - "url": "https://pypi.org/project/coverage" + "credit": 0.007069165714285713, + "url": "https://github.com/nedbat/coveragepy" }, "python-keystoneclient": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/python-keystoneclient" + "credit": 0.0003266999999999992, + "url": "https://docs.openstack.org/python-keystoneclient/latest/" }, "futures": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/futures" + "credit": 0.03267, + "url": "https://github.com/agronholm/pythonfutures" }, "six": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/six" + "credit": 0.03710223, + "url": "https://github.com/benjaminp/six" }, - "win-inet-pton": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/charset-normalizer" + "requests": { + "credit": 0.004758929999999999, + "url": "https://requests.readthedocs.io" }, - "idna": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/idna" + "testtools": { + "credit": 0.0067424657142857135, + "url": "https://github.com/testing-cabal/testtools" }, - "chardet": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/chardet" + "testscenarios": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/testscenarios" }, - "certifi": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/certifi" + "python-subunit": { + "credit": 0.0055445657142857135, + "url": "https://pypi.org/project/python-subunit" }, - "urllib3": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/urllib3" + "fixtures": { + "credit": 0.0067424657142857135, + "url": "https://pypi.org/project/fixtures" }, - "contextlib2": { - "credit": 0.1400142857142857, - "url": "https://pypi.org/project/contextlib2" + "eventlet": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/eventlet" }, - "filelock": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/filelock" + "ddt": { + "credit": 0.0055445657142857135, + "url": "https://pypi.org/project/ddt" }, - "setproctitle": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/setproctitle" + "flake8-docstrings": { + "credit": 0.00443223, + "url": "https://pypi.org/project/flake8-docstrings" }, - "psutil": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/psutil" + "flake8": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/flake8" }, - "pytest-forked": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/pytest-forked" + "doc8": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/doc8" }, - "execnet": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/execnet" + "sphinx": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/sphinx" }, - "xmlschema": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/xmlschema" + "subunit2sql": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/subunit2sql" }, - "pygments": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pygments" + "voluptuous": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/voluptuous" }, - "nose": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/nose" + "PyYAML": { + "credit": 0.005664355714285714, + "url": "https://pypi.org/project/PyYAML" }, - "argcomplete": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/argcomplete" + "cliff": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/cliff" }, - "colorama": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/colorama" + "pbr": { + "credit": 0.008898685714285714, + "url": "https://pypi.org/project/pbr" }, - "atomicwrites": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/atomicwrites" + "future": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/future" }, "importlib-metadata": { - "credit": 0.002727361607142857, + "credit": 0.00215622, "url": "https://pypi.org/project/importlib-metadata" }, - "tomli": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/tomli" + "requestsexceptions": { + "credit": 0.00215622, + "url": "https://pypi.org/project/requestsexceptions" }, - "py": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/py" + "os-service-types": { + "credit": 0.00335412, + "url": "https://pypi.org/project/os-service-types" }, - "pluggy": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pluggy" + "netifaces": { + "credit": 0.00215622, + "url": "https://pypi.org/project/netifaces" }, - "packaging": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/packaging" + "munch": { + "credit": 0.00215622, + "url": "https://pypi.org/project/munch" }, - "iniconfig": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/iniconfig" + "jsonpatch": { + "credit": 0.00215622, + "url": "https://pypi.org/project/jsonpatch" }, - "attrs": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/attrs" + "jmespath": { + "credit": 0.00215622, + "url": "https://pypi.org/project/jmespath" }, - "tzdata": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/tzdata" + "iso8601": { + "credit": 0.00335412, + "url": "https://pypi.org/project/iso8601" }, - "backports.zoneinfo": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/backports.zoneinfo" + "dogpile.cache": { + "credit": 0.00215622, + "url": "https://pypi.org/project/dogpile.cache" }, - "rich": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/rich" + "decorator": { + "credit": 0.00215622, + "url": "https://pypi.org/project/decorator" }, - "redis": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/redis" + "cryptography": { + "credit": 0.00215622, + "url": "https://pypi.org/project/cryptography" }, - "libcst": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/libcst" + "appdirs": { + "credit": 0.00215622, + "url": "https://pypi.org/project/appdirs" }, - "lark-parser": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lark-parser" + "testresources": { + "credit": 0.0011979, + "url": "https://pypi.org/project/testresources" }, - "dpcontracts": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/dpcontracts" + "requests-mock": { + "credit": 0.0011979, + "url": "https://pypi.org/project/requests-mock" }, - "django": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/django" + "reno": { + "credit": 0.0011979, + "url": "https://pypi.org/project/reno" }, - "click": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/click" + "pycodestyle": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pycodestyle" }, - "black": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/black" + "oslotest": { + "credit": 0.0011979, + "url": "https://pypi.org/project/oslotest" }, - "sortedcontainers": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/sortedcontainers" + "oslo.utils": { + "credit": 0.00443223, + "url": "https://pypi.org/project/oslo.utils" }, - "testtools": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/testtools" + "oslo.config": { + "credit": 0.00443223, + "url": "https://pypi.org/project/oslo.config" }, - "testscenarios": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/testscenarios" + "flake8-import-order": { + "credit": 0.0011979, + "url": "https://pypi.org/project/flake8-import-order" }, - "python-subunit": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/python-subunit" + "bandit": { + "credit": 0.0011979, + "url": "https://pypi.org/project/bandit" }, - "fixtures": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/fixtures" + "lxml": { + "credit": 0.0011979, + "url": "https://pypi.org/project/lxml" }, - "eventlet": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/eventlet" + "oauthlib": { + "credit": 0.0011979, + "url": "https://pypi.org/project/oauthlib" }, - "ddt": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/ddt" + "requests-kerberos": { + "credit": 0.0011979, + "url": "https://pypi.org/project/requests-kerberos" }, - "flake8-docstrings": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/flake8-docstrings" + "betamax": { + "credit": 0.0011979, + "url": "https://pypi.org/project/betamax" }, - "flake8": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/flake8" + "stevedore": { + "credit": 0.00443223, + "url": "https://pypi.org/project/stevedore" + }, + "tomli": { + "credit": 0.0323433, + "url": "https://pypi.org/project/tomli" + }, + "oslo.serialization": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/oslo.serialization" + }, + "oslo.i18n": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/oslo.i18n" + }, + "debtcollector": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/debtcollector" + }, + "win-inet-pton": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/win-inet-pton" + }, + "PySocks": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/PySocks" + }, + "charset-normalizer": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/charset-normalizer" + }, + "idna": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/idna" + }, + "chardet": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/chardet" + }, + "certifi": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/certifi" + }, + "urllib3": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/urllib3" } } } \ No newline at end of file diff --git a/_repos/github/nlesc-nano/ceiba-cli/README.md b/_repos/github/nlesc-nano/ceiba-cli/README.md index 83111f07..ddc3c8ff 100644 --- a/_repos/github/nlesc-nano/ceiba-cli/README.md +++ b/_repos/github/nlesc-nano/ceiba-cli/README.md @@ -8,71 +8,71 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.166| -|pypi|[pyyaml](https://pyyaml.org/)|0.141| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.141| -|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.14| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.025| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.025| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.02| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.02| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.02| -|pypi|[idna](https://pypi.org/project/idna)|0.02| -|pypi|[chardet](https://pypi.org/project/chardet)|0.02| -|pypi|[certifi](https://pypi.org/project/certifi)|0.02| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.02| -|pypi|[requests](https://requests.readthedocs.io)|0.017| -|pypi|[mock](https://pypi.org/project/mock)|0.015| -|pypi|[stestr](http://stestr.readthedocs.io/en/latest/)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.015| -|pypi|[openstacksdk](https://pypi.org/project/openstacksdk)|0.014| -|pypi|[keystoneauth1](https://pypi.org/project/keystoneauth1)|0.014| -|pypi|[python-keystoneclient](https://pypi.org/project/python-keystoneclient)|0.014| -|pypi|[futures](https://pypi.org/project/futures)|0.014| -|pypi|[six](https://pypi.org/project/six)|0.014| +|pypi|[contextlib2](http://contextlib2.readthedocs.org)|0.657| +|pypi|[six](https://github.com/benjaminp/six)|0.037| +|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.034| +|pypi|[futures](https://github.com/agronholm/pythonfutures)|0.033| +|pypi|[tomli](https://pypi.org/project/tomli)|0.032| |setup.py|github/nlesc-nano/ceiba-cli|0.01| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.005| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[pandas](https://pandas.pydata.org)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|0.001| -|pypi|[schema](https://github.com/keleshev/schema)|0.001| -|pypi|[testtools](https://pypi.org/project/testtools)|0.001| -|pypi|[testscenarios](https://pypi.org/project/testscenarios)|0.001| -|pypi|[python-subunit](https://pypi.org/project/python-subunit)|0.001| -|pypi|[fixtures](https://pypi.org/project/fixtures)|0.001| -|pypi|[eventlet](https://pypi.org/project/eventlet)|0.001| -|pypi|[ddt](https://pypi.org/project/ddt)|0.001| -|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|0.001| -|pypi|[flake8](https://pypi.org/project/flake8)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[black](https://pypi.org/project/black)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[pbr](https://pypi.org/project/pbr)|0.009| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.007| +|pypi|[testtools](https://github.com/testing-cabal/testtools)|0.007| +|pypi|[fixtures](https://pypi.org/project/fixtures)|0.007| +|pypi|[keystoneauth1](https://docs.openstack.org/keystoneauth/latest/)|0.006| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.006| +|pypi|[python-subunit](https://pypi.org/project/python-subunit)|0.006| +|pypi|[ddt](https://pypi.org/project/ddt)|0.006| +|pypi|[stestr](http://stestr.readthedocs.io/en/latest/)|0.005| +|pypi|[requests](https://requests.readthedocs.io)|0.005| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.005| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.005| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.005| +|pypi|[idna](https://pypi.org/project/idna)|0.005| +|pypi|[chardet](https://pypi.org/project/chardet)|0.005| +|pypi|[certifi](https://pypi.org/project/certifi)|0.005| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.005| +|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|0.004| +|pypi|[oslo.utils](https://pypi.org/project/oslo.utils)|0.004| +|pypi|[oslo.config](https://pypi.org/project/oslo.config)|0.004| +|pypi|[stevedore](https://pypi.org/project/stevedore)|0.004| +|pypi|[hacking](https://docs.openstack.org/hacking/latest/)|0.004| +|pypi|[os-service-types](https://pypi.org/project/os-service-types)|0.003| +|pypi|[iso8601](https://pypi.org/project/iso8601)|0.003| +|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|0.003| +|pypi|[schema](https://github.com/keleshev/schema)|0.003| +|pypi|[testscenarios](https://pypi.org/project/testscenarios)|0.003| +|pypi|[eventlet](https://pypi.org/project/eventlet)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.003| +|pypi|[oslo.serialization](https://pypi.org/project/oslo.serialization)|0.003| +|pypi|[oslo.i18n](https://pypi.org/project/oslo.i18n)|0.003| +|pypi|[debtcollector](https://pypi.org/project/debtcollector)|0.003| +|pypi|[doc8](https://pypi.org/project/doc8)|0.002| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| +|pypi|[subunit2sql](https://pypi.org/project/subunit2sql)|0.002| +|pypi|[voluptuous](https://pypi.org/project/voluptuous)|0.002| +|pypi|[cliff](https://pypi.org/project/cliff)|0.002| +|pypi|[future](https://pypi.org/project/future)|0.002| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| +|pypi|[requestsexceptions](https://pypi.org/project/requestsexceptions)|0.002| +|pypi|[netifaces](https://pypi.org/project/netifaces)|0.002| +|pypi|[munch](https://pypi.org/project/munch)|0.002| +|pypi|[jsonpatch](https://pypi.org/project/jsonpatch)|0.002| +|pypi|[jmespath](https://pypi.org/project/jmespath)|0.002| +|pypi|[dogpile.cache](https://pypi.org/project/dogpile.cache)|0.002| +|pypi|[decorator](https://pypi.org/project/decorator)|0.002| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[testresources](https://pypi.org/project/testresources)|0.001| +|pypi|[requests-mock](https://pypi.org/project/requests-mock)|0.001| +|pypi|[reno](https://pypi.org/project/reno)|0.001| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.001| +|pypi|[oslotest](https://pypi.org/project/oslotest)|0.001| +|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|0.001| +|pypi|[bandit](https://pypi.org/project/bandit)|0.001| +|pypi|[lxml](https://pypi.org/project/lxml)|0.001| +|pypi|[oauthlib](https://pypi.org/project/oauthlib)|0.001| +|pypi|[requests-kerberos](https://pypi.org/project/requests-kerberos)|0.001| +|pypi|[betamax](https://pypi.org/project/betamax)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/nlesc-nano/ceiba-cli/badge.png b/_repos/github/nlesc-nano/ceiba-cli/badge.png index e387cfb4..bc540f16 100644 Binary files a/_repos/github/nlesc-nano/ceiba-cli/badge.png and b/_repos/github/nlesc-nano/ceiba-cli/badge.png differ diff --git a/_repos/github/nlesc-nano/ceiba-cli/data.json b/_repos/github/nlesc-nano/ceiba-cli/data.json index b8cdc594..3814cb80 100644 --- a/_repos/github/nlesc-nano/ceiba-cli/data.json +++ b/_repos/github/nlesc-nano/ceiba-cli/data.json @@ -6,269 +6,269 @@ } }, "pypi": { - "numpy": { - "credit": 0.16604775000000002, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.0026977500000000144, - "url": "https://pandas.pydata.org" - }, "python-swiftclient": { - "credit": 0.001414285714285729, + "credit": 0.003300000000000025, "url": "https://docs.openstack.org/python-swiftclient/latest/" }, - "pyyaml": { - "credit": 0.14142857142857143, - "url": "https://pyyaml.org/" - }, - "requests": { - "credit": 0.01685961160714287, - "url": "https://requests.readthedocs.io" - }, "schema": { - "credit": 0.001414285714285729, + "credit": 0.003300000000000025, "url": "https://github.com/keleshev/schema" }, - "typing-extensions": { - "credit": 0.14142857142857143, - "url": "https://typing.readthedocs.io/" - }, - "pytest-xdist": { - "credit": 0.0002333571428571428, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.005367214285714284, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.001677254464285714, - "url": "https://hypothesis.works" - }, - "pytz": { - "credit": 0.02461917857142857, - "url": "http://pythonhosted.org/pytz" - }, - "python-dateutil": { - "credit": 0.02461917857142857, - "url": "https://github.com/dateutil/dateutil" + "contextlib2": { + "credit": 0.6567000000000001, + "url": "http://contextlib2.readthedocs.org" }, "hacking": { - "credit": 0.00014001428571428637, + "credit": 0.0038348357142857135, "url": "https://docs.openstack.org/hacking/latest/" }, "stestr": { - "credit": 0.01538757, + "credit": 0.004758929999999999, "url": "http://stestr.readthedocs.io/en/latest/" }, "openstacksdk": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/openstacksdk" + "credit": 0.0003266999999999992, + "url": "https://docs.openstack.org/openstacksdk/" }, "mock": { - "credit": 0.015445325892857142, - "url": "https://pypi.org/project/mock" + "credit": 0.0338679, + "url": "http://mock.readthedocs.org/en/latest/" }, "keystoneauth1": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/keystoneauth1" + "credit": 0.005717249999999998, + "url": "https://docs.openstack.org/keystoneauth/latest/" }, "coverage": { - "credit": 0.01538757, - "url": "https://pypi.org/project/coverage" + "credit": 0.007069165714285713, + "url": "https://github.com/nedbat/coveragepy" }, "python-keystoneclient": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/python-keystoneclient" + "credit": 0.0003266999999999992, + "url": "https://docs.openstack.org/python-keystoneclient/latest/" }, "futures": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/futures" + "credit": 0.03267, + "url": "https://github.com/agronholm/pythonfutures" }, "six": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/six" + "credit": 0.03710223, + "url": "https://github.com/benjaminp/six" }, - "win-inet-pton": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/charset-normalizer" + "requests": { + "credit": 0.004758929999999999, + "url": "https://requests.readthedocs.io" }, - "idna": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/idna" + "testtools": { + "credit": 0.0067424657142857135, + "url": "https://github.com/testing-cabal/testtools" }, - "chardet": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/chardet" + "testscenarios": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/testscenarios" }, - "certifi": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/certifi" + "python-subunit": { + "credit": 0.0055445657142857135, + "url": "https://pypi.org/project/python-subunit" }, - "urllib3": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/urllib3" + "fixtures": { + "credit": 0.0067424657142857135, + "url": "https://pypi.org/project/fixtures" }, - "contextlib2": { - "credit": 0.1400142857142857, - "url": "https://pypi.org/project/contextlib2" + "eventlet": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/eventlet" }, - "filelock": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/filelock" + "ddt": { + "credit": 0.0055445657142857135, + "url": "https://pypi.org/project/ddt" }, - "setproctitle": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/setproctitle" + "flake8-docstrings": { + "credit": 0.00443223, + "url": "https://pypi.org/project/flake8-docstrings" }, - "psutil": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/psutil" + "flake8": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/flake8" }, - "pytest-forked": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/pytest-forked" + "doc8": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/doc8" }, - "execnet": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/execnet" + "sphinx": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/sphinx" }, - "xmlschema": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/xmlschema" + "subunit2sql": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/subunit2sql" }, - "pygments": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pygments" + "voluptuous": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/voluptuous" }, - "nose": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/nose" + "PyYAML": { + "credit": 0.005664355714285714, + "url": "https://pypi.org/project/PyYAML" }, - "argcomplete": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/argcomplete" + "cliff": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/cliff" }, - "colorama": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/colorama" + "pbr": { + "credit": 0.008898685714285714, + "url": "https://pypi.org/project/pbr" }, - "atomicwrites": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/atomicwrites" + "future": { + "credit": 0.0023102357142857142, + "url": "https://pypi.org/project/future" }, "importlib-metadata": { - "credit": 0.002727361607142857, + "credit": 0.00215622, "url": "https://pypi.org/project/importlib-metadata" }, - "tomli": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/tomli" + "requestsexceptions": { + "credit": 0.00215622, + "url": "https://pypi.org/project/requestsexceptions" }, - "py": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/py" + "os-service-types": { + "credit": 0.00335412, + "url": "https://pypi.org/project/os-service-types" }, - "pluggy": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pluggy" + "netifaces": { + "credit": 0.00215622, + "url": "https://pypi.org/project/netifaces" }, - "packaging": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/packaging" + "munch": { + "credit": 0.00215622, + "url": "https://pypi.org/project/munch" }, - "iniconfig": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/iniconfig" + "jsonpatch": { + "credit": 0.00215622, + "url": "https://pypi.org/project/jsonpatch" }, - "attrs": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/attrs" + "jmespath": { + "credit": 0.00215622, + "url": "https://pypi.org/project/jmespath" }, - "tzdata": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/tzdata" + "iso8601": { + "credit": 0.00335412, + "url": "https://pypi.org/project/iso8601" }, - "backports.zoneinfo": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/backports.zoneinfo" + "dogpile.cache": { + "credit": 0.00215622, + "url": "https://pypi.org/project/dogpile.cache" }, - "rich": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/rich" + "decorator": { + "credit": 0.00215622, + "url": "https://pypi.org/project/decorator" }, - "redis": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/redis" + "cryptography": { + "credit": 0.00215622, + "url": "https://pypi.org/project/cryptography" }, - "libcst": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/libcst" + "appdirs": { + "credit": 0.00215622, + "url": "https://pypi.org/project/appdirs" }, - "lark-parser": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lark-parser" + "testresources": { + "credit": 0.0011979, + "url": "https://pypi.org/project/testresources" }, - "dpcontracts": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/dpcontracts" + "requests-mock": { + "credit": 0.0011979, + "url": "https://pypi.org/project/requests-mock" }, - "django": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/django" + "reno": { + "credit": 0.0011979, + "url": "https://pypi.org/project/reno" }, - "click": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/click" + "pycodestyle": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pycodestyle" }, - "black": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/black" + "oslotest": { + "credit": 0.0011979, + "url": "https://pypi.org/project/oslotest" }, - "sortedcontainers": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/sortedcontainers" + "oslo.utils": { + "credit": 0.00443223, + "url": "https://pypi.org/project/oslo.utils" }, - "testtools": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/testtools" + "oslo.config": { + "credit": 0.00443223, + "url": "https://pypi.org/project/oslo.config" }, - "testscenarios": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/testscenarios" + "flake8-import-order": { + "credit": 0.0011979, + "url": "https://pypi.org/project/flake8-import-order" }, - "python-subunit": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/python-subunit" + "bandit": { + "credit": 0.0011979, + "url": "https://pypi.org/project/bandit" }, - "fixtures": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/fixtures" + "lxml": { + "credit": 0.0011979, + "url": "https://pypi.org/project/lxml" }, - "eventlet": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/eventlet" + "oauthlib": { + "credit": 0.0011979, + "url": "https://pypi.org/project/oauthlib" }, - "ddt": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/ddt" + "requests-kerberos": { + "credit": 0.0011979, + "url": "https://pypi.org/project/requests-kerberos" }, - "flake8-docstrings": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/flake8-docstrings" + "betamax": { + "credit": 0.0011979, + "url": "https://pypi.org/project/betamax" }, - "flake8": { - "credit": 0.0013861414285714284, - "url": "https://pypi.org/project/flake8" + "stevedore": { + "credit": 0.00443223, + "url": "https://pypi.org/project/stevedore" + }, + "tomli": { + "credit": 0.0323433, + "url": "https://pypi.org/project/tomli" + }, + "oslo.serialization": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/oslo.serialization" + }, + "oslo.i18n": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/oslo.i18n" + }, + "debtcollector": { + "credit": 0.0032343299999999997, + "url": "https://pypi.org/project/debtcollector" + }, + "win-inet-pton": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/win-inet-pton" + }, + "PySocks": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/PySocks" + }, + "charset-normalizer": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/charset-normalizer" + }, + "idna": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/idna" + }, + "chardet": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/chardet" + }, + "certifi": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/certifi" + }, + "urllib3": { + "credit": 0.0046204714285714285, + "url": "https://pypi.org/project/urllib3" } } } \ No newline at end of file diff --git a/_repos/github/nlesc-nano/ceiba/README.md b/_repos/github/nlesc-nano/ceiba/README.md index 2a3aca9a..2aed3e03 100644 --- a/_repos/github/nlesc-nano/ceiba/README.md +++ b/_repos/github/nlesc-nano/ceiba/README.md @@ -8,45 +8,39 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.141| -|pypi|[tartiflette](https://tartiflette.io)|0.141| -|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.141| -|pypi|[certifi](https://pypi.org/project/certifi)|0.034| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.025| -|pypi|[idna](https://pypi.org/project/idna)|0.024| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.023| -|pypi|[pytest](https://pypi.org/project/pytest)|0.023| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.023| -|pypi|[numpy](https://pypi.org/project/numpy)|0.023| -|pypi|[pytz](https://pypi.org/project/pytz)|0.023| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.023| -|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.021| -|pypi|[charset-normalizer](https://github.com/ousret/charset_normalizer)|0.02| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.02| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.02| -|pypi|[chardet](https://pypi.org/project/chardet)|0.02| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.02| -|pypi|[requests](https://requests.readthedocs.io)|0.015| -|pypi|[multidict](https://github.com/aio-libs/multidict)|0.014| -|pypi|[zstandard](https://pypi.org/project/zstandard)|0.014| -|pypi|[dnspython](https://pypi.org/project/dnspython)|0.014| -|pypi|[python-snappy](https://pypi.org/project/python-snappy)|0.014| -|pypi|[service-identity](https://pypi.org/project/service-identity)|0.014| -|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.014| -|pypi|[pykerberos](https://pypi.org/project/pykerberos)|0.014| -|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|0.014| -|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|0.014| -|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|0.011| -|pypi|[Brotli](https://github.com/google/brotli)|0.011| -|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|0.011| -|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|0.011| -|pypi|[attrs](https://www.attrs.org/)|0.011| -|pypi|[pycares](https://pypi.org/project/pycares)|0.011| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.011| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.164| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[multidict](https://github.com/aio-libs/multidict)|0.118| +|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.083| +|pypi|[tartiflette](https://tartiflette.io)|0.083| +|pypi|[lark-parser](https://github.com/lark-parser/lark)|0.083| +|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.083| +|pypi|[chardet](https://github.com/chardet/chardet)|0.083| +|pypi|[idna](https://pypi.org/project/idna)|0.029| +|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.013| |setup.py|github/nlesc-nano/ceiba|0.01| +|pypi|[zstandard](https://pypi.org/project/zstandard)|0.008| +|pypi|[dnspython](https://pypi.org/project/dnspython)|0.008| +|pypi|[python-snappy](https://pypi.org/project/python-snappy)|0.008| +|pypi|[certifi](https://pypi.org/project/certifi)|0.008| +|pypi|[service-identity](https://pypi.org/project/service-identity)|0.008| +|pypi|[requests](https://pypi.org/project/requests)|0.008| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.008| +|pypi|[pykerberos](https://pypi.org/project/pykerberos)|0.008| +|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|0.008| +|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|0.008| +|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|0.006| +|pypi|[Brotli](https://github.com/google/brotli)|0.006| +|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|0.006| +|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|0.006| +|pypi|[attrs](https://www.attrs.org/)|0.006| +|pypi|[pycares](https://pypi.org/project/pycares)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[async-timeout](https://github.com/aio-libs/async-timeout)|0.001| +|pypi|[yarl](https://github.com/aio-libs/yarl/)|0.001| |pypi|[aiohttp](https://github.com/aio-libs/aiohttp)|0.001| -|pypi|[pandas](https://pandas.pydata.org)|0.001| |pypi|[pymongo](http://github.com/mongodb/mongo-python-driver)|0.001| +|pypi|[cffi](http://cffi.readthedocs.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/nlesc-nano/ceiba/badge.png b/_repos/github/nlesc-nano/ceiba/badge.png index 13ae9bb6..8825b923 100644 Binary files a/_repos/github/nlesc-nano/ceiba/badge.png and b/_repos/github/nlesc-nano/ceiba/badge.png differ diff --git a/_repos/github/nlesc-nano/ceiba/data.json b/_repos/github/nlesc-nano/ceiba/data.json index bfcdc3d5..df262481 100644 --- a/_repos/github/nlesc-nano/ceiba/data.json +++ b/_repos/github/nlesc-nano/ceiba/data.json @@ -7,171 +7,143 @@ }, "pypi": { "aiohttp": { - "credit": 0.001414285714285729, + "credit": 0.0008250000000000063, "url": "https://github.com/aio-libs/aiohttp" }, "more-itertools": { - "credit": 0.14142857142857143, + "credit": 0.0825, "url": "https://github.com/more-itertools/more-itertools" }, + "pymongo": { + "credit": 0.0008250000000000063, + "url": "http://github.com/mongodb/mongo-python-driver" + }, "tartiflette": { - "credit": 0.14142857142857143, + "credit": 0.0825, "url": "https://tartiflette.io" }, + "lark-parser": { + "credit": 0.0825, + "url": "https://github.com/lark-parser/lark" + }, "tartiflette-aiohttp": { - "credit": 0.14142857142857143, + "credit": 0.0825, "url": "https://github.com/tartiflette/tartiflette-aiohttp" }, - "pandas": { - "credit": 0.001414285714285729, - "url": "https://pandas.pydata.org" + "async-timeout": { + "credit": 0.0008878269230769295, + "url": "https://github.com/aio-libs/async-timeout" }, - "pymongo": { - "credit": 0.001414285714285729, - "url": "http://github.com/mongodb/mongo-python-driver" + "cffi": { + "credit": 0.0008250000000000063, + "url": "http://cffi.readthedocs.org" }, - "requests": { - "credit": 0.0154157142857143, - "url": "https://requests.readthedocs.io" + "chardet": { + "credit": 0.0825, + "url": "https://github.com/chardet/chardet" + }, + "multidict": { + "credit": 0.11808098076923078, + "url": "https://github.com/aio-libs/multidict" + }, + "yarl": { + "credit": 0.0008878269230769295, + "url": "https://github.com/aio-libs/yarl/" + }, + "pycparser": { + "credit": 0.16417500000000002, + "url": "https://github.com/eliben/pycparser" }, "cchardet": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://github.com/PyYoshi/cChardet" }, "Brotli": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://github.com/google/brotli" }, "aiodns": { - "credit": 0.00010770329670329627, + "credit": 6.282692307692326e-05, "url": "https://github.com/saghul/aiodns" }, "typing-extensions": { - "credit": 0.024987164835164832, + "credit": 0.12347584615384616, "url": "https://typing.readthedocs.io/" }, "asynctest": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://github.com/Martiusweb/asynctest/" }, "idna-ssl": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://github.com/aio-libs/idna-ssl" }, "aiosignal": { - "credit": 0.00010770329670329627, + "credit": 6.282692307692326e-05, "url": "https://github.com/aio-libs/aiosignal" }, "frozenlist": { - "credit": 0.021432956043956043, + "credit": 0.012502557692307691, "url": "https://github.com/aio-libs/frozenlist" }, - "yarl": { - "credit": 0.00010770329670329627, - "url": "https://github.com/aio-libs/yarl/" - }, - "async-timeout": { - "credit": 0.00010770329670329627, - "url": "https://github.com/aio-libs/async-timeout" - }, - "multidict": { - "credit": 0.01432453846153846, - "url": "https://github.com/aio-libs/multidict" - }, "charset-normalizer": { - "credit": 0.020109744113029827, + "credit": 6.282692307692326e-05, "url": "https://github.com/ousret/charset_normalizer" }, "attrs": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://www.attrs.org/" }, - "pytest-xdist": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pytest-xdist" - }, - "pytest": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pytest" - }, - "hypothesis": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/hypothesis" - }, - "numpy": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/numpy" - }, - "pytz": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pytz" - }, - "python-dateutil": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/python-dateutil" - }, "zstandard": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/zstandard" }, "dnspython": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/dnspython" }, "python-snappy": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/python-snappy" }, "certifi": { - "credit": 0.0340034693877551, + "credit": 0.0081675, "url": "https://pypi.org/project/certifi" }, "service-identity": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/service-identity" }, + "requests": { + "credit": 0.0081675, + "url": "https://pypi.org/project/requests" + }, "pyopenssl": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/pyopenssl" }, "pykerberos": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/pykerberos" }, "pymongocrypt": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/pymongocrypt" }, "pymongo-auth-aws": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/pymongo-auth-aws" }, - "win-inet-pton": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/PySocks" - }, "idna": { - "credit": 0.023556249607535322, + "credit": 0.02929828846153846, "url": "https://pypi.org/project/idna" }, - "chardet": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/chardet" - }, - "urllib3": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/urllib3" - }, "pycares": { - "credit": 0.010662626373626373, + "credit": 0.0062198653846153844, "url": "https://pypi.org/project/pycares" }, "unicodedata2": { - "credit": 0.010662626373626373, + "credit": 0.0062198653846153844, "url": "https://pypi.org/project/unicodedata2" } } diff --git a/_repos/github/nlesc-nano/flamingo/badge.png b/_repos/github/nlesc-nano/flamingo/badge.png index 2bd84a45..065e2c34 100644 Binary files a/_repos/github/nlesc-nano/flamingo/badge.png and b/_repos/github/nlesc-nano/flamingo/badge.png differ diff --git a/_repos/github/nlesc-nano/insilico-server/README.md b/_repos/github/nlesc-nano/insilico-server/README.md index 67ae07df..269efd84 100644 --- a/_repos/github/nlesc-nano/insilico-server/README.md +++ b/_repos/github/nlesc-nano/insilico-server/README.md @@ -8,45 +8,39 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.141| -|pypi|[tartiflette](https://tartiflette.io)|0.141| -|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.141| -|pypi|[certifi](https://pypi.org/project/certifi)|0.034| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.025| -|pypi|[idna](https://pypi.org/project/idna)|0.024| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.023| -|pypi|[pytest](https://pypi.org/project/pytest)|0.023| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.023| -|pypi|[numpy](https://pypi.org/project/numpy)|0.023| -|pypi|[pytz](https://pypi.org/project/pytz)|0.023| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.023| -|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.021| -|pypi|[charset-normalizer](https://github.com/ousret/charset_normalizer)|0.02| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.02| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.02| -|pypi|[chardet](https://pypi.org/project/chardet)|0.02| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.02| -|pypi|[requests](https://requests.readthedocs.io)|0.015| -|pypi|[multidict](https://github.com/aio-libs/multidict)|0.014| -|pypi|[zstandard](https://pypi.org/project/zstandard)|0.014| -|pypi|[dnspython](https://pypi.org/project/dnspython)|0.014| -|pypi|[python-snappy](https://pypi.org/project/python-snappy)|0.014| -|pypi|[service-identity](https://pypi.org/project/service-identity)|0.014| -|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.014| -|pypi|[pykerberos](https://pypi.org/project/pykerberos)|0.014| -|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|0.014| -|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|0.014| -|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|0.011| -|pypi|[Brotli](https://github.com/google/brotli)|0.011| -|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|0.011| -|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|0.011| -|pypi|[attrs](https://www.attrs.org/)|0.011| -|pypi|[pycares](https://pypi.org/project/pycares)|0.011| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.011| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.164| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[multidict](https://github.com/aio-libs/multidict)|0.118| +|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.083| +|pypi|[tartiflette](https://tartiflette.io)|0.083| +|pypi|[lark-parser](https://github.com/lark-parser/lark)|0.083| +|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.083| +|pypi|[chardet](https://github.com/chardet/chardet)|0.083| +|pypi|[idna](https://pypi.org/project/idna)|0.029| +|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.013| |setup.py|github/nlesc-nano/insilico-server|0.01| +|pypi|[zstandard](https://pypi.org/project/zstandard)|0.008| +|pypi|[dnspython](https://pypi.org/project/dnspython)|0.008| +|pypi|[python-snappy](https://pypi.org/project/python-snappy)|0.008| +|pypi|[certifi](https://pypi.org/project/certifi)|0.008| +|pypi|[service-identity](https://pypi.org/project/service-identity)|0.008| +|pypi|[requests](https://pypi.org/project/requests)|0.008| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.008| +|pypi|[pykerberos](https://pypi.org/project/pykerberos)|0.008| +|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|0.008| +|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|0.008| +|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|0.006| +|pypi|[Brotli](https://github.com/google/brotli)|0.006| +|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|0.006| +|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|0.006| +|pypi|[attrs](https://www.attrs.org/)|0.006| +|pypi|[pycares](https://pypi.org/project/pycares)|0.006| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.006| +|pypi|[async-timeout](https://github.com/aio-libs/async-timeout)|0.001| +|pypi|[yarl](https://github.com/aio-libs/yarl/)|0.001| |pypi|[aiohttp](https://github.com/aio-libs/aiohttp)|0.001| -|pypi|[pandas](https://pandas.pydata.org)|0.001| |pypi|[pymongo](http://github.com/mongodb/mongo-python-driver)|0.001| +|pypi|[cffi](http://cffi.readthedocs.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/nlesc-nano/insilico-server/badge.png b/_repos/github/nlesc-nano/insilico-server/badge.png index 1dde2895..2ee0ad68 100644 Binary files a/_repos/github/nlesc-nano/insilico-server/badge.png and b/_repos/github/nlesc-nano/insilico-server/badge.png differ diff --git a/_repos/github/nlesc-nano/insilico-server/data.json b/_repos/github/nlesc-nano/insilico-server/data.json index 328490b3..692a5f10 100644 --- a/_repos/github/nlesc-nano/insilico-server/data.json +++ b/_repos/github/nlesc-nano/insilico-server/data.json @@ -7,171 +7,143 @@ }, "pypi": { "aiohttp": { - "credit": 0.001414285714285729, + "credit": 0.0008250000000000063, "url": "https://github.com/aio-libs/aiohttp" }, "more-itertools": { - "credit": 0.14142857142857143, + "credit": 0.0825, "url": "https://github.com/more-itertools/more-itertools" }, + "pymongo": { + "credit": 0.0008250000000000063, + "url": "http://github.com/mongodb/mongo-python-driver" + }, "tartiflette": { - "credit": 0.14142857142857143, + "credit": 0.0825, "url": "https://tartiflette.io" }, + "lark-parser": { + "credit": 0.0825, + "url": "https://github.com/lark-parser/lark" + }, "tartiflette-aiohttp": { - "credit": 0.14142857142857143, + "credit": 0.0825, "url": "https://github.com/tartiflette/tartiflette-aiohttp" }, - "pandas": { - "credit": 0.001414285714285729, - "url": "https://pandas.pydata.org" + "async-timeout": { + "credit": 0.0008878269230769295, + "url": "https://github.com/aio-libs/async-timeout" }, - "pymongo": { - "credit": 0.001414285714285729, - "url": "http://github.com/mongodb/mongo-python-driver" + "cffi": { + "credit": 0.0008250000000000063, + "url": "http://cffi.readthedocs.org" }, - "requests": { - "credit": 0.0154157142857143, - "url": "https://requests.readthedocs.io" + "chardet": { + "credit": 0.0825, + "url": "https://github.com/chardet/chardet" + }, + "multidict": { + "credit": 0.11808098076923078, + "url": "https://github.com/aio-libs/multidict" + }, + "yarl": { + "credit": 0.0008878269230769295, + "url": "https://github.com/aio-libs/yarl/" + }, + "pycparser": { + "credit": 0.16417500000000002, + "url": "https://github.com/eliben/pycparser" }, "cchardet": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://github.com/PyYoshi/cChardet" }, "Brotli": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://github.com/google/brotli" }, "aiodns": { - "credit": 0.00010770329670329627, + "credit": 6.282692307692326e-05, "url": "https://github.com/saghul/aiodns" }, "typing-extensions": { - "credit": 0.024987164835164832, + "credit": 0.12347584615384616, "url": "https://typing.readthedocs.io/" }, "asynctest": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://github.com/Martiusweb/asynctest/" }, "idna-ssl": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://github.com/aio-libs/idna-ssl" }, "aiosignal": { - "credit": 0.00010770329670329627, + "credit": 6.282692307692326e-05, "url": "https://github.com/aio-libs/aiosignal" }, "frozenlist": { - "credit": 0.021432956043956043, + "credit": 0.012502557692307691, "url": "https://github.com/aio-libs/frozenlist" }, - "yarl": { - "credit": 0.00010770329670329627, - "url": "https://github.com/aio-libs/yarl/" - }, - "async-timeout": { - "credit": 0.00010770329670329627, - "url": "https://github.com/aio-libs/async-timeout" - }, - "multidict": { - "credit": 0.01432453846153846, - "url": "https://github.com/aio-libs/multidict" - }, "charset-normalizer": { - "credit": 0.020109744113029827, + "credit": 6.282692307692326e-05, "url": "https://github.com/ousret/charset_normalizer" }, "attrs": { - "credit": 0.010770329670329669, + "credit": 0.006282692307692308, "url": "https://www.attrs.org/" }, - "pytest-xdist": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pytest-xdist" - }, - "pytest": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pytest" - }, - "hypothesis": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/hypothesis" - }, - "numpy": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/numpy" - }, - "pytz": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pytz" - }, - "python-dateutil": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/python-dateutil" - }, "zstandard": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/zstandard" }, "dnspython": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/dnspython" }, "python-snappy": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/python-snappy" }, "certifi": { - "credit": 0.0340034693877551, + "credit": 0.0081675, "url": "https://pypi.org/project/certifi" }, "service-identity": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/service-identity" }, + "requests": { + "credit": 0.0081675, + "url": "https://pypi.org/project/requests" + }, "pyopenssl": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/pyopenssl" }, "pykerberos": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/pykerberos" }, "pymongocrypt": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/pymongocrypt" }, "pymongo-auth-aws": { - "credit": 0.014001428571428571, + "credit": 0.0081675, "url": "https://pypi.org/project/pymongo-auth-aws" }, - "win-inet-pton": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/PySocks" - }, "idna": { - "credit": 0.023556249607535322, + "credit": 0.02929828846153846, "url": "https://pypi.org/project/idna" }, - "chardet": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/chardet" - }, - "urllib3": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/urllib3" - }, "pycares": { - "credit": 0.010662626373626373, + "credit": 0.0062198653846153844, "url": "https://pypi.org/project/pycares" }, "unicodedata2": { - "credit": 0.010662626373626373, + "credit": 0.0062198653846153844, "url": "https://pypi.org/project/unicodedata2" } } diff --git a/_repos/github/nlesc-nano/swan/badge.png b/_repos/github/nlesc-nano/swan/badge.png index 86f49990..80500fd9 100644 Binary files a/_repos/github/nlesc-nano/swan/badge.png and b/_repos/github/nlesc-nano/swan/badge.png differ diff --git a/_repos/github/nlesc/embodied-emotions-scripts/badge.png b/_repos/github/nlesc/embodied-emotions-scripts/badge.png index 1909b58f..72c62251 100644 Binary files a/_repos/github/nlesc/embodied-emotions-scripts/badge.png and b/_repos/github/nlesc/embodied-emotions-scripts/badge.png differ diff --git a/_repos/github/nlesc/scriptcwl/badge.png b/_repos/github/nlesc/scriptcwl/badge.png index 9ab5c25f..581b18b2 100644 Binary files a/_repos/github/nlesc/scriptcwl/badge.png and b/_repos/github/nlesc/scriptcwl/badge.png differ diff --git a/_repos/github/nlppln/nlppln/README.md b/_repos/github/nlppln/nlppln/README.md index b4cb84f9..0a442b9d 100644 --- a/_repos/github/nlppln/nlppln/README.md +++ b/_repos/github/nlppln/nlppln/README.md @@ -77,7 +77,7 @@ exclude_from_search: true |pypi|[scipy](https://www.scipy.org)|0.001| |pypi|[pandas](https://pandas.pydata.org)|0.001| |pypi|[scriptcwl](https://github.com/nlesc/scriptcwl)|0.001| -|pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.001| +|pypi|[beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/)|0.001| |pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.001| |pypi|[recommonmark](https://github.com/rtfd/recommonmark)|0.001| diff --git a/_repos/github/nlppln/nlppln/badge.png b/_repos/github/nlppln/nlppln/badge.png index a25749ac..f81ac3d4 100644 Binary files a/_repos/github/nlppln/nlppln/badge.png and b/_repos/github/nlppln/nlppln/badge.png differ diff --git a/_repos/github/nlppln/nlppln/data.json b/_repos/github/nlppln/nlppln/data.json index 709f9432..3d2eda8d 100644 --- a/_repos/github/nlppln/nlppln/data.json +++ b/_repos/github/nlppln/nlppln/data.json @@ -24,7 +24,7 @@ }, "beautifulsoup4": { "credit": 0.0011000000000000038, - "url": "http://www.crummy.com/software/BeautifulSoup/bs4/" + "url": "https://www.crummy.com/software/BeautifulSoup/bs4/" }, "sklearn": { "credit": 0.11, diff --git a/_repos/github/numba/numba/badge.png b/_repos/github/numba/numba/badge.png index 6e9b6144..f9a7d457 100644 Binary files a/_repos/github/numba/numba/badge.png and b/_repos/github/numba/numba/badge.png differ diff --git a/_repos/github/odb9402/CNNPeaks/README.md b/_repos/github/odb9402/CNNPeaks/README.md index 1a88987c..c4061afd 100644 --- a/_repos/github/odb9402/CNNPeaks/README.md +++ b/_repos/github/odb9402/CNNPeaks/README.md @@ -8,41 +8,93 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.313| -|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.141| -|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.141| -|pypi|[pytest](https://pypi.org/project/pytest)|0.043| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.023| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.023| -|pypi|[pytz](https://pypi.org/project/pytz)|0.023| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.023| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.02| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.02| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.02| -|pypi|[flake8](https://pypi.org/project/flake8)|0.02| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.02| -|pypi|[python-utils](https://pypi.org/project/python-utils)|0.02| +|pypi|[six](https://pypi.org/project/six)|0.082| +|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.055| +|pypi|[keras](https://keras.io/)|0.032| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.031| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.031| +|pypi|[rsa](https://stuvel.eu/rsa)|0.031| +|pypi|[tensorboard-data-server](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server)|0.03| +|pypi|[tensorboard-plugin-wit](https://whatif-tool.dev)|0.03| +|pypi|[flatbuffers](https://google.github.io/flatbuffers/)|0.029| +|pypi|[gast](https://github.com/serge-sans-paille/gast/)|0.029| +|pypi|[h5py](http://www.h5py.org)|0.029| +|pypi|[libclang](https://github.com/sighingnow/libclang)|0.029| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.028| +|pypi|[pytest](https://pypi.org/project/pytest)|0.028| +|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.028| +|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.028| +|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.028| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.028| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.028| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.027| +|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|0.018| +|pypi|[wheel](https://github.com/pypa/wheel)|0.016| +|pypi|[requests](https://pypi.org/project/requests)|0.014| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.011| |setup.py|github/odb9402/CNNPeaks|0.01| -|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|0.008| -|pypi|[six](https://pypi.org/project/six)|0.008| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.008| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.008| -|pypi|[packaging](https://pypi.org/project/packaging)|0.008| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.008| -|pypi|[libclang](https://pypi.org/project/libclang)|0.008| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.008| -|pypi|[keras](https://pypi.org/project/keras)|0.008| -|pypi|[h5py](https://pypi.org/project/h5py)|0.008| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.008| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.008| -|pypi|[gast](https://pypi.org/project/gast)|0.008| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.008| -|pypi|[astunparse](https://pypi.org/project/astunparse)|0.008| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.008| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[tensorflow-gpu](https://www.tensorflow.org/)|0.001| -|pypi|[pandas](https://pandas.pydata.org)|0.001| -|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|0.001| +|pypi|[enum34](https://pypi.org/project/enum34)|0.01| +|pypi|[numpy](https://pypi.org/project/numpy)|0.01| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.009| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.009| +|pypi|[flake8](https://pypi.org/project/flake8)|0.009| +|pypi|[click](https://pypi.org/project/click)|0.009| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.009| +|pypi|[coverage](https://pypi.org/project/coverage)|0.009| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.009| +|pypi|[blinker](https://pypi.org/project/blinker)|0.009| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.009| +|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.008| +|pypi|[tensorflow](https://pypi.org/project/tensorflow)|0.008| +|pypi|[python-utils](https://github.com/WoLpH/python-utils)|0.007| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.007| +|pypi|[futures](https://pypi.org/project/futures)|0.007| +|pypi|[tensorflow-gpu](https://www.tensorflow.org/)|0.006| +|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|0.005| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|0.005| +|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|0.005| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| +|pypi|[absl-py](https://github.com/abseil/abseil-py)|0.004| +|pypi|[grpcio](https://grpc.io)|0.004| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.004| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.004| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|0.003| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.003| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|0.003| +|pypi|[pyasn1-modules](https://github.com/etingof/pyasn1-modules)|0.003| +|pypi|[packaging](https://pypi.org/project/packaging)|0.003| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|0.003| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.003| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.003| +|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.003| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.003| +|pypi|[mock](https://pypi.org/project/mock)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[pandas](https://pypi.org/project/pandas)|0.002| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.002| +|pypi|[scipy](https://pypi.org/project/scipy)|0.002| +|pypi|[google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib)|0.002| +|pypi|[markdown](https://Python-Markdown.github.io/)|0.002| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|0.002| +|pypi|[astunparse](https://github.com/simonpercivall/astunparse)|0.002| +|pypi|[google-pasta](https://github.com/google/pasta)|0.002| +|pypi|[keras-preprocessing](https://github.com/keras-team/keras-preprocessing)|0.002| +|pypi|[opt-einsum](https://github.com/dgasmith/opt_einsum)|0.002| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.002| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.002| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.002| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| +|pypi|[zipp](https://pypi.org/project/zipp)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/odb9402/CNNPeaks/badge.png b/_repos/github/odb9402/CNNPeaks/badge.png index 87d28dd9..e7441bd2 100644 Binary files a/_repos/github/odb9402/CNNPeaks/badge.png and b/_repos/github/odb9402/CNNPeaks/badge.png differ diff --git a/_repos/github/odb9402/CNNPeaks/data.json b/_repos/github/odb9402/CNNPeaks/data.json index 602550de..30a9b550 100644 --- a/_repos/github/odb9402/CNNPeaks/data.json +++ b/_repos/github/odb9402/CNNPeaks/data.json @@ -6,141 +6,361 @@ } }, "pypi": { + "progressbar2": { + "credit": 0.00027500000000000094, + "url": "https://github.com/WoLpH/python-progressbar" + }, "pysam": { - "credit": 0.14142857142857143, + "credit": 0.0275, "url": "https://github.com/pysam-developers/pysam" }, - "scipy": { - "credit": 0.001414285714285729, - "url": "https://www.scipy.org" - }, - "numpy": { - "credit": 0.3130147058823529, - "url": "https://www.numpy.org" - }, "sklearn": { - "credit": 0.14142857142857143, + "credit": 0.0275, "url": "https://pypi.python.org/pypi/scikit-learn/" }, "tensorflow-gpu": { - "credit": 0.001414285714285729, + "credit": 0.005720000000000001, "url": "https://www.tensorflow.org/" }, - "pandas": { - "credit": 0.001414285714285729, - "url": "https://pandas.pydata.org" + "tf-estimator-nightly": { + "credit": 0.0275, + "url": "https://www.tensorflow.org/" }, - "progressbar2": { - "credit": 0.001414285714285729, - "url": "https://github.com/WoLpH/python-progressbar" + "absl-py": { + "credit": 0.003970701357466064, + "url": "https://github.com/abseil/abseil-py" }, - "tensorboard": { - "credit": 0.008236134453781511, - "url": "https://github.com/tensorflow/tensorboard" + "astunparse": { + "credit": 0.001876470588235295, + "url": "https://github.com/simonpercivall/astunparse" }, - "six": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/six" + "flatbuffers": { + "credit": 0.029101470588235295, + "url": "https://google.github.io/flatbuffers/" }, - "setuptools": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/setuptools" + "gast": { + "credit": 0.029101470588235295, + "url": "https://github.com/serge-sans-paille/gast/" }, - "protobuf": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/protobuf" + "google-pasta": { + "credit": 0.001876470588235295, + "url": "https://github.com/google/pasta" }, - "packaging": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/packaging" + "grpcio": { + "credit": 0.003970701357466064, + "url": "https://grpc.io" }, - "opt-einsum": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/opt-einsum" + "h5py": { + "credit": 0.029101470588235295, + "url": "http://www.h5py.org" }, - "libclang": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/libclang" + "keras": { + "credit": 0.031576470588235296, + "url": "https://keras.io/" }, "keras-preprocessing": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/keras-preprocessing" + "credit": 0.001876470588235295, + "url": "https://github.com/keras-team/keras-preprocessing" }, - "keras": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/keras" + "libclang": { + "credit": 0.029101470588235295, + "url": "https://github.com/sighingnow/libclang" }, - "h5py": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/h5py" + "opt-einsum": { + "credit": 0.001876470588235295, + "url": "https://github.com/dgasmith/opt_einsum" }, - "grpcio": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/grpcio" + "protobuf": { + "credit": 0.031195701357466063, + "url": "https://developers.google.com/protocol-buffers/" }, - "google-pasta": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/google-pasta" + "python-utils": { + "credit": 0.006886785714285715, + "url": "https://github.com/WoLpH/python-utils" }, - "gast": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/gast" + "tensorboard": { + "credit": 0.001876470588235295, + "url": "https://github.com/tensorflow/tensorboard" }, - "flatbuffers": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/flatbuffers" + "tensorflow-io-gcs-filesystem": { + "credit": 0.00027500000000000094, + "url": "https://github.com/tensorflow/io" }, - "astunparse": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/astunparse" + "termcolor": { + "credit": 0.0275, + "url": "http://pypi.python.org/pypi/termcolor" }, - "absl-py": { - "credit": 0.008236134453781511, - "url": "https://pypi.org/project/absl-py" + "wrapt": { + "credit": 0.0275, + "url": "https://github.com/GrahamDumpleton/wrapt" }, - "pytest-xdist": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pytest-xdist" + "google-auth": { + "credit": 0.011444230769230769, + "url": "https://github.com/googleapis/google-auth-library-python" }, - "pytest": { - "credit": 0.04333775510204081, - "url": "https://pypi.org/project/pytest" + "google-auth-oauthlib": { + "credit": 0.00236923076923077, + "url": "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib" }, - "hypothesis": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/hypothesis" + "markdown": { + "credit": 0.00236923076923077, + "url": "https://Python-Markdown.github.io/" }, - "pytz": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pytz" + "tensorboard-data-server": { + "credit": 0.02959423076923077, + "url": "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server" }, - "python-dateutil": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/python-dateutil" + "tensorboard-plugin-wit": { + "credit": 0.02959423076923077, + "url": "https://whatif-tool.dev" + }, + "werkzeug": { + "credit": 0.00236923076923077, + "url": "https://palletsprojects.com/p/werkzeug/" + }, + "wheel": { + "credit": 0.01598173076923077, + "url": "https://github.com/pypa/wheel" + }, + "cachetools": { + "credit": 0.030525, + "url": "https://github.com/tkem/cachetools/" + }, + "importlib-metadata": { + "credit": 0.00935, + "url": "https://github.com/python/importlib_metadata" + }, + "pyasn1-modules": { + "credit": 0.003300000000000001, + "url": "https://github.com/etingof/pyasn1-modules" + }, + "requests-oauthlib": { + "credit": 0.00935, + "url": "https://github.com/requests/requests-oauthlib" + }, + "rsa": { + "credit": 0.030525, + "url": "https://stuvel.eu/rsa" + }, + "oauthlib": { + "credit": 0.018425, + "url": "https://github.com/oauthlib/oauthlib" + }, + "pyasn1": { + "credit": 0.054724999999999996, + "url": "https://github.com/etingof/pyasn1" }, "freezegun": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/freezegun" + "credit": 3.889285714285713e-05, + "url": "https://github.com/spulec/freezegun" }, "pytest-mypy": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/pytest-mypy" + "credit": 0.008124285714285714, + "url": "https://github.com/dbader/pytest-mypy" }, "pytest-cov": { - "credit": 0.02000204081632653, + "credit": 0.027614910714285713, "url": "https://pypi.org/project/pytest-cov" }, + "pytest": { + "credit": 0.027614910714285713, + "url": "https://pypi.org/project/pytest" + }, "flake8": { - "credit": 0.02000204081632653, + "credit": 0.009086785714285714, "url": "https://pypi.org/project/flake8" }, "sphinx": { - "credit": 0.02000204081632653, + "credit": 0.011527410714285714, "url": "https://pypi.org/project/sphinx" }, - "python-utils": { - "credit": 0.02000204081632653, - "url": "https://pypi.org/project/python-utils" + "six": { + "credit": 0.08197022058823529, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0036957013574660633, + "url": "https://pypi.org/project/setuptools" + }, + "packaging": { + "credit": 0.003113970588235294, + "url": "https://pypi.org/project/packaging" + }, + "numpy": { + "credit": 0.009573826357466064, + "url": "https://pypi.org/project/numpy" + }, + "grpcio-tools": { + "credit": 0.00680625, + "url": "https://pypi.org/project/grpcio-tools" + }, + "enum34": { + "credit": 0.00983125, + "url": "https://pypi.org/project/enum34" + }, + "futures": { + "credit": 0.00680625, + "url": "https://pypi.org/project/futures" + }, + "pytest-xdist": { + "credit": 0.0024749999999999998, + "url": "https://pypi.org/project/pytest-xdist" + }, + "tensorflow": { + "credit": 0.00792, + "url": "https://pypi.org/project/tensorflow" + }, + "pandas": { + "credit": 0.0024749999999999998, + "url": "https://pypi.org/project/pandas" + }, + "Pillow": { + "credit": 0.0024749999999999998, + "url": "https://pypi.org/project/Pillow" + }, + "scipy": { + "credit": 0.0024749999999999998, + "url": "https://pypi.org/project/scipy" + }, + "pytest-pep8": { + "credit": 0.003403125, + "url": "https://pypi.org/project/pytest-pep8" + }, + "numpydoc": { + "credit": 0.003403125, + "url": "https://pypi.org/project/numpydoc" + }, + "sphinx-rtd-theme": { + "credit": 0.003403125, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinxcontrib-napoleon": { + "credit": 0.003403125, + "url": "https://pypi.org/project/sphinxcontrib-napoleon" + }, + "types-setuptools": { + "credit": 0.0027225, + "url": "https://pypi.org/project/types-setuptools" + }, + "pytest-asyncio": { + "credit": 0.0027225, + "url": "https://pypi.org/project/pytest-asyncio" + }, + "pytest-flake8": { + "credit": 0.004235, + "url": "https://pypi.org/project/pytest-flake8" + }, + "mock": { + "credit": 0.0027225, + "url": "https://pypi.org/project/mock" + }, + "requests": { + "credit": 0.014194230769230768, + "url": "https://pypi.org/project/requests" + }, + "tensorflow-rocm": { + "credit": 0.005445, + "url": "https://pypi.org/project/tensorflow-rocm" + }, + "tensorflow-cpu": { + "credit": 0.005445, + "url": "https://pypi.org/project/tensorflow-cpu" + }, + "tensorflow-aarch64": { + "credit": 0.005445, + "url": "https://pypi.org/project/tensorflow-aarch64" + }, + "pyu2f": { + "credit": 0.003025, + "url": "https://pypi.org/project/pyu2f" + }, + "pyopenssl": { + "credit": 0.003025, + "url": "https://pypi.org/project/pyopenssl" + }, + "aiohttp": { + "credit": 0.003025, + "url": "https://pypi.org/project/aiohttp" + }, + "click": { + "credit": 0.009075, + "url": "https://pypi.org/project/click" + }, + "pyyaml": { + "credit": 0.009075, + "url": "https://pypi.org/project/pyyaml" + }, + "coverage": { + "credit": 0.009075, + "url": "https://pypi.org/project/coverage" + }, + "watchdog": { + "credit": 0.027225, + "url": "https://pypi.org/project/watchdog" + }, + "importlib-resources": { + "credit": 0.0015125, + "url": "https://pypi.org/project/importlib-resources" + }, + "pytest-black": { + "credit": 0.0015125, + "url": "https://pypi.org/project/pytest-black" + }, + "pytest-perf": { + "credit": 0.0015125, + "url": "https://pypi.org/project/pytest-perf" + }, + "flufl.flake8": { + "credit": 0.0015125, + "url": "https://pypi.org/project/flufl.flake8" + }, + "pyfakefs": { + "credit": 0.0015125, + "url": "https://pypi.org/project/pyfakefs" + }, + "pytest-enabler": { + "credit": 0.0015125, + "url": "https://pypi.org/project/pytest-enabler" + }, + "pytest-checkdocs": { + "credit": 0.0015125, + "url": "https://pypi.org/project/pytest-checkdocs" + }, + "ipython": { + "credit": 0.0015125, + "url": "https://pypi.org/project/ipython" + }, + "rst.linker": { + "credit": 0.0015125, + "url": "https://pypi.org/project/rst.linker" + }, + "jaraco.packaging": { + "credit": 0.0015125, + "url": "https://pypi.org/project/jaraco.packaging" + }, + "typing-extensions": { + "credit": 0.0015125, + "url": "https://pypi.org/project/typing-extensions" + }, + "zipp": { + "credit": 0.0015125, + "url": "https://pypi.org/project/zipp" + }, + "pyjwt": { + "credit": 0.009075, + "url": "https://pypi.org/project/pyjwt" + }, + "blinker": { + "credit": 0.009075, + "url": "https://pypi.org/project/blinker" + }, + "cryptography": { + "credit": 0.009075, + "url": "https://pypi.org/project/cryptography" + }, + "python-dateutil": { + "credit": 0.003850392857142857, + "url": "https://pypi.org/project/python-dateutil" } } } \ No newline at end of file diff --git a/_repos/github/omuse-geoscience/omuse/badge.png b/_repos/github/omuse-geoscience/omuse/badge.png index 27a517fc..0f045ca2 100644 Binary files a/_repos/github/omuse-geoscience/omuse/badge.png and b/_repos/github/omuse-geoscience/omuse/badge.png differ diff --git a/_repos/github/onnela-lab/beiwe-backend/badge.png b/_repos/github/onnela-lab/beiwe-backend/badge.png index ff4228b9..284c8153 100644 Binary files a/_repos/github/onnela-lab/beiwe-backend/badge.png and b/_repos/github/onnela-lab/beiwe-backend/badge.png differ diff --git a/_repos/github/opimwue/ddop/badge.png b/_repos/github/opimwue/ddop/badge.png index 371bfe99..1c6b7a05 100644 Binary files a/_repos/github/opimwue/ddop/badge.png and b/_repos/github/opimwue/ddop/badge.png differ diff --git a/_repos/github/oschwengers/bakta/README.md b/_repos/github/oschwengers/bakta/README.md index ae99a847..ee3993d8 100644 --- a/_repos/github/oschwengers/bakta/README.md +++ b/_repos/github/oschwengers/bakta/README.md @@ -8,42 +8,38 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[isal](https://github.com/pycompression/python-isal)|0.32| |pypi|[biopython](https://biopython.org/)|0.247| -|pypi|[isal](https://github.com/pycompression/python-isal)|0.123| -|pypi|[grapheme](https://github.com/alvinlindstam/grapheme)|0.123| -|pypi|[about-time](https://github.com/rsalmei/about-time)|0.123| -|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.039| -|pypi|[idna](https://github.com/kjd/idna)|0.039| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.039| -|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.035| -|pypi|[chardet](https://github.com/chardet/chardet)|0.035| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.035| -|pypi|[requests](https://requests.readthedocs.io)|0.01| +|pypi|[grapheme](https://github.com/alvinlindstam/grapheme)|0.122| +|pypi|[about-time](https://github.com/rsalmei/about-time)|0.122| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.025| |setup.py|github/oschwengers/bakta|0.01| -|pypi|[xmlschema](https://github.com/sissaschool/xmlschema)|0.008| -|pypi|[pygments](https://pypi.org/project/pygments)|0.008| -|pypi|[nose](https://pypi.org/project/nose)|0.008| -|pypi|[mock](https://pypi.org/project/mock)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.008| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.008| -|pypi|[colorama](https://pypi.org/project/colorama)|0.008| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.008| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.008| -|pypi|[tomli](https://pypi.org/project/tomli)|0.008| -|pypi|[py](https://pypi.org/project/py)|0.008| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.008| -|pypi|[packaging](https://pypi.org/project/packaging)|0.008| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.008| -|pypi|[attrs](https://pypi.org/project/attrs)|0.008| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.004| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.004| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.004| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.004| -|pypi|[brotli](https://pypi.org/project/brotli)|0.004| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.004| -|pypi|[xopen](https://github.com/pycompression/xopen/)|0.002| +|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.007| +|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.007| +|pypi|[idna](https://github.com/kjd/idna)|0.007| +|pypi|[chardet](https://github.com/chardet/chardet)|0.007| +|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.007| +|pypi|[urllib3](https://urllib3.readthedocs.io/)|0.007| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.007| +|pypi|[requests](https://requests.readthedocs.io)|0.007| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| +|pypi|[pygments](https://pypi.org/project/pygments)|0.006| +|pypi|[nose](https://pypi.org/project/nose)|0.006| +|pypi|[mock](https://pypi.org/project/mock)|0.006| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.006| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| +|pypi|[colorama](https://pypi.org/project/colorama)|0.006| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.006| +|pypi|[tomli](https://pypi.org/project/tomli)|0.006| +|pypi|[py](https://pypi.org/project/py)|0.006| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| +|pypi|[attrs](https://pypi.org/project/attrs)|0.006| |pypi|[alive-progress](https://github.com/rsalmei/alive-progress)|0.002| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.001| +|pypi|[xopen](https://github.com/pycompression/xopen/)|0.002| +|pypi|[bakta](https://github.com/oschwengers/bakta)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/oschwengers/bakta/badge.png b/_repos/github/oschwengers/bakta/badge.png index 929770e2..474d5c23 100644 Binary files a/_repos/github/oschwengers/bakta/badge.png and b/_repos/github/oschwengers/bakta/badge.png differ diff --git a/_repos/github/oschwengers/bakta/data.json b/_repos/github/oschwengers/bakta/data.json index 2fd63e84..1092cff0 100644 --- a/_repos/github/oschwengers/bakta/data.json +++ b/_repos/github/oschwengers/bakta/data.json @@ -6,153 +6,133 @@ } }, "pypi": { + "bakta": { + "credit": 0.0019800000000000095, + "url": "https://github.com/oschwengers/bakta" + }, + "alive-progress": { + "credit": 0.0024700500000000084, + "url": "https://github.com/rsalmei/alive-progress" + }, "biopython": { - "credit": 0.2475, + "credit": 0.247005, "url": "https://biopython.org/" }, "xopen": { - "credit": 0.002475000000000005, + "credit": 0.0024700500000000084, "url": "https://github.com/pycompression/xopen/" }, + "isal": { + "credit": 0.32026747499999997, + "url": "https://github.com/pycompression/python-isal" + }, "requests": { - "credit": 0.010055460937500003, + "credit": 0.006554418749999999, "url": "https://requests.readthedocs.io" }, - "alive-progress": { - "credit": 0.002475000000000005, - "url": "https://github.com/rsalmei/alive-progress" + "grapheme": { + "credit": 0.122267475, + "url": "https://github.com/alvinlindstam/grapheme" + }, + "about-time": { + "credit": 0.122267475, + "url": "https://github.com/rsalmei/about-time" }, "pytest": { - "credit": 0.0012251250000000075, + "credit": 0.025237574999999998, "url": "https://docs.pytest.org/en/latest/" }, - "isal": { - "credit": 0.1225125, - "url": "https://github.com/pycompression/python-isal" - }, "win-inet-pton": { - "credit": 0.035003571428571426, + "credit": 0.006930707142857143, "url": "https://github.com/hickeroar/win_inet_pton" }, "PySocks": { - "credit": 0.03885396428571428, + "credit": 0.006930707142857143, "url": "https://github.com/Anorov/PySocks" }, "charset-normalizer": { - "credit": 0.00035003571428571245, + "credit": 6.930707142857161e-05, "url": "https://github.com/ousret/charset_normalizer" }, "idna": { - "credit": 0.03885396428571428, + "credit": 0.006930707142857143, "url": "https://github.com/kjd/idna" }, "chardet": { - "credit": 0.035003571428571426, + "credit": 0.006930707142857143, "url": "https://github.com/chardet/chardet" }, "certifi": { - "credit": 0.03885396428571428, + "credit": 0.006930707142857143, "url": "https://certifiio.readthedocs.io/en/latest/" }, "urllib3": { - "credit": 0.00035003571428571245, + "credit": 0.006930707142857143, "url": "https://urllib3.readthedocs.io/" }, - "grapheme": { - "credit": 0.1225125, - "url": "https://github.com/alvinlindstam/grapheme" - }, - "about-time": { - "credit": 0.1225125, - "url": "https://github.com/rsalmei/about-time" - }, "xmlschema": { - "credit": 0.007580460937499999, - "url": "https://github.com/sissaschool/xmlschema" + "credit": 0.00606436875, + "url": "https://pypi.org/project/xmlschema" }, "pygments": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.007580460937499999, + "credit": 0.00606436875, "url": "https://pypi.org/project/attrs" }, "unicodedata2": { - "credit": 0.03465353571428571, + "credit": 0.0068614000714285715, "url": "https://pypi.org/project/unicodedata2" - }, - "ipaddress": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/ipaddress" - }, - "cryptography": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/cryptography" - }, - "pyOpenSSL": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/pyOpenSSL" - }, - "brotlipy": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/brotlipy" - }, - "brotli": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/brotli" - }, - "brotlicffi": { - "credit": 0.003850392857142857, - "url": "https://pypi.org/project/brotlicffi" } } } \ No newline at end of file diff --git a/_repos/github/oschwengers/platon/README.md b/_repos/github/oschwengers/platon/README.md index 1f6f3131..1edf8387 100644 --- a/_repos/github/oschwengers/platon/README.md +++ b/_repos/github/oschwengers/platon/README.md @@ -10,6 +10,7 @@ exclude_from_search: true |-------|----|------| |setup.py|github/oschwengers/platon|0.01| |pypi|[biopython](https://biopython.org/)|0.01| +|pypi|[cb-platon](https://github.com/oschwengers/platon)|0.005| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/oschwengers/platon/badge.png b/_repos/github/oschwengers/platon/badge.png index 70e3703e..276063d7 100644 Binary files a/_repos/github/oschwengers/platon/badge.png and b/_repos/github/oschwengers/platon/badge.png differ diff --git a/_repos/github/oschwengers/platon/data.json b/_repos/github/oschwengers/platon/data.json index b7fb4180..737a068f 100644 --- a/_repos/github/oschwengers/platon/data.json +++ b/_repos/github/oschwengers/platon/data.json @@ -6,8 +6,12 @@ } }, "pypi": { + "cb-platon": { + "credit": 0.00495, + "url": "https://github.com/oschwengers/platon" + }, "biopython": { - "credit": 0.0099, + "credit": 0.009850500000000002, "url": "https://biopython.org/" } } diff --git a/_repos/github/oschwengers/referenceseeker/README.md b/_repos/github/oschwengers/referenceseeker/README.md index b8107108..62f2e949 100644 --- a/_repos/github/oschwengers/referenceseeker/README.md +++ b/_repos/github/oschwengers/referenceseeker/README.md @@ -8,43 +8,28 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[biopython](https://biopython.org/)|0.495| -|pypi|[isal](https://github.com/pycompression/python-isal)|0.245| -|pypi|[pygments](https://pygments.org/)|0.015| -|pypi|[nose](http://readthedocs.org/docs/nose/)|0.015| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.015| -|pypi|[hypothesis](https://hypothesis.works)|0.015| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.015| -|pypi|[colorama](https://pypi.org/project/colorama)|0.015| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.015| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.015| -|pypi|[tomli](https://pypi.org/project/tomli)|0.015| -|pypi|[py](https://pypi.org/project/py)|0.015| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.015| -|pypi|[packaging](https://pypi.org/project/packaging)|0.015| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.015| -|pypi|[attrs](https://pypi.org/project/attrs)|0.015| +|pypi|[isal](https://github.com/pycompression/python-isal)|0.431| +|pypi|[biopython](https://biopython.org/)|0.37| +|pypi|[xmlschema](https://github.com/sissaschool/xmlschema)|0.011| +|pypi|[requests](https://pypi.org/project/requests)|0.011| +|pypi|[pygments](https://pypi.org/project/pygments)|0.011| +|pypi|[nose](https://pypi.org/project/nose)|0.011| +|pypi|[mock](https://pypi.org/project/mock)|0.011| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.011| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.011| +|pypi|[colorama](https://pypi.org/project/colorama)|0.011| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.011| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.011| +|pypi|[tomli](https://pypi.org/project/tomli)|0.011| +|pypi|[py](https://pypi.org/project/py)|0.011| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.011| +|pypi|[packaging](https://pypi.org/project/packaging)|0.011| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.011| +|pypi|[attrs](https://pypi.org/project/attrs)|0.011| |setup.py|github/oschwengers/referenceseeker|0.01| -|pypi|[xopen](https://github.com/pycompression/xopen/)|0.005| +|pypi|[xopen](https://github.com/pycompression/xopen/)|0.004| +|pypi|[referenceseeker](https://github.com/oschwengers/referenceseeker)|0.002| |pypi|[pytest](https://docs.pytest.org/en/latest/)|0.002| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[idna](https://pypi.org/project/idna)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[certifi](https://pypi.org/project/certifi)|0.002| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| -|pypi|[lxml-stubs](https://pypi.org/project/lxml-stubs)|0.001| -|pypi|[mypy](https://pypi.org/project/mypy)|0.001| -|pypi|[flake8](https://pypi.org/project/flake8)|0.001| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.001| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.001| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.001| -|pypi|[lxml](https://pypi.org/project/lxml)|0.001| -|pypi|[coverage](https://pypi.org/project/coverage)|0.001| -|pypi|[tox](https://pypi.org/project/tox)|0.001| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.001| -|pypi|[elementpath](https://pypi.org/project/elementpath)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/oschwengers/referenceseeker/badge.png b/_repos/github/oschwengers/referenceseeker/badge.png index 86fe85ab..5656e26c 100644 Binary files a/_repos/github/oschwengers/referenceseeker/badge.png and b/_repos/github/oschwengers/referenceseeker/badge.png differ diff --git a/_repos/github/oschwengers/referenceseeker/data.json b/_repos/github/oschwengers/referenceseeker/data.json index 13f0213b..27ef75fb 100644 --- a/_repos/github/oschwengers/referenceseeker/data.json +++ b/_repos/github/oschwengers/referenceseeker/data.json @@ -6,157 +6,89 @@ } }, "pypi": { + "referenceseeker": { + "credit": 0.002475000000000005, + "url": "https://github.com/oschwengers/referenceseeker" + }, "biopython": { - "credit": 0.495, + "credit": 0.37001249999999997, "url": "https://biopython.org/" }, "xopen": { - "credit": 0.00495000000000001, + "credit": 0.0037001250000000124, "url": "https://github.com/pycompression/xopen/" }, - "pytest": { - "credit": 0.002450250000000015, - "url": "https://docs.pytest.org/en/latest/" - }, "isal": { - "credit": 0.245025, + "credit": 0.43065618749999995, "url": "https://github.com/pycompression/python-isal" }, + "pytest": { + "credit": 0.0018315618750000054, + "url": "https://docs.pytest.org/en/latest/" + }, "xmlschema": { - "credit": 0.00015160921874999948, + "credit": 0.011332789101562499, "url": "https://github.com/sissaschool/xmlschema" }, "requests": { - "credit": 0.00015160921874999948, - "url": "https://requests.readthedocs.io" + "credit": 0.011332789101562499, + "url": "https://pypi.org/project/requests" }, "pygments": { - "credit": 0.015160921874999999, - "url": "https://pygments.org/" + "credit": 0.011332789101562499, + "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.015160921874999999, - "url": "http://readthedocs.org/docs/nose/" + "credit": 0.011332789101562499, + "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.015160921874999999, - "url": "http://mock.readthedocs.org/en/latest/" + "credit": 0.011332789101562499, + "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.015160921874999999, - "url": "https://hypothesis.works" + "credit": 0.011332789101562499, + "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.015160921874999999, + "credit": 0.011332789101562499, "url": "https://pypi.org/project/attrs" - }, - "lxml-stubs": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/lxml-stubs" - }, - "mypy": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/mypy" - }, - "flake8": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/flake8" - }, - "sphinx-rtd-theme": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/sphinx-rtd-theme" - }, - "Sphinx": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/Sphinx" - }, - "memory-profiler": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/memory-profiler" - }, - "lxml": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/lxml" - }, - "coverage": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/coverage" - }, - "tox": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/tox" - }, - "jinja2": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/jinja2" - }, - "elementpath": { - "credit": 0.00136448296875, - "url": "https://pypi.org/project/elementpath" - }, - "win-inet-pton": { - "credit": 0.0021441875223214284, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.0021441875223214284, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.0021441875223214284, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.0021441875223214284, - "url": "https://pypi.org/project/idna" - }, - "chardet": { - "credit": 0.0021441875223214284, - "url": "https://pypi.org/project/chardet" - }, - "certifi": { - "credit": 0.0021441875223214284, - "url": "https://pypi.org/project/certifi" - }, - "urllib3": { - "credit": 0.0021441875223214284, - "url": "https://pypi.org/project/urllib3" } } } \ No newline at end of file diff --git a/_repos/github/ot483/NetCom/badge.png b/_repos/github/ot483/NetCom/badge.png index 6ab08430..8654cbe5 100644 Binary files a/_repos/github/ot483/NetCom/badge.png and b/_repos/github/ot483/NetCom/badge.png differ diff --git a/_repos/github/panoptes-organization/panoptes/README.md b/_repos/github/panoptes-organization/panoptes/README.md index 26ce9a58..ade3d430 100644 --- a/_repos/github/panoptes-organization/panoptes/README.md +++ b/_repos/github/panoptes-organization/panoptes/README.md @@ -8,69 +8,54 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[SQLAlchemy](https://www.sqlalchemy.org)|0.165| -|pypi|[pyreadline3](https://pypi.python.org/pypi/pyreadline3/)|0.054| -|pypi|[pyreadline](http://ipython.org/pyreadline.html)|0.054| -|pypi|[monotonic](https://github.com/atdt/monotonic)|0.054| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.026| -|pypi|[click](https://palletsprojects.com/p/click/)|0.023| -|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.023| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.023| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.023| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.023| -|pypi|[idna](https://pypi.org/project/idna)|0.023| -|pypi|[chardet](https://pypi.org/project/chardet)|0.023| -|pypi|[certifi](https://pypi.org/project/certifi)|0.023| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.023| -|pypi|[packaging](https://pypi.org/project/packaging)|0.023| -|pypi|[watchdog](https://pypi.org/project/watchdog)|0.023| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.022| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.022| -|pypi|[colorama](https://pypi.org/project/colorama)|0.022| -|pypi|[mypy](https://pypi.org/project/mypy)|0.017| -|pypi|[tox](https://pypi.org/project/tox)|0.014| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.014| -|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.014| -|pypi|[flake8](https://pypi.org/project/flake8)|0.014| -|pypi|[requests](https://requests.readthedocs.io)|0.012| -|pypi|[autodocsumm](https://github.com/Chilipp/autodocsumm)|0.012| -|pypi|[alabaster](https://alabaster.readthedocs.io)|0.012| -|pypi|[simplejson](https://pypi.org/project/simplejson)|0.012| -|pypi|[pytz](https://pypi.org/project/pytz)|0.012| -|pypi|[Babel](https://pypi.org/project/Babel)|0.012| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.012| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.01| -|pypi|[pygments](https://pypi.org/project/pygments)|0.01| -|pypi|[nose](https://pypi.org/project/nose)|0.01| -|pypi|[mock](https://pypi.org/project/mock)|0.01| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.01| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.01| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.01| -|pypi|[tomli](https://pypi.org/project/tomli)|0.01| -|pypi|[py](https://pypi.org/project/py)|0.01| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.01| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.01| -|pypi|[attrs](https://pypi.org/project/attrs)|0.01| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.135| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.103| +|pypi|[panoptes-ui](https://github.com/panoptes-organization/panoptes)|0.09| +|pypi|[SQLAlchemy](https://www.sqlalchemy.org)|0.09| +|pypi|[greenlet](https://greenlet.readthedocs.io/)|0.09| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.089| +|pypi|[Babel](https://pypi.org/project/Babel)|0.045| +|pypi|[pyreadline3](https://pypi.org/project/pyreadline3)|0.03| +|pypi|[pyreadline](https://pypi.org/project/pyreadline)|0.03| +|pypi|[monotonic](https://pypi.org/project/monotonic)|0.03| +|pypi|[click](https://pypi.org/project/click)|0.025| +|pypi|[pytest](https://pypi.org/project/pytest)|0.014| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.014| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.014| +|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.014| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| +|pypi|[packaging](https://pypi.org/project/packaging)|0.011| |setup.py|github/panoptes-organization/panoptes|0.01| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.007| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.006| -|pypi|[flask](https://palletsprojects.com/p/flask)|0.002| -|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|0.002| -|pypi|[marshmallow](https://github.com/marshmallow-code/marshmallow)|0.002| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.001| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.001| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.001| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| -|pypi|[ipython](https://pypi.org/project/ipython)|0.001| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| -|pypi|[zipp](https://pypi.org/project/zipp)|0.001| +|pypi|[mypy](https://pypi.org/project/mypy)|0.01| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.008| +|pypi|[autodocsumm](https://pypi.org/project/autodocsumm)|0.006| +|pypi|[sphinx-version-warning](https://pypi.org/project/sphinx-version-warning)|0.006| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[tox](https://pypi.org/project/tox)|0.006| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.006| +|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.006| +|pypi|[flake8](https://pypi.org/project/flake8)|0.006| +|pypi|[simplejson](https://pypi.org/project/simplejson)|0.006| +|pypi|[pytz](https://pypi.org/project/pytz)|0.006| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.005| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.005| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.005| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.005| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.005| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.005| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.005| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.005| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.005| +|pypi|[ipython](https://pypi.org/project/ipython)|0.005| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.005| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.005| +|pypi|[zipp](https://pypi.org/project/zipp)|0.005| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.003| +|pypi|[flask](https://palletsprojects.com/p/flask)|0.001| +|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|0.001| +|pypi|[marshmallow](https://github.com/marshmallow-code/marshmallow)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/panoptes-organization/panoptes/badge.png b/_repos/github/panoptes-organization/panoptes/badge.png index 0dcf57a7..9462d5aa 100644 Binary files a/_repos/github/panoptes-organization/panoptes/badge.png and b/_repos/github/panoptes-organization/panoptes/badge.png differ diff --git a/_repos/github/panoptes-organization/panoptes/data.json b/_repos/github/panoptes-organization/panoptes/data.json index d878c14b..f40e0365 100644 --- a/_repos/github/panoptes-organization/panoptes/data.json +++ b/_repos/github/panoptes-organization/panoptes/data.json @@ -6,277 +6,201 @@ } }, "pypi": { + "panoptes-ui": { + "credit": 0.09, + "url": "https://github.com/panoptes-organization/panoptes" + }, "flask": { - "credit": 0.0016500000000000126, + "credit": 0.000899999999999998, "url": "https://palletsprojects.com/p/flask" }, "humanfriendly": { - "credit": 0.0016500000000000126, + "credit": 0.000899999999999998, "url": "https://humanfriendly.readthedocs.io" }, "marshmallow": { - "credit": 0.0016500000000000126, + "credit": 0.000899999999999998, "url": "https://github.com/marshmallow-code/marshmallow" }, - "pytest": { - "credit": 0.022302107142857158, - "url": "https://docs.pytest.org/en/latest/" - }, - "requests": { - "credit": 0.011859375000000012, - "url": "https://requests.readthedocs.io" - }, "SQLAlchemy": { - "credit": 0.165, + "credit": 0.09, "url": "https://www.sqlalchemy.org" }, - "python-dotenv": { - "credit": 0.0002333571428571428, - "url": "https://github.com/theskumar/python-dotenv" - }, - "asgiref": { - "credit": 0.0002333571428571428, - "url": "https://github.com/django/asgiref/" + "greenlet": { + "credit": 0.09, + "url": "https://greenlet.readthedocs.io/" }, "importlib-metadata": { - "credit": 0.021993910714285712, + "credit": 0.01362857142857144, "url": "https://github.com/python/importlib_metadata" }, - "click": { - "credit": 0.023335714285714286, - "url": "https://palletsprojects.com/p/click/" - }, "itsdangerous": { - "credit": 0.023335714285714286, + "credit": 0.10272857142857142, "url": "https://palletsprojects.com/p/itsdangerous/" }, "Jinja2": { - "credit": 0.0002333571428571428, + "credit": 0.013628571428571426, "url": "https://palletsprojects.com/p/jinja/" }, "Werkzeug": { - "credit": 0.0002333571428571428, + "credit": 0.013628571428571426, "url": "https://palletsprojects.com/p/werkzeug/" }, + "MarkupSafe": { + "credit": 0.13455, + "url": "https://palletsprojects.com/p/markupsafe/" + }, + "python-dotenv": { + "credit": 0.0001272857142857152, + "url": "https://github.com/theskumar/python-dotenv" + }, + "asgiref": { + "credit": 0.0001272857142857152, + "url": "https://github.com/django/asgiref/" + }, + "click": { + "credit": 0.02532985714285714, + "url": "https://pypi.org/project/click" + }, "pyreadline3": { - "credit": 0.05445, - "url": "https://pypi.python.org/pypi/pyreadline3/" + "credit": 0.0297, + "url": "https://pypi.org/project/pyreadline3" }, "pyreadline": { - "credit": 0.05445, - "url": "http://ipython.org/pyreadline.html" + "credit": 0.0297, + "url": "https://pypi.org/project/pyreadline" }, "monotonic": { - "credit": 0.05445, - "url": "https://github.com/atdt/monotonic" + "credit": 0.0297, + "url": "https://pypi.org/project/monotonic" }, "autodocsumm": { - "credit": 0.011667857142857143, - "url": "https://github.com/Chilipp/autodocsumm" + "credit": 0.006364285714285714, + "url": "https://pypi.org/project/autodocsumm" }, "sphinx-version-warning": { - "credit": 0.0001166785714285714, - "url": "https://github.com/humitos/sphinx-version-warning" + "credit": 0.006364285714285714, + "url": "https://pypi.org/project/sphinx-version-warning" }, "alabaster": { - "credit": 0.011667857142857143, - "url": "https://alabaster.readthedocs.io" + "credit": 0.006364285714285714, + "url": "https://pypi.org/project/alabaster" }, "sphinx-issues": { - "credit": 0.0001166785714285714, - "url": "https://github.com/sloria/sphinx-issues" + "credit": 0.006364285714285714, + "url": "https://pypi.org/project/sphinx-issues" }, "sphinx": { - "credit": 0.02642769642857143, - "url": "https://www.sphinx-doc.org/" + "credit": 0.011314285714285714, + "url": "https://pypi.org/project/sphinx" }, "tox": { - "credit": 0.013593053571428572, + "credit": 0.006364285714285714, "url": "https://pypi.org/project/tox" }, "pre-commit": { - "credit": 0.013593053571428572, + "credit": 0.006364285714285714, "url": "https://pypi.org/project/pre-commit" }, "flake8-bugbear": { - "credit": 0.013593053571428572, + "credit": 0.006364285714285714, "url": "https://pypi.org/project/flake8-bugbear" }, "flake8": { - "credit": 0.013593053571428572, + "credit": 0.006364285714285714, "url": "https://pypi.org/project/flake8" }, "mypy": { - "credit": 0.01744344642857143, + "credit": 0.009514607142857142, "url": "https://pypi.org/project/mypy" }, "simplejson": { - "credit": 0.011667857142857143, + "credit": 0.006364285714285714, "url": "https://pypi.org/project/simplejson" }, "pytz": { - "credit": 0.011667857142857143, + "credit": 0.006364285714285714, "url": "https://pypi.org/project/pytz" }, + "pytest": { + "credit": 0.014464607142857142, + "url": "https://pypi.org/project/pytest" + }, "packaging": { - "credit": 0.02316069642857143, + "credit": 0.011314285714285714, "url": "https://pypi.org/project/packaging" }, - "xmlschema": { - "credit": 0.010209375, - "url": "https://pypi.org/project/xmlschema" - }, - "pygments": { - "credit": 0.010209375, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.010209375, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.010209375, - "url": "https://pypi.org/project/mock" - }, - "hypothesis": { - "credit": 0.010209375, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.010209375, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.021760553571428573, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.010209375, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.010209375, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.010209375, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.010209375, - "url": "https://pypi.org/project/pluggy" - }, - "iniconfig": { - "credit": 0.010209375, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.010209375, - "url": "https://pypi.org/project/attrs" - }, - "win-inet-pton": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/idna" - }, - "chardet": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/chardet" - }, - "certifi": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/certifi" - }, - "urllib3": { - "credit": 0.023335714285714286, - "url": "https://pypi.org/project/urllib3" - }, - "pytest-asyncio": { - "credit": 0.005775589285714286, - "url": "https://pypi.org/project/pytest-asyncio" - }, - "typing-extensions": { - "credit": 0.007059053571428572, - "url": "https://pypi.org/project/typing-extensions" - }, "importlib-resources": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/importlib-resources" }, "pytest-mypy": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/pytest-mypy" }, "pytest-black": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/pytest-black" }, "pytest-perf": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/pytest-perf" }, "flufl.flake8": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/flufl.flake8" }, "pyfakefs": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/pyfakefs" }, "pytest-enabler": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/pytest-enabler" }, "pytest-cov": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/pytest-cov" }, "pytest-flake8": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/pytest-checkdocs" }, "ipython": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/ipython" }, "rst.linker": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/jaraco.packaging" }, + "typing-extensions": { + "credit": 0.008100321428571427, + "url": "https://pypi.org/project/typing-extensions" + }, "zipp": { - "credit": 0.0012834642857142858, + "credit": 0.0049499999999999995, "url": "https://pypi.org/project/zipp" }, "Babel": { - "credit": 0.011551178571428572, + "credit": 0.04455, "url": "https://pypi.org/project/Babel" }, - "MarkupSafe": { - "credit": 0.011551178571428572, - "url": "https://pypi.org/project/MarkupSafe" - }, "watchdog": { - "credit": 0.023102357142857143, + "credit": 0.0891, "url": "https://pypi.org/project/watchdog" + }, + "pytest-asyncio": { + "credit": 0.003150321428571428, + "url": "https://pypi.org/project/pytest-asyncio" } } } \ No newline at end of file diff --git a/_repos/github/parallelwindfarms/byteparsing/badge.png b/_repos/github/parallelwindfarms/byteparsing/badge.png index 2c55a37f..34eb7bbb 100644 Binary files a/_repos/github/parallelwindfarms/byteparsing/badge.png and b/_repos/github/parallelwindfarms/byteparsing/badge.png differ diff --git a/_repos/github/popgenmethods/smcpp/badge.png b/_repos/github/popgenmethods/smcpp/badge.png index 1e965c9e..378036a6 100644 Binary files a/_repos/github/popgenmethods/smcpp/badge.png and b/_repos/github/popgenmethods/smcpp/badge.png differ diff --git a/_repos/github/potassco/clingo/README.md b/_repos/github/potassco/clingo/README.md index 8240add4..71e545f8 100644 --- a/_repos/github/potassco/clingo/README.md +++ b/_repos/github/potassco/clingo/README.md @@ -9,8 +9,9 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/potassco/clingo|0.01| -|pypi|[cffi](http://cffi.readthedocs.org)|0.01| -|pypi|[pycparser](https://github.com/eliben/pycparser)|0.01| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.007| +|pypi|[clingo](https://github.com/potassco/clingo)|0.003| +|pypi|[cffi](http://cffi.readthedocs.org)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/potassco/clingo/badge.png b/_repos/github/potassco/clingo/badge.png index 4d487e50..4a4dddb5 100644 Binary files a/_repos/github/potassco/clingo/badge.png and b/_repos/github/potassco/clingo/badge.png differ diff --git a/_repos/github/potassco/clingo/data.json b/_repos/github/potassco/clingo/data.json index c09e40b9..7d9b4523 100644 --- a/_repos/github/potassco/clingo/data.json +++ b/_repos/github/potassco/clingo/data.json @@ -6,12 +6,16 @@ } }, "pypi": { + "clingo": { + "credit": 0.0033000000000000004, + "url": "https://github.com/potassco/clingo" + }, "cffi": { - "credit": 0.0099, + "credit": 0.0033000000000000004, "url": "http://cffi.readthedocs.org" }, "pycparser": { - "credit": 0.009801, + "credit": 0.006567, "url": "https://github.com/eliben/pycparser" } } diff --git a/_repos/github/pybamm-team/liionpack/README.md b/_repos/github/pybamm-team/liionpack/README.md index 0e831f08..af94d268 100644 --- a/_repos/github/pybamm-team/liionpack/README.md +++ b/_repos/github/pybamm-team/liionpack/README.md @@ -8,94 +8,91 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.186| -|pypi|[matplotlib](https://matplotlib.org)|0.098| -|pypi|[textwrapper](https://github.com/tusharsadhwani/textwrapper)|0.076| -|pypi|[et-xmlfile](https://pypi.org/project/et-xmlfile)|0.075| -|pypi|[six](https://pypi.org/project/six)|0.038| -|pypi|[tenacity](https://pypi.org/project/tenacity)|0.038| -|pypi|[pytest](https://pypi.org/project/pytest)|0.026| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.019| -|pypi|[wheel](https://pypi.org/project/wheel)|0.014| -|pypi|[twine](https://pypi.org/project/twine)|0.014| -|pypi|[scipy](https://www.scipy.org)|0.013| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.013| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.013| -|pypi|[pytz](https://pypi.org/project/pytz)|0.013| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.013| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.015| +|pypi|[pybamm](https://pypi.org/project/pybamm)|0.015| +|pypi|[distributed](https://distributed.dask.org)|0.012| +|pypi|[dask](https://pypi.org/project/dask)|0.012| +|pypi|[lcapy](https://pypi.org/project/lcapy)|0.012| +|pypi|[networkx](https://pypi.org/project/networkx)|0.012| +|pypi|[openpyxl](https://pypi.org/project/openpyxl)|0.012| +|pypi|[sympy](https://pypi.org/project/sympy)|0.012| +|pypi|[ray](https://pypi.org/project/ray)|0.012| +|pypi|[scikit-spatial](https://pypi.org/project/scikit-spatial)|0.012| +|pypi|[textwrapper](https://pypi.org/project/textwrapper)|0.012| +|pypi|[anytree](https://pypi.org/project/anytree)|0.012| +|pypi|[autograd](https://pypi.org/project/autograd)|0.012| +|pypi|[bokeh](https://pypi.org/project/bokeh)|0.012| +|pypi|[casadi](https://pypi.org/project/casadi)|0.012| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.012| +|pypi|[cycler](https://pypi.org/project/cycler)|0.012| +|pypi|[fonttools](https://pypi.org/project/fonttools)|0.012| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.012| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.012| +|pypi|[imageio](https://pypi.org/project/imageio)|0.012| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.012| +|pypi|[kiwisolver](https://pypi.org/project/kiwisolver)|0.012| +|pypi|[msgpack](https://pypi.org/project/msgpack)|0.012| +|pypi|[partd](https://pypi.org/project/partd)|0.012| +|pypi|[pillow](https://pypi.org/project/pillow)|0.012| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.012| +|pypi|[scikit-fem](https://pypi.org/project/scikit-fem)|0.012| +|pypi|[toolz](https://pypi.org/project/toolz)|0.012| +|pypi|[aiosignal](https://pypi.org/project/aiosignal)|0.012| +|pypi|[frozenlist](https://pypi.org/project/frozenlist)|0.012| +|pypi|[et-xmlfile](https://pypi.org/project/et-xmlfile)|0.012| +|pypi|[jupyter](https://pypi.org/project/jupyter)|0.012| +|pypi|[property-cached](https://pypi.org/project/property-cached)|0.012| +|pypi|[pybtex](https://pypi.org/project/pybtex)|0.012| +|pypi|[wheel](https://pypi.org/project/wheel)|0.012| +|pypi|[future](https://pypi.org/project/future)|0.012| +|pypi|[latexcodec](https://pypi.org/project/latexcodec)|0.012| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.012| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[psutil](https://pypi.org/project/psutil)|0.012| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.012| +|pypi|[tblib](https://pypi.org/project/tblib)|0.012| +|pypi|[tornado](https://pypi.org/project/tornado)|0.012| +|pypi|[zict](https://pypi.org/project/zict)|0.012| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.012| |pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.012| -|pypi|[colorama](https://pypi.org/project/colorama)|0.012| -|pypi|[pandas](https://pandas.pydata.org)|0.012| -|pypi|[black](https://pypi.org/project/black)|0.011| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.01| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.01| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.01| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.01| +|pypi|[jupyter-console](https://pypi.org/project/jupyter-console)|0.012| +|pypi|[locket](https://pypi.org/project/locket)|0.012| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.012| +|pypi|[notebook](https://pypi.org/project/notebook)|0.012| +|pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.012| +|pypi|[debugpy](https://pypi.org/project/debugpy)|0.012| +|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.012| +|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.012| +|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.012| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.012| +|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.012| +|pypi|[mistune](https://pypi.org/project/mistune)|0.012| +|pypi|[nbclient](https://pypi.org/project/nbclient)|0.012| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.012| +|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|0.012| +|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|0.012| +|pypi|[pyzmq](https://pypi.org/project/pyzmq)|0.012| +|pypi|[qtpy](https://pypi.org/project/qtpy)|0.012| +|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|0.012| +|pypi|[terminado](https://pypi.org/project/terminado)|0.012| +|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|0.012| +|pypi|[argon2-cffi](https://pypi.org/project/argon2-cffi)|0.012| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.012| +|pypi|[bleach](https://pypi.org/project/bleach)|0.012| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.012| +|pypi|[heapdict](https://pypi.org/project/heapdict)|0.012| +|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|0.012| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.012| +|pypi|[tinycss2](https://pypi.org/project/tinycss2)|0.012| +|pypi|[soupsieve](https://pypi.org/project/soupsieve)|0.012| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.012| +|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|0.012| +|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|0.012| +|pypi|[cffi](https://pypi.org/project/cffi)|0.012| +|pypi|[pycparser](https://pypi.org/project/pycparser)|0.012| |setup.py|github/pybamm-team/liionpack|0.01| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.009| -|pypi|[py-make](https://pypi.org/project/py-make)|0.009| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.009| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.009| -|pypi|[flake8](https://pypi.org/project/flake8)|0.009| -|pypi|[sympy](https://pypi.org/project/sympy)|0.009| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.007| -|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.007| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.007| -|pypi|[networkx](https://networkx.org/)|0.005| -|pypi|[guzzle-sphinx-theme](https://github.com/guzzle/guzzle_sphinx_theme)|0.005| -|pypi|[pybtex](https://pypi.org/project/pybtex)|0.005| -|pypi|[jupyter](https://pypi.org/project/jupyter)|0.005| -|pypi|[imageio](https://pypi.org/project/imageio)|0.005| -|pypi|[casadi](https://pypi.org/project/casadi)|0.005| -|pypi|[scikit-fem](https://pypi.org/project/scikit-fem)|0.005| -|pypi|[autograd](https://pypi.org/project/autograd)|0.005| -|pypi|[anytree](https://pypi.org/project/anytree)|0.005| -|pypi|[nose](https://pypi.org/project/nose)|0.004| -|pypi|[flake8-requirements](https://pypi.org/project/flake8-requirements)|0.004| -|pypi|[flake8-comprehensions](https://pypi.org/project/flake8-comprehensions)|0.004| -|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.004| -|pypi|[ipython](https://pypi.org/project/ipython)|0.004| -|pypi|[property-cached](https://pypi.org/project/property-cached)|0.004| -|pypi|[IPython](https://pypi.org/project/IPython)|0.004| -|pypi|[codecov](https://pypi.org/project/codecov)|0.004| -|pypi|[pydot](https://pypi.org/project/pydot)|0.004| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.004| -|pypi|[texext](https://pypi.org/project/texext)|0.004| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.004| -|pypi|[pillow](https://pypi.org/project/pillow)|0.004| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.004| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.004| -|pypi|[trio](https://pypi.org/project/trio)|0.003| -|pypi|[curio](https://pypi.org/project/curio)|0.003| -|pypi|[testpath](https://pypi.org/project/testpath)|0.003| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.003| -|pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.003| -|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|0.003| -|pypi|[notebook](https://pypi.org/project/notebook)|0.003| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.003| -|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.003| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.003| -|pypi|[appnope](https://pypi.org/project/appnope)|0.003| -|pypi|[pexpect](https://pypi.org/project/pexpect)|0.003| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.003| -|pypi|[stack-data](https://pypi.org/project/stack-data)|0.003| -|pypi|[pygments](https://pypi.org/project/pygments)|0.003| -|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|0.003| -|pypi|[pickleshare](https://pypi.org/project/pickleshare)|0.003| -|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|0.003| -|pypi|[jedi](https://pypi.org/project/jedi)|0.003| -|pypi|[decorator](https://pypi.org/project/decorator)|0.003| -|pypi|[backcall](https://pypi.org/project/backcall)|0.003| -|pypi|[lcapy](https://github.com/mph-/lcapy)|0.001| -|pypi|[pybamm](https://github.com/pybamm-team/PyBaMM)|0.001| -|pypi|[plotly](https://plotly.com/python/)|0.001| -|pypi|[openpyxl](https://openpyxl.readthedocs.io)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[Ipython](https://ipython.org)|0.001| -|pypi|[scikit-spatial](https://github.com/ajhynes7/scikit-spatial)|0.001| +|pypi|[scipy](https://pypi.org/project/scipy)|0.003| +|pypi|[numpy](https://pypi.org/project/numpy)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/pybamm-team/liionpack/badge.png b/_repos/github/pybamm-team/liionpack/badge.png index e26284de..eafceeb3 100644 Binary files a/_repos/github/pybamm-team/liionpack/badge.png and b/_repos/github/pybamm-team/liionpack/badge.png differ diff --git a/_repos/github/pybamm-team/liionpack/data.json b/_repos/github/pybamm-team/liionpack/data.json index 6f8ae0b4..6bec5660 100644 --- a/_repos/github/pybamm-team/liionpack/data.json +++ b/_repos/github/pybamm-team/liionpack/data.json @@ -6,353 +6,345 @@ } }, "pypi": { - "numpy": { - "credit": 0.1862154322882999, - "url": "https://www.numpy.org" + "liionpack": { + "credit": 0.00011927710843373518, + "url": "https://liionpack.readthedocs.io/en/latest/" }, - "scipy": { - "credit": 0.013498509211376863, - "url": "https://www.scipy.org" + "distributed": { + "credit": 0.011927710843373494, + "url": "https://distributed.dask.org" }, - "matplotlib": { - "credit": 0.09825773998060765, - "url": "https://matplotlib.org" + "dask": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/dask" }, - "pybamm": { - "credit": 0.0007615384615384663, - "url": "https://github.com/pybamm-team/PyBaMM" + "lcapy": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/lcapy" }, - "pandas": { - "credit": 0.011576744505494509, - "url": "https://pandas.pydata.org" + "matplotlib": { + "credit": 0.014879819277108432, + "url": "https://pypi.org/project/matplotlib" }, - "plotly": { - "credit": 0.0007615384615384663, - "url": "https://plotly.com/python/" + "networkx": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/networkx" }, "openpyxl": { - "credit": 0.0007615384615384663, - "url": "https://openpyxl.readthedocs.io" + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/openpyxl" }, - "tqdm": { - "credit": 0.0007615384615384663, - "url": "https://tqdm.github.io" + "pybamm": { + "credit": 0.014879819277108432, + "url": "https://pypi.org/project/pybamm" }, - "lcapy": { - "credit": 0.0007615384615384801, - "url": "https://github.com/mph-/lcapy" + "sympy": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/sympy" }, - "Ipython": { - "credit": 0.0007615384615384663, - "url": "https://ipython.org" + "ray": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/ray" }, "scikit-spatial": { - "credit": 0.0007615384615384663, - "url": "https://github.com/ajhynes7/scikit-spatial" - }, - "networkx": { - "credit": 0.005196380090497742, - "url": "https://networkx.org/" + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/scikit-spatial" }, "textwrapper": { - "credit": 0.07615384615384616, - "url": "https://github.com/tusharsadhwani/textwrapper" + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/textwrapper" }, - "guzzle-sphinx-theme": { - "credit": 0.0047120192307692306, - "url": "https://github.com/guzzle/guzzle_sphinx_theme" + "anytree": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/anytree" }, - "sphinx": { - "credit": 0.012736970749838396, - "url": "https://www.sphinx-doc.org/" + "autograd": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/autograd" }, - "black": { - "credit": 0.010815206043956043, - "url": "https://pypi.org/project/black" + "bokeh": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/bokeh" }, - "flake8": { - "credit": 0.009146860859728507, - "url": "https://pypi.org/project/flake8" + "casadi": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/casadi" }, - "sympy": { - "credit": 0.009146860859728507, - "url": "https://pypi.org/project/sympy" + "cloudpickle": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/cloudpickle" }, - "pybtex": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/pybtex" + "cycler": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/cycler" }, - "jupyter": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/jupyter" + "fonttools": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/fonttools" + }, + "fsspec": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/fsspec" + }, + "grpcio": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/grpcio" }, "imageio": { - "credit": 0.0047120192307692306, + "credit": 0.011927710843373494, "url": "https://pypi.org/project/imageio" }, - "casadi": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/casadi" - }, - "scikit-fem": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/scikit-fem" + "jinja2": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/jinja2" }, - "autograd": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/autograd" + "kiwisolver": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/kiwisolver" }, - "anytree": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/anytree" + "msgpack": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/msgpack" }, - "pytest-xdist": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/pytest-xdist" + "partd": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/partd" }, - "pytest": { - "credit": 0.02552241758241758, - "url": "https://pypi.org/project/pytest" + "pillow": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/pillow" }, - "hypothesis": { - "credit": 0.01941923076923077, - "url": "https://pypi.org/project/hypothesis" + "protobuf": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/protobuf" }, - "pytz": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/pytz" + "scikit-fem": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/scikit-fem" }, - "python-dateutil": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/python-dateutil" + "toolz": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/toolz" }, - "six": { - "credit": 0.037696153846153845, - "url": "https://pypi.org/project/six" + "aiosignal": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/aiosignal" }, - "tenacity": { - "credit": 0.037696153846153845, - "url": "https://pypi.org/project/tenacity" + "frozenlist": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/frozenlist" }, "et-xmlfile": { - "credit": 0.07539230769230769, + "credit": 0.011927710843373494, "url": "https://pypi.org/project/et-xmlfile" }, - "requests": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/requests" + "jupyter": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/jupyter" }, - "slack-sdk": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/slack-sdk" + "property-cached": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/property-cached" }, - "ipywidgets": { - "credit": 0.011937115384615385, - "url": "https://pypi.org/project/ipywidgets" + "pybtex": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/pybtex" }, "wheel": { - "credit": 0.013858880090497737, + "credit": 0.011927710843373494, "url": "https://pypi.org/project/wheel" }, - "twine": { - "credit": 0.013858880090497737, - "url": "https://pypi.org/project/twine" - }, - "py-make": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/py-make" + "future": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/future" }, - "importlib-resources": { - "credit": 0.009424038461538461, - "url": "https://pypi.org/project/importlib-resources" + "latexcodec": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/latexcodec" }, - "colorama": { - "credit": 0.011937115384615385, - "url": "https://pypi.org/project/colorama" + "MarkupSafe": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/MarkupSafe" }, - "nose": { - "credit": 0.004434841628959275, - "url": "https://pypi.org/project/nose" + "mpmath": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/mpmath" }, - "flake8-requirements": { - "credit": 0.004434841628959275, - "url": "https://pypi.org/project/flake8-requirements" + "psutil": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/psutil" }, - "flake8-comprehensions": { - "credit": 0.004434841628959275, - "url": "https://pypi.org/project/flake8-comprehensions" + "sortedcontainers": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/sortedcontainers" }, - "flake8-bugbear": { - "credit": 0.004434841628959275, - "url": "https://pypi.org/project/flake8-bugbear" + "tblib": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/tblib" }, - "ipython": { - "credit": 0.004434841628959275, - "url": "https://pypi.org/project/ipython" + "tornado": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/tornado" }, - "setuptools": { - "credit": 0.006947918552036199, - "url": "https://pypi.org/project/setuptools" + "zict": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/zict" }, - "property-cached": { - "credit": 0.004434841628959275, - "url": "https://pypi.org/project/property-cached" + "ipykernel": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/ipykernel" }, - "IPython": { - "credit": 0.004434841628959275, - "url": "https://pypi.org/project/IPython" + "ipywidgets": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/ipywidgets" }, - "trio": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/trio" + "jupyter-console": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/jupyter-console" }, - "curio": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/curio" + "locket": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/locket" }, - "testpath": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/testpath" + "nbconvert": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/nbconvert" }, - "pytest-asyncio": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pytest-asyncio" + "notebook": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/notebook" }, "qtconsole": { - "credit": 0.002513076923076923, + "credit": 0.011927710843373494, "url": "https://pypi.org/project/qtconsole" }, - "ipyparallel": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/ipyparallel" + "debugpy": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/debugpy" }, - "notebook": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/notebook" + "entrypoints": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/entrypoints" }, - "nbformat": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/nbformat" - }, - "nbconvert": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/nbconvert" + "ipython-genutils": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/ipython-genutils" }, - "ipykernel": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/ipykernel" + "jupyter-client": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/jupyter-client" }, - "Sphinx": { - "credit": 0.009366923076923077, - "url": "https://pypi.org/project/Sphinx" + "jupyter-core": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/jupyter-core" }, - "appnope": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/appnope" + "jupyterlab-widgets": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/jupyterlab-widgets" }, - "pexpect": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pexpect" + "mistune": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/mistune" }, - "traitlets": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/traitlets" + "nbclient": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/nbclient" }, - "stack-data": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/stack-data" + "nbformat": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/nbformat" }, - "pygments": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pygments" + "nest-asyncio": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/nest-asyncio" }, - "prompt-toolkit": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/prompt-toolkit" + "pandocfilters": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/pandocfilters" }, - "pickleshare": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/pickleshare" + "pyzmq": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/pyzmq" }, - "matplotlib-inline": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/matplotlib-inline" + "qtpy": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/qtpy" }, - "jedi": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/jedi" + "Send2Trash": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/Send2Trash" }, - "decorator": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/decorator" + "terminado": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/terminado" }, - "backcall": { - "credit": 0.002513076923076923, - "url": "https://pypi.org/project/backcall" + "widgetsnbextension": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/widgetsnbextension" }, - "sphinx-gallery": { - "credit": 0.010443956043956044, - "url": "https://pypi.org/project/sphinx-gallery" + "argon2-cffi": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/argon2-cffi" }, - "sphinx-bootstrap-theme": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/sphinx-bootstrap-theme" + "beautifulsoup4": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/beautifulsoup4" }, - "numpydoc": { - "credit": 0.010443956043956044, - "url": "https://pypi.org/project/numpydoc" + "bleach": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/bleach" }, - "pytest-cov": { - "credit": 0.010443956043956044, - "url": "https://pypi.org/project/pytest-cov" + "defusedxml": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/defusedxml" }, - "pre-commit": { - "credit": 0.010443956043956044, - "url": "https://pypi.org/project/pre-commit" + "heapdict": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/heapdict" }, - "importlib-metadata": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/importlib-metadata" + "jupyterlab-pygments": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/jupyterlab-pygments" }, - "codecov": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/codecov" + "prometheus-client": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/prometheus-client" }, - "pydot": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pydot" + "tinycss2": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/tinycss2" }, - "pygraphviz": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pygraphviz" + "soupsieve": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/soupsieve" }, - "lxml": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/lxml" + "webencodings": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/webencodings" }, - "texext": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/texext" + "argon2-cffi-bindings": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/argon2-cffi-bindings" }, - "nb2plots": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/nb2plots" + "fastjsonschema": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/fastjsonschema" }, - "pillow": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pillow" + "cffi": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/cffi" }, - "pydata-sphinx-theme": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pydata-sphinx-theme" + "pycparser": { + "credit": 0.011927710843373494, + "url": "https://pypi.org/project/pycparser" }, - "mypy": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/mypy" + "scipy": { + "credit": 0.0029521084337349396, + "url": "https://pypi.org/project/scipy" }, - "pyupgrade": { - "credit": 0.00359010989010989, - "url": "https://pypi.org/project/pyupgrade" + "numpy": { + "credit": 0.0029521084337349396, + "url": "https://pypi.org/project/numpy" } } } \ No newline at end of file diff --git a/_repos/github/qMRLab/qMRLab/badge.png b/_repos/github/qMRLab/qMRLab/badge.png index 4f8de37d..e0d52117 100644 Binary files a/_repos/github/qMRLab/qMRLab/badge.png and b/_repos/github/qMRLab/qMRLab/badge.png differ diff --git a/_repos/github/qpv-research-group/solcore5/README.md b/_repos/github/qpv-research-group/solcore5/README.md index ed2cada2..de1a68fa 100644 --- a/_repos/github/qpv-research-group/solcore5/README.md +++ b/_repos/github/qpv-research-group/solcore5/README.md @@ -8,18 +8,40 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.222| -|pypi|[matplotlib](https://matplotlib.org)|0.124| -|pypi|[tmm](http://pypi.python.org/pypi/tmm)|0.099| -|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.099| -|pypi|[cycler](https://github.com/matplotlib/cycler)|0.099| -|pypi|[pyyaml](https://pyyaml.org/)|0.099| -|pypi|[joblib](https://joblib.readthedocs.io)|0.099| -|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.049| -|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.049| -|pypi|[jupyter](http://jupyter.org)|0.025| +|pypi|[matplotlib](https://matplotlib.org)|0.146| +|pypi|[solcore](https://github.com/qpv-research-group/solcore5)|0.11| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.11| +|pypi|[tmm](http://pypi.python.org/pypi/tmm)|0.11| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.109| +|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.054| +|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.054| +|pypi|[numpy](https://www.numpy.org)|0.036| +|pypi|[pytest](https://pypi.org/project/pytest)|0.027| +|pypi|[jupyter](http://jupyter.org)|0.027| +|pypi|[cffi](https://pypi.org/project/cffi)|0.012| +|pypi|[coverage](https://pypi.org/project/coverage)|0.011| |setup.py|github/qpv-research-group/solcore5|0.01| -|pypi|[requests](https://requests.readthedocs.io)|0.003| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.008| +|pypi|[brotli](https://github.com/google/brotli)|0.008| +|pypi|[lxml](https://lxml.de/)|0.008| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.008| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.008| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.007| +|pypi|[packaging](https://pypi.org/project/packaging)|0.007| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.007| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.007| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.007| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.007| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.007| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.007| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.007| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.007| +|pypi|[olefile](https://pypi.org/project/olefile)|0.007| +|pypi|[enum34](https://pypi.org/project/enum34)|0.005| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.004| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.004| +|pypi|[requests](https://pypi.org/project/requests)|0.003| |pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.003| |pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.003| |pypi|[wheel](https://pypi.org/project/wheel)|0.003| @@ -27,9 +49,21 @@ exclude_from_search: true |pypi|[py-make](https://pypi.org/project/py-make)|0.003| |pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.003| |pypi|[colorama](https://pypi.org/project/colorama)|0.003| -|pypi|[scipy](https://www.scipy.org)|0.001| +|pypi|[psutil](https://pypi.org/project/psutil)|0.001| +|pypi|[flake8](https://pypi.org/project/flake8)|0.001| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.001| |pypi|[natsort](https://github.com/SethMMorton/natsort)|0.001| |pypi|[yabox](https://github.com/pablormier/yabox)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/qpv-research-group/solcore5/badge.png b/_repos/github/qpv-research-group/solcore5/badge.png index 956bd2e6..35c7e734 100644 Binary files a/_repos/github/qpv-research-group/solcore5/badge.png and b/_repos/github/qpv-research-group/solcore5/badge.png differ diff --git a/_repos/github/qpv-research-group/solcore5/data.json b/_repos/github/qpv-research-group/solcore5/data.json index 61b7f5da..608a3f25 100644 --- a/_repos/github/qpv-research-group/solcore5/data.json +++ b/_repos/github/qpv-research-group/solcore5/data.json @@ -6,93 +6,269 @@ } }, "pypi": { - "numpy": { - "credit": 0.22151250000000003, - "url": "https://www.numpy.org" + "solcore": { + "credit": 0.11, + "url": "https://github.com/qpv-research-group/solcore5" + }, + "cycler": { + "credit": 0.11, + "url": "https://github.com/matplotlib/cycler" }, "matplotlib": { - "credit": 0.1235025, + "credit": 0.14560192307692307, "url": "https://matplotlib.org" }, - "scipy": { - "credit": 0.0009900000000000048, - "url": "https://www.scipy.org" - }, - "tmm": { - "credit": 0.099, - "url": "http://pypi.python.org/pypi/tmm" - }, "natsort": { - "credit": 0.0009900000000000048, + "credit": 0.0011000000000000038, "url": "https://github.com/SethMMorton/natsort" }, - "regex": { - "credit": 0.099, - "url": "https://github.com/mrabarnett/mrab-regex" - }, - "cycler": { - "credit": 0.099, - "url": "https://github.com/matplotlib/cycler" - }, - "pyyaml": { - "credit": 0.099, - "url": "https://pyyaml.org/" + "tmm": { + "credit": 0.11, + "url": "http://pypi.python.org/pypi/tmm" }, "yabox": { - "credit": 0.0009900000000000048, + "credit": 0.0011000000000000038, "url": "https://github.com/pablormier/yabox" }, - "joblib": { - "credit": 0.099, - "url": "https://joblib.readthedocs.io" + "fonttools": { + "credit": 0.0011000000000000038, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0011000000000000038, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0011000000000000038, + "url": "https://python-pillow.org" }, "PyICU": { - "credit": 0.049005, + "credit": 0.05445, "url": "https://gitlab.pyicu.org/main/pyicu" }, "fastnumbers": { - "credit": 0.049005, + "credit": 0.05445, "url": "https://github.com/SethMMorton/fastnumbers" }, "tqdm": { - "credit": 0.0002450249999999994, + "credit": 0.00027225000000000166, "url": "https://tqdm.github.io" }, "jupyter": { - "credit": 0.0245025, + "credit": 0.027225, "url": "http://jupyter.org" }, + "numpy": { + "credit": 0.035518153846153845, + "url": "https://www.numpy.org" + }, + "xattr": { + "credit": 8.376923076923101e-05, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 8.376923076923101e-05, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.008376923076923077, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.008376923076923077, + "url": "https://github.com/google/brotli" + }, + "scipy": { + "credit": 8.376923076923101e-05, + "url": "https://www.scipy.org" + }, + "brotlicffi": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 8.376923076923101e-05, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.008376923076923077, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 8.376923076923101e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.1089, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 6.806250000000041e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.008188442307692308, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest": { + "credit": 0.027366360576923078, + "url": "https://pypi.org/project/pytest" + }, + "pyroma": { + "credit": 0.00680625, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.00680625, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00680625, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00680625, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.010952826923076923, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.00680625, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00680625, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.008188442307692308, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.00680625, + "url": "https://pypi.org/project/olefile" + }, "requests": { - "credit": 0.003032184375, - "url": "https://requests.readthedocs.io" + "credit": 0.0033690937499999997, + "url": "https://pypi.org/project/requests" }, "slack-sdk": { - "credit": 0.003032184375, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/slack-sdk" }, "ipywidgets": { - "credit": 0.003032184375, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/ipywidgets" }, "wheel": { - "credit": 0.003032184375, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/wheel" }, "twine": { - "credit": 0.003032184375, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/twine" }, "py-make": { - "credit": 0.003032184375, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/py-make" }, "importlib-resources": { - "credit": 0.003032184375, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/importlib-resources" }, "colorama": { - "credit": 0.003032184375, + "credit": 0.0033690937499999997, "url": "https://pypi.org/project/colorama" + }, + "cffi": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.004146576923076923, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.004146576923076923, + "url": "https://pypi.org/project/pytest-xdist" + }, + "enum34": { + "credit": 0.005183221153846154, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.008293153846153846, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0013821923076923076, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0013821923076923076, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0013821923076923076, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0010366442307692307, + "url": "https://pypi.org/project/appdirs" } } } \ No newline at end of file diff --git a/_repos/github/radifar/PyPLIF-HIPPOS/README.md b/_repos/github/radifar/PyPLIF-HIPPOS/README.md index 5b3ed564..378633cf 100644 --- a/_repos/github/radifar/PyPLIF-HIPPOS/README.md +++ b/_repos/github/radifar/PyPLIF-HIPPOS/README.md @@ -8,64 +8,12 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[openbabel](http://openbabel.org/)|0.247| -|pypi|[numpy](https://www.numpy.org)|0.247| -|pypi|[bitarray](https://github.com/ilanschnell/bitarray)|0.247| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.027| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.026| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.026| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.019| |setup.py|github/radifar/PyPLIF-HIPPOS|0.01| -|pypi|[flake8](https://pypi.org/project/flake8)|0.009| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.007| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.007| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.007| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.007| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.007| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.007| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.007| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.006| -|pypi|[attrs](https://pypi.org/project/attrs)|0.006| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005| -|pypi|[mock](https://pypi.org/project/mock)|0.005| -|pypi|[mypy](https://pypi.org/project/mypy)|0.005| -|pypi|[filelock](https://pypi.org/project/filelock)|0.005| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.004| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.004| -|pypi|[pep517](https://pypi.org/project/pep517)|0.003| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.003| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|0.002| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.001| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.001| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.001| -|pypi|[toml](https://pypi.org/project/toml)|0.001| -|pypi|[docutils](https://pypi.org/project/docutils)|0.001| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.001| -|pypi|[path](https://pypi.org/project/path)|0.001| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.001| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| -|pypi|[keyring](https://pypi.org/project/keyring)|0.001| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.001| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.001| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| +|pypi|[openbabel](http://openbabel.org/)|0.004| +|pypi|[pyplif-hippos](https://github.com/radifar/PyPLIF-HIPPOS)|0.003| +|pypi|[bitarray](https://github.com/ilanschnell/bitarray)|0.003| +|pypi|[numpy](https://www.numpy.org)|0.001| +|pypi|[bitstring](https://github.com/scott-griffiths/bitstring)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/radifar/PyPLIF-HIPPOS/badge.png b/_repos/github/radifar/PyPLIF-HIPPOS/badge.png index 097ce5b0..91d5de39 100644 Binary files a/_repos/github/radifar/PyPLIF-HIPPOS/badge.png and b/_repos/github/radifar/PyPLIF-HIPPOS/badge.png differ diff --git a/_repos/github/radifar/PyPLIF-HIPPOS/data.json b/_repos/github/radifar/PyPLIF-HIPPOS/data.json index 51b5c794..f7ddcc87 100644 --- a/_repos/github/radifar/PyPLIF-HIPPOS/data.json +++ b/_repos/github/radifar/PyPLIF-HIPPOS/data.json @@ -6,241 +6,25 @@ } }, "pypi": { - "openbabel": { - "credit": 0.2475, - "url": "http://openbabel.org/" - }, - "numpy": { - "credit": 0.2475, - "url": "https://www.numpy.org" + "pyplif-hippos": { + "credit": 0.0033000000000000004, + "url": "https://github.com/radifar/PyPLIF-HIPPOS" }, "bitarray": { - "credit": 0.2475, + "credit": 0.0033000000000000004, "url": "https://github.com/ilanschnell/bitarray" }, - "pytest_runner": { - "credit": 0.002475000000000005, - "url": "https://github.com/pytest-dev/pytest-runner/" - }, - "pytest-mypy": { - "credit": 0.006985905082417583, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-black": { - "credit": 0.025645501236263732, - "url": "https://github.com/shopkeep/pytest-black" - }, - "types-setuptools": { - "credit": 0.018848076923076922, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.00018848076923077065, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.006985905082417583, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.006985905082417583, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.006985905082417583, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.006985905082417583, - "url": "https://github.com/jaraco/pytest-checkdocs" - }, - "pytest": { - "credit": 0.027044970947802196, - "url": "https://docs.pytest.org/en/latest/" - }, - "jaraco.tidelift": { - "credit": 0.00018848076923077065, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.006985905082417583, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.006985905082417583, - "url": "https://github.com/jaraco/jaraco.packaging" - }, - "sphinx": { - "credit": 0.025645501236263732, - "url": "https://www.sphinx-doc.org/" - }, - "mypy": { - "credit": 0.004664899038461538, - "url": "https://pypi.org/project/mypy" - }, - "filelock": { - "credit": 0.004664899038461538, - "url": "https://pypi.org/project/filelock" - }, - "attrs": { - "credit": 0.005831123798076923, - "url": "https://pypi.org/project/attrs" - }, - "mock": { - "credit": 0.004898143990384615, - "url": "https://pypi.org/project/mock" - }, - "virtualenv": { - "credit": 0.006064368749999999, - "url": "https://pypi.org/project/virtualenv" - }, - "pytest-shutil": { - "credit": 0.0037319192307692303, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.0037319192307692303, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.0013328282967032966, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.0013328282967032966, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.0013328282967032966, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.0013328282967032966, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.0025768013736263734, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.005386847699175823, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pep517": { - "credit": 0.0028877946428571425, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.0013328282967032966, - "url": "https://pypi.org/project/docutils" - }, - "xmlschema": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/nose" - }, - "hypothesis": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.0011662247596153845, - "url": "https://pypi.org/project/iniconfig" - }, - "importlib-resources": { - "credit": 0.0012439730769230768, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.0012439730769230768, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.0012439730769230768, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.0012439730769230768, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.0013328282967032966, - "url": "https://pypi.org/project/types-python-dateutil" + "openbabel": { + "credit": 0.0043890000000000005, + "url": "http://openbabel.org/" }, - "path": { - "credit": 0.0013328282967032966, - "url": "https://pypi.org/project/path" + "numpy": { + "credit": 0.001089, + "url": "https://www.numpy.org" }, - "python-dateutil": { - "credit": 0.0013328282967032966, - "url": "https://pypi.org/project/python-dateutil" + "bitstring": { + "credit": 0.001089, + "url": "https://github.com/scott-griffiths/bitstring" } } } \ No newline at end of file diff --git a/_repos/github/rajeshrinet/pystokes/README.md b/_repos/github/rajeshrinet/pystokes/README.md index 3ada3db3..1eece5f3 100644 --- a/_repos/github/rajeshrinet/pystokes/README.md +++ b/_repos/github/rajeshrinet/pystokes/README.md @@ -8,37 +8,54 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.394| -|pypi|[cython](http://cython.org/)|0.198| -|pypi|[matplotlib](https://matplotlib.org)|0.198| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.013| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.012| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.012| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.012| -|pypi|[hunter](https://pypi.org/project/hunter)|0.012| -|pypi|[fields](https://pypi.org/project/fields)|0.012| -|pypi|[coverage](https://pypi.org/project/coverage)|0.012| +|pypi|[matplotlib](https://matplotlib.org)|0.218| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.165| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.163| +|pypi|[numpy](https://www.numpy.org)|0.094| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.042| +|pypi|[cython](http://cython.org/)|0.041| +|pypi|[cffi](https://pypi.org/project/cffi)|0.019| +|pypi|[coverage](https://pypi.org/project/coverage)|0.018| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.013| +|pypi|[brotli](https://github.com/google/brotli)|0.013| +|pypi|[lxml](https://lxml.de/)|0.013| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.01| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.01| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.01| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.01| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.01| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.01| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.01| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.01| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.01| +|pypi|[olefile](https://pypi.org/project/olefile)|0.01| |setup.py|github/rajeshrinet/pystokes|0.01| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[requests](https://pypi.org/project/requests)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[mock](https://pypi.org/project/mock)|0.006| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[colorama](https://pypi.org/project/colorama)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.006| -|pypi|[tomli](https://pypi.org/project/tomli)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[packaging](https://pypi.org/project/packaging)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[attrs](https://pypi.org/project/attrs)|0.006| -|pypi|[wheel](https://github.com/pypa/wheel)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.001| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.007| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.006| +|pypi|[six](https://pypi.org/project/six)|0.003| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[pystokes](https://github.com/rajeshrinet/pystokes)|0.002| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.002| +|pypi|[pillow](https://python-pillow.org)|0.002| +|pypi|[scandir](https://pypi.org/project/scandir)|0.002| +|pypi|[typing](https://pypi.org/project/typing)|0.002| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[pytz](https://pypi.org/project/pytz)|0.002| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.002| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| +|pypi|[scipy](https://www.scipy.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/rajeshrinet/pystokes/badge.png b/_repos/github/rajeshrinet/pystokes/badge.png index 7635b983..d92094d3 100644 Binary files a/_repos/github/rajeshrinet/pystokes/badge.png and b/_repos/github/rajeshrinet/pystokes/badge.png differ diff --git a/_repos/github/rajeshrinet/pystokes/data.json b/_repos/github/rajeshrinet/pystokes/data.json index 8d0120a4..11a6b593 100644 --- a/_repos/github/rajeshrinet/pystokes/data.json +++ b/_repos/github/rajeshrinet/pystokes/data.json @@ -6,125 +6,229 @@ } }, "pypi": { - "wheel": { - "credit": 0.0019800000000000095, - "url": "https://github.com/pypa/wheel" + "pystokes": { + "credit": 0.0016500000000000126, + "url": "https://github.com/rajeshrinet/pystokes" }, - "cython": { - "credit": 0.198, - "url": "http://cython.org/" + "matplotlib": { + "credit": 0.21840288461538462, + "url": "https://matplotlib.org" }, - "numpy": { - "credit": 0.39402000000000004, - "url": "https://www.numpy.org" + "cycler": { + "credit": 0.165, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0016500000000000126, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0016500000000000126, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0016500000000000126, + "url": "https://python-pillow.org" }, "scipy": { - "credit": 0.0019800000000000095, + "credit": 0.000534028846153849, "url": "https://www.scipy.org" }, - "matplotlib": { - "credit": 0.198, - "url": "https://matplotlib.org" + "numpy": { + "credit": 0.09370635576923077, + "url": "https://www.numpy.org" + }, + "cython": { + "credit": 0.0408375, + "url": "http://cython.org/" + }, + "xattr": { + "credit": 0.00012565384615384652, + "url": "http://github.com/xattr/xattr" + }, + "unicodedata2": { + "credit": 0.00012565384615384652, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.012565384615384615, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.012565384615384615, + "url": "https://github.com/google/brotli" + }, + "brotlicffi": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 0.00012565384615384652, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 0.00012565384615384652, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 0.00012565384615384652, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.012565384615384615, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 0.00012565384615384652, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.16335, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 0.00010209375000000062, + "url": "https://github.com/pytest-dev/pytest-timeout" }, "pytest-cov": { - "credit": 0.0009800999999999976, + "credit": 0.002175382211538462, "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.013108837499999998, + "credit": 0.04231295102163461, "url": "https://docs.pytest.org/en/latest/" }, - "virtualenv": { - "credit": 0.0121287375, - "url": "https://virtualenv.pypa.io/" - }, - "pytest-xdist": { - "credit": 0.0121287375, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.0121287375, - "url": "https://pypi.org/project/six" + "pyroma": { + "credit": 0.010209375, + "url": "https://pypi.org/project/pyroma" }, - "process-tests": { - "credit": 0.0121287375, - "url": "https://pypi.org/project/process-tests" + "packaging": { + "credit": 0.010209375, + "url": "https://pypi.org/project/packaging" }, - "hunter": { - "credit": 0.0121287375, - "url": "https://pypi.org/project/hunter" + "markdown2": { + "credit": 0.010209375, + "url": "https://pypi.org/project/markdown2" }, - "fields": { - "credit": 0.0121287375, - "url": "https://pypi.org/project/fields" + "defusedxml": { + "credit": 0.010209375, + "url": "https://pypi.org/project/defusedxml" }, "coverage": { - "credit": 0.0121287375, + "credit": 0.017692650540865384, "url": "https://pypi.org/project/coverage" }, - "xmlschema": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/xmlschema" + "check-manifest": { + "credit": 0.010209375, + "url": "https://pypi.org/project/check-manifest" }, - "requests": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/requests" + "sphinxext-opengraph": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "pygments": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/pygments" + "sphinx-rtd-theme": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "nose": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/nose" + "sphinx-removed-in": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "mock": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/mock" + "sphinx-issues": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-issues" }, - "hypothesis": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/hypothesis" + "sphinx-copybutton": { + "credit": 0.010209375, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "argcomplete": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/argcomplete" + "sphinx": { + "credit": 0.012282663461538461, + "url": "https://pypi.org/project/sphinx" }, - "colorama": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/colorama" + "olefile": { + "credit": 0.010209375, + "url": "https://pypi.org/project/olefile" }, - "atomicwrites": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/atomicwrites" + "cffi": { + "credit": 0.01865959615384615, + "url": "https://pypi.org/project/cffi" }, - "importlib-metadata": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/importlib-metadata" + "pytest-randomly": { + "credit": 0.0062198653846153844, + "url": "https://pypi.org/project/pytest-randomly" }, - "tomli": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/tomli" + "pytest-xdist": { + "credit": 0.007483275540865385, + "url": "https://pypi.org/project/pytest-xdist" }, - "py": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/py" + "enum34": { + "credit": 0.007774831730769231, + "url": "https://pypi.org/project/enum34" }, - "pluggy": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/pluggy" + "mpmath": { + "credit": 0.012439730769230769, + "url": "https://pypi.org/project/mpmath" }, - "packaging": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/packaging" + "psutil": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0020732884615384615, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/scandir" }, - "iniconfig": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/iniconfig" + "typing": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/typing" }, - "attrs": { - "credit": 0.00606436875, - "url": "https://pypi.org/project/attrs" + "backports.os": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/backports.os" + }, + "six": { + "credit": 0.002818376502403846, + "url": "https://pypi.org/project/six" + }, + "setuptools": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0015549663461538461, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/virtualenv" + }, + "process-tests": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.0012634101562499999, + "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/raspishake/rsudp/README.md b/_repos/github/raspishake/rsudp/README.md index d0eac4ad..03bf2659 100644 --- a/_repos/github/raspishake/rsudp/README.md +++ b/_repos/github/raspishake/rsudp/README.md @@ -8,35 +8,60 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.176| -|pypi|[matplotlib](https://matplotlib.org)|0.176| -|pypi|[pydub](http://pydub.com)|0.165| -|pypi|[requests](https://pypi.org/project/requests)|0.093| -|pypi|[requests-oauthlib](https://pypi.org/project/requests-oauthlib)|0.082| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.02| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.02| -|pypi|[ujson](https://pypi.org/project/ujson)|0.02| -|pypi|[cachetools](https://pypi.org/project/cachetools)|0.02| -|pypi|[pytz](https://pypi.org/project/pytz)|0.02| -|pypi|[APScheduler](https://pypi.org/project/APScheduler)|0.02| -|pypi|[tornado](https://pypi.org/project/tornado)|0.02| -|pypi|[certifi](https://pypi.org/project/certifi)|0.02| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.016| -|pypi|[pyshp](https://github.com/GeospatialPython/pyshp)|0.011| -|pypi|[cartopy](https://scitools.org.uk/cartopy/docs/latest/)|0.011| -|pypi|[geographiclib](https://geographiclib.sourceforge.io/1.52/python)|0.011| -|pypi|[pyproj](https://pypi.org/project/pyproj)|0.011| -|pypi|[packaging](https://pypi.org/project/packaging)|0.011| -|pypi|[decorator](https://pypi.org/project/decorator)|0.011| -|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.011| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.011| -|pypi|[lxml](https://pypi.org/project/lxml)|0.011| -|pypi|[scipy](https://pypi.org/project/scipy)|0.011| +|pypi|[tzdata](https://github.com/python/tzdata)|0.091| +|pypi|[matplotlib](https://matplotlib.org)|0.058| +|pypi|[pydub](http://pydub.com)|0.055| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.053| +|pypi|[tornado](http://www.tornadoweb.org/)|0.053| +|pypi|[lxml](https://lxml.de/)|0.05| +|pypi|[sqlalchemy](http://www.sqlalchemy.org)|0.05| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.047| +|pypi|[future](https://python-future.org)|0.047| +|pypi|[greenlet](https://greenlet.readthedocs.io/)|0.047| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.047| +|pypi|[requests](https://pypi.org/project/requests)|0.042| +|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|0.032| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.024| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.023| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.021| +|pypi|[backports.zoneinfo](https://github.com/pganssle/zoneinfo)|0.021| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.016| +|pypi|[blinker](https://pypi.org/project/blinker)|0.016| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.016| +|pypi|[numpy](https://pypi.org/project/numpy)|0.011| +|pypi|[pytz](https://pypi.org/project/pytz)|0.011| |setup.py|github/raspishake/rsudp|0.01| -|pypi|[pytest-metadata](https://pypi.org/project/pytest-metadata)|0.005| -|pypi|[obspy](https://www.obspy.org)|0.002| -|pypi|[twython](https://github.com/ryanmcgrath/twython/tree/master)|0.002| -|pypi|[python-telegram-bot](https://python-telegram-bot.org/)|0.002| +|pypi|[pytest](https://pypi.org/project/pytest)|0.008| +|pypi|[obspy](https://www.obspy.org)|0.008| +|pypi|[python-telegram-bot](https://python-telegram-bot.org/)|0.008| +|pypi|[twython](https://github.com/ryanmcgrath/twython/tree/master)|0.008| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.008| +|pypi|[APScheduler](https://github.com/agronholm/apscheduler)|0.006| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.006| +|pypi|[ujson](https://pypi.org/project/ujson)|0.006| +|pypi|[certifi](https://pypi.org/project/certifi)|0.006| +|pypi|[pytz-deprecation-shim](https://github.com/pganssle/pytz-deprecation-shim)|0.006| +|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.005| +|pypi|[zest.releaser](https://pypi.org/project/zest.releaser)|0.005| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.005| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.005| +|pypi|[black](https://pypi.org/project/black)|0.005| +|pypi|[tzlocal](https://pypi.org/project/tzlocal)|0.005| +|pypi|[gevent](https://pypi.org/project/gevent)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| +|pypi|[trollius](https://pypi.org/project/trollius)|0.005| +|pypi|[futures](https://pypi.org/project/futures)|0.005| +|pypi|[funcsigs](https://pypi.org/project/funcsigs)|0.005| +|pypi|[six](https://pypi.org/project/six)|0.005| +|pypi|[pyshp](https://pypi.org/project/pyshp)|0.003| +|pypi|[cartopy](https://pypi.org/project/cartopy)|0.003| +|pypi|[geographiclib](https://pypi.org/project/geographiclib)|0.003| +|pypi|[pytest-json-report](https://pypi.org/project/pytest-json-report)|0.003| +|pypi|[pyproj](https://pypi.org/project/pyproj)|0.003| +|pypi|[packaging](https://pypi.org/project/packaging)|0.003| +|pypi|[decorator](https://pypi.org/project/decorator)|0.003| +|pypi|[scipy](https://pypi.org/project/scipy)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/raspishake/rsudp/badge.png b/_repos/github/raspishake/rsudp/badge.png index 6837dba4..210221d0 100644 Binary files a/_repos/github/raspishake/rsudp/badge.png and b/_repos/github/raspishake/rsudp/badge.png differ diff --git a/_repos/github/raspishake/rsudp/data.json b/_repos/github/raspishake/rsudp/data.json index a4b01222..0c409e50 100644 --- a/_repos/github/raspishake/rsudp/data.json +++ b/_repos/github/raspishake/rsudp/data.json @@ -6,121 +6,225 @@ } }, "pypi": { - "obspy": { - "credit": 0.0016500000000000126, - "url": "https://www.obspy.org" - }, - "numpy": { - "credit": 0.17589000000000002, - "url": "https://www.numpy.org" + "rsudp": { + "credit": 0.00047142857142857403, + "url": "https://github.com/raspishake/rsudp" }, "matplotlib": { - "credit": 0.17589000000000002, + "credit": 0.058032857142857136, "url": "https://matplotlib.org" }, + "obspy": { + "credit": 0.00825, + "url": "https://www.obspy.org" + }, "pydub": { - "credit": 0.165, + "credit": 0.054921428571428565, "url": "http://pydub.com" }, + "python-telegram-bot": { + "credit": 0.00825, + "url": "https://python-telegram-bot.org/" + }, + "APScheduler": { + "credit": 0.006305357142857145, + "url": "https://github.com/agronholm/apscheduler" + }, + "cachetools": { + "credit": 0.05297678571428571, + "url": "https://github.com/tkem/cachetools/" + }, "twython": { - "credit": 0.0016500000000000126, + "credit": 0.00825, "url": "https://github.com/ryanmcgrath/twython/tree/master" }, - "python-telegram-bot": { - "credit": 0.0016500000000000126, - "url": "https://python-telegram-bot.org/" + "cycler": { + "credit": 0.04714285714285714, + "url": "https://github.com/matplotlib/cycler" + }, + "future": { + "credit": 0.04714285714285714, + "url": "https://python-future.org" + }, + "kiwisolver": { + "credit": 0.00047142857142857403, + "url": "https://github.com/nucleic/kiwi" + }, + "requests-oauthlib": { + "credit": 0.023807142857142857, + "url": "https://github.com/requests/requests-oauthlib" + }, + "tornado": { + "credit": 0.05297678571428571, + "url": "http://www.tornadoweb.org/" + }, + "lxml": { + "credit": 0.05025428571428571, + "url": "https://lxml.de/" + }, + "sqlalchemy": { + "credit": 0.05025428571428571, + "url": "http://www.sqlalchemy.org" + }, + "greenlet": { + "credit": 0.04714285714285714, + "url": "https://greenlet.readthedocs.io/" + }, + "oauthlib": { + "credit": 0.03158571428571428, + "url": "https://github.com/oauthlib/oauthlib" + }, + "tzlocal": { + "credit": 0.005138571428571431, + "url": "https://pypi.org/project/tzlocal" + }, + "backports.zoneinfo": { + "credit": 0.021214285714285713, + "url": "https://github.com/pganssle/zoneinfo" + }, + "pytz-deprecation-shim": { + "credit": 0.005657142857142859, + "url": "https://github.com/pganssle/pytz-deprecation-shim" + }, + "tzdata": { + "credit": 0.09122142857142856, + "url": "https://github.com/python/tzdata" + }, + "numpy": { + "credit": 0.010889999999999999, + "url": "https://pypi.org/project/numpy" }, "pyshp": { - "credit": 0.01089, - "url": "https://github.com/GeospatialPython/pyshp" + "credit": 0.003111428571428571, + "url": "https://pypi.org/project/pyshp" }, "cartopy": { - "credit": 0.01089, - "url": "https://scitools.org.uk/cartopy/docs/latest/" + "credit": 0.003111428571428571, + "url": "https://pypi.org/project/cartopy" }, "geographiclib": { - "credit": 0.01089, - "url": "https://geographiclib.sourceforge.io/1.52/python" + "credit": 0.003111428571428571, + "url": "https://pypi.org/project/geographiclib" }, "pytest-json-report": { - "credit": 0.00010890000000000032, - "url": "https://github.com/numirias/pytest-json-report" + "credit": 0.003111428571428571, + "url": "https://pypi.org/project/pytest-json-report" }, "pytest": { - "credit": 0.01628055, - "url": "https://docs.pytest.org/en/latest/" + "credit": 0.008297142857142855, + "url": "https://pypi.org/project/pytest" }, "pyproj": { - "credit": 0.01089, + "credit": 0.003111428571428571, "url": "https://pypi.org/project/pyproj" }, "packaging": { - "credit": 0.01089, + "credit": 0.003111428571428571, "url": "https://pypi.org/project/packaging" }, "requests": { - "credit": 0.092565, + "credit": 0.04200428571428571, "url": "https://pypi.org/project/requests" }, "decorator": { - "credit": 0.01089, + "credit": 0.003111428571428571, "url": "https://pypi.org/project/decorator" }, - "sqlalchemy": { - "credit": 0.01089, - "url": "https://pypi.org/project/sqlalchemy" - }, "setuptools": { - "credit": 0.01089, + "credit": 0.007778571428571428, "url": "https://pypi.org/project/setuptools" }, - "lxml": { - "credit": 0.01089, - "url": "https://pypi.org/project/lxml" - }, "scipy": { - "credit": 0.01089, + "credit": 0.003111428571428571, "url": "https://pypi.org/project/scipy" }, - "requests-oauthlib": { - "credit": 0.081675, - "url": "https://pypi.org/project/requests-oauthlib" - }, "PySocks": { - "credit": 0.02041875, + "credit": 0.005833928571428571, "url": "https://pypi.org/project/PySocks" }, "cryptography": { - "credit": 0.02041875, + "credit": 0.021391071428571426, "url": "https://pypi.org/project/cryptography" }, "ujson": { - "credit": 0.02041875, + "credit": 0.005833928571428571, "url": "https://pypi.org/project/ujson" }, - "cachetools": { - "credit": 0.02041875, - "url": "https://pypi.org/project/cachetools" - }, "pytz": { - "credit": 0.02041875, + "credit": 0.010501071428571427, "url": "https://pypi.org/project/pytz" }, - "APScheduler": { - "credit": 0.02041875, - "url": "https://pypi.org/project/APScheduler" - }, - "tornado": { - "credit": 0.02041875, - "url": "https://pypi.org/project/tornado" - }, "certifi": { - "credit": 0.02041875, + "credit": 0.005833928571428571, "url": "https://pypi.org/project/certifi" }, - "pytest-metadata": { - "credit": 0.00539055, - "url": "https://pypi.org/project/pytest-metadata" + "gevent": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/gevent" + }, + "sphinx-rtd-theme": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/sphinx" + }, + "trollius": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/trollius" + }, + "futures": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/futures" + }, + "funcsigs": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/funcsigs" + }, + "six": { + "credit": 0.004667142857142857, + "url": "https://pypi.org/project/six" + }, + "typing-extensions": { + "credit": 0.046671428571428565, + "url": "https://pypi.org/project/typing-extensions" + }, + "pyjwt": { + "credit": 0.015557142857142854, + "url": "https://pypi.org/project/pyjwt" + }, + "blinker": { + "credit": 0.015557142857142854, + "url": "https://pypi.org/project/blinker" + }, + "pytest-mock": { + "credit": 0.005185714285714285, + "url": "https://pypi.org/project/pytest-mock" + }, + "zest.releaser": { + "credit": 0.005185714285714285, + "url": "https://pypi.org/project/zest.releaser" + }, + "pytest-cov": { + "credit": 0.005185714285714285, + "url": "https://pypi.org/project/pytest-cov" + }, + "pyroma": { + "credit": 0.005185714285714285, + "url": "https://pypi.org/project/pyroma" + }, + "black": { + "credit": 0.005185714285714285, + "url": "https://pypi.org/project/black" + }, + "importlib-resources": { + "credit": 0.023335714285714283, + "url": "https://pypi.org/project/importlib-resources" + }, + "python-dateutil": { + "credit": 0.015557142857142854, + "url": "https://pypi.org/project/python-dateutil" } } } \ No newline at end of file diff --git a/_repos/github/recipy/recipy/README.md b/_repos/github/recipy/recipy/README.md index ccd84562..e8b6377b 100644 --- a/_repos/github/recipy/recipy/README.md +++ b/_repos/github/recipy/recipy/README.md @@ -8,66 +8,73 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.138| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.073| -|pypi|[colorama](https://github.com/tartley/colorama)|0.057| -|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.055| -|pypi|[docopt](http://docopt.org)|0.055| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.055| -|pypi|[six](https://github.com/benjaminp/six)|0.055| -|pypi|[svn](https://github.com/dsoprea/PySvn)|0.055| -|pypi|[binaryornot](https://github.com/audreyr/binaryornot)|0.055| -|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.034| -|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.034| -|pypi|[click](https://pypi.org/project/click)|0.028| -|pypi|[Babel](http://babel.pocoo.org/)|0.027| -|pypi|[smmap](https://pypi.org/project/smmap)|0.027| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.022| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.022| -|pypi|[docutils](https://pypi.org/project/docutils)|0.02| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.02| -|pypi|[visitor](http://github.com/mbr/visitor)|0.018| -|pypi|[dominate](https://github.com/Knio/dominate/)|0.018| -|pypi|[commonmark](https://pypi.org/project/commonmark)|0.018| -|pypi|[python-dotenv](https://github.com/theskumar/python-dotenv)|0.012| -|pypi|[asgiref](https://github.com/django/asgiref/)|0.012| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.051| +|pypi|[smmap](https://github.com/gitpython-developers/smmap)|0.051| +|pypi|[mypy](https://pypi.org/project/mypy)|0.045| +|pypi|[flake8](https://pypi.org/project/flake8)|0.04| +|pypi|[Flask](https://pypi.org/project/Flask)|0.04| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.039| +|pypi|[pytest](https://pypi.org/project/pytest)|0.036| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.035| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.035| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.035| +|pypi|[dominate](https://github.com/Knio/dominate/)|0.034| +|pypi|[visitor](http://github.com/mbr/visitor)|0.034| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.03| +|pypi|[colorama](https://github.com/tartley/colorama)|0.026| +|pypi|[alabaster](https://alabaster.readthedocs.io)|0.026| +|pypi|[snowballstemmer](https://github.com/snowballstem/snowball)|0.026| +|pypi|[imagesize](https://github.com/shibukawa/imagesize_py)|0.026| +|pypi|[recipy](http://www.recipy.org)|0.025| +|pypi|[tinydb](https://github.com/msiemens/tinydb)|0.025| +|pypi|[binaryornot](https://github.com/audreyr/binaryornot)|0.025| +|pypi|[docopt](http://docopt.org)|0.025| +|pypi|[svn](https://github.com/dsoprea/PySvn)|0.025| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.025| +|pypi|[chardet](https://github.com/chardet/chardet)|0.025| +|pypi|[nose](http://readthedocs.org/docs/nose/)|0.025| +|pypi|[pytz](https://pypi.org/project/pytz)|0.025| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.025| +|pypi|[email-validator](https://pypi.org/project/email-validator)|0.019| +|pypi|[gitdb](https://github.com/gitpython-developers/gitdb)|0.013| +|pypi|[Babel](https://pypi.org/project/Babel)|0.013| |setup.py|github/recipy/recipy|0.01| -|pypi|[email-validator](https://github.com/JoshData/python-email-validator)|0.007| -|pypi|[idna](https://pypi.org/project/idna)|0.007| -|pypi|[dnspython](https://pypi.org/project/dnspython)|0.007| -|pypi|[pytest](https://pypi.org/project/pytest)|0.004| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.002| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.002| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.002| -|pypi|[isort](https://pypi.org/project/isort)|0.002| -|pypi|[flake8](https://pypi.org/project/flake8)|0.002| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.002| +|pypi|[commonmark](https://pypi.org/project/commonmark)|0.008| +|pypi|[click](https://pypi.org/project/click)|0.007| +|pypi|[WTForms](https://wtforms.readthedocs.io/)|0.007| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.005| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.005| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| +|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.004| +|pypi|[asgiref](https://github.com/django/asgiref/)|0.004| |pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.002| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.002| -|pypi|[babel](https://pypi.org/project/babel)|0.002| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.002| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.002| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.002| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.002| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.002| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.002| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.002| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.002| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.002| -|pypi|[tinydb](https://github.com/msiemens/tinydb)|0.001| -|pypi|[Flask](https://palletsprojects.com/p/flask)|0.001| -|pypi|[tinydb-serialization](https://tinydb.readthedocs.org)|0.001| -|pypi|[jinja2](https://palletsprojects.com/p/jinja/)|0.001| -|pypi|[GitPython](https://github.com/gitpython-developers/GitPython)|0.001| -|pypi|[Flask-Script](http://github.com/smurfix/flask-script)|0.001| -|pypi|[flask_bootstrap](http://github.com/mbr/flask-bootstrap)|0.001| -|pypi|[flask-wtf](https://github.com/wtforms/flask-wtf/)|0.001| -|pypi|[flask](https://palletsprojects.com/p/flask)|0.001| -|pypi|[recommonmark](https://github.com/rtfd/recommonmark)|0.001| -|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|0.001| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.001| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.001| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.001| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| +|pypi|[zipp](https://pypi.org/project/zipp)|0.001| +|pypi|[babel](https://babel.pocoo.org/)|0.001| +|pypi|[sphinxcontrib-htmlhelp](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-serializinghtml](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-applehelp](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-devhelp](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-jsmath](http://sphinx-doc.org/)|0.001| +|pypi|[sphinxcontrib-qthelp](http://sphinx-doc.org/)|0.001| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.001| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.001| +|pypi|[isort](https://pypi.org/project/isort)|0.001| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.001| +|pypi|[requests](https://pypi.org/project/requests)|0.001| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/recipy/recipy/badge.png b/_repos/github/recipy/recipy/badge.png index 6920ae7f..191afb5e 100644 Binary files a/_repos/github/recipy/recipy/badge.png and b/_repos/github/recipy/recipy/badge.png differ diff --git a/_repos/github/recipy/recipy/data.json b/_repos/github/recipy/recipy/data.json index 01496a82..7b0f6eb6 100644 --- a/_repos/github/recipy/recipy/data.json +++ b/_repos/github/recipy/recipy/data.json @@ -6,249 +6,309 @@ } }, "pypi": { - "wrapt": { - "credit": 0.055, - "url": "https://github.com/GrahamDumpleton/wrapt" + "recipy": { + "credit": 0.025384615384615384, + "url": "http://www.recipy.org" }, "tinydb": { - "credit": 0.0010945000000000052, + "credit": 0.025384615384615384, "url": "https://github.com/msiemens/tinydb" }, - "tinydb-serialization": { - "credit": 0.0005500000000000019, - "url": "https://tinydb.readthedocs.org" + "binaryornot": { + "credit": 0.025384615384615384, + "url": "https://github.com/audreyr/binaryornot" }, - "jinja2": { - "credit": 0.0005500000000000019, - "url": "https://palletsprojects.com/p/jinja/" + "colorama": { + "credit": 0.026389846153846153, + "url": "https://github.com/tartley/colorama" }, "docopt": { - "credit": 0.055, + "credit": 0.025384615384615384, "url": "http://docopt.org" }, - "GitPython": { - "credit": 0.0005500000000000019, - "url": "https://github.com/gitpython-developers/GitPython" - }, - "colorama": { - "credit": 0.057178, - "url": "https://github.com/tartley/colorama" + "flask": { + "credit": 0.0002538461538461531, + "url": "https://palletsprojects.com/p/flask" }, - "Flask-Script": { - "credit": 0.0005500000000000019, - "url": "http://github.com/smurfix/flask-script" + "jinja2": { + "credit": 0.0002538461538461531, + "url": "https://palletsprojects.com/p/jinja/" }, "flask_bootstrap": { - "credit": 0.0005500000000000019, + "credit": 0.0002538461538461531, "url": "http://github.com/mbr/flask-bootstrap" }, + "Flask-Script": { + "credit": 0.0002538461538461531, + "url": "http://github.com/smurfix/flask-script" + }, "flask-wtf": { - "credit": 0.0005500000000000019, + "credit": 0.0002538461538461531, "url": "https://github.com/wtforms/flask-wtf/" }, - "python-dateutil": { - "credit": 0.055, - "url": "https://github.com/dateutil/dateutil" + "GitPython": { + "credit": 0.0002538461538461531, + "url": "https://github.com/gitpython-developers/GitPython" + }, + "recommonmark": { + "credit": 0.0002538461538461531, + "url": "https://github.com/rtfd/recommonmark" + }, + "sphinx": { + "credit": 0.0351576923076923, + "url": "https://www.sphinx-doc.org/" }, - "six": { - "credit": 0.055, - "url": "https://github.com/benjaminp/six" + "sphinx_rtd_theme": { + "credit": 0.0002538461538461531, + "url": "https://github.com/rtfd/sphinx_rtd_theme/" }, "svn": { - "credit": 0.055, + "credit": 0.025384615384615384, "url": "https://github.com/dsoprea/PySvn" }, - "binaryornot": { - "credit": 0.055, - "url": "https://github.com/audreyr/binaryornot" + "tinydb-serialization": { + "credit": 0.0002538461538461531, + "url": "https://tinydb.readthedocs.org" }, - "flask": { - "credit": 0.0005500000000000019, - "url": "https://palletsprojects.com/p/flask" + "wrapt": { + "credit": 0.025384615384615384, + "url": "https://github.com/GrahamDumpleton/wrapt" }, - "sphinx": { - "credit": 0.07314999999999999, - "url": "https://www.sphinx-doc.org/" + "alabaster": { + "credit": 0.026389846153846153, + "url": "https://alabaster.readthedocs.io" }, - "recommonmark": { - "credit": 0.0005500000000000019, - "url": "https://github.com/rtfd/recommonmark" + "babel": { + "credit": 0.0012590769230769224, + "url": "https://babel.pocoo.org/" }, - "sphinx_rtd_theme": { - "credit": 0.0005500000000000019, - "url": "https://github.com/rtfd/sphinx_rtd_theme/" + "chardet": { + "credit": 0.025384615384615384, + "url": "https://github.com/chardet/chardet" }, - "typing-extensions": { - "credit": 0.1375056964285714, - "url": "https://typing.readthedocs.io/" + "docutils": { + "credit": 0.03476676923076923, + "url": "http://docutils.sourceforge.net/" }, - "Babel": { - "credit": 0.027225, - "url": "http://babel.pocoo.org/" + "gitdb": { + "credit": 0.012819230769230769, + "url": "https://github.com/gitpython-developers/gitdb" + }, + "importlib-metadata": { + "credit": 0.004849186813186812, + "url": "https://github.com/python/importlib_metadata" + }, + "itsdangerous": { + "credit": 0.03525741758241758, + "url": "https://palletsprojects.com/p/itsdangerous/" }, "MarkupSafe": { - "credit": 0.0339631875, + "credit": 0.050515384615384615, "url": "https://palletsprojects.com/p/markupsafe/" }, - "gitdb": { - "credit": 0.00027225000000000166, - "url": "https://github.com/gitpython-developers/gitdb" + "snowballstemmer": { + "credit": 0.026389846153846153, + "url": "https://github.com/snowballstem/snowball" }, - "Flask": { - "credit": 0.0008621250000000052, - "url": "https://palletsprojects.com/p/flask" + "sphinxcontrib-htmlhelp": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" }, - "visitor": { - "credit": 0.01815, - "url": "http://github.com/mbr/visitor" + "sphinxcontrib-serializinghtml": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "Werkzeug": { + "credit": 0.003843956043956043, + "url": "https://palletsprojects.com/p/werkzeug/" }, "dominate": { - "credit": 0.01815, + "credit": 0.03376153846153846, "url": "https://github.com/Knio/dominate/" }, - "email-validator": { - "credit": 0.0068743125, - "url": "https://github.com/JoshData/python-email-validator" + "imagesize": { + "credit": 0.026389846153846153, + "url": "https://github.com/shibukawa/imagesize_py" }, - "itsdangerous": { - "credit": 0.03358398214285714, - "url": "https://palletsprojects.com/p/itsdangerous/" + "nose": { + "credit": 0.025384615384615384, + "url": "http://readthedocs.org/docs/nose/" + }, + "sphinxcontrib-applehelp": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-devhelp": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-jsmath": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-qthelp": { + "credit": 0.0012590769230769224, + "url": "http://sphinx-doc.org/" + }, + "visitor": { + "credit": 0.03376153846153846, + "url": "http://github.com/mbr/visitor" }, "WTForms": { - "credit": 0.00013612500000000083, + "credit": 0.006536538461538461, "url": "https://wtforms.readthedocs.io/" }, + "smmap": { + "credit": 0.050515384615384615, + "url": "https://github.com/gitpython-developers/smmap" + }, + "typing-extensions": { + "credit": 0.03909230769230769, + "url": "https://typing.readthedocs.io/" + }, "python-dotenv": { - "credit": 0.012270696428571428, + "credit": 3.590109890109876e-05, "url": "https://github.com/theskumar/python-dotenv" }, "asgiref": { - "credit": 0.012270696428571428, + "credit": 0.00359010989010989, "url": "https://github.com/django/asgiref/" }, - "importlib-metadata": { - "credit": 0.02214948214285714, - "url": "https://github.com/python/importlib_metadata" - }, "click": { - "credit": 0.027672267857142857, + "credit": 0.007144318681318681, "url": "https://pypi.org/project/click" }, "Jinja2": { - "credit": 0.02214948214285714, + "credit": 0.004595340659340659, "url": "https://pypi.org/project/Jinja2" }, - "Werkzeug": { - "credit": 0.01997148214285714, - "url": "https://pypi.org/project/Werkzeug" + "Babel": { + "credit": 0.012565384615384615, + "url": "https://pypi.org/project/Babel" + }, + "Flask": { + "credit": 0.039790384615384616, + "url": "https://pypi.org/project/Flask" + }, + "email-validator": { + "credit": 0.018848076923076922, + "url": "https://pypi.org/project/email-validator" + }, + "commonmark": { + "credit": 0.008376923076923077, + "url": "https://pypi.org/project/commonmark" }, "pytest": { - "credit": 0.004103196428571428, + "credit": 0.03632792307692308, "url": "https://pypi.org/project/pytest" }, "types-requests": { - "credit": 0.002178, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/types-requests" }, "types-typed-ast": { - "credit": 0.002178, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/types-typed-ast" }, "docutils-stubs": { - "credit": 0.002178, + "credit": 0.029905615384615388, "url": "https://pypi.org/project/docutils-stubs" }, "mypy": { - "credit": 0.004103196428571428, + "credit": 0.044984076923076925, "url": "https://pypi.org/project/mypy" }, "isort": { - "credit": 0.002178, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/isort" }, "flake8": { - "credit": 0.002178, + "credit": 0.03995792307692308, "url": "https://pypi.org/project/flake8" }, "sphinxcontrib-websupport": { - "credit": 0.002178, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/sphinxcontrib-websupport" }, "packaging": { - "credit": 0.002178, + "credit": 0.0024013846153846156, "url": "https://pypi.org/project/packaging" }, "requests": { - "credit": 0.002178, + "credit": 0.0010052307692307693, "url": "https://pypi.org/project/requests" }, - "imagesize": { - "credit": 0.002178, - "url": "https://pypi.org/project/imagesize" + "Pygments": { + "credit": 0.0010052307692307693, + "url": "https://pypi.org/project/Pygments" }, - "alabaster": { - "credit": 0.002178, - "url": "https://pypi.org/project/alabaster" + "pytz": { + "credit": 0.02513076923076923, + "url": "https://pypi.org/project/pytz" }, - "babel": { - "credit": 0.002178, - "url": "https://pypi.org/project/babel" + "importlib-resources": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/importlib-resources" }, - "snowballstemmer": { - "credit": 0.002178, - "url": "https://pypi.org/project/snowballstemmer" + "pytest-mypy": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-mypy" }, - "docutils": { - "credit": 0.020328, - "url": "https://pypi.org/project/docutils" + "pytest-black": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-black" }, - "Pygments": { - "credit": 0.002178, - "url": "https://pypi.org/project/Pygments" + "pytest-perf": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-perf" }, - "sphinxcontrib-qthelp": { - "credit": 0.002178, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" + "flufl.flake8": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/flufl.flake8" }, - "sphinxcontrib-serializinghtml": { - "credit": 0.002178, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + "pyfakefs": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pyfakefs" }, - "sphinxcontrib-htmlhelp": { - "credit": 0.002178, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + "pytest-enabler": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-enabler" }, - "sphinxcontrib-jsmath": { - "credit": 0.002178, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" + "pytest-cov": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-cov" }, - "sphinxcontrib-devhelp": { - "credit": 0.002178, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" + "pytest-flake8": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-flake8" }, - "sphinxcontrib-applehelp": { - "credit": 0.002178, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" + "pytest-checkdocs": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/pytest-checkdocs" }, - "commonmark": { - "credit": 0.01815, - "url": "https://pypi.org/project/commonmark" + "ipython": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/ipython" }, - "smmap": { - "credit": 0.026952749999999998, - "url": "https://pypi.org/project/smmap" + "rst.linker": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/rst.linker" + }, + "jaraco.packaging": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/jaraco.packaging" }, - "idna": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/idna" + "zipp": { + "credit": 0.0013961538461538462, + "url": "https://pypi.org/project/zipp" }, - "dnspython": { - "credit": 0.006738187499999999, - "url": "https://pypi.org/project/dnspython" + "html5lib": { + "credit": 0.005026153846153846, + "url": "https://pypi.org/project/html5lib" }, - "pytest-asyncio": { - "credit": 0.0019251964285714285, - "url": "https://pypi.org/project/pytest-asyncio" + "watchdog": { + "credit": 0.02513076923076923, + "url": "https://pypi.org/project/watchdog" } } } \ No newline at end of file diff --git a/_repos/github/rgerum/pylustrator/README.md b/_repos/github/rgerum/pylustrator/README.md index 92f4ccb1..986386a2 100644 --- a/_repos/github/rgerum/pylustrator/README.md +++ b/_repos/github/rgerum/pylustrator/README.md @@ -8,73 +8,95 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.145| -|pypi|[matplotlib](https://matplotlib.org)|0.145| -|pypi|[qtawesome](https://github.com/spyder-ide/qtawesome)|0.141| -|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.07| -|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.07| -|pypi|[PyQt5-Qt5](https://www.riverbankcomputing.com/software/pyqt/)|0.07| -|pypi|[PyQt5-sip](https://www.riverbankcomputing.com/software/sip/)|0.07| -|pypi|[pytest-qt](http://github.com/pytest-dev/pytest-qt)|0.035| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.035| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.013| +|pypi|[matplotlib](https://matplotlib.org)|0.09| +|pypi|[numpy](https://pypi.org/project/numpy)|0.088| +|pypi|[PyQt5-Qt5](https://www.riverbankcomputing.com/software/pyqt/)|0.087| +|pypi|[PyQt5-sip](https://www.riverbankcomputing.com/software/sip/)|0.087| +|pypi|[qtawesome](https://github.com/spyder-ide/qtawesome)|0.066| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.058| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.058| +|pypi|[PyICU](https://pypi.org/project/PyICU)|0.029| +|pypi|[fastnumbers](https://pypi.org/project/fastnumbers)|0.029| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.026| +|pypi|[pytest](https://pypi.org/project/pytest)|0.026| +|pypi|[lxml](https://pypi.org/project/lxml)|0.022| +|pypi|[packaging](https://pypi.org/project/packaging)|0.02| +|pypi|[pytest-qt](https://pypi.org/project/pytest-qt)|0.014| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.014| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| +|pypi|[qtpy](https://github.com/spyder-ide/qtpy)|0.01| |setup.py|github/rgerum/pylustrator|0.01| -|pypi|[packaging](https://github.com/pypa/packaging)|0.007| -|pypi|[qtpy](https://github.com/spyder-ide/qtpy)|0.005| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.004| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.004| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.004| -|pypi|[six](https://pypi.org/project/six)|0.004| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.004| -|pypi|[hunter](https://pypi.org/project/hunter)|0.004| -|pypi|[fields](https://pypi.org/project/fields)|0.004| +|pypi|[scipy](https://pypi.org/project/scipy)|0.009| +|pypi|[natsort](https://github.com/SethMMorton/natsort)|0.009| +|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|0.009| +|pypi|[scikit-image](https://scikit-image.org)|0.009| +|pypi|[pillow](https://python-pillow.org)|0.008| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.008| +|pypi|[sympy](https://pypi.org/project/sympy)|0.007| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.006| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.005| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.005| +|pypi|[flake8](https://pypi.org/project/flake8)|0.005| +|pypi|[astropy](https://pypi.org/project/astropy)|0.005| +|pypi|[codecov](https://pypi.org/project/codecov)|0.005| +|pypi|[pandas](https://pypi.org/project/pandas)|0.005| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.005| +|pypi|[xattr](https://pypi.org/project/xattr)|0.004| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.004| +|pypi|[munkres](https://pypi.org/project/munkres)|0.004| +|pypi|[brotli](https://pypi.org/project/brotli)|0.004| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.004| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.004| +|pypi|[lz4](https://pypi.org/project/lz4)|0.004| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.004| +|pypi|[fs](https://pypi.org/project/fs)|0.004| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| |pypi|[coverage](https://pypi.org/project/coverage)|0.004| -|pypi|[flake8](https://pypi.org/project/flake8)|0.004| -|pypi|[codecov](https://pypi.org/project/codecov)|0.004| -|pypi|[asv](https://pypi.org/project/asv)|0.004| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.004| -|pypi|[astropy](https://pypi.org/project/astropy)|0.004| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.004| -|pypi|[kaleido](https://pypi.org/project/kaleido)|0.004| -|pypi|[plotly](https://pypi.org/project/plotly)|0.004| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.004| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.004| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.004| -|pypi|[pandas](https://pypi.org/project/pandas)|0.004| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.004| -|pypi|[dask](https://pypi.org/project/dask)|0.004| -|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.004| -|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.004| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[pooch](https://pypi.org/project/pooch)|0.004| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.004| -|pypi|[tifffile](https://pypi.org/project/tifffile)|0.004| -|pypi|[imageio](https://pypi.org/project/imageio)|0.004| -|pypi|[pillow](https://pypi.org/project/pillow)|0.004| -|pypi|[networkx](https://pypi.org/project/networkx)|0.004| -|pypi|[scipy](https://pypi.org/project/scipy)|0.004| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|0.004| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[colorama](https://pypi.org/project/colorama)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[attrs](https://pypi.org/project/attrs)|0.002| -|pypi|[scikit-image](https://scikit-image.org)|0.001| -|pypi|[natsort](https://github.com/SethMMorton/natsort)|0.001| -|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|0.001| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[itk](https://pypi.org/project/itk)|0.003| +|pypi|[gdal](https://pypi.org/project/gdal)|0.003| +|pypi|[black](https://pypi.org/project/black)|0.003| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.003| +|pypi|[invoke](https://pypi.org/project/invoke)|0.003| +|pypi|[wheel](https://pypi.org/project/wheel)|0.003| +|pypi|[psutil](https://pypi.org/project/psutil)|0.003| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.003| +|pypi|[av](https://pypi.org/project/av)|0.003| +|pypi|[pydot](https://pypi.org/project/pydot)|0.003| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.003| +|pypi|[texext](https://pypi.org/project/texext)|0.003| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.003| +|pypi|[mypy](https://pypi.org/project/mypy)|0.003| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.003| +|pypi|[imageio](https://github.com/imageio/imageio)|0.002| +|pypi|[networkx](https://networkx.org/)|0.002| +|pypi|[PyWavelets](https://github.com/PyWavelets/pywt)|0.002| +|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|0.002| +|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|0.002| +|pypi|[asv](https://pypi.org/project/asv)|0.002| +|pypi|[pyamg](https://pypi.org/project/pyamg)|0.002| +|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.002| +|pypi|[kaleido](https://pypi.org/project/kaleido)|0.002| +|pypi|[plotly](https://pypi.org/project/plotly)|0.002| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.002| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.002| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.002| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.002| +|pypi|[dask](https://pypi.org/project/dask)|0.002| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.002| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.002| +|pypi|[pooch](https://pypi.org/project/pooch)|0.002| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pylustrator](https://github.com/rgerum/pylustrator)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/rgerum/pylustrator/badge.png b/_repos/github/rgerum/pylustrator/badge.png index 0f11fe92..ff93b1ba 100644 Binary files a/_repos/github/rgerum/pylustrator/badge.png and b/_repos/github/rgerum/pylustrator/badge.png differ diff --git a/_repos/github/rgerum/pylustrator/data.json b/_repos/github/rgerum/pylustrator/data.json index 5a2925b7..6151661c 100644 --- a/_repos/github/rgerum/pylustrator/data.json +++ b/_repos/github/rgerum/pylustrator/data.json @@ -6,277 +6,357 @@ } }, "pypi": { - "natsort": { - "credit": 0.001414285714285729, - "url": "https://github.com/SethMMorton/natsort" - }, - "numpy": { - "credit": 0.14542897959183673, - "url": "https://www.numpy.org" + "pylustrator": { + "credit": 0.0005823529411764644, + "url": "https://github.com/rgerum/pylustrator" }, "matplotlib": { - "credit": 0.14542897959183673, + "credit": 0.08984937944408533, "url": "https://matplotlib.org" }, + "natsort": { + "credit": 0.008818487394957985, + "url": "https://github.com/SethMMorton/natsort" + }, "pyqt5": { - "credit": 0.001414285714285729, + "credit": 0.008818487394957985, "url": "https://www.riverbankcomputing.com/software/pyqt/" }, - "qtpy": { - "credit": 0.005414693877551034, - "url": "https://github.com/spyder-ide/qtpy" - }, "qtawesome": { - "credit": 0.14142857142857143, + "credit": 0.06647142857142857, "url": "https://github.com/spyder-ide/qtawesome" }, + "qtpy": { + "credit": 0.010465714285714287, + "url": "https://github.com/spyder-ide/qtpy" + }, "scikit-image": { - "credit": 0.0014142857142857568, + "credit": 0.008818487394957978, "url": "https://scikit-image.org" }, - "PyICU": { - "credit": 0.07000714285714285, - "url": "https://gitlab.pyicu.org/main/pyicu" + "cycler": { + "credit": 0.05823529411764706, + "url": "https://github.com/matplotlib/cycler" }, - "fastnumbers": { - "credit": 0.07000714285714285, - "url": "https://github.com/SethMMorton/fastnumbers" + "fonttools": { + "credit": 0.0005823529411764644, + "url": "http://github.com/fonttools/fonttools" + }, + "imageio": { + "credit": 0.002229579831932774, + "url": "https://github.com/imageio/imageio" + }, + "kiwisolver": { + "credit": 0.0005823529411764714, + "url": "https://github.com/nucleic/kiwi" + }, + "networkx": { + "credit": 0.002229579831932774, + "url": "https://networkx.org/" + }, + "pillow": { + "credit": 0.008146592215833703, + "url": "https://python-pillow.org" }, "PyQt5-Qt5": { - "credit": 0.07000714285714285, + "credit": 0.08706176470588235, "url": "https://www.riverbankcomputing.com/software/pyqt/" }, "PyQt5-sip": { - "credit": 0.07000714285714285, + "credit": 0.08706176470588235, "url": "https://www.riverbankcomputing.com/software/sip/" }, + "PyWavelets": { + "credit": 0.002229579831932774, + "url": "https://github.com/PyWavelets/pywt" + }, + "tifffile": { + "credit": 0.005263945157010173, + "url": "https://www.lfd.uci.edu/~gohlke/" + }, + "numpy": { + "credit": 0.08786655019902698, + "url": "https://pypi.org/project/numpy" + }, + "PyICU": { + "credit": 0.028826470588235294, + "url": "https://pypi.org/project/PyICU" + }, + "fastnumbers": { + "credit": 0.028826470588235294, + "url": "https://pypi.org/project/fastnumbers" + }, "pytest-qt": { - "credit": 0.035003571428571426, - "url": "http://github.com/pytest-dev/pytest-qt" + "credit": 0.014413235294117647, + "url": "https://pypi.org/project/pytest-qt" }, "pytest-cov": { - "credit": 0.004350443877551018, - "url": "https://github.com/pytest-dev/pytest-cov" + "credit": 0.02558078339230429, + "url": "https://pypi.org/project/pytest-cov" }, "pytest": { - "credit": 0.012642539923469386, - "url": "https://docs.pytest.org/en/latest/" + "credit": 0.02558078339230429, + "url": "https://pypi.org/project/pytest" }, "packaging": { - "credit": 0.006516289859693875, - "url": "https://github.com/pypa/packaging" + "credit": 0.01966377100840336, + "url": "https://pypi.org/project/packaging" }, "pytest-faulthandler": { - "credit": 4.0004081632653496e-05, - "url": "https://github.com/pytest-dev/pytest-faulthandler" + "credit": 0.0016472268907563026, + "url": "https://pypi.org/project/pytest-faulthandler" }, "pytest-localserver": { - "credit": 4.0004081632653496e-05, - "url": "https://github.com/pytest-dev/pytest-localserver" + "credit": 0.0016472268907563026, + "url": "https://pypi.org/project/pytest-localserver" }, "flake8": { - "credit": 0.004000408163265305, + "credit": 0.004681592215833702, "url": "https://pypi.org/project/flake8" }, "codecov": { - "credit": 0.004000408163265305, + "credit": 0.004529873949579832, "url": "https://pypi.org/project/codecov" }, "asv": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/asv" }, "pyamg": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/pyamg" }, "astropy": { - "credit": 0.004000408163265305, + "credit": 0.004681592215833702, "url": "https://pypi.org/project/astropy" }, "SimpleITK": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/SimpleITK" }, "kaleido": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/kaleido" }, "plotly": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/plotly" }, "ipywidgets": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/ipywidgets" }, "myst-parser": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/myst-parser" }, "seaborn": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/seaborn" }, "pandas": { - "credit": 0.004000408163265305, + "credit": 0.004529873949579832, "url": "https://pypi.org/project/pandas" }, "cloudpickle": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/cloudpickle" }, "dask": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/dask" }, "scikit-learn": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/scikit-learn" }, "pytest-runner": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/pytest-runner" }, "sphinx-copybutton": { - "credit": 0.004000408163265305, + "credit": 0.0052505357142857145, "url": "https://pypi.org/project/sphinx-copybutton" }, "numpydoc": { - "credit": 0.004000408163265305, + "credit": 0.007564239274657231, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.004000408163265305, + "credit": 0.004529873949579832, "url": "https://pypi.org/project/sphinx-gallery" }, "sphinx": { - "credit": 0.004000408163265305, + "credit": 0.011167548098186642, "url": "https://pypi.org/project/sphinx" }, "pooch": { - "credit": 0.004000408163265305, + "credit": 0.0016472268907563026, "url": "https://pypi.org/project/pooch" }, - "PyWavelets": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/PyWavelets" + "scipy": { + "credit": 0.008964715578539109, + "url": "https://pypi.org/project/scipy" }, - "tifffile": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/tifffile" + "xattr": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/xattr" }, - "imageio": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/imageio" + "unicodedata2": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/unicodedata2" }, - "pillow": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/pillow" + "munkres": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/munkres" }, - "networkx": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/networkx" + "brotli": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/brotli" }, - "scipy": { - "credit": 0.004000408163265305, - "url": "https://pypi.org/project/scipy" + "brotlicffi": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/brotlicffi" }, - "virtualenv": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/virtualenv" + "skia-pathops": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/skia-pathops" }, - "pytest-xdist": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/pytest-xdist" + "sympy": { + "credit": 0.007317488687782805, + "url": "https://pypi.org/project/sympy" }, - "six": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/six" + "lz4": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/lz4" }, - "process-tests": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/process-tests" + "zopfli": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/zopfli" }, - "hunter": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/hunter" + "lxml": { + "credit": 0.02173072398190045, + "url": "https://pypi.org/project/lxml" }, - "fields": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/fields" + "fs": { + "credit": 0.004434841628959276, + "url": "https://pypi.org/project/fs" }, - "coverage": { - "credit": 0.004331691964285714, - "url": "https://pypi.org/project/coverage" + "itk": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/itk" + }, + "gdal": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/gdal" + }, + "pydata-sphinx-theme": { + "credit": 0.0059170123839009285, + "url": "https://pypi.org/project/pydata-sphinx-theme" + }, + "black": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/black" + }, + "fsspec": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/fsspec" + }, + "invoke": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/invoke" + }, + "wheel": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/wheel" }, - "xmlschema": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/xmlschema" + "psutil": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/psutil" }, - "requests": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/requests" + "imageio-ffmpeg": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/imageio-ffmpeg" }, - "pygments": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/pygments" + "av": { + "credit": 0.0030343653250773993, + "url": "https://pypi.org/project/av" }, - "nose": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/nose" + "typing-extensions": { + "credit": 0.05765294117647059, + "url": "https://pypi.org/project/typing-extensions" }, - "mock": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/mock" + "pydot": { + "credit": 0.0028826470588235293, + "url": "https://pypi.org/project/pydot" }, - "hypothesis": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/hypothesis" + "pygraphviz": { + "credit": 0.0028826470588235293, + "url": "https://pypi.org/project/pygraphviz" }, - "argcomplete": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/argcomplete" + "texext": { + "credit": 0.0028826470588235293, + "url": "https://pypi.org/project/texext" }, - "colorama": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/colorama" + "nb2plots": { + "credit": 0.0028826470588235293, + "url": "https://pypi.org/project/nb2plots" }, - "atomicwrites": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/atomicwrites" + "mypy": { + "credit": 0.0028826470588235293, + "url": "https://pypi.org/project/mypy" }, - "importlib-metadata": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/importlib-metadata" + "pre-commit": { + "credit": 0.0028826470588235293, + "url": "https://pypi.org/project/pre-commit" + }, + "pytest-timeout": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/coverage" }, - "tomli": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/tomli" + "check-manifest": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/check-manifest" }, - "py": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/py" + "sphinxext-opengraph": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "pluggy": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/pluggy" + "sphinx-rtd-theme": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "iniconfig": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/iniconfig" + "sphinx-removed-in": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "attrs": { - "credit": 0.002165845982142857, - "url": "https://pypi.org/project/attrs" + "sphinx-issues": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/sphinx-issues" }, - "pyparsing": { - "credit": 0.03465353571428571, - "url": "https://pypi.org/project/pyparsing" + "olefile": { + "credit": 0.0036033088235294117, + "url": "https://pypi.org/project/olefile" }, - "werkzeug": { - "credit": 0.003960404081632652, - "url": "https://pypi.org/project/werkzeug" + "imagecodecs": { + "credit": 0.014413235294117647, + "url": "https://pypi.org/project/imagecodecs" } } } \ No newline at end of file diff --git a/_repos/github/rgmyr/corebreakout/badge.png b/_repos/github/rgmyr/corebreakout/badge.png index c37d37f2..c7d45e16 100644 Binary files a/_repos/github/rgmyr/corebreakout/badge.png and b/_repos/github/rgmyr/corebreakout/badge.png differ diff --git a/_repos/github/rhayes777/PyAutoFit/badge.png b/_repos/github/rhayes777/PyAutoFit/badge.png index 72cbdb7e..66fd9f12 100644 Binary files a/_repos/github/rhayes777/PyAutoFit/badge.png and b/_repos/github/rhayes777/PyAutoFit/badge.png differ diff --git a/_repos/github/richteague/disksurf/README.md b/_repos/github/richteague/disksurf/README.md index 46fc61aa..821ea29e 100644 --- a/_repos/github/richteague/disksurf/README.md +++ b/_repos/github/richteague/disksurf/README.md @@ -8,47 +8,74 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.36| -|pypi|[matplotlib](https://matplotlib.org)|0.17| -|pypi|[gofish](https://github.com/richteague/gofish)|0.165| -|pypi|[scipy](https://www.scipy.org)|0.034| -|pypi|[pytest](https://pypi.org/project/pytest)|0.032| -|pypi|[h5py](https://pypi.org/project/h5py)|0.032| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.027| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.027| +|pypi|[matplotlib](https://matplotlib.org)|0.109| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.101| +|pypi|[disksurf](https://github.com/richteague/disksurf)|0.099| +|pypi|[gofish](https://github.com/richteague/gofish)|0.099| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.099| +|pypi|[pytest](https://pypi.org/project/pytest)|0.05| +|pypi|[numpy](https://pypi.org/project/numpy)|0.044| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.027| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.027| +|pypi|[scipy](https://pypi.org/project/scipy)|0.027| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.022| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.022| +|pypi|[h5py](https://pypi.org/project/h5py)|0.019| |setup.py|github/richteague/disksurf|0.01| -|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.005| -|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.005| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.005| -|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.005| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.005| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.005| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.005| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.005| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.005| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.005| -|pypi|[ipython](https://pypi.org/project/ipython)|0.005| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.005| -|pypi|[asdf](https://pypi.org/project/asdf)|0.005| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.005| -|pypi|[jplephem](https://pypi.org/project/jplephem)|0.005| -|pypi|[pytz](https://pypi.org/project/pytz)|0.005| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.005| -|pypi|[pandas](https://pypi.org/project/pandas)|0.005| -|pypi|[bleach](https://pypi.org/project/bleach)|0.005| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.005| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.005| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.005| -|pypi|[dask](https://pypi.org/project/dask)|0.005| -|pypi|[certifi](https://pypi.org/project/certifi)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.005| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.005| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.005| -|pypi|[astropy](http://astropy.org)|0.002| -|pypi|[emcee](https://emcee.readthedocs.io)|0.002| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[packaging](https://pypi.org/project/packaging)|0.009| +|pypi|[xattr](https://pypi.org/project/xattr)|0.008| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.008| +|pypi|[munkres](https://pypi.org/project/munkres)|0.008| +|pypi|[brotli](https://pypi.org/project/brotli)|0.008| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.008| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.008| +|pypi|[sympy](https://pypi.org/project/sympy)|0.008| +|pypi|[lz4](https://pypi.org/project/lz4)|0.008| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.008| +|pypi|[lxml](https://pypi.org/project/lxml)|0.008| +|pypi|[fs](https://pypi.org/project/fs)|0.008| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.006| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[pyerfa](https://github.com/liberfa/pyerfa)|0.004| +|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.003| +|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.003| +|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.003| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.003| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.003| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.003| +|pypi|[ipython](https://pypi.org/project/ipython)|0.003| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.003| +|pypi|[asdf](https://pypi.org/project/asdf)|0.003| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.003| +|pypi|[jplephem](https://pypi.org/project/jplephem)|0.003| +|pypi|[pytz](https://pypi.org/project/pytz)|0.003| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.003| +|pypi|[pandas](https://pypi.org/project/pandas)|0.003| +|pypi|[bleach](https://pypi.org/project/bleach)|0.003| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.003| +|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.003| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.003| +|pypi|[dask](https://pypi.org/project/dask)|0.003| +|pypi|[certifi](https://pypi.org/project/certifi)|0.003| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.003| +|pypi|[tomli](https://pypi.org/project/tomli)|0.003| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.003| +|pypi|[emcee](https://emcee.readthedocs.io)|0.001| +|pypi|[astropy](http://astropy.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/richteague/disksurf/badge.png b/_repos/github/richteague/disksurf/badge.png index 31c8b47a..1ff4177f 100644 Binary files a/_repos/github/richteague/disksurf/badge.png and b/_repos/github/richteague/disksurf/badge.png differ diff --git a/_repos/github/richteague/disksurf/data.json b/_repos/github/richteague/disksurf/data.json index 784ec8c2..076e830f 100644 --- a/_repos/github/richteague/disksurf/data.json +++ b/_repos/github/richteague/disksurf/data.json @@ -6,168 +6,276 @@ } }, "pypi": { - "scipy": { - "credit": 0.03354214285714287, - "url": "https://www.scipy.org" + "disksurf": { + "credit": 0.099, + "url": "https://github.com/richteague/disksurf" }, - "numpy": { - "credit": 0.3602421428571429, - "url": "https://www.numpy.org" + "gofish": { + "credit": 0.099, + "url": "https://github.com/richteague/gofish" }, "matplotlib": { - "credit": 0.16966714285714288, + "credit": 0.10933951648351649, "url": "https://matplotlib.org" }, - "gofish": { - "credit": 0.165, - "url": "https://github.com/richteague/gofish" - }, "astropy": { - "credit": 0.0016500000000000126, + "credit": 0.0009900000000000048, "url": "http://astropy.org" }, "emcee": { - "credit": 0.0016500000000000126, + "credit": 0.0009900000000000186, "url": "https://emcee.readthedocs.io" }, + "cycler": { + "credit": 0.099, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0009900000000000048, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0009900000000000048, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0009900000000000048, + "url": "https://python-pillow.org" + }, + "pyerfa": { + "credit": 0.003790285714285719, + "url": "https://github.com/liberfa/pyerfa" + }, "sgp4": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://github.com/brandon-rhodes/python-sgp4" }, "skyfield": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "http://github.com/brandon-rhodes/python-skyfield/" }, "coverage": { - "credit": 0.027271671428571426, + "credit": 0.022488627857142854, "url": "https://github.com/nedbat/coveragepy" }, "objgraph": { - "credit": 4.667142857142821e-05, + "credit": 2.8002857142857187e-05, "url": "https://mg.pov.lt/objgraph/" }, "pytest-xdist": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://github.com/pytest-dev/pytest-xdist" }, "pytest-astropy": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/pytest-astropy" }, "pytest-astropy-header": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/pytest-astropy-header" }, "pytest-doctestplus": { - "credit": 0.004667142857142857, + "credit": 0.027302785714285713, "url": "https://pypi.org/project/pytest-doctestplus" }, "Jinja2": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/Jinja2" }, "sphinx-changelog": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/sphinx-changelog" }, "sphinx-astropy": { - "credit": 0.004667142857142857, + "credit": 0.027302785714285713, "url": "https://pypi.org/project/sphinx-astropy" }, "sphinx": { - "credit": 0.004667142857142857, + "credit": 0.008925910714285714, "url": "https://pypi.org/project/sphinx" }, "typing-extensions": { - "credit": 0.004667142857142857, + "credit": 0.10081028571428571, "url": "https://pypi.org/project/typing-extensions" }, "pytest": { - "credit": 0.031892142857142855, + "credit": 0.04976341071428571, "url": "https://pypi.org/project/pytest" }, "ipython": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/ipython" }, "bottleneck": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/bottleneck" }, "asdf": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/asdf" }, "mpmath": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/mpmath" }, "jplephem": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/jplephem" }, "pytz": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/pytz" }, "sortedcontainers": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/sortedcontainers" }, "pandas": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/pandas" }, "bleach": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/bleach" }, "html5lib": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/html5lib" }, "beautifulsoup4": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/beautifulsoup4" }, "pyarrow": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/pyarrow" }, "h5py": { - "credit": 0.031892142857142855, + "credit": 0.019135285714285712, "url": "https://pypi.org/project/h5py" }, "dask": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/dask" }, "certifi": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/certifi" }, + "scipy": { + "credit": 0.026674516483516483, + "url": "https://pypi.org/project/scipy" + }, "packaging": { - "credit": 0.004667142857142857, + "credit": 0.008925910714285714, "url": "https://pypi.org/project/packaging" }, "PyYAML": { - "credit": 0.004667142857142857, + "credit": 0.0028002857142857144, "url": "https://pypi.org/project/PyYAML" }, - "pyerfa": { - "credit": 0.004667142857142857, - "url": "https://pypi.org/project/pyerfa" + "numpy": { + "credit": 0.04363778571428571, + "url": "https://pypi.org/project/numpy" }, "pytest-cov": { - "credit": 0.027225, + "credit": 0.022460624999999998, "url": "https://pypi.org/project/pytest-cov" }, + "xattr": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.007539230769230769, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.006125625, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.006125625, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.006125625, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.006125625, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.006125625, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.006125625, + "url": "https://pypi.org/project/olefile" + }, "tomli": { - "credit": 0.0046204714285714285, + "credit": 0.002772282857142857, "url": "https://pypi.org/project/tomli" }, "graphviz": { - "credit": 0.0046204714285714285, + "credit": 0.002772282857142857, "url": "https://pypi.org/project/graphviz" } } diff --git a/_repos/github/robashaw/libecpint/badge.png b/_repos/github/robashaw/libecpint/badge.png index 04628d64..c1eba899 100644 Binary files a/_repos/github/robashaw/libecpint/badge.png and b/_repos/github/robashaw/libecpint/badge.png differ diff --git a/_repos/github/rodluger/starry_process/README.md b/_repos/github/rodluger/starry_process/README.md index 9b2b6fb7..67f4bf5b 100644 --- a/_repos/github/rodluger/starry_process/README.md +++ b/_repos/github/rodluger/starry_process/README.md @@ -8,55 +8,111 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.247| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.22| -|pypi|[pytest](https://pypi.org/project/pytest)|0.118| -|pypi|[matplotlib](https://matplotlib.org)|0.11| -|pypi|[twine](https://pypi.org/project/twine)|0.019| -|pypi|[arviz](http://github.com/arviz-devs/arviz)|0.017| -|pypi|[requests](https://pypi.org/project/requests)|0.014| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.014| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.014| -|pypi|[wheel](https://pypi.org/project/wheel)|0.014| -|pypi|[py-make](https://pypi.org/project/py-make)|0.014| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.014| -|pypi|[colorama](https://pypi.org/project/colorama)|0.014| -|pypi|[fastprogress](https://github.com/fastai/fastprogress)|0.012| -|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.012| -|pypi|[objgraph](https://pypi.org/project/objgraph)|0.012| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.071| +|pypi|[numpy](https://pypi.org/project/numpy)|0.065| +|pypi|[matplotlib](https://matplotlib.org)|0.055| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.052| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.05| +|pypi|[fastprogress](https://github.com/fastai/fastprogress)|0.05| +|pypi|[netcdf4](http://github.com/Unidata/netcdf4-python)|0.048| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.048| +|pypi|[theano-pymc](http://deeplearning.net/software/theano/)|0.045| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.045| +|pypi|[semver](https://github.com/python-semver/python-semver)|0.045| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.045| +|pypi|[scipy](https://pypi.org/project/scipy)|0.024| +|pypi|[packaging](https://pypi.org/project/packaging)|0.017| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.014| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.012| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| |setup.py|github/rodluger/starry_process|0.01| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008| -|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|0.006| -|pypi|[aesara-theano-fallback](https://github.com/exoplanet-dev/aesara-theano-fallback)|0.006| -|pypi|[pep517](https://pypi.org/project/pep517)|0.005| -|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|0.005| -|pypi|[nbstripout](https://pypi.org/project/nbstripout)|0.005| -|pypi|[flake8](https://pypi.org/project/flake8)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[isort](https://pypi.org/project/isort)|0.005| -|pypi|[black](https://pypi.org/project/black)|0.005| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.005| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.005| -|pypi|[jupytext](https://pypi.org/project/jupytext)|0.005| -|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.005| -|pypi|[coveralls](https://pypi.org/project/coveralls)|0.005| -|pypi|[pytest-env](https://pypi.org/project/pytest-env)|0.005| -|pypi|[parameterized](https://pypi.org/project/parameterized)|0.005| -|pypi|[nose](https://pypi.org/project/nose)|0.005| -|pypi|[scipy](https://www.scipy.org)|0.004| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| -|pypi|[pytz](https://pypi.org/project/pytz)|0.002| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.002| -|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|0.002| -|pypi|[PyTest](https://pypi.org/project/PyTest)|0.002| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| -|pypi|[bump2version](https://pypi.org/project/bump2version)|0.002| -|pypi|[tox](https://pypi.org/project/tox)|0.002| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.002| -|pypi|[pymc3-ext](https://github.com/exoplanet-dev/pymc3-ext)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| +|pypi|[pandas](https://pypi.org/project/pandas)|0.01| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.009| +|pypi|[tomli](https://pypi.org/project/tomli)|0.009| +|pypi|[six](https://pypi.org/project/six)|0.009| +|pypi|[arviz](http://github.com/arviz-devs/arviz)|0.008| +|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|0.007| +|pypi|[PyTest](https://pypi.org/project/PyTest)|0.007| +|pypi|[bump2version](https://pypi.org/project/bump2version)|0.007| +|pypi|[tox](https://pypi.org/project/tox)|0.007| +|pypi|[patsy](https://github.com/pydata/patsy)|0.005| +|pypi|[deprecat](https://github.com/deprecat/deprecat)|0.005| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.005| +|pypi|[bokeh](https://pypi.org/project/bokeh)|0.005| +|pypi|[zarr](https://pypi.org/project/zarr)|0.005| +|pypi|[dask](https://pypi.org/project/dask)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|0.004| +|pypi|[aesara-theano-fallback](https://github.com/exoplanet-dev/aesara-theano-fallback)|0.004| +|pypi|[pytest-env](https://github.com/MobileDynasty/pytest-env)|0.004| +|pypi|[nose](https://pypi.org/project/nose)|0.004| +|pypi|[parameterized](https://pypi.org/project/parameterized)|0.004| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.004| +|pypi|[jupytext](https://pypi.org/project/jupytext)|0.004| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.004| +|pypi|[xarray](https://github.com/pydata/xarray)|0.004| +|pypi|[nbsphinx](https://pypi.org/project/nbsphinx)|0.003| +|pypi|[xattr](https://pypi.org/project/xattr)|0.003| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.003| +|pypi|[munkres](https://pypi.org/project/munkres)|0.003| +|pypi|[brotli](https://pypi.org/project/brotli)|0.003| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.003| +|pypi|[sympy](https://pypi.org/project/sympy)|0.003| +|pypi|[lz4](https://pypi.org/project/lz4)|0.003| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.003| +|pypi|[lxml](https://pypi.org/project/lxml)|0.003| +|pypi|[fs](https://pypi.org/project/fs)|0.003| +|pypi|[ujson](https://pypi.org/project/ujson)|0.003| +|pypi|[numba](https://pypi.org/project/numba)|0.003| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.003| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.003| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.003| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| +|pypi|[coverage](https://pypi.org/project/coverage)|0.003| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.003| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.003| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.003| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| +|pypi|[olefile](https://pypi.org/project/olefile)|0.003| +|pypi|[pymc3-ext](https://github.com/exoplanet-dev/pymc3-ext)|0.002| +|pypi|[setuptools-scm](https://github.com/pypa/setuptools_scm/)|0.002| +|pypi|[cftime](https://pypi.org/project/cftime)|0.002| +|pypi|[twine](https://pypi.org/project/twine)|0.002| +|pypi|[pep517](https://pypi.org/project/pep517)|0.002| +|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|0.002| +|pypi|[nbstripout](https://pypi.org/project/nbstripout)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[toml](https://pypi.org/project/toml)|0.002| +|pypi|[isort](https://pypi.org/project/isort)|0.002| +|pypi|[black](https://pypi.org/project/black)|0.002| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| +|pypi|[coveralls](https://pypi.org/project/coveralls)|0.002| +|pypi|[starry](https://pypi.org/project/starry)|0.002| +|pypi|[rtds-action](https://pypi.org/project/rtds-action)|0.002| +|pypi|[emcee](https://pypi.org/project/emcee)|0.002| +|pypi|[corner](https://pypi.org/project/corner)|0.002| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.002| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.002| +|pypi|[jupyter](https://pypi.org/project/jupyter)|0.002| +|pypi|[pandoc](https://pypi.org/project/pandoc)|0.002| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.002| +|pypi|[scanpydoc](https://pypi.org/project/scanpydoc)|0.002| +|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|0.002| +|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|0.002| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.002| +|pypi|[pooch](https://pypi.org/project/pooch)|0.002| +|pypi|[cfgrib](https://pypi.org/project/cfgrib)|0.002| +|pypi|[rasterio](https://pypi.org/project/rasterio)|0.002| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.002| +|pypi|[pydap](https://pypi.org/project/pydap)|0.002| +|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|0.002| +|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.002| +|pypi|[numbagg](https://pypi.org/project/numbagg)|0.002| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/rodluger/starry_process/badge.png b/_repos/github/rodluger/starry_process/badge.png index 36a82f78..c2b32bee 100644 Binary files a/_repos/github/rodluger/starry_process/badge.png and b/_repos/github/rodluger/starry_process/badge.png differ diff --git a/_repos/github/rodluger/starry_process/data.json b/_repos/github/rodluger/starry_process/data.json index 6af6433d..1b5629c6 100644 --- a/_repos/github/rodluger/starry_process/data.json +++ b/_repos/github/rodluger/starry_process/data.json @@ -6,213 +6,441 @@ } }, "pypi": { - "setuptools_scm": { - "credit": 0.22, - "url": "https://github.com/pypa/setuptools_scm/" + "starry-process": { + "credit": 0.000449999999999999, + "url": "https://github.com/rodluger/starry_process" }, - "numpy": { - "credit": 0.2473713, - "url": "https://www.numpy.org" + "aesara-theano-fallback": { + "credit": 0.004284890109890109, + "url": "https://github.com/exoplanet-dev/aesara-theano-fallback" }, - "scipy": { - "credit": 0.0036168000000000033, - "url": "https://www.scipy.org" + "matplotlib": { + "credit": 0.05503598901098901, + "url": "https://matplotlib.org" }, "pymc3": { - "credit": 0.0062857142857142894, + "credit": 0.004284890109890116, "url": "http://github.com/pymc-devs/pymc3" }, + "theano-pymc": { + "credit": 0.045, + "url": "http://deeplearning.net/software/theano/" + }, "pymc3-ext": { - "credit": 0.0011000000000000038, + "credit": 0.0021634615384615377, "url": "https://github.com/exoplanet-dev/pymc3-ext" }, - "aesara-theano-fallback": { - "credit": 0.0062857142857142894, - "url": "https://github.com/exoplanet-dev/aesara-theano-fallback" + "setuptools-scm": { + "credit": 0.0021634615384615377, + "url": "https://github.com/pypa/setuptools_scm/" }, - "tqdm": { - "credit": 0.0011000000000000038, - "url": "https://tqdm.github.io" + "arviz": { + "credit": 0.0075214285714285695, + "url": "http://github.com/arviz-devs/arviz" }, - "matplotlib": { - "credit": 0.11, - "url": "https://matplotlib.org" + "cachetools": { + "credit": 0.049949999999999994, + "url": "https://github.com/tkem/cachetools/" + }, + "cycler": { + "credit": 0.045, + "url": "https://github.com/matplotlib/cycler" + }, + "fastprogress": { + "credit": 0.049949999999999994, + "url": "https://github.com/fastai/fastprogress" + }, + "fonttools": { + "credit": 0.000449999999999999, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.000449999999999999, + "url": "https://github.com/nucleic/kiwi" }, "patsy": { - "credit": 0.00012099999999999958, + "credit": 0.0053999999999999986, "url": "https://github.com/pydata/patsy" }, - "pandas": { - "credit": 0.00012099999999999958, - "url": "https://pandas.pydata.org" + "pillow": { + "credit": 0.000449999999999999, + "url": "https://python-pillow.org" }, - "fastprogress": { - "credit": 0.0121, - "url": "https://github.com/fastai/fastprogress" + "semver": { + "credit": 0.045, + "url": "https://github.com/python-semver/python-semver" + }, + "deprecat": { + "credit": 0.0053999999999999986, + "url": "https://github.com/deprecat/deprecat" }, "dill": { - "credit": 0.00012099999999999958, + "credit": 0.0053999999999999986, "url": "https://github.com/uqfoundation/dill" }, - "deprecat": { - "credit": 0.00012099999999999958, - "url": "https://github.com/deprecat/deprecat" + "wrapt": { + "credit": 0.052425, + "url": "https://github.com/GrahamDumpleton/wrapt" }, - "cachetools": { - "credit": 0.0121, - "url": "https://github.com/tkem/cachetools/" + "xarray": { + "credit": 0.003632142857142856, + "url": "https://github.com/pydata/xarray" }, - "arviz": { - "credit": 0.017285714285714286, - "url": "http://github.com/arviz-devs/arviz" + "netcdf4": { + "credit": 0.048182142857142854, + "url": "http://github.com/Unidata/netcdf4-python" + }, + "cftime": { + "credit": 0.0021634615384615377, + "url": "https://pypi.org/project/cftime" + }, + "pytest-env": { + "credit": 0.0038348901098901097, + "url": "https://github.com/MobileDynasty/pytest-env" + }, + "pytest-dependency": { + "credit": 1.7134615384615474e-05, + "url": "https://github.com/RKrahl/pytest-dependency" + }, + "pytest": { + "credit": 0.07068559203296704, + "url": "https://docs.pytest.org/en/latest/" + }, + "nose": { + "credit": 0.0038348901098901097, + "url": "https://pypi.org/project/nose" + }, + "parameterized": { + "credit": 0.0038348901098901097, + "url": "https://pypi.org/project/parameterized" + }, + "starry": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/starry" + }, + "nbsphinx": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/nbsphinx" + }, + "rtds-action": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/rtds-action" + }, + "emcee": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/emcee" + }, + "corner": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/corner" + }, + "nbconvert": { + "credit": 0.0038348901098901097, + "url": "https://pypi.org/project/nbconvert" + }, + "nbformat": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/nbformat" + }, + "ipywidgets": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/ipywidgets" + }, + "jupytext": { + "credit": 0.0038348901098901097, + "url": "https://pypi.org/project/jupytext" + }, + "jupyter": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/jupyter" + }, + "pandoc": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/pandoc" + }, + "sphinx": { + "credit": 0.011922836538461538, + "url": "https://pypi.org/project/sphinx" + }, + "bokeh": { + "credit": 0.004895604395604395, + "url": "https://pypi.org/project/bokeh" + }, + "tqdm": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/tqdm" + }, + "scipy": { + "credit": 0.02389598901098901, + "url": "https://pypi.org/project/scipy" + }, + "numpy": { + "credit": 0.06501906593406594, + "url": "https://pypi.org/project/numpy" + }, + "pandas": { + "credit": 0.009845604395604396, + "url": "https://pypi.org/project/pandas" }, "twine": { - "credit": 0.018798214285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/twine" }, "pep517": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/pep517" }, "jupyterlab": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/jupyterlab" }, "nbstripout": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/nbstripout" }, "flake8": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/flake8" }, "toml": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/toml" }, "isort": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/isort" }, "black": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/black" }, "pre-commit": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/pre-commit" }, "ipykernel": { - "credit": 0.005185714285714286, + "credit": 0.0038348901098901097, "url": "https://pypi.org/project/ipykernel" }, - "jupytext": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/jupytext" - }, - "nbconvert": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/nbconvert" - }, "coveralls": { - "credit": 0.005185714285714286, + "credit": 0.0021214285714285714, "url": "https://pypi.org/project/coveralls" }, - "pytest-env": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/pytest-env" - }, "pytest-cov": { - "credit": 0.007581514285714286, + "credit": 0.013815803571428571, "url": "https://pypi.org/project/pytest-cov" }, - "pytest": { - "credit": 0.11847801428571428, - "url": "https://pypi.org/project/pytest" + "virtualenv": { + "credit": 0.00891, + "url": "https://pypi.org/project/virtualenv" }, - "parameterized": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/parameterized" + "tomli": { + "credit": 0.00891, + "url": "https://pypi.org/project/tomli" }, - "nose": { - "credit": 0.005185714285714286, - "url": "https://pypi.org/project/nose" + "setuptools": { + "credit": 0.012092142857142857, + "url": "https://pypi.org/project/setuptools" }, - "requests": { - "credit": 0.0136125, - "url": "https://pypi.org/project/requests" + "packaging": { + "credit": 0.016589979395604394, + "url": "https://pypi.org/project/packaging" }, - "slack-sdk": { - "credit": 0.0136125, - "url": "https://pypi.org/project/slack-sdk" + "zarr": { + "credit": 0.004895604395604395, + "url": "https://pypi.org/project/zarr" }, - "ipywidgets": { - "credit": 0.0136125, - "url": "https://pypi.org/project/ipywidgets" + "dask": { + "credit": 0.004895604395604395, + "url": "https://pypi.org/project/dask" + }, + "ujson": { + "credit": 0.003182142857142857, + "url": "https://pypi.org/project/ujson" + }, + "numba": { + "credit": 0.003182142857142857, + "url": "https://pypi.org/project/numba" + }, + "typing-extensions": { + "credit": 0.047732142857142855, + "url": "https://pypi.org/project/typing-extensions" + }, + "xattr": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/brotli" }, - "wheel": { - "credit": 0.0136125, - "url": "https://pypi.org/project/wheel" + "brotlicffi": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/brotlicffi" }, - "py-make": { - "credit": 0.0136125, - "url": "https://pypi.org/project/py-make" + "skia-pathops": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/skia-pathops" }, - "importlib-resources": { - "credit": 0.0136125, - "url": "https://pypi.org/project/importlib-resources" + "sympy": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/sympy" }, - "colorama": { - "credit": 0.0136125, - "url": "https://pypi.org/project/colorama" + "lz4": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.003426923076923077, + "url": "https://pypi.org/project/fs" }, "six": { - "credit": 0.0023958, + "credit": 0.00891, "url": "https://pypi.org/project/six" }, - "pytest-xdist": { - "credit": 0.0019965, - "url": "https://pypi.org/project/pytest-xdist" + "pytest-timeout": { + "credit": 0.002784375, + "url": "https://pypi.org/project/pytest-timeout" }, - "hypothesis": { - "credit": 0.0019965, - "url": "https://pypi.org/project/hypothesis" + "pyroma": { + "credit": 0.002784375, + "url": "https://pypi.org/project/pyroma" }, - "pytz": { - "credit": 0.0019965, - "url": "https://pypi.org/project/pytz" + "markdown2": { + "credit": 0.002784375, + "url": "https://pypi.org/project/markdown2" }, - "python-dateutil": { - "credit": 0.0019965, - "url": "https://pypi.org/project/python-dateutil" + "defusedxml": { + "credit": 0.002784375, + "url": "https://pypi.org/project/defusedxml" }, - "objgraph": { - "credit": 0.011979, - "url": "https://pypi.org/project/objgraph" + "coverage": { + "credit": 0.002784375, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.002784375, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.002784375, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.004497836538461538, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.002784375, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.002784375, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.002784375, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.002784375, + "url": "https://pypi.org/project/olefile" }, "PyTest-Cov": { - "credit": 0.0019965, + "credit": 0.007425, "url": "https://pypi.org/project/PyTest-Cov" }, "PyTest": { - "credit": 0.0019965, + "credit": 0.007425, "url": "https://pypi.org/project/PyTest" }, - "sphinx": { - "credit": 0.0019965, - "url": "https://pypi.org/project/sphinx" - }, "bump2version": { - "credit": 0.0019965, + "credit": 0.007425, "url": "https://pypi.org/project/bump2version" }, "tox": { - "credit": 0.0019965, + "credit": 0.007425, "url": "https://pypi.org/project/tox" }, - "wrapt": { - "credit": 0.0019965, - "url": "https://pypi.org/project/wrapt" + "objgraph": { + "credit": 0.04455, + "url": "https://pypi.org/project/objgraph" + }, + "scanpydoc": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/scanpydoc" + }, + "jupyter-client": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/jupyter-client" + }, + "ipython": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/ipython" + }, + "sphinx-autosummary-accessors": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/sphinx-autosummary-accessors" + }, + "nc-time-axis": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/nc-time-axis" + }, + "seaborn": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/seaborn" + }, + "pooch": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/pooch" + }, + "cfgrib": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/cfgrib" + }, + "rasterio": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/rasterio" + }, + "fsspec": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/fsspec" + }, + "pydap": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/pydap" + }, + "h5netcdf": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/h5netcdf" + }, + "netCDF4": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/netCDF4" + }, + "numbagg": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/numbagg" + }, + "bottleneck": { + "credit": 0.0017134615384615385, + "url": "https://pypi.org/project/bottleneck" } } } \ No newline at end of file diff --git a/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/README.md b/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/README.md index 316f05b9..d7d0dc79 100644 --- a/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/README.md +++ b/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/README.md @@ -8,102 +8,53 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.16| -|pypi|[matplotlib](https://matplotlib.org)|0.09| -|pypi|[h5py](http://www.h5py.org)|0.073| -|pypi|[ipdb](https://github.com/gotcha/ipdb)|0.071| -|pypi|[pytest](https://pypi.org/project/pytest)|0.066| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.053| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.02| -|pypi|[scipy](https://www.scipy.org)|0.02| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.02| -|pypi|[pandas](https://pypi.org/project/pandas)|0.02| -|pypi|[requests](https://pypi.org/project/requests)|0.019| -|pypi|[codecov](https://pypi.org/project/codecov)|0.012| -|pypi|[cython](https://pypi.org/project/cython)|0.012| -|pypi|[colorama](https://pypi.org/project/colorama)|0.012| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.011| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.011| +|pypi|[astropy](http://astropy.org)|0.025| +|pypi|[h5py](https://pypi.org/project/h5py)|0.025| +|pypi|[ipdb](https://pypi.org/project/ipdb)|0.025| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.025| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.025| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.025| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.025| +|pypi|[twine](https://pypi.org/project/twine)|0.025| +|pypi|[wheel](https://pypi.org/project/wheel)|0.025| +|pypi|[sphinx_automodapi](https://pypi.org/project/sphinx_automodapi)|0.023| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.023| +|pypi|[babel](https://pypi.org/project/babel)|0.023| +|pypi|[cycler](https://pypi.org/project/cycler)|0.023| +|pypi|[docutils](https://pypi.org/project/docutils)|0.023| +|pypi|[fonttools](https://pypi.org/project/fonttools)|0.023| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.023| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.023| +|pypi|[keyring](https://pypi.org/project/keyring)|0.023| +|pypi|[kiwisolver](https://pypi.org/project/kiwisolver)|0.023| +|pypi|[pillow](https://pypi.org/project/pillow)|0.023| +|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.023| +|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.023| +|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.023| +|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.023| +|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.023| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.023| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.023| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.023| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.023| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.023| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.023| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.023| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.023| +|pypi|[bleach](https://pypi.org/project/bleach)|0.023| +|pypi|[jeepney](https://pypi.org/project/jeepney)|0.023| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.023| +|pypi|[SecretStorage](https://pypi.org/project/SecretStorage)|0.023| +|pypi|[coverage](https://pypi.org/project/coverage)|0.023| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.023| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.023| +|pypi|[cffi](https://pypi.org/project/cffi)|0.023| +|pypi|[pycparser](https://pypi.org/project/pycparser)|0.023| |setup.py|github/s-goldman/Dusty-Evolved-Star-Kit|0.01| -|pypi|[wheel](https://github.com/pypa/wheel)|0.009| -|pypi|[twine](https://twine.readthedocs.io/)|0.009| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.009| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.009| -|pypi|[py-make](https://pypi.org/project/py-make)|0.009| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.009| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.009| -|pypi|[six](https://pypi.org/project/six)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[rich](https://pypi.org/project/rich)|0.008| -|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.008| -|pypi|[keyring](https://pypi.org/project/keyring)|0.008| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.008| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.008| -|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.008| -|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.008| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.005| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.005| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.005| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.005| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.005| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.005| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.005| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.005| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.005| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.005| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.005| -|pypi|[packaging](https://pypi.org/project/packaging)|0.005| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[flake8](https://pypi.org/project/flake8)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[docutils](https://pypi.org/project/docutils)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| -|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.002| -|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.002| -|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.002| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.002| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.002| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.002| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.002| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| -|pypi|[ipython](https://pypi.org/project/ipython)|0.002| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.002| -|pypi|[asdf](https://pypi.org/project/asdf)|0.002| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.002| -|pypi|[jplephem](https://pypi.org/project/jplephem)|0.002| -|pypi|[pytz](https://pypi.org/project/pytz)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| -|pypi|[bleach](https://pypi.org/project/bleach)|0.002| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.002| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.002| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.002| -|pypi|[dask](https://pypi.org/project/dask)|0.002| -|pypi|[certifi](https://pypi.org/project/certifi)|0.002| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.002| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.002| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.002| -|pypi|[astropy](http://astropy.org)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[sphinx_automodapi](https://github.com/astropy/sphinx-automodapi)|0.001| -|pypi|[seaborn](https://seaborn.pydata.org)|0.001| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.001| +|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|0.002| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.002| +|pypi|[scipy](https://pypi.org/project/scipy)|0.002| +|pypi|[numpy](https://pypi.org/project/numpy)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/badge.png b/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/badge.png index de4c3cf0..68c86898 100644 Binary files a/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/badge.png and b/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/badge.png differ diff --git a/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/data.json b/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/data.json index 3bd822f4..037acb75 100644 --- a/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/data.json +++ b/_repos/github/s-goldman/Dusty-Evolved-Star-Kit/data.json @@ -6,389 +6,193 @@ } }, "pypi": { + "desk": { + "credit": 0.00023023255813953494, + "url": "https://github.com/s-goldman/Dusty_Evolved_Star_Kit" + }, "astropy": { - "credit": 0.0007071428571428784, + "credit": 0.024776565295169944, "url": "http://astropy.org" }, - "numpy": { - "credit": 0.1602234183673469, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.02020913265306123, - "url": "https://www.scipy.org" - }, - "tqdm": { - "credit": 0.0007071428571428645, - "url": "https://tqdm.github.io" + "h5py": { + "credit": 0.024776565295169944, + "url": "https://pypi.org/project/h5py" }, "ipdb": { - "credit": 0.07071428571428572, - "url": "https://github.com/gotcha/ipdb" + "credit": 0.024776565295169944, + "url": "https://pypi.org/project/ipdb" }, "matplotlib": { - "credit": 0.09021627551020409, - "url": "https://matplotlib.org" - }, - "h5py": { - "credit": 0.07271448979591837, - "url": "http://www.h5py.org" + "credit": 0.024776565295169944, + "url": "https://pypi.org/project/matplotlib" }, - "wheel": { - "credit": 0.009458035714285721, - "url": "https://github.com/pypa/wheel" + "pytest-cov": { + "credit": 0.024776565295169944, + "url": "https://pypi.org/project/pytest-cov" }, - "twine": { - "credit": 0.009458035714285721, - "url": "https://twine.readthedocs.io/" + "seaborn": { + "credit": 0.024776565295169944, + "url": "https://pypi.org/project/seaborn" }, "sphinx": { - "credit": 0.019760368916797492, - "url": "https://www.sphinx-doc.org/" + "credit": 0.024776565295169944, + "url": "https://pypi.org/project/sphinx" }, "sphinx_automodapi": { - "credit": 0.0007071428571428645, - "url": "https://github.com/astropy/sphinx-automodapi" - }, - "pytest-cov": { - "credit": 0.05276373626373626, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "seaborn": { - "credit": 0.0007071428571428645, - "url": "https://seaborn.pydata.org" - }, - "pytest-runner": { - "credit": 0.0007071428571428645, - "url": "https://github.com/pytest-dev/pytest-runner/" + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/sphinx_automodapi" }, - "sgp4": { - "credit": 0.0020002040816326527, - "url": "https://github.com/brandon-rhodes/python-sgp4" + "twine": { + "credit": 0.024776565295169944, + "url": "https://pypi.org/project/twine" }, - "skyfield": { - "credit": 0.0020002040816326527, - "url": "http://github.com/brandon-rhodes/python-skyfield/" + "wheel": { + "credit": 0.024776565295169944, + "url": "https://pypi.org/project/wheel" }, - "coverage": { - "credit": 0.020438752040816324, - "url": "https://github.com/nedbat/coveragepy" + "alabaster": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/alabaster" }, - "objgraph": { - "credit": 2.0002040816326748e-05, - "url": "https://mg.pov.lt/objgraph/" + "babel": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/babel" }, - "pytest-xdist": { - "credit": 0.010751096938775509, - "url": "https://github.com/pytest-dev/pytest-xdist" + "cycler": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/cycler" }, - "pytest-astropy": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/pytest-astropy" + "docutils": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/docutils" }, - "pytest-astropy-header": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/pytest-astropy-header" + "fonttools": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/fonttools" }, - "pytest-doctestplus": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/pytest-doctestplus" + "importlib-metadata": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/importlib-metadata" }, "Jinja2": { - "credit": 0.004800489795918367, + "credit": 0.023023255813953487, "url": "https://pypi.org/project/Jinja2" }, - "sphinx-changelog": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/sphinx-changelog" - }, - "sphinx-astropy": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/sphinx-astropy" - }, - "typing-extensions": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/typing-extensions" - }, - "pytest": { - "credit": 0.06560797605965463, - "url": "https://pypi.org/project/pytest" - }, - "ipython": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/ipython" - }, - "bottleneck": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/bottleneck" - }, - "asdf": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/asdf" - }, - "mpmath": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/mpmath" - }, - "jplephem": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/jplephem" - }, - "pytz": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/pytz" - }, - "sortedcontainers": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/sortedcontainers" - }, - "pandas": { - "credit": 0.019501989795918367, - "url": "https://pypi.org/project/pandas" - }, - "bleach": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/bleach" - }, - "html5lib": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/html5lib" - }, - "beautifulsoup4": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/beautifulsoup4" - }, - "pyarrow": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/pyarrow" - }, - "dask": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/dask" - }, - "certifi": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/certifi" - }, - "packaging": { - "credit": 0.004800489795918367, - "url": "https://pypi.org/project/packaging" - }, - "PyYAML": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/PyYAML" - }, - "pyerfa": { - "credit": 0.0020002040816326527, - "url": "https://pypi.org/project/pyerfa" - }, - "requests": { - "credit": 0.01932975, - "url": "https://pypi.org/project/requests" - }, - "slack-sdk": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/slack-sdk" - }, - "ipywidgets": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/ipywidgets" - }, - "py-make": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/py-make" - }, - "importlib-resources": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/importlib-resources" - }, - "colorama": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/colorama" - }, - "rich": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/rich" - }, - "rfc3986": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/rfc3986" - }, "keyring": { - "credit": 0.007778571428571428, + "credit": 0.023023255813953487, "url": "https://pypi.org/project/keyring" }, - "importlib-metadata": { - "credit": 0.010578857142857142, - "url": "https://pypi.org/project/importlib-metadata" - }, - "urllib3": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/urllib3" + "kiwisolver": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/kiwisolver" }, - "requests-toolbelt": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "readme-renderer": { - "credit": 0.007778571428571428, - "url": "https://pypi.org/project/readme-renderer" + "pillow": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/pillow" }, "pkginfo": { - "credit": 0.007778571428571428, + "credit": 0.023023255813953487, "url": "https://pypi.org/project/pkginfo" }, - "types-requests": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/docutils-stubs" - }, - "mypy": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/mypy" - }, - "isort": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/isort" - }, - "flake8": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/flake8" - }, - "sphinxcontrib-websupport": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/sphinxcontrib-websupport" + "pyerfa": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/pyerfa" }, - "imagesize": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/imagesize" + "readme-renderer": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/readme-renderer" }, - "alabaster": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/alabaster" + "requests-toolbelt": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/requests-toolbelt" }, - "babel": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/babel" + "rfc3986": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/rfc3986" }, "snowballstemmer": { - "credit": 0.002800285714285714, + "credit": 0.023023255813953487, "url": "https://pypi.org/project/snowballstemmer" }, - "docutils": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/docutils" - }, - "Pygments": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/Pygments" - }, - "sphinxcontrib-qthelp": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, "sphinxcontrib-htmlhelp": { - "credit": 0.002800285714285714, + "credit": 0.023023255813953487, "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" }, - "sphinxcontrib-jsmath": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" + "sphinxcontrib-serializinghtml": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" }, - "sphinxcontrib-devhelp": { - "credit": 0.002800285714285714, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" + "imagesize": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/imagesize" }, "sphinxcontrib-applehelp": { - "credit": 0.002800285714285714, + "credit": 0.023023255813953487, "url": "https://pypi.org/project/sphinxcontrib-applehelp" }, - "codecov": { - "credit": 0.011667857142857141, - "url": "https://pypi.org/project/codecov" - }, - "cython": { - "credit": 0.011667857142857141, - "url": "https://pypi.org/project/cython" - }, - "virtualenv": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/virtualenv" - }, - "six": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/six" + "sphinxcontrib-devhelp": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" }, - "process-tests": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/process-tests" + "sphinxcontrib-jsmath": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" }, - "hunter": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/hunter" + "sphinxcontrib-qthelp": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" }, - "fields": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/fields" + "bleach": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/bleach" }, - "pytest-mypy": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/pytest-mypy" + "jeepney": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/jeepney" }, - "pytest-black": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/pytest-black" + "MarkupSafe": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/MarkupSafe" }, - "types-setuptools": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/types-setuptools" + "SecretStorage": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/SecretStorage" }, - "pytest-virtualenv": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/pytest-virtualenv" + "coverage": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/coverage" }, - "pytest-enabler": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/pytest-enabler" + "cryptography": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/cryptography" }, - "pytest-flake8": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/pytest-flake8" + "webencodings": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/webencodings" }, - "pytest-checkdocs": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/pytest-checkdocs" + "cffi": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/cffi" }, - "jaraco.tidelift": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/jaraco.tidelift" + "pycparser": { + "credit": 0.023023255813953487, + "url": "https://pypi.org/project/pycparser" }, - "rst.linker": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/rst.linker" + "sphinx-automodapi": { + "credit": 0.001753309481216458, + "url": "https://pypi.org/project/sphinx-automodapi" }, - "jaraco.packaging": { - "credit": 0.0053851648351648344, - "url": "https://pypi.org/project/jaraco.packaging" + "tqdm": { + "credit": 0.001753309481216458, + "url": "https://pypi.org/project/tqdm" }, - "tomli": { - "credit": 0.001980202040816326, - "url": "https://pypi.org/project/tomli" + "scipy": { + "credit": 0.001753309481216458, + "url": "https://pypi.org/project/scipy" }, - "graphviz": { - "credit": 0.001980202040816326, - "url": "https://pypi.org/project/graphviz" + "numpy": { + "credit": 0.001753309481216458, + "url": "https://pypi.org/project/numpy" } } } \ No newline at end of file diff --git a/_repos/github/sagepublishing/rejected_article_tracker_pkg/README.md b/_repos/github/sagepublishing/rejected_article_tracker_pkg/README.md index e488ad39..633dbe43 100644 --- a/_repos/github/sagepublishing/rejected_article_tracker_pkg/README.md +++ b/_repos/github/sagepublishing/rejected_article_tracker_pkg/README.md @@ -8,78 +8,48 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.09| -|pypi|[xlsxwriter](https://github.com/jmcnamara/XlsxWriter)|0.071| -|pypi|[oaiharvest](http://github.com/bloomonkey/oai-harvest)|0.071| -|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|0.071| +|pypi|[et-xmlfile](https://foss.heptapod.net/openpyxl/et_xmlfile)|0.141| +|pypi|[oaiharvest](http://github.com/bloomonkey/oai-harvest)|0.077| +|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|0.077| +|pypi|[xlsxwriter](https://github.com/jmcnamara/XlsxWriter)|0.077| |pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.071| -|pypi|[et-xmlfile](https://pypi.org/project/et-xmlfile)|0.07| +|pypi|[lxml](https://lxml.de/)|0.071| +|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.071| +|pypi|[pyoai](http://www.infrae.com/download/oaipmh)|0.071| |pypi|[python-levenshtein](https://pypi.org/project/python-levenshtein)|0.07| |pypi|[six](https://pypi.org/project/six)|0.07| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.024| |pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.023| |pypi|[coverage](https://pypi.org/project/coverage)|0.023| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.023| -|pypi|[pytest](https://pypi.org/project/pytest)|0.019| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.012| -|pypi|[pytz](https://pypi.org/project/pytz)|0.012| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.012| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.01| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.01| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.01| -|pypi|[idna](https://pypi.org/project/idna)|0.01| -|pypi|[chardet](https://pypi.org/project/chardet)|0.01| -|pypi|[certifi](https://pypi.org/project/certifi)|0.01| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.01| |setup.py|github/sagepublishing/rejected_article_tracker_pkg|0.01| -|pypi|[requests](https://requests.readthedocs.io)|0.009| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.009| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.009| -|pypi|[wheel](https://pypi.org/project/wheel)|0.009| -|pypi|[twine](https://pypi.org/project/twine)|0.009| -|pypi|[py-make](https://pypi.org/project/py-make)|0.009| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[scipy](https://pypi.org/project/scipy)|0.007| -|pypi|[pandas](https://pandas.pydata.org)|0.007| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.006| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.006| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.006| -|pypi|[mypy](http://www.mypy-lang.org/)|0.003| -|pypi|[black](https://pypi.org/project/black)|0.003| -|pypi|[flake8](https://pypi.org/project/flake8)|0.003| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.003| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.003| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.003| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.003| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.003| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.003| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.003| -|pypi|[joblib](https://pypi.org/project/joblib)|0.003| -|pypi|[statsmodels](https://pypi.org/project/statsmodels)|0.003| -|pypi|[nltk](https://pypi.org/project/nltk)|0.003| -|pypi|[annoy](https://pypi.org/project/annoy)|0.003| -|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|0.003| -|pypi|[sphinxcontrib.programoutput](https://pypi.org/project/sphinxcontrib.programoutput)|0.003| -|pypi|[visdom](https://pypi.org/project/visdom)|0.003| -|pypi|[nmslib](https://pypi.org/project/nmslib)|0.003| -|pypi|[pyemd](https://pypi.org/project/pyemd)|0.003| -|pypi|[Morfessor](https://pypi.org/project/Morfessor)|0.003| -|pypi|[testfixtures](https://pypi.org/project/testfixtures)|0.003| -|pypi|[cython](https://pypi.org/project/cython)|0.003| -|pypi|[mock](https://pypi.org/project/mock)|0.003| -|pypi|[Pyro4](https://pypi.org/project/Pyro4)|0.003| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.003| -|pypi|[smart-open](https://pypi.org/project/smart-open)|0.003| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| -|pypi|[markdown](https://Python-Markdown.github.io/)|0.001| -|pypi|[openpyxl](https://openpyxl.readthedocs.io)|0.001| -|pypi|[fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy)|0.001| -|pypi|[langdetect](https://github.com/Mimino666/langdetect)|0.001| -|pypi|[gensim](http://radimrehurek.com/gensim)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| +|pypi|[fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy)|0.007| +|pypi|[langdetect](https://github.com/Mimino666/langdetect)|0.007| +|pypi|[markdown](https://Python-Markdown.github.io/)|0.007| +|pypi|[openpyxl](https://openpyxl.readthedocs.io)|0.007| +|pypi|[numpy](https://www.numpy.org)|0.006| +|pypi|[gensim](http://radimrehurek.com/gensim)|0.006| +|pypi|[requests](https://pypi.org/project/requests)|0.006| +|pypi|[pandas](https://pypi.org/project/pandas)|0.006| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.006| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.004| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.004| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.004| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.004| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| +|pypi|[pytest](https://pypi.org/project/pytest)|0.004| +|pypi|[ipython](https://pypi.org/project/ipython)|0.004| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.004| +|pypi|[zipp](https://pypi.org/project/zipp)|0.004| +|pypi|[rejected-article-tracker](https://github.com/sagepublishing/rejected_article_tracker_pkg)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/sagepublishing/rejected_article_tracker_pkg/badge.png b/_repos/github/sagepublishing/rejected_article_tracker_pkg/badge.png index b9c618c2..c932560e 100644 Binary files a/_repos/github/sagepublishing/rejected_article_tracker_pkg/badge.png and b/_repos/github/sagepublishing/rejected_article_tracker_pkg/badge.png differ diff --git a/_repos/github/sagepublishing/rejected_article_tracker_pkg/data.json b/_repos/github/sagepublishing/rejected_article_tracker_pkg/data.json index bb12471b..49b30e84 100644 --- a/_repos/github/sagepublishing/rejected_article_tracker_pkg/data.json +++ b/_repos/github/sagepublishing/rejected_article_tracker_pkg/data.json @@ -6,293 +6,169 @@ } }, "pypi": { - "scikit-learn": { - "credit": 0.0007071428571428645, - "url": "http://scikit-learn.org" - }, - "markdown": { - "credit": 0.0007071428571428645, - "url": "https://Python-Markdown.github.io/" - }, - "pandas": { - "credit": 0.007084605146406396, - "url": "https://pandas.pydata.org" - }, - "openpyxl": { + "rejected-article-tracker": { "credit": 0.0007071428571428645, - "url": "https://openpyxl.readthedocs.io" - }, - "xlsxwriter": { - "credit": 0.07071428571428572, - "url": "https://github.com/jmcnamara/XlsxWriter" + "url": "https://github.com/sagepublishing/rejected_article_tracker_pkg" }, "fuzzywuzzy": { - "credit": 0.0007071428571428645, + "credit": 0.006541071428571435, "url": "https://github.com/seatgeek/fuzzywuzzy" }, - "requests": { - "credit": 0.009458035714285721, - "url": "https://requests.readthedocs.io" - }, - "oaiharvest": { - "credit": 0.07071428571428572, - "url": "http://github.com/bloomonkey/oai-harvest" - }, "langdetect": { - "credit": 0.0007071428571428645, + "credit": 0.006541071428571435, "url": "https://github.com/Mimino666/langdetect" }, - "gensim": { - "credit": 0.0007071428571428645, - "url": "http://radimrehurek.com/gensim" + "markdown": { + "credit": 0.006541071428571435, + "url": "https://Python-Markdown.github.io/" }, - "numpy": { - "credit": 0.08985971739130436, - "url": "https://www.numpy.org" + "oaiharvest": { + "credit": 0.07654821428571429, + "url": "http://github.com/bloomonkey/oai-harvest" + }, + "openpyxl": { + "credit": 0.006541071428571435, + "url": "https://openpyxl.readthedocs.io" }, "python-Levenshtein": { - "credit": 0.07071428571428572, + "credit": 0.07654821428571429, "url": "http://github.com/ztane/python-Levenshtein" }, - "tqdm": { - "credit": 0.0007071428571428645, - "url": "https://tqdm.github.io" + "xlsxwriter": { + "credit": 0.07654821428571429, + "url": "https://github.com/jmcnamara/XlsxWriter" }, "xmltodict": { "credit": 0.07071428571428572, "url": "https://github.com/martinblech/xmltodict" }, - "pyamg": { - "credit": 3.3336734693877046e-05, - "url": "https://github.com/pyamg/pyamg" - }, - "mypy": { - "credit": 0.003333673469387755, - "url": "http://www.mypy-lang.org/" - }, - "black": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/black" - }, - "flake8": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/flake8" - }, - "pytest-cov": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/pytest-cov" - }, - "pytest": { - "credit": 0.019145431677018633, - "url": "https://pypi.org/project/pytest" - }, - "sphinxext-opengraph": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/sphinxext-opengraph" - }, - "sphinx-prompt": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/sphinx-prompt" - }, - "Pillow": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/Pillow" - }, - "numpydoc": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/numpydoc" - }, - "sphinx-gallery": { - "credit": 0.006377462289263531, - "url": "https://pypi.org/project/sphinx-gallery" - }, - "sphinx": { - "credit": 0.006377462289263531, - "url": "https://pypi.org/project/sphinx" - }, - "seaborn": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/seaborn" - }, - "scikit-image": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/scikit-image" - }, - "memory-profiler": { - "credit": 0.006377462289263531, - "url": "https://pypi.org/project/memory-profiler" - }, - "matplotlib": { - "credit": 0.006377462289263531, - "url": "https://pypi.org/project/matplotlib" - }, - "threadpoolctl": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/threadpoolctl" - }, - "joblib": { - "credit": 0.003333673469387755, - "url": "https://pypi.org/project/joblib" + "importlib-metadata": { + "credit": 0.024042857142857147, + "url": "https://github.com/python/importlib_metadata" }, - "scipy": { - "credit": 0.00747757453416149, - "url": "https://pypi.org/project/scipy" + "lxml": { + "credit": 0.07071428571428572, + "url": "https://lxml.de/" }, - "pyyaml": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/pyyaml" + "mock": { + "credit": 0.07071428571428572, + "url": "http://mock.readthedocs.org/en/latest/" }, - "coverage": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/coverage" + "pyoai": { + "credit": 0.07071428571428572, + "url": "http://www.infrae.com/download/oaipmh" }, - "importlib-metadata": { - "credit": 0.023335714285714283, - "url": "https://pypi.org/project/importlib-metadata" + "et-xmlfile": { + "credit": 0.14072142857142855, + "url": "https://foss.heptapod.net/openpyxl/et_xmlfile" }, - "pytest-xdist": { - "credit": 0.011667857142857141, - "url": "https://pypi.org/project/pytest-xdist" + "numpy": { + "credit": 0.005833928571428571, + "url": "https://www.numpy.org" }, - "hypothesis": { - "credit": 0.011667857142857141, - "url": "https://pypi.org/project/hypothesis" + "gensim": { + "credit": 0.005833928571428571, + "url": "http://radimrehurek.com/gensim" }, - "pytz": { - "credit": 0.011667857142857141, - "url": "https://pypi.org/project/pytz" + "requests": { + "credit": 0.005833928571428571, + "url": "https://pypi.org/project/requests" }, - "python-dateutil": { - "credit": 0.011667857142857141, - "url": "https://pypi.org/project/python-dateutil" + "pandas": { + "credit": 0.005833928571428571, + "url": "https://pypi.org/project/pandas" }, - "et-xmlfile": { - "credit": 0.07000714285714285, - "url": "https://pypi.org/project/et-xmlfile" + "scikit-learn": { + "credit": 0.005833928571428571, + "url": "https://pypi.org/project/scikit-learn" }, "python-levenshtein": { "credit": 0.07000714285714285, "url": "https://pypi.org/project/python-levenshtein" }, - "win-inet-pton": { - "credit": 0.010001020408163265, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.010001020408163265, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.010001020408163265, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.010001020408163265, - "url": "https://pypi.org/project/idna" - }, - "chardet": { - "credit": 0.010001020408163265, - "url": "https://pypi.org/project/chardet" - }, - "certifi": { - "credit": 0.010001020408163265, - "url": "https://pypi.org/project/certifi" - }, - "urllib3": { - "credit": 0.010001020408163265, - "url": "https://pypi.org/project/urllib3" - }, "six": { "credit": 0.07000714285714285, "url": "https://pypi.org/project/six" }, - "statsmodels": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/statsmodels" - }, - "nltk": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/nltk" - }, - "annoy": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/annoy" + "pyyaml": { + "credit": 0.023335714285714283, + "url": "https://pypi.org/project/pyyaml" }, - "sphinxcontrib-napoleon": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/sphinxcontrib-napoleon" + "coverage": { + "credit": 0.023335714285714283, + "url": "https://pypi.org/project/coverage" }, - "sphinxcontrib.programoutput": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/sphinxcontrib.programoutput" + "importlib-resources": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/importlib-resources" }, - "visdom": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/visdom" + "pytest-mypy": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-mypy" }, - "nmslib": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/nmslib" + "pytest-black": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-black" }, - "pyemd": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/pyemd" + "pytest-perf": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-perf" }, - "Morfessor": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/Morfessor" + "flufl.flake8": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/flufl.flake8" }, - "testfixtures": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/testfixtures" + "pyfakefs": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pyfakefs" }, - "cython": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/cython" + "packaging": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/packaging" }, - "mock": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/mock" + "pytest-enabler": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-enabler" }, - "Pyro4": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/Pyro4" + "pytest-cov": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-cov" }, - "dataclasses": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/dataclasses" + "pytest-flake8": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-flake8" }, - "smart-open": { - "credit": 0.003043788819875776, - "url": "https://pypi.org/project/smart-open" + "pytest-checkdocs": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-checkdocs" }, - "slack-sdk": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/slack-sdk" + "pytest": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest" }, - "ipywidgets": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/ipywidgets" + "ipython": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/ipython" }, - "wheel": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/wheel" + "rst.linker": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/rst.linker" }, - "twine": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/twine" + "jaraco.packaging": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/jaraco.packaging" }, - "py-make": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/py-make" + "sphinx": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/sphinx" }, - "importlib-resources": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/importlib-resources" + "typing-extensions": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/typing-extensions" }, - "colorama": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/colorama" + "zipp": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/zipp" } } } \ No newline at end of file diff --git a/_repos/github/samaygarg/fuelcell/badge.png b/_repos/github/samaygarg/fuelcell/badge.png index 2515f761..c3124721 100644 Binary files a/_repos/github/samaygarg/fuelcell/badge.png and b/_repos/github/samaygarg/fuelcell/badge.png differ diff --git a/_repos/github/sambit-giri/tools21cm/badge.png b/_repos/github/sambit-giri/tools21cm/badge.png index af2ed452..5a5d5bd6 100644 Binary files a/_repos/github/sambit-giri/tools21cm/badge.png and b/_repos/github/sambit-giri/tools21cm/badge.png differ diff --git a/_repos/github/samuelefiorini/tangle/README.md b/_repos/github/samuelefiorini/tangle/README.md index 114c1852..3faed246 100644 --- a/_repos/github/samuelefiorini/tangle/README.md +++ b/_repos/github/samuelefiorini/tangle/README.md @@ -8,110 +8,115 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.12| -|pypi|[matplotlib](https://matplotlib.org)|0.094| -|pypi|[joblib](https://joblib.readthedocs.io)|0.094| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.031| -|pypi|[lxml](https://pypi.org/project/lxml)|0.03| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.03| -|pypi|[soupsieve](https://pypi.org/project/soupsieve)|0.03| -|pypi|[requests](https://requests.readthedocs.io)|0.019| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.015| -|pypi|[pytz](https://pypi.org/project/pytz)|0.015| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.015| -|pypi|[wheel](https://pypi.org/project/wheel)|0.014| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.014| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.013| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.013| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.013| -|pypi|[idna](https://pypi.org/project/idna)|0.013| -|pypi|[chardet](https://pypi.org/project/chardet)|0.013| -|pypi|[certifi](https://pypi.org/project/certifi)|0.013| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.013| -|pypi|[pandas](https://pandas.pydata.org)|0.012| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.011| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.011| -|pypi|[twine](https://pypi.org/project/twine)|0.011| -|pypi|[py-make](https://pypi.org/project/py-make)|0.011| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.011| -|pypi|[colorama](https://pypi.org/project/colorama)|0.011| -|pypi|[h5py](https://pypi.org/project/h5py)|0.011| -|pypi|[scipy](https://pypi.org/project/scipy)|0.011| +|pypi|[six](https://pypi.org/project/six)|0.078| +|pypi|[pyasn1](https://github.com/etingof/pyasn1)|0.049| +|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.033| +|pypi|[h5py](http://www.h5py.org)|0.028| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.028| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.027| +|pypi|[rsa](https://stuvel.eu/rsa)|0.027| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.027| +|pypi|[matplotlib](https://matplotlib.org)|0.027| +|pypi|[tensorboard-data-server](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server)|0.027| +|pypi|[tensorboard-plugin-wit](https://whatif-tool.dev)|0.027| +|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.026| +|pypi|[flatbuffers](https://google.github.io/flatbuffers/)|0.026| +|pypi|[gast](https://github.com/serge-sans-paille/gast/)|0.026| +|pypi|[libclang](https://github.com/sighingnow/libclang)|0.026| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.026| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.026| +|pypi|[tangle](https://github.com/fifman/tangle)|0.025| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.025| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.025| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.022| +|pypi|[pytest](https://pypi.org/project/pytest)|0.022| +|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|0.017| +|pypi|[requests](https://pypi.org/project/requests)|0.015| +|pypi|[wheel](https://github.com/pypa/wheel)|0.014| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.01| +|pypi|[numpy](https://pypi.org/project/numpy)|0.01| +|pypi|[lxml](https://lxml.de/)|0.01| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.01| |setup.py|github/samuelefiorini/tangle|0.01| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.01| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.007| -|pypi|[pydot](https://pypi.org/project/pydot)|0.007| -|pypi|[markdown](https://pypi.org/project/markdown)|0.007| -|pypi|[flaky](https://pypi.org/project/flaky)|0.007| -|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|0.007| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.007| -|pypi|[filelock](https://pypi.org/project/filelock)|0.005| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.005| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.004| -|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.004| -|pypi|[keras](https://pypi.org/project/keras)|0.004| -|pypi|[tf-estimator-nightly](https://pypi.org/project/tf-estimator-nightly)|0.004| -|pypi|[tensorboard](https://pypi.org/project/tensorboard)|0.004| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.004| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.004| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.004| -|pypi|[six](https://pypi.org/project/six)|0.004| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.004| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.004| -|pypi|[libclang](https://pypi.org/project/libclang)|0.004| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.004| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.004| -|pypi|[gast](https://pypi.org/project/gast)|0.004| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.004| -|pypi|[astunparse](https://pypi.org/project/astunparse)|0.004| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.004| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.004| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[black](https://pypi.org/project/black)|0.004| -|pypi|[flake8](https://pypi.org/project/flake8)|0.004| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.004| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.004| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.004| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.004| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.004| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.004| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.003| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.003| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.003| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.003| -|pypi|[build](https://pypi.org/project/build)|0.003| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.003| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.003| -|pypi|[pip](https://pypi.org/project/pip)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.003| -|pypi|[mock](https://pypi.org/project/mock)|0.003| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.003| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.003| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.003| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.003| -|pypi|[furo](https://pypi.org/project/furo)|0.003| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.003| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.003| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.003| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.003| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.003| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.003| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.003| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| -|pypi|[psutil](https://pypi.org/project/psutil)|0.002| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.002| -|pypi|[execnet](https://pypi.org/project/execnet)|0.002| -|pypi|[Keras](https://github.com/keras-team/keras)|0.001| -|pypi|[tensorflow](https://www.tensorflow.org/)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/)|0.001| -|pypi|[scikit_learn](http://scikit-learn.org)|0.001| +|pypi|[coverage](https://pypi.org/project/coverage)|0.01| +|pypi|[enum34](https://pypi.org/project/enum34)|0.009| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.008| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.008| +|pypi|[click](https://pypi.org/project/click)|0.008| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.008| +|pypi|[blinker](https://pypi.org/project/blinker)|0.008| +|pypi|[cryptography](https://pypi.org/project/cryptography)|0.008| +|pypi|[tensorflow](https://www.tensorflow.org/)|0.007| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.006| +|pypi|[futures](https://pypi.org/project/futures)|0.006| +|pypi|[scipy](https://pypi.org/project/scipy)|0.006| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|0.005| +|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|0.005| +|pypi|[tensorflow-gpu](https://pypi.org/project/tensorflow-gpu)|0.005| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|0.005| +|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|0.005| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.005| +|pypi|[pandas](https://pypi.org/project/pandas)|0.004| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.004| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.004| +|pypi|[markdown](https://Python-Markdown.github.io/)|0.004| +|pypi|[keras](https://pypi.org/project/keras)|0.003| +|pypi|[absl-py](https://github.com/abseil/abseil-py)|0.003| +|pypi|[grpcio](https://grpc.io)|0.003| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.003| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|0.003| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.003| +|pypi|[pyasn1-modules](https://github.com/etingof/pyasn1-modules)|0.003| +|pypi|[packaging](https://pypi.org/project/packaging)|0.003| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|0.003| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.003| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.003| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.002| +|pypi|[google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib)|0.002| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|0.002| +|pypi|[pydot](https://github.com/pydot/pydot)|0.002| +|pypi|[flaky](https://pypi.org/project/flaky)|0.002| +|pypi|[xattr](https://pypi.org/project/xattr)|0.002| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.002| +|pypi|[munkres](https://pypi.org/project/munkres)|0.002| +|pypi|[brotli](https://pypi.org/project/brotli)|0.002| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.002| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.002| +|pypi|[sympy](https://pypi.org/project/sympy)|0.002| +|pypi|[lz4](https://pypi.org/project/lz4)|0.002| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.002| +|pypi|[fs](https://pypi.org/project/fs)|0.002| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.002| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.002| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.002| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.002| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.002| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.002| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.002| +|pypi|[olefile](https://pypi.org/project/olefile)|0.002| +|pypi|[astunparse](https://github.com/simonpercivall/astunparse)|0.001| +|pypi|[google-pasta](https://github.com/google/pasta)|0.001| +|pypi|[keras-preprocessing](https://github.com/keras-team/keras-preprocessing)|0.001| +|pypi|[opt-einsum](https://github.com/dgasmith/opt_einsum)|0.001| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|0.001| +|pypi|[tensorflow-io-gcs-filesystem](https://github.com/tensorflow/io)|0.001| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.001| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.001| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| +|pypi|[zipp](https://pypi.org/project/zipp)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/samuelefiorini/tangle/badge.png b/_repos/github/samuelefiorini/tangle/badge.png index 3bbadf8a..e89c7390 100644 Binary files a/_repos/github/samuelefiorini/tangle/badge.png and b/_repos/github/samuelefiorini/tangle/badge.png differ diff --git a/_repos/github/samuelefiorini/tangle/data.json b/_repos/github/samuelefiorini/tangle/data.json index e5c0691f..c4a86c71 100644 --- a/_repos/github/samuelefiorini/tangle/data.json +++ b/_repos/github/samuelefiorini/tangle/data.json @@ -6,417 +6,465 @@ } }, "pypi": { - "pandas": { - "credit": 0.011996703296703295, - "url": "https://pandas.pydata.org" + "tangle": { + "credit": 0.02475, + "url": "https://github.com/fifman/tangle" }, - "setuptools": { - "credit": 0.005142857142857141, - "url": "https://github.com/pypa/setuptools" + "beautifulsoup4": { + "credit": 0.00024750000000000466, + "url": "https://www.crummy.com/software/BeautifulSoup/bs4/" }, - "numpy": { - "credit": 0.12018956043956044, - "url": "https://www.numpy.org" + "Keras": { + "credit": 0.0002475000000000012, + "url": "https://github.com/keras-team/keras" }, "matplotlib": { - "credit": 0.09424285714285714, + "credit": 0.026634807692307694, "url": "https://matplotlib.org" }, - "requests": { - "credit": 0.01889134615384615, - "url": "https://requests.readthedocs.io" - }, - "Keras": { - "credit": 0.000899999999999998, - "url": "https://github.com/keras-team/keras" - }, "tensorflow": { - "credit": 0.000899999999999998, + "credit": 0.007375499999999998, "url": "https://www.tensorflow.org/" }, - "tqdm": { - "credit": 0.000899999999999998, - "url": "https://tqdm.github.io" - }, - "beautifulsoup4": { - "credit": 0.000899999999999998, - "url": "https://www.crummy.com/software/BeautifulSoup/bs4/" - }, - "joblib": { - "credit": 0.09424285714285714, - "url": "https://joblib.readthedocs.io" - }, - "scikit_learn": { - "credit": 0.000899999999999998, - "url": "http://scikit-learn.org" - }, - "pytest-xdist": { - "credit": 0.00987653970223325, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.03127114684509039, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.01485, - "url": "https://pypi.org/project/hypothesis" + "tf-estimator-nightly": { + "credit": 0.025916785714285715, + "url": "https://www.tensorflow.org/" }, - "pytz": { - "credit": 0.01485, - "url": "https://pypi.org/project/pytz" + "absl-py": { + "credit": 0.0032990934065934077, + "url": "https://github.com/abseil/abseil-py" }, - "python-dateutil": { - "credit": 0.01485, - "url": "https://pypi.org/project/python-dateutil" + "astunparse": { + "credit": 0.0014142857142857156, + "url": "https://github.com/simonpercivall/astunparse" }, - "pytest-mypy": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pytest-mypy" + "cycler": { + "credit": 0.02475, + "url": "https://github.com/matplotlib/cycler" }, - "pytest-cov": { - "credit": 0.013970896845090394, - "url": "https://pypi.org/project/pytest-cov" + "flatbuffers": { + "credit": 0.025916785714285715, + "url": "https://google.github.io/flatbuffers/" }, - "pytest-black": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pytest-black" + "fonttools": { + "credit": 0.0002475000000000012, + "url": "http://github.com/fonttools/fonttools" }, - "tomli": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/tomli" + "gast": { + "credit": 0.025916785714285715, + "url": "https://github.com/serge-sans-paille/gast/" }, - "tomli-w": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/tomli-w" + "google-pasta": { + "credit": 0.0014142857142857156, + "url": "https://github.com/google/pasta" }, - "ini2toml": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/ini2toml" + "grpcio": { + "credit": 0.0032990934065934077, + "url": "https://grpc.io" }, - "pip-run": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pip-run" + "h5py": { + "credit": 0.027801593406593408, + "url": "http://www.h5py.org" }, - "filelock": { - "credit": 0.005324443548387097, - "url": "https://pypi.org/project/filelock" + "keras-preprocessing": { + "credit": 0.0014142857142857156, + "url": "https://github.com/keras-team/keras-preprocessing" }, - "build": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/build" + "kiwisolver": { + "credit": 0.0002475000000000012, + "url": "https://github.com/nucleic/kiwi" }, - "jaraco.path": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/jaraco.path" + "libclang": { + "credit": 0.025916785714285715, + "url": "https://github.com/sighingnow/libclang" }, - "jaraco.envs": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/jaraco.envs" + "opt-einsum": { + "credit": 0.0014142857142857156, + "url": "https://github.com/dgasmith/opt_einsum" }, - "pip": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pip" + "pillow": { + "credit": 0.0002475000000000012, + "url": "https://python-pillow.org" }, - "wheel": { - "credit": 0.014011693548387097, - "url": "https://pypi.org/project/wheel" + "protobuf": { + "credit": 0.027801593406593408, + "url": "https://developers.google.com/protocol-buffers/" }, - "virtualenv": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/virtualenv" + "soupsieve": { + "credit": 0.000329175000000001, + "url": "https://facelessuser.github.io/soupsieve/" }, - "flake8-2020": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/flake8-2020" + "tensorboard": { + "credit": 0.0014142857142857156, + "url": "https://github.com/tensorflow/tensorboard" }, - "mock": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/mock" + "tensorflow-io-gcs-filesystem": { + "credit": 0.0014142857142857121, + "url": "https://github.com/tensorflow/io" }, - "pytest-perf": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pytest-perf" + "termcolor": { + "credit": 0.025916785714285715, + "url": "http://pypi.python.org/pypi/termcolor" }, - "pytest-enabler": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pytest-enabler" + "wrapt": { + "credit": 0.025916785714285715, + "url": "https://github.com/GrahamDumpleton/wrapt" }, - "pytest-flake8": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pytest-flake8" + "google-auth": { + "credit": 0.010299807692307693, + "url": "https://github.com/googleapis/google-auth-library-python" }, - "pytest-checkdocs": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pytest-checkdocs" + "google-auth-oauthlib": { + "credit": 0.0021323076923076972, + "url": "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib" }, - "furo": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/furo" + "markdown": { + "credit": 0.00401711538461539, + "url": "https://Python-Markdown.github.io/" }, - "sphinxcontrib-towncrier": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" + "tensorboard-data-server": { + "credit": 0.026634807692307694, + "url": "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server" }, - "sphinx-inline-tabs": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/sphinx-inline-tabs" + "tensorboard-plugin-wit": { + "credit": 0.026634807692307694, + "url": "https://whatif-tool.dev" }, - "sphinx-favicon": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/sphinx-favicon" + "werkzeug": { + "credit": 0.0021323076923076938, + "url": "https://palletsprojects.com/p/werkzeug/" }, - "pygments-github-lexers": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/pygments-github-lexers" + "wheel": { + "credit": 0.014383557692307694, + "url": "https://github.com/pypa/wheel" }, - "jaraco.tidelift": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/jaraco.tidelift" + "cachetools": { + "credit": 0.0274725, + "url": "https://github.com/tkem/cachetools/" }, - "rst.linker": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/rst.linker" + "importlib-metadata": { + "credit": 0.008415, + "url": "https://github.com/python/importlib_metadata" }, - "jaraco.packaging": { - "credit": 0.0028741935483870967, - "url": "https://pypi.org/project/jaraco.packaging" + "pyasn1-modules": { + "credit": 0.0029700000000000013, + "url": "https://github.com/etingof/pyasn1-modules" }, - "sphinx": { - "credit": 0.0071170506912442396, - "url": "https://pypi.org/project/sphinx" + "requests-oauthlib": { + "credit": 0.008415000000000004, + "url": "https://github.com/requests/requests-oauthlib" }, - "win-inet-pton": { - "credit": 0.012728571428571428, - "url": "https://pypi.org/project/win-inet-pton" + "rsa": { + "credit": 0.0274725, + "url": "https://stuvel.eu/rsa" }, - "PySocks": { - "credit": 0.012728571428571428, - "url": "https://pypi.org/project/PySocks" + "oauthlib": { + "credit": 0.016582500000000003, + "url": "https://github.com/oauthlib/oauthlib" }, - "charset-normalizer": { - "credit": 0.012728571428571428, - "url": "https://pypi.org/project/charset-normalizer" + "pyasn1": { + "credit": 0.049252500000000005, + "url": "https://github.com/etingof/pyasn1" }, - "idna": { - "credit": 0.012728571428571428, - "url": "https://pypi.org/project/idna" + "lxml": { + "credit": 0.010052307692307692, + "url": "https://lxml.de/" }, - "chardet": { - "credit": 0.012728571428571428, - "url": "https://pypi.org/project/chardet" + "html5lib": { + "credit": 8.16749999999998e-05, + "url": "https://github.com/html5lib/html5lib-python" }, - "certifi": { - "credit": 0.012728571428571428, - "url": "https://pypi.org/project/certifi" + "pydot": { + "credit": 0.0018848076923076924, + "url": "https://github.com/pydot/pydot" }, - "urllib3": { - "credit": 0.012728571428571428, - "url": "https://pypi.org/project/urllib3" + "requests": { + "credit": 0.014659615384615384, + "url": "https://pypi.org/project/requests" }, - "pydot": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/pydot" + "pandas": { + "credit": 0.004112307692307692, + "url": "https://pypi.org/project/pandas" }, - "markdown": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/markdown" + "pytest-cov": { + "credit": 0.022319026442307696, + "url": "https://pypi.org/project/pytest-cov" }, "flaky": { - "credit": 0.006853846153846154, + "credit": 0.0018848076923076924, "url": "https://pypi.org/project/flaky" }, + "pytest-xdist": { + "credit": 0.004112307692307692, + "url": "https://pypi.org/project/pytest-xdist" + }, "pytest-pep8": { - "credit": 0.006853846153846154, + "credit": 0.004947620192307692, "url": "https://pypi.org/project/pytest-pep8" }, - "h5py": { - "credit": 0.011096703296703297, - "url": "https://pypi.org/project/h5py" + "pytest": { + "credit": 0.022319026442307696, + "url": "https://pypi.org/project/pytest" }, "pyyaml": { - "credit": 0.006853846153846154, + "credit": 0.010052307692307692, "url": "https://pypi.org/project/pyyaml" }, "scipy": { - "credit": 0.011096703296703297, + "credit": 0.005997115384615385, "url": "https://pypi.org/project/scipy" }, - "grpcio": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/grpcio" - }, - "tensorflow-io-gcs-filesystem": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/tensorflow-io-gcs-filesystem" + "numpy": { + "credit": 0.010226713598901099, + "url": "https://pypi.org/project/numpy" }, "keras": { - "credit": 0.004242857142857143, + "credit": 0.0033942857142857143, "url": "https://pypi.org/project/keras" }, - "tf-estimator-nightly": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/tf-estimator-nightly" - }, - "tensorboard": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/tensorboard" - }, - "wrapt": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/wrapt" - }, "typing-extensions": { - "credit": 0.004242857142857143, + "credit": 0.027030535714285715, "url": "https://pypi.org/project/typing-extensions" }, - "termcolor": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/termcolor" - }, "six": { - "credit": 0.004242857142857143, + "credit": 0.0775415732142857, "url": "https://pypi.org/project/six" }, - "protobuf": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/protobuf" + "setuptools": { + "credit": 0.0030515934065934065, + "url": "https://pypi.org/project/setuptools" }, - "opt-einsum": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/opt-einsum" + "xattr": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/xattr" }, - "libclang": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/libclang" + "unicodedata2": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/unicodedata2" }, - "keras-preprocessing": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/keras-preprocessing" + "munkres": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/munkres" }, - "google-pasta": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/google-pasta" + "brotli": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/brotli" }, - "gast": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/gast" + "brotlicffi": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/brotlicffi" }, - "flatbuffers": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/flatbuffers" + "skia-pathops": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/skia-pathops" }, - "astunparse": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/astunparse" + "sympy": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/sympy" }, - "absl-py": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/absl-py" + "lz4": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/lz4" }, - "slack-sdk": { - "credit": 0.0111375, - "url": "https://pypi.org/project/slack-sdk" + "zopfli": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/zopfli" }, - "ipywidgets": { - "credit": 0.0111375, - "url": "https://pypi.org/project/ipywidgets" + "fs": { + "credit": 0.0018848076923076924, + "url": "https://pypi.org/project/fs" }, - "twine": { - "credit": 0.0111375, - "url": "https://pypi.org/project/twine" + "grpcio-tools": { + "credit": 0.006125625, + "url": "https://pypi.org/project/grpcio-tools" }, - "py-make": { - "credit": 0.0111375, - "url": "https://pypi.org/project/py-make" + "enum34": { + "credit": 0.008848125, + "url": "https://pypi.org/project/enum34" }, - "importlib-resources": { - "credit": 0.0111375, - "url": "https://pypi.org/project/importlib-resources" + "futures": { + "credit": 0.006125625, + "url": "https://pypi.org/project/futures" }, - "colorama": { - "credit": 0.0111375, - "url": "https://pypi.org/project/colorama" + "flake8": { + "credit": 0.0022275, + "url": "https://pypi.org/project/flake8" }, - "lxml": { - "credit": 0.0297, - "url": "https://pypi.org/project/lxml" + "Pillow": { + "credit": 0.0022275, + "url": "https://pypi.org/project/Pillow" }, - "html5lib": { - "credit": 0.0297, - "url": "https://pypi.org/project/html5lib" + "numpydoc": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/numpydoc" }, - "soupsieve": { - "credit": 0.0297, - "url": "https://pypi.org/project/soupsieve" + "sphinx-rtd-theme": { + "credit": 0.00459421875, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinxcontrib-napoleon": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/sphinxcontrib-napoleon" }, - "pyamg": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/pyamg" + "sphinx": { + "credit": 0.00595546875, + "url": "https://pypi.org/project/sphinx" }, - "mypy": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/mypy" + "pytest-timeout": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/pytest-timeout" }, - "black": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/black" + "pyroma": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/pyroma" }, - "flake8": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/flake8" + "packaging": { + "credit": 0.0028926562500000003, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.00969890625, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/check-manifest" }, "sphinxext-opengraph": { - "credit": 0.004242857142857143, + "credit": 0.00153140625, "url": "https://pypi.org/project/sphinxext-opengraph" }, - "sphinx-prompt": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/sphinx-prompt" + "sphinx-removed-in": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "Pillow": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/Pillow" + "sphinx-issues": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/sphinx-issues" }, - "numpydoc": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/numpydoc" + "sphinx-copybutton": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.00153140625, + "url": "https://pypi.org/project/olefile" + }, + "backports-functools-lru-cache": { + "credit": 0.032588325, + "url": "https://pypi.org/project/backports-functools-lru-cache" + }, + "tensorflow-rocm": { + "credit": 0.0049005, + "url": "https://pypi.org/project/tensorflow-rocm" + }, + "tensorflow-gpu": { + "credit": 0.0049005, + "url": "https://pypi.org/project/tensorflow-gpu" + }, + "tensorflow-cpu": { + "credit": 0.0049005, + "url": "https://pypi.org/project/tensorflow-cpu" + }, + "tensorflow-aarch64": { + "credit": 0.0049005, + "url": "https://pypi.org/project/tensorflow-aarch64" + }, + "pyu2f": { + "credit": 0.0027225, + "url": "https://pypi.org/project/pyu2f" + }, + "pyopenssl": { + "credit": 0.0027225, + "url": "https://pypi.org/project/pyopenssl" }, - "sphinx-gallery": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/sphinx-gallery" + "aiohttp": { + "credit": 0.0027225, + "url": "https://pypi.org/project/aiohttp" }, - "seaborn": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/seaborn" + "click": { + "credit": 0.0081675, + "url": "https://pypi.org/project/click" }, - "scikit-image": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/scikit-image" + "watchdog": { + "credit": 0.0245025, + "url": "https://pypi.org/project/watchdog" }, - "memory-profiler": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/memory-profiler" + "importlib-resources": { + "credit": 0.00136125, + "url": "https://pypi.org/project/importlib-resources" + }, + "pytest-mypy": { + "credit": 0.00136125, + "url": "https://pypi.org/project/pytest-mypy" + }, + "pytest-black": { + "credit": 0.00136125, + "url": "https://pypi.org/project/pytest-black" + }, + "pytest-perf": { + "credit": 0.00136125, + "url": "https://pypi.org/project/pytest-perf" + }, + "flufl.flake8": { + "credit": 0.00136125, + "url": "https://pypi.org/project/flufl.flake8" + }, + "pyfakefs": { + "credit": 0.00136125, + "url": "https://pypi.org/project/pyfakefs" + }, + "pytest-enabler": { + "credit": 0.00136125, + "url": "https://pypi.org/project/pytest-enabler" + }, + "pytest-flake8": { + "credit": 0.00136125, + "url": "https://pypi.org/project/pytest-flake8" + }, + "pytest-checkdocs": { + "credit": 0.00136125, + "url": "https://pypi.org/project/pytest-checkdocs" + }, + "ipython": { + "credit": 0.00136125, + "url": "https://pypi.org/project/ipython" + }, + "rst.linker": { + "credit": 0.00136125, + "url": "https://pypi.org/project/rst.linker" + }, + "jaraco.packaging": { + "credit": 0.00136125, + "url": "https://pypi.org/project/jaraco.packaging" }, - "threadpoolctl": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/threadpoolctl" + "zipp": { + "credit": 0.00136125, + "url": "https://pypi.org/project/zipp" }, - "setproctitle": { - "credit": 0.00245025, - "url": "https://pypi.org/project/setproctitle" + "pyjwt": { + "credit": 0.0081675, + "url": "https://pypi.org/project/pyjwt" }, - "psutil": { - "credit": 0.00245025, - "url": "https://pypi.org/project/psutil" + "blinker": { + "credit": 0.0081675, + "url": "https://pypi.org/project/blinker" }, - "pytest-forked": { - "credit": 0.00245025, - "url": "https://pypi.org/project/pytest-forked" + "cryptography": { + "credit": 0.0081675, + "url": "https://pypi.org/project/cryptography" }, - "execnet": { - "credit": 0.00245025, - "url": "https://pypi.org/project/execnet" + "webencodings": { + "credit": 0.0040429125, + "url": "https://pypi.org/project/webencodings" } } } \ No newline at end of file diff --git a/_repos/github/scipion-em/scipion-em-continuousflex/badge.png b/_repos/github/scipion-em/scipion-em-continuousflex/badge.png index 85db7172..ee80715d 100644 Binary files a/_repos/github/scipion-em/scipion-em-continuousflex/badge.png and b/_repos/github/scipion-em/scipion-em-continuousflex/badge.png differ diff --git a/_repos/github/sebhaan/geobo/README.md b/_repos/github/sebhaan/geobo/README.md index 084fd950..9d0a06a2 100644 --- a/_repos/github/sebhaan/geobo/README.md +++ b/_repos/github/sebhaan/geobo/README.md @@ -8,81 +8,124 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.299| -|pypi|[matplotlib](https://matplotlib.org)|0.106| -|pypi|[PyYAML](https://pyyaml.org/)|0.09| -|pypi|[lxml](https://pypi.org/project/lxml)|0.045| -|pypi|[requests](https://pypi.org/project/requests)|0.045| -|pypi|[pytest](https://pypi.org/project/pytest)|0.031| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.019| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.015| -|pypi|[pytz](https://pypi.org/project/pytz)|0.015| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.015| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.014| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.014| -|pypi|[imageio](https://pypi.org/project/imageio)|0.011| -|pypi|[pillow](https://pypi.org/project/pillow)|0.011| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.087| +|pypi|[numpy](https://pypi.org/project/numpy)|0.081| +|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.076| +|pypi|[matplotlib](https://matplotlib.org)|0.073| +|pypi|[click](https://pypi.org/project/click)|0.056| +|pypi|[multidict](https://github.com/aio-libs/multidict)|0.052| +|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.04| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.037| +|pypi|[aiohttp](https://github.com/aio-libs/aiohttp)|0.037| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.034| +|pypi|[pytest](https://pypi.org/project/pytest)|0.025| +|pypi|[psutil](https://pypi.org/project/psutil)|0.02| +|pypi|[mkl](https://pypi.org/project/mkl)|0.018| +|pypi|[lxml](https://pypi.org/project/lxml)|0.014| +|pypi|[wslink](https://github.com/kitware/wslink)|0.012| +|pypi|[idna](https://pypi.org/project/idna)|0.012| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.011| +|pypi|[flake8](https://pypi.org/project/flake8)|0.01| +|pypi|[scipy](https://pypi.org/project/scipy)|0.01| |setup.py|github/sebhaan/geobo|0.01| -|pypi|[meshio](https://pypi.org/project/meshio)|0.009| -|pypi|[cmocean](https://pypi.org/project/cmocean)|0.009| -|pypi|[colorcet](https://pypi.org/project/colorcet)|0.009| -|pypi|[vtk](https://pypi.org/project/vtk)|0.009| -|pypi|[scooby](https://pypi.org/project/scooby)|0.009| -|pypi|[appdirs](https://pypi.org/project/appdirs)|0.009| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.007| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.007| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.007| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.007| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.007| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.007| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.007| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.007| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.007| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.007| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.007| -|pypi|[packaging](https://pypi.org/project/packaging)|0.007| -|pypi|[scipy](https://www.scipy.org)|0.004| -|pypi|[boto3](https://pypi.org/project/boto3)|0.004| -|pypi|[ghp-import](https://pypi.org/project/ghp-import)|0.004| -|pypi|[shapely](https://pypi.org/project/shapely)|0.004| -|pypi|[ipython](https://pypi.org/project/ipython)|0.004| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.009| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[pillow](https://python-pillow.org)|0.009| +|pypi|[pandas](https://pypi.org/project/pandas)|0.007| +|pypi|[coveralls](https://pypi.org/project/coveralls)|0.007| +|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|0.007| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.005| +|pypi|[imageio](https://github.com/imageio/imageio)|0.005| +|pypi|[pyvista](https://github.com/pyvista/pyvista)|0.005| +|pypi|[rasterio](https://github.com/mapbox/rasterio)|0.005| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| +|pypi|[PyYAML](https://pyyaml.org/)|0.005| +|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.005| +|pypi|[attrs](https://pypi.org/project/attrs)|0.005| |pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.004| -|pypi|[click-plugins](https://pypi.org/project/click-plugins)|0.004| -|pypi|[snuggs](https://pypi.org/project/snuggs)|0.004| -|pypi|[cligj](https://pypi.org/project/cligj)|0.004| -|pypi|[click](https://pypi.org/project/click)|0.004| -|pypi|[certifi](https://pypi.org/project/certifi)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| -|pypi|[affine](https://pypi.org/project/affine)|0.004| -|pypi|[pandas](https://pandas.pydata.org)|0.003| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.003| -|pypi|[flake8](https://pypi.org/project/flake8)|0.003| -|pypi|[codecov](https://pypi.org/project/codecov)|0.003| -|pypi|[asv](https://pypi.org/project/asv)|0.003| -|pypi|[qtpy](https://pypi.org/project/qtpy)|0.003| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.003| -|pypi|[astropy](https://pypi.org/project/astropy)|0.003| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.003| -|pypi|[kaleido](https://pypi.org/project/kaleido)|0.003| -|pypi|[plotly](https://pypi.org/project/plotly)|0.003| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.003| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.003| -|pypi|[seaborn](https://pypi.org/project/seaborn)|0.003| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.003| -|pypi|[dask](https://pypi.org/project/dask)|0.003| -|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.003| +|pypi|[scooby](https://github.com/banesullivan/scooby)|0.004| +|pypi|[vtk](https://vtk.org)|0.004| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.004| +|pypi|[meshio](https://pypi.org/project/meshio)|0.004| +|pypi|[cmocean](https://pypi.org/project/cmocean)|0.004| +|pypi|[colorcet](https://pypi.org/project/colorcet)|0.004| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.003| |pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| +|pypi|[aiosignal](https://github.com/aio-libs/aiosignal)|0.003| +|pypi|[async-timeout](https://github.com/aio-libs/async-timeout)|0.003| +|pypi|[yarl](https://github.com/aio-libs/yarl/)|0.003| +|pypi|[astropy](https://pypi.org/project/astropy)|0.003| +|pypi|[codecov](https://pypi.org/project/codecov)|0.003| |pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.003| -|pypi|[pooch](https://pypi.org/project/pooch)|0.003| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.003| -|pypi|[tifffile](https://pypi.org/project/tifffile)|0.003| -|pypi|[networkx](https://pypi.org/project/networkx)|0.003| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|0.003| -|pypi|[scikit_image](https://scikit-image.org)|0.001| -|pypi|[rasterio](https://github.com/mapbox/rasterio)|0.001| -|pypi|[pyvista](https://github.com/pyvista/pyvista)|0.001| -|pypi|[webdav](https://github.com/kamikaze/webdav)|0.001| +|pypi|[xattr](https://pypi.org/project/xattr)|0.003| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.003| +|pypi|[munkres](https://pypi.org/project/munkres)|0.003| +|pypi|[brotli](https://pypi.org/project/brotli)|0.003| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.003| +|pypi|[lz4](https://pypi.org/project/lz4)|0.003| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.003| +|pypi|[fs](https://pypi.org/project/fs)|0.003| +|pypi|[cchardet](https://pypi.org/project/cchardet)|0.003| +|pypi|[Brotli](https://pypi.org/project/Brotli)|0.003| +|pypi|[aiodns](https://pypi.org/project/aiodns)|0.003| +|pypi|[asynctest](https://pypi.org/project/asynctest)|0.003| +|pypi|[idna-ssl](https://pypi.org/project/idna-ssl)|0.003| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.003| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.002| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.002| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.002| +|pypi|[coverage](https://pypi.org/project/coverage)|0.002| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.002| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.002| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.002| +|pypi|[olefile](https://pypi.org/project/olefile)|0.002| +|pypi|[cligj](https://github.com/mapbox/cligj)|0.002| +|pypi|[snuggs](https://github.com/mapbox/snuggs)|0.002| +|pypi|[affine](https://github.com/sgillies/affine)|0.002| +|pypi|[click-plugins](https://github.com/click-contrib/click-plugins)|0.002| +|pypi|[itk](https://pypi.org/project/itk)|0.002| +|pypi|[gdal](https://pypi.org/project/gdal)|0.002| +|pypi|[black](https://pypi.org/project/black)|0.002| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.002| +|pypi|[invoke](https://pypi.org/project/invoke)|0.002| +|pypi|[wheel](https://pypi.org/project/wheel)|0.002| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.002| +|pypi|[av](https://pypi.org/project/av)|0.002| +|pypi|[pydot](https://pypi.org/project/pydot)|0.002| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.002| +|pypi|[texext](https://pypi.org/project/texext)|0.002| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.002| +|pypi|[mypy](https://pypi.org/project/mypy)|0.002| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| +|pypi|[boto3](https://pypi.org/project/boto3)|0.002| +|pypi|[ghp-import](https://pypi.org/project/ghp-import)|0.002| +|pypi|[shapely](https://pypi.org/project/shapely)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.002| +|pypi|[certifi](https://pypi.org/project/certifi)|0.002| +|pypi|[networkx](https://networkx.org/)|0.001| +|pypi|[PyWavelets](https://github.com/PyWavelets/pywt)|0.001| +|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|0.001| +|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|0.001| +|pypi|[asv](https://pypi.org/project/asv)|0.001| +|pypi|[qtpy](https://pypi.org/project/qtpy)|0.001| +|pypi|[pyamg](https://pypi.org/project/pyamg)|0.001| +|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.001| +|pypi|[kaleido](https://pypi.org/project/kaleido)|0.001| +|pypi|[plotly](https://pypi.org/project/plotly)|0.001| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.001| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.001| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.001| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| +|pypi|[dask](https://pypi.org/project/dask)|0.001| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.001| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.001| +|pypi|[pooch](https://pypi.org/project/pooch)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/sebhaan/geobo/badge.png b/_repos/github/sebhaan/geobo/badge.png index 6395e56e..b1265351 100644 Binary files a/_repos/github/sebhaan/geobo/badge.png and b/_repos/github/sebhaan/geobo/badge.png differ diff --git a/_repos/github/sebhaan/geobo/data.json b/_repos/github/sebhaan/geobo/data.json index c05e3d72..8098f4d1 100644 --- a/_repos/github/sebhaan/geobo/data.json +++ b/_repos/github/sebhaan/geobo/data.json @@ -6,309 +6,489 @@ } }, "pypi": { - "numpy": { - "credit": 0.29874857142857136, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.004345714285714282, - "url": "https://www.scipy.org" + "geobo": { + "credit": 0.0003666666666666679, + "url": "https://github.com/sebhaan/geobo" }, "matplotlib": { - "credit": 0.10569857142857143, + "credit": 0.07338218864468864, "url": "https://matplotlib.org" }, - "scikit_image": { - "credit": 0.000899999999999998, - "url": "https://scikit-image.org" + "pyvista": { + "credit": 0.004904166666666668, + "url": "https://github.com/pyvista/pyvista" }, "rasterio": { - "credit": 0.000899999999999998, + "credit": 0.004904166666666668, "url": "https://github.com/mapbox/rasterio" }, - "pandas": { - "credit": 0.0034457142857142837, - "url": "https://pandas.pydata.org" + "scikit_image": { + "credit": 0.0003666666666666679, + "url": "https://scikit-image.org" }, - "pyvista": { - "credit": 0.000899999999999998, - "url": "https://github.com/pyvista/pyvista" + "cligj": { + "credit": 0.002095238095238096, + "url": "https://github.com/mapbox/cligj" + }, + "cycler": { + "credit": 0.03666666666666667, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.0003666666666666679, + "url": "http://github.com/fonttools/fonttools" + }, + "imageio": { + "credit": 0.005033809523809525, + "url": "https://github.com/imageio/imageio" + }, + "kiwisolver": { + "credit": 0.0003666666666666679, + "url": "https://github.com/nucleic/kiwi" + }, + "networkx": { + "credit": 0.001403809523809525, + "url": "https://networkx.org/" + }, + "pillow": { + "credit": 0.008759335839598998, + "url": "https://python-pillow.org" + }, + "PyWavelets": { + "credit": 0.001403809523809525, + "url": "https://github.com/PyWavelets/pywt" + }, + "scooby": { + "credit": 0.0039966666666666675, + "url": "https://github.com/banesullivan/scooby" + }, + "snuggs": { + "credit": 0.002095238095238096, + "url": "https://github.com/mapbox/snuggs" + }, + "tifffile": { + "credit": 0.0033143358395989987, + "url": "https://www.lfd.uci.edu/~gohlke/" + }, + "affine": { + "credit": 0.002095238095238096, + "url": "https://github.com/sgillies/affine" + }, + "appdirs": { + "credit": 0.04029666666666667, + "url": "http://github.com/ActiveState/appdirs" + }, + "click-plugins": { + "credit": 0.002095238095238096, + "url": "https://github.com/click-contrib/click-plugins" + }, + "vtk": { + "credit": 0.0039966666666666675, + "url": "https://vtk.org" + }, + "wslink": { + "credit": 0.012466666666666668, + "url": "https://github.com/kitware/wslink" + }, + "aiohttp": { + "credit": 0.03666666666666667, + "url": "https://github.com/aio-libs/aiohttp" + }, + "aiosignal": { + "credit": 0.00315897435897436, + "url": "https://github.com/aio-libs/aiosignal" + }, + "async-timeout": { + "credit": 0.00315897435897436, + "url": "https://github.com/aio-libs/async-timeout" + }, + "frozenlist": { + "credit": 0.07575897435897436, + "url": "https://github.com/aio-libs/frozenlist" + }, + "multidict": { + "credit": 0.05155897435897436, + "url": "https://github.com/aio-libs/multidict" + }, + "yarl": { + "credit": 0.00315897435897436, + "url": "https://github.com/aio-libs/yarl/" }, "PyYAML": { - "credit": 0.09, + "credit": 0.0045375, "url": "https://pyyaml.org/" }, - "pytest-runner": { - "credit": 0.0034457142857142837, - "url": "https://github.com/pytest-dev/pytest-runner/" + "pandas": { + "credit": 0.007389642857142857, + "url": "https://pypi.org/project/pandas" }, - "webdav": { - "credit": 0.000899999999999998, - "url": "https://github.com/kamikaze/webdav" + "scikit-image": { + "credit": 0.0045375, + "url": "https://pypi.org/project/scikit-image" }, - "pytest-faulthandler": { - "credit": 2.545714285714278e-05, - "url": "https://github.com/pytest-dev/pytest-faulthandler" + "scipy": { + "credit": 0.01018195054945055, + "url": "https://pypi.org/project/scipy" }, - "pytest-localserver": { - "credit": 2.545714285714278e-05, - "url": "https://github.com/pytest-dev/pytest-localserver" + "numpy": { + "credit": 0.08120874060150376, + "url": "https://pypi.org/project/numpy" }, - "pytest-cov": { - "credit": 0.013642417582417583, - "url": "https://github.com/pytest-dev/pytest-cov" + "meshio": { + "credit": 0.00363, + "url": "https://pypi.org/project/meshio" + }, + "cmocean": { + "credit": 0.00363, + "url": "https://pypi.org/project/cmocean" + }, + "colorcet": { + "credit": 0.00363, + "url": "https://pypi.org/project/colorcet" }, "pytest": { - "credit": 0.03101267472527473, + "credit": 0.025094990601503758, "url": "https://pypi.org/project/pytest" }, + "hypothesis": { + "credit": 0.010803571428571428, + "url": "https://pypi.org/project/hypothesis" + }, + "boto3": { + "credit": 0.0017285714285714285, + "url": "https://pypi.org/project/boto3" + }, + "packaging": { + "credit": 0.005034464285714285, + "url": "https://pypi.org/project/packaging" + }, + "ghp-import": { + "credit": 0.0017285714285714285, + "url": "https://pypi.org/project/ghp-import" + }, + "sphinx": { + "credit": 0.008759990601503759, + "url": "https://pypi.org/project/sphinx" + }, + "numpydoc": { + "credit": 0.006491240601503759, + "url": "https://pypi.org/project/numpydoc" + }, + "shapely": { + "credit": 0.0017285714285714285, + "url": "https://pypi.org/project/shapely" + }, + "ipython": { + "credit": 0.0017285714285714285, + "url": "https://pypi.org/project/ipython" + }, + "sphinx-rtd-theme": { + "credit": 0.003997321428571428, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "pytest-cov": { + "credit": 0.03416999060150376, + "url": "https://pypi.org/project/pytest-cov" + }, + "setuptools": { + "credit": 0.0017285714285714285, + "url": "https://pypi.org/project/setuptools" + }, + "click": { + "credit": 0.056178571428571425, + "url": "https://pypi.org/project/click" + }, + "certifi": { + "credit": 0.0017285714285714285, + "url": "https://pypi.org/project/certifi" + }, + "attrs": { + "credit": 0.00452087912087912, + "url": "https://pypi.org/project/attrs" + }, + "pytest-faulthandler": { + "credit": 0.0010371428571428571, + "url": "https://pypi.org/project/pytest-faulthandler" + }, + "pytest-localserver": { + "credit": 0.0010371428571428571, + "url": "https://pypi.org/project/pytest-localserver" + }, "flake8": { - "credit": 0.0025457142857142857, + "credit": 0.01020766917293233, "url": "https://pypi.org/project/flake8" }, "codecov": { - "credit": 0.0025457142857142857, + "credit": 0.002852142857142857, "url": "https://pypi.org/project/codecov" }, "asv": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/asv" }, "qtpy": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/qtpy" }, "pyamg": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/pyamg" }, "astropy": { - "credit": 0.0025457142857142857, + "credit": 0.0029476691729323308, "url": "https://pypi.org/project/astropy" }, "SimpleITK": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/SimpleITK" }, "kaleido": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/kaleido" }, "plotly": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/plotly" }, "ipywidgets": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/ipywidgets" }, "myst-parser": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/myst-parser" }, "seaborn": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/seaborn" }, "cloudpickle": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/cloudpickle" }, "dask": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/dask" }, "scikit-learn": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/scikit-learn" }, + "pytest-runner": { + "credit": 0.0010371428571428571, + "url": "https://pypi.org/project/pytest-runner" + }, "sphinx-copybutton": { - "credit": 0.0025457142857142857, + "credit": 0.003305892857142857, "url": "https://pypi.org/project/sphinx-copybutton" }, - "numpydoc": { - "credit": 0.0067885714285714285, - "url": "https://pypi.org/project/numpydoc" - }, "sphinx-gallery": { - "credit": 0.0025457142857142857, + "credit": 0.002852142857142857, "url": "https://pypi.org/project/sphinx-gallery" }, - "sphinx": { - "credit": 0.013642417582417583, - "url": "https://pypi.org/project/sphinx" - }, "pooch": { - "credit": 0.0025457142857142857, + "credit": 0.0010371428571428571, "url": "https://pypi.org/project/pooch" }, - "packaging": { - "credit": 0.0067885714285714285, - "url": "https://pypi.org/project/packaging" + "xattr": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/xattr" }, - "PyWavelets": { - "credit": 0.0025457142857142857, - "url": "https://pypi.org/project/PyWavelets" + "unicodedata2": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/unicodedata2" }, - "tifffile": { - "credit": 0.0025457142857142857, - "url": "https://pypi.org/project/tifffile" + "munkres": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/munkres" }, - "imageio": { - "credit": 0.011455714285714284, - "url": "https://pypi.org/project/imageio" + "brotli": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/brotli" }, - "pillow": { - "credit": 0.011455714285714284, - "url": "https://pypi.org/project/pillow" + "brotlicffi": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/brotlicffi" }, - "networkx": { - "credit": 0.0025457142857142857, - "url": "https://pypi.org/project/networkx" + "skia-pathops": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/skia-pathops" }, - "hypothesis": { - "credit": 0.019092857142857144, - "url": "https://pypi.org/project/hypothesis" + "sympy": { + "credit": 0.004607307692307692, + "url": "https://pypi.org/project/sympy" }, - "boto3": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/boto3" + "lz4": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/lz4" }, - "ghp-import": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/ghp-import" + "zopfli": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/zopfli" }, - "shapely": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/shapely" + "lxml": { + "credit": 0.013682307692307692, + "url": "https://pypi.org/project/lxml" }, - "ipython": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/ipython" + "fs": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/fs" }, - "sphinx-rtd-theme": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/sphinx-rtd-theme" + "itk": { + "credit": 0.0019105263157894736, + "url": "https://pypi.org/project/itk" }, - "setuptools": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/setuptools" + "gdal": { + "credit": 0.0019105263157894736, + "url": "https://pypi.org/project/gdal" }, - "click-plugins": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/click-plugins" + "pydata-sphinx-theme": { + "credit": 0.0037255263157894734, + "url": "https://pypi.org/project/pydata-sphinx-theme" }, - "snuggs": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/snuggs" + "black": { + "credit": 0.0019105263157894736, + "url": "https://pypi.org/project/black" }, - "cligj": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/cligj" + "fsspec": { + "credit": 0.0019105263157894736, + "url": "https://pypi.org/project/fsspec" }, - "click": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/click" + "invoke": { + "credit": 0.0019105263157894736, + "url": "https://pypi.org/project/invoke" }, - "certifi": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/certifi" + "wheel": { + "credit": 0.0019105263157894736, + "url": "https://pypi.org/project/wheel" }, - "attrs": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/attrs" + "psutil": { + "credit": 0.020060526315789473, + "url": "https://pypi.org/project/psutil" }, - "affine": { - "credit": 0.004242857142857143, - "url": "https://pypi.org/project/affine" + "imageio-ffmpeg": { + "credit": 0.0019105263157894736, + "url": "https://pypi.org/project/imageio-ffmpeg" }, - "pytest-xdist": { - "credit": 0.01485, - "url": "https://pypi.org/project/pytest-xdist" + "av": { + "credit": 0.0019105263157894736, + "url": "https://pypi.org/project/av" }, - "pytz": { - "credit": 0.01485, - "url": "https://pypi.org/project/pytz" + "typing-extensions": { + "credit": 0.08749230769230769, + "url": "https://pypi.org/project/typing-extensions" }, - "python-dateutil": { - "credit": 0.01485, - "url": "https://pypi.org/project/python-dateutil" + "pydot": { + "credit": 0.001815, + "url": "https://pypi.org/project/pydot" }, - "meshio": { - "credit": 0.00891, - "url": "https://pypi.org/project/meshio" + "pygraphviz": { + "credit": 0.001815, + "url": "https://pypi.org/project/pygraphviz" }, - "cmocean": { - "credit": 0.00891, - "url": "https://pypi.org/project/cmocean" + "texext": { + "credit": 0.001815, + "url": "https://pypi.org/project/texext" }, - "colorcet": { - "credit": 0.00891, - "url": "https://pypi.org/project/colorcet" + "nb2plots": { + "credit": 0.001815, + "url": "https://pypi.org/project/nb2plots" }, - "vtk": { - "credit": 0.00891, - "url": "https://pypi.org/project/vtk" + "mypy": { + "credit": 0.001815, + "url": "https://pypi.org/project/mypy" }, - "scooby": { - "credit": 0.00891, - "url": "https://pypi.org/project/scooby" + "pre-commit": { + "credit": 0.001815, + "url": "https://pypi.org/project/pre-commit" }, - "appdirs": { - "credit": 0.00891, - "url": "https://pypi.org/project/appdirs" + "pytest-timeout": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pytest-timeout" }, - "pytest-mypy": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/pytest-mypy" + "pyroma": { + "credit": 0.00226875, + "url": "https://pypi.org/project/pyroma" }, - "pytest-black": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/pytest-black" + "markdown2": { + "credit": 0.00226875, + "url": "https://pypi.org/project/markdown2" }, - "types-setuptools": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/types-setuptools" + "defusedxml": { + "credit": 0.00226875, + "url": "https://pypi.org/project/defusedxml" }, - "pytest-virtualenv": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/pytest-virtualenv" + "coverage": { + "credit": 0.00226875, + "url": "https://pypi.org/project/coverage" }, - "pytest-enabler": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/pytest-enabler" + "check-manifest": { + "credit": 0.00226875, + "url": "https://pypi.org/project/check-manifest" }, - "pytest-flake8": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/pytest-flake8" + "sphinxext-opengraph": { + "credit": 0.00226875, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "pytest-checkdocs": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/pytest-checkdocs" + "sphinx-removed-in": { + "credit": 0.00226875, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "jaraco.tidelift": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/jaraco.tidelift" + "sphinx-issues": { + "credit": 0.00226875, + "url": "https://pypi.org/project/sphinx-issues" }, - "rst.linker": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/rst.linker" + "olefile": { + "credit": 0.00226875, + "url": "https://pypi.org/project/olefile" }, - "jaraco.packaging": { - "credit": 0.006853846153846154, - "url": "https://pypi.org/project/jaraco.packaging" + "mkl": { + "credit": 0.01815, + "url": "https://pypi.org/project/mkl" }, - "lxml": { - "credit": 0.04455, - "url": "https://pypi.org/project/lxml" + "pyparsing": { + "credit": 0.009075, + "url": "https://pypi.org/project/pyparsing" + }, + "imagecodecs": { + "credit": 0.009075, + "url": "https://pypi.org/project/imagecodecs" + }, + "coveralls": { + "credit": 0.00726, + "url": "https://pypi.org/project/coveralls" + }, + "pydocstyle": { + "credit": 0.00726, + "url": "https://pypi.org/project/pydocstyle" + }, + "cchardet": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/cchardet" + }, + "Brotli": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/Brotli" + }, + "aiodns": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/aiodns" + }, + "asynctest": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/asynctest" + }, + "idna-ssl": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/idna-ssl" }, - "requests": { - "credit": 0.04455, - "url": "https://pypi.org/project/requests" + "charset-normalizer": { + "credit": 0.002792307692307692, + "url": "https://pypi.org/project/charset-normalizer" }, - "werkzeug": { - "credit": 0.002520257142857143, - "url": "https://pypi.org/project/werkzeug" + "idna": { + "credit": 0.0121, + "url": "https://pypi.org/project/idna" } } } \ No newline at end of file diff --git a/_repos/github/shandley/hecatomb/badge.png b/_repos/github/shandley/hecatomb/badge.png index 2997a582..b66017d5 100644 Binary files a/_repos/github/shandley/hecatomb/badge.png and b/_repos/github/shandley/hecatomb/badge.png differ diff --git a/_repos/github/shilpagarg/WHdenovo/README.md b/_repos/github/shilpagarg/WHdenovo/README.md index 80b2daf0..beac63ee 100644 --- a/_repos/github/shilpagarg/WHdenovo/README.md +++ b/_repos/github/shilpagarg/WHdenovo/README.md @@ -8,58 +8,39 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[Biopython](https://biopython.org/)|0.247| -|pypi|[isal](https://github.com/pycompression/python-isal)|0.123| -|pypi|[nose](https://pypi.org/project/nose)|0.048| -|pypi|[coverage](https://pypi.org/project/coverage)|0.048| -|pypi|[future](https://pypi.org/project/future)|0.041| -|pypi|[click](https://pypi.org/project/click)|0.041| -|pypi|[async-generator](https://pypi.org/project/async-generator)|0.041| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.041| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.014| -|pypi|[requests](https://pypi.org/project/requests)|0.013| -|pypi|[pydot](https://pypi.org/project/pydot)|0.012| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.012| -|pypi|[lxml](https://pypi.org/project/lxml)|0.012| -|pypi|[texext](https://pypi.org/project/texext)|0.012| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.012| -|pypi|[pillow](https://pypi.org/project/pillow)|0.012| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.012| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.012| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.012| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| -|pypi|[mypy](https://pypi.org/project/mypy)|0.012| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.012| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.012| -|pypi|[black](https://pypi.org/project/black)|0.012| -|pypi|[pandas](https://pypi.org/project/pandas)|0.012| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.012| -|pypi|[scipy](https://pypi.org/project/scipy)|0.012| -|pypi|[numpy](https://pypi.org/project/numpy)|0.012| +|pypi|[isal](https://github.com/pycompression/python-isal)|0.185| +|pypi|[async-generator](https://github.com/python-trio/async_generator)|0.144| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.144| +|pypi|[future](https://python-future.org)|0.144| +|pypi|[Biopython](https://biopython.org/)|0.124| +|pypi|[pytest](https://pypi.org/project/pytest)|0.067| +|pypi|[coverage](https://pypi.org/project/coverage)|0.023| +|pypi|[nose](https://pypi.org/project/nose)|0.02| +|pypi|[click](https://pypi.org/project/click)|0.02| |setup.py|github/shilpagarg/WHdenovo|0.01| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.008| -|pypi|[pygments](https://pypi.org/project/pygments)|0.008| -|pypi|[mock](https://pypi.org/project/mock)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.008| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.008| -|pypi|[colorama](https://pypi.org/project/colorama)|0.008| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.008| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.008| -|pypi|[tomli](https://pypi.org/project/tomli)|0.008| -|pypi|[py](https://pypi.org/project/py)|0.008| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.008| -|pypi|[packaging](https://pypi.org/project/packaging)|0.008| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.008| -|pypi|[attrs](https://pypi.org/project/attrs)|0.008| -|pypi|[xopen](https://github.com/pycompression/xopen/)|0.002| -|pypi|[networkx](https://networkx.org/)|0.002| -|pypi|[pystream-protobuf](https://github.com/cartoonist/pystream-protobuf)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| -|pypi|[six](https://pypi.org/project/six)|0.001| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| -|pypi|[hunter](https://pypi.org/project/hunter)|0.001| -|pypi|[fields](https://pypi.org/project/fields)|0.001| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.006| +|pypi|[pydot](https://pypi.org/project/pydot)|0.006| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.006| +|pypi|[lxml](https://pypi.org/project/lxml)|0.006| +|pypi|[texext](https://pypi.org/project/texext)|0.006| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.006| +|pypi|[pillow](https://pypi.org/project/pillow)|0.006| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.006| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.006| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.006| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.006| +|pypi|[mypy](https://pypi.org/project/mypy)|0.006| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.006| +|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.006| +|pypi|[black](https://pypi.org/project/black)|0.006| +|pypi|[pandas](https://pypi.org/project/pandas)|0.006| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.006| +|pypi|[scipy](https://pypi.org/project/scipy)|0.006| +|pypi|[numpy](https://pypi.org/project/numpy)|0.006| +|pypi|[requests](https://pypi.org/project/requests)|0.003| +|pypi|[networkx](https://networkx.org/)|0.001| +|pypi|[pystream-protobuf](https://github.com/cartoonist/pystream-protobuf)|0.001| +|pypi|[xopen](https://github.com/pycompression/xopen/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/shilpagarg/WHdenovo/badge.png b/_repos/github/shilpagarg/WHdenovo/badge.png index 0faab21a..cb98ae2d 100644 Binary files a/_repos/github/shilpagarg/WHdenovo/badge.png and b/_repos/github/shilpagarg/WHdenovo/badge.png differ diff --git a/_repos/github/shilpagarg/WHdenovo/data.json b/_repos/github/shilpagarg/WHdenovo/data.json index 6172b9ae..f80d7985 100644 --- a/_repos/github/shilpagarg/WHdenovo/data.json +++ b/_repos/github/shilpagarg/WHdenovo/data.json @@ -6,217 +6,137 @@ } }, "pypi": { - "xopen": { - "credit": 0.002475000000000005, - "url": "https://github.com/pycompression/xopen/" + "Biopython": { + "credit": 0.12375, + "url": "https://biopython.org/" }, "networkx": { - "credit": 0.002475000000000005, + "credit": 0.0012375000000000025, "url": "https://networkx.org/" }, "pystream-protobuf": { - "credit": 0.002475000000000005, + "credit": 0.0012375000000000025, "url": "https://github.com/cartoonist/pystream-protobuf" }, - "Biopython": { - "credit": 0.2475, - "url": "https://biopython.org/" + "xopen": { + "credit": 0.0012375000000000025, + "url": "https://github.com/pycompression/xopen/" }, - "pytest": { - "credit": 0.014336879464285721, - "url": "https://docs.pytest.org/en/latest/" + "async-generator": { + "credit": 0.14416875, + "url": "https://github.com/python-trio/async_generator" }, "isal": { - "credit": 0.1225125, + "credit": 0.18500624999999998, "url": "https://github.com/pycompression/python-isal" }, + "protobuf": { + "credit": 0.14416875, + "url": "https://developers.google.com/protocol-buffers/" + }, + "future": { + "credit": 0.14416875, + "url": "https://python-future.org" + }, "codecov": { - "credit": 0.0001166785714285714, + "credit": 5.83392857142857e-05, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.0001166785714285714, + "credit": 0.0058339285714285715, "url": "https://github.com/pytest-dev/pytest-cov" }, + "pytest": { + "credit": 0.06709017857142857, + "url": "https://pypi.org/project/pytest" + }, "pydot": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/nb2plots" }, "pillow": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/pillow" }, "numpydoc": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/pre-commit" }, "pyupgrade": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/pyupgrade" }, "black": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/black" }, "pandas": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/pandas" }, "matplotlib": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/matplotlib" }, "scipy": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/scipy" }, "numpy": { - "credit": 0.011667857142857143, + "credit": 0.0058339285714285715, "url": "https://pypi.org/project/numpy" }, "coverage": { - "credit": 0.04805698660714285, + "credit": 0.02330654464285714, "url": "https://pypi.org/project/coverage" }, "nose": { - "credit": 0.0484179609375, + "credit": 0.02041875, "url": "https://pypi.org/project/nose" }, - "future": { - "credit": 0.0408375, - "url": "https://pypi.org/project/future" - }, "click": { - "credit": 0.0408375, + "credit": 0.02041875, "url": "https://pypi.org/project/click" }, - "async-generator": { - "credit": 0.0408375, - "url": "https://pypi.org/project/async-generator" - }, - "protobuf": { - "credit": 0.0408375, - "url": "https://pypi.org/project/protobuf" - }, - "xmlschema": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/xmlschema" - }, "requests": { - "credit": 0.013356050223214285, + "credit": 0.002887794642857143, "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/pygments" - }, - "mock": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/mock" - }, - "hypothesis": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.007580460937499999, - "url": "https://pypi.org/project/attrs" - }, - "virtualenv": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/virtualenv" - }, - "pytest-xdist": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.0014438973214285715, - "url": "https://pypi.org/project/fields" } } } \ No newline at end of file diff --git a/_repos/github/shirtsgroup/physical_validation/README.md b/_repos/github/shirtsgroup/physical_validation/README.md index a0216b94..d4fbf6a0 100644 --- a/_repos/github/shirtsgroup/physical_validation/README.md +++ b/_repos/github/shirtsgroup/physical_validation/README.md @@ -8,46 +8,53 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.394| -|pypi|[pymbar](http://github.com/choderalab/pymbar)|0.198| -|pypi|[matplotlib](https://matplotlib.org)|0.198| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.033| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.017| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.017| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.017| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.017| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.015| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.015| +|pypi|[matplotlib](https://matplotlib.org)|0.187| +|pypi|[pymbar](http://github.com/choderalab/pymbar)|0.176| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.141| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.14| +|pypi|[numpy](https://www.numpy.org)|0.08| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.036| +|pypi|[cffi](https://pypi.org/project/cffi)|0.016| +|pypi|[coverage](https://pypi.org/project/coverage)|0.015| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.011| +|pypi|[brotli](https://github.com/google/brotli)|0.011| +|pypi|[lxml](https://lxml.de/)|0.011| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.011| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|github/shirtsgroup/physical_validation|0.01| -|pypi|[flake8](https://pypi.org/project/flake8)|0.007| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.005| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| -|pypi|[mock](https://pypi.org/project/mock)|0.003| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.003| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.003| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.002| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.002| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.002| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.002| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.009| +|pypi|[packaging](https://pypi.org/project/packaging)|0.009| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.009| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.009| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.009| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.009| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.009| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.009| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.009| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.009| +|pypi|[olefile](https://pypi.org/project/olefile)|0.009| +|pypi|[enum34](https://pypi.org/project/enum34)|0.007| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| |pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.001| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.001| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.001| -|pypi|[toml](https://pypi.org/project/toml)|0.001| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.001| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| -|pypi|[pep517](https://pypi.org/project/pep517)|0.001| -|pypi|[docutils](https://pypi.org/project/docutils)|0.001| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[physical-validation](https://physical-validation.readthedocs.io)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| +|pypi|[hunter](https://pypi.org/project/hunter)|0.001| +|pypi|[fields](https://pypi.org/project/fields)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/shirtsgroup/physical_validation/badge.png b/_repos/github/shirtsgroup/physical_validation/badge.png index f0ccd68e..72f0eec5 100644 Binary files a/_repos/github/shirtsgroup/physical_validation/badge.png and b/_repos/github/shirtsgroup/physical_validation/badge.png differ diff --git a/_repos/github/shirtsgroup/physical_validation/data.json b/_repos/github/shirtsgroup/physical_validation/data.json index 8c13277c..edcd2c98 100644 --- a/_repos/github/shirtsgroup/physical_validation/data.json +++ b/_repos/github/shirtsgroup/physical_validation/data.json @@ -6,165 +6,229 @@ } }, "pypi": { - "pytest_runner": { - "credit": 0.0019800000000000095, - "url": "https://github.com/pytest-dev/pytest-runner/" + "physical-validation": { + "credit": 0.001414285714285729, + "url": "https://physical-validation.readthedocs.io" }, - "numpy": { - "credit": 0.39402000000000004, - "url": "https://www.numpy.org" + "matplotlib": { + "credit": 0.18720247252747255, + "url": "https://matplotlib.org" + }, + "pymbar": { + "credit": 0.17643214285714287, + "url": "http://github.com/choderalab/pymbar" + }, + "cycler": { + "credit": 0.14142857142857143, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.001414285714285729, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.001414285714285729, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.001414285714285729, + "url": "https://python-pillow.org" }, "scipy": { - "credit": 0.0019800000000000095, + "credit": 0.0004577390109890087, "url": "https://www.scipy.org" }, - "pymbar": { - "credit": 0.198, - "url": "http://github.com/choderalab/pymbar" + "numpy": { + "credit": 0.08031973351648351, + "url": "https://www.numpy.org" }, - "matplotlib": { - "credit": 0.198, - "url": "https://matplotlib.org" + "xattr": { + "credit": 0.00010770329670329627, + "url": "http://github.com/xattr/xattr" }, - "pytest-mypy": { - "credit": 0.0022833098901098906, - "url": "https://github.com/dbader/pytest-mypy" + "unicodedata2": { + "credit": 0.00010770329670329627, + "url": "http://github.com/mikekap/unicodedata2" }, - "pytest-black": { - "credit": 0.017210986813186814, - "url": "https://github.com/shopkeep/pytest-black" + "munkres": { + "credit": 0.010770329670329669, + "url": "https://software.clapper.org/munkres/" }, - "types-setuptools": { - "credit": 0.015078461538461539, - "url": "https://github.com/python/typeshed" + "brotli": { + "credit": 0.010770329670329669, + "url": "https://github.com/google/brotli" }, - "pytest-virtualenv": { - "credit": 0.0001507846153846141, - "url": "https://github.com/manahl/pytest-plugins" + "brotlicffi": { + "credit": 0.00010770329670329627, + "url": "https://github.com/python-hyper/brotlicffi" }, - "pytest-enabler": { - "credit": 0.0022833098901098906, - "url": "https://github.com/jaraco/pytest-enabler" + "skia-pathops": { + "credit": 0.00010770329670329627, + "url": "https://github.com/fonttools/skia-pathops" }, - "pytest-cov": { - "credit": 0.0022833098901098906, - "url": "https://github.com/pytest-dev/pytest-cov" + "sympy": { + "credit": 0.00010770329670329627, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 0.00010770329670329627, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 0.00010770329670329627, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.010770329670329669, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 0.00010770329670329627, + "url": "https://github.com/PyFilesystem/pyfilesystem2" }, - "pytest-flake8": { - "credit": 0.0022833098901098906, - "url": "https://github.com/tholo/pytest-flake8" + "typing-extensions": { + "credit": 0.1400142857142857, + "url": "https://typing.readthedocs.io/" }, - "pytest-checkdocs": { - "credit": 0.0022833098901098906, - "url": "https://github.com/jaraco/pytest-checkdocs" + "pytest-timeout": { + "credit": 8.750892857142811e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.0018646133241758235, + "url": "https://github.com/pytest-dev/pytest-cov" }, "pytest": { - "credit": 0.03325823950549451, + "credit": 0.03626824373282967, "url": "https://docs.pytest.org/en/latest/" }, - "jaraco.tidelift": { - "credit": 0.015078461538461539, - "url": "https://pypi.org/project/jaraco.tidelift" + "pyroma": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/pyroma" }, - "rst.linker": { - "credit": 0.017210986813186814, - "url": "https://pypi.org/project/rst.linker" + "packaging": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/packaging" }, - "jaraco.packaging": { - "credit": 0.017210986813186814, - "url": "https://pypi.org/project/jaraco.packaging" + "markdown2": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/markdown2" }, - "sphinx": { - "credit": 0.017210986813186814, - "url": "https://pypi.org/project/sphinx" + "defusedxml": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/defusedxml" }, - "mypy": { - "credit": 0.0037319192307692308, - "url": "https://pypi.org/project/mypy" + "coverage": { + "credit": 0.015165129035027472, + "url": "https://pypi.org/project/coverage" }, - "filelock": { - "credit": 0.0037319192307692308, - "url": "https://pypi.org/project/filelock" + "check-manifest": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/check-manifest" }, - "attrs": { - "credit": 0.0037319192307692308, - "url": "https://pypi.org/project/attrs" + "sphinxext-opengraph": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "mock": { - "credit": 0.0029855353846153848, - "url": "https://pypi.org/project/mock" + "sphinx-rtd-theme": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "virtualenv": { - "credit": 0.004851495, - "url": "https://pypi.org/project/virtualenv" + "sphinx-removed-in": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "pytest-shutil": { - "credit": 0.0029855353846153848, - "url": "https://pypi.org/project/pytest-shutil" + "sphinx-issues": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinx-issues" }, - "pytest-fixture-config": { - "credit": 0.0029855353846153848, - "url": "https://pypi.org/project/pytest-fixture-config" + "sphinx-copybutton": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "types-toml": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/types-toml" + "sphinx": { + "credit": 0.010527997252747251, + "url": "https://pypi.org/project/sphinx" }, - "jaraco.context": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/jaraco.context" + "olefile": { + "credit": 0.008750892857142856, + "url": "https://pypi.org/project/olefile" }, - "jaraco.functools": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/jaraco.functools" + "cffi": { + "credit": 0.015993939560439558, + "url": "https://pypi.org/project/cffi" }, - "toml": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/toml" + "pytest-randomly": { + "credit": 0.005331313186813186, + "url": "https://pypi.org/project/pytest-randomly" }, "pytest-xdist": { - "credit": 0.0018659596153846154, + "credit": 0.006414236177884615, "url": "https://pypi.org/project/pytest-xdist" }, + "enum34": { + "credit": 0.006664141483516483, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.010662626373626373, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.0017771043956043954, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.0017771043956043954, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.0017771043956043954, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" + }, + "scandir": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/scandir" + }, + "typing": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/typing" + }, + "backports.os": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/backports.os" + }, "six": { - "credit": 0.0018659596153846154, + "credit": 0.002415751287774725, "url": "https://pypi.org/project/six" }, + "setuptools": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/setuptools" + }, + "pytz": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/pytz" + }, + "appdirs": { + "credit": 0.0013328282967032966, + "url": "https://pypi.org/project/appdirs" + }, + "virtualenv": { + "credit": 0.0010829229910714285, + "url": "https://pypi.org/project/virtualenv" + }, "process-tests": { - "credit": 0.0018659596153846154, + "credit": 0.0010829229910714285, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.0018659596153846154, + "credit": 0.0010829229910714285, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.0018659596153846154, + "credit": 0.0010829229910714285, "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.0074638384615384615, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pep517": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/docutils" } } } \ No newline at end of file diff --git a/_repos/github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs/badge.png b/_repos/github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs/badge.png index 6bf47933..c504f9f1 100644 Binary files a/_repos/github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs/badge.png and b/_repos/github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs/badge.png differ diff --git a/_repos/github/singularityhub/singularity-compose/README.md b/_repos/github/singularityhub/singularity-compose/README.md index cd2cbd86..009cd46a 100644 --- a/_repos/github/singularityhub/singularity-compose/README.md +++ b/_repos/github/singularityhub/singularity-compose/README.md @@ -8,94 +8,10 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.103| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.096| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.075| -|pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.032| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.03| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.028| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.028| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.028| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.028| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.026| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.024| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.021| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.015| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.013| -|pypi|[pep517](https://pypi.org/project/pep517)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.01| |setup.py|github/singularityhub/singularity-compose|0.01| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[attrs](https://www.attrs.org/)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.005| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.005| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.005| -|pypi|[path](https://pypi.org/project/path)|0.005| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| -|pypi|[keyring](https://pypi.org/project/keyring)|0.005| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.005| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.005| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.003| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|0.001| -|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.001| +|pypi|[semver](https://github.com/python-semver/python-semver)|0.007| +|pypi|[singularity-compose](http://github.com/singularityhub/singularity-compose)|0.003| +|pypi|[spython](https://github.com/singularityhub/singularity-cli)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/singularityhub/singularity-compose/badge.png b/_repos/github/singularityhub/singularity-compose/badge.png index 26d5b238..e357c06e 100644 Binary files a/_repos/github/singularityhub/singularity-compose/badge.png and b/_repos/github/singularityhub/singularity-compose/badge.png differ diff --git a/_repos/github/singularityhub/singularity-compose/data.json b/_repos/github/singularityhub/singularity-compose/data.json index 7a602b1d..4987609d 100644 --- a/_repos/github/singularityhub/singularity-compose/data.json +++ b/_repos/github/singularityhub/singularity-compose/data.json @@ -6,357 +6,17 @@ } }, "pypi": { - "pytest-runner": { - "credit": 0.00990000000000002, - "url": "https://github.com/pytest-dev/pytest-runner/" + "singularity-compose": { + "credit": 0.0033000000000000004, + "url": "http://github.com/singularityhub/singularity-compose" }, - "pytest-mypy": { - "credit": 0.02794362032967033, - "url": "https://github.com/dbader/pytest-mypy" + "spython": { + "credit": 0.0033000000000000004, + "url": "https://github.com/singularityhub/singularity-cli" }, - "pytest-black": { - "credit": 0.10258200494505493, - "url": "https://github.com/shopkeep/pytest-black" - }, - "types-setuptools": { - "credit": 0.07539230769230769, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.0007539230769230826, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.030252745353708792, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.02794362032967033, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-checkdocs" - }, - "pytest": { - "credit": 0.09642254402234783, - "url": "https://docs.pytest.org/en/latest/" - }, - "jaraco.tidelift": { - "credit": 0.0007539230769230826, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/jaraco.packaging" - }, - "sphinx": { - "credit": 0.03167374536850169, - "url": "https://www.sphinx-doc.org/" - }, - "mypy": { - "credit": 0.004593131360946745, - "url": "http://www.mypy-lang.org/" - }, - "filelock": { - "credit": 0.00018659596153846117, - "url": "https://github.com/tox-dev/py-filelock" - }, - "attrs": { - "credit": 0.0060060575120192295, - "url": "https://www.attrs.org/" - }, - "mock": { - "credit": 0.02074713847355769, - "url": "http://mock.readthedocs.org/en/latest/" - }, - "virtualenv": { - "credit": 0.024257474999999997, - "url": "https://virtualenv.pypa.io/" - }, - "pytest-shutil": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.010750798091715976, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.013059923115754437, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.04030472769230769, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.010307205494505494, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.02568748869333791, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pep517": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.008316848571428571, - "url": "https://pypi.org/project/docutils" - }, - "xmlschema": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/nose" - }, - "hypothesis": { - "credit": 0.007240461565273667, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.008898294915865383, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/iniconfig" - }, - "importlib-resources": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-python-dateutil" - }, - "path": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/path" - }, - "python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/python-dateutil" - }, - "types-requests": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/isort" - }, - "sphinxcontrib-websupport": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "imagesize": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/snowballstemmer" - }, - "Pygments": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "lxml": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/lxml" - }, - "psutil": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/psutil" - }, - "typed-ast": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typed-ast" - }, - "mypy-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/mypy-extensions" - }, - "typing-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typing-extensions" - }, - "pytest-timeout": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/pytest-timeout" - }, - "covdefaults": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/covdefaults" - }, - "sphinx-autodoc-typehints": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "furo": { - "credit": 0.003730125038831361, - "url": "https://pypi.org/project/furo" - }, - "cloudpickle": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "zope.interface": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "pympler": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pympler" + "semver": { + "credit": 0.006567, + "url": "https://github.com/python-semver/python-semver" } } } \ No newline at end of file diff --git a/_repos/github/singularityhub/singularity-hpc/README.md b/_repos/github/singularityhub/singularity-hpc/README.md index fe16d703..703ea644 100644 --- a/_repos/github/singularityhub/singularity-hpc/README.md +++ b/_repos/github/singularityhub/singularity-hpc/README.md @@ -8,94 +8,49 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.103| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.096| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.075| -|pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.032| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.03| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.028| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.028| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.028| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.028| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.026| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.024| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.021| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.015| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.013| -|pypi|[pep517](https://pypi.org/project/pep517)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.01| +|pypi|[semver](https://github.com/python-semver/python-semver)|0.305| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.223| +|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.165| +|pypi|[ruamel.yaml.clib](https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree)|0.141| +|pypi|[Babel](http://babel.pocoo.org/)|0.082| |setup.py|github/singularityhub/singularity-hpc|0.01| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[attrs](https://www.attrs.org/)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.005| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.005| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.005| -|pypi|[path](https://pypi.org/project/path)|0.005| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| -|pypi|[keyring](https://pypi.org/project/keyring)|0.005| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.005| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.005| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.003| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|0.001| -|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.001| +|pypi|[idna](https://pypi.org/project/idna)|0.005| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.003| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.003| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.003| +|pypi|[chardet](https://pypi.org/project/chardet)|0.003| +|pypi|[certifi](https://pypi.org/project/certifi)|0.003| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.003| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| +|pypi|[attrs](https://pypi.org/project/attrs)|0.003| +|pypi|[requests](https://requests.readthedocs.io)|0.002| +|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|0.002| +|pypi|[webcolors](https://pypi.org/project/webcolors)|0.002| +|pypi|[uri-template](https://pypi.org/project/uri-template)|0.002| +|pypi|[rfc3987](https://pypi.org/project/rfc3987)|0.002| +|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|0.002| +|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|0.002| +|pypi|[isoduration](https://pypi.org/project/isoduration)|0.002| +|pypi|[fqdn](https://pypi.org/project/fqdn)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.002| +|pypi|[pyrsistent](https://pypi.org/project/pyrsistent)|0.002| +|pypi|[spython](https://github.com/singularityhub/singularity-cli)|0.002| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.002| +|pypi|[xmlschema](https://github.com/sissaschool/xmlschema)|0.001| +|pypi|[pygments](https://pypi.org/project/pygments)|0.001| +|pypi|[nose](https://pypi.org/project/nose)|0.001| +|pypi|[mock](https://pypi.org/project/mock)|0.001| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| +|pypi|[colorama](https://pypi.org/project/colorama)|0.001| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| +|pypi|[tomli](https://pypi.org/project/tomli)|0.001| +|pypi|[py](https://pypi.org/project/py)|0.001| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| +|pypi|[packaging](https://pypi.org/project/packaging)|0.001| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| +|pypi|[singularity-hpc](https://github.com/singularityhub/singularity-hpc)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/singularityhub/singularity-hpc/badge.png b/_repos/github/singularityhub/singularity-hpc/badge.png index 356e36ab..1d2fc797 100644 Binary files a/_repos/github/singularityhub/singularity-hpc/badge.png and b/_repos/github/singularityhub/singularity-hpc/badge.png differ diff --git a/_repos/github/singularityhub/singularity-hpc/data.json b/_repos/github/singularityhub/singularity-hpc/data.json index e99a3149..4ae2cfae 100644 --- a/_repos/github/singularityhub/singularity-hpc/data.json +++ b/_repos/github/singularityhub/singularity-hpc/data.json @@ -6,357 +6,181 @@ } }, "pypi": { - "pytest-runner": { - "credit": 0.00990000000000002, - "url": "https://github.com/pytest-dev/pytest-runner/" + "singularity-hpc": { + "credit": 0.001414285714285729, + "url": "https://github.com/singularityhub/singularity-hpc" }, - "pytest-mypy": { - "credit": 0.02794362032967033, - "url": "https://github.com/dbader/pytest-mypy" + "spython": { + "credit": 0.0016476428571428718, + "url": "https://github.com/singularityhub/singularity-cli" }, - "pytest-black": { - "credit": 0.10258200494505493, - "url": "https://github.com/shopkeep/pytest-black" - }, - "types-setuptools": { - "credit": 0.07539230769230769, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.0007539230769230826, - "url": "https://github.com/manahl/pytest-plugins" + "Jinja2": { + "credit": 0.0016476428571428718, + "url": "https://palletsprojects.com/p/jinja/" }, - "pytest-enabler": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-enabler" + "ruamel.yaml": { + "credit": 0.16476428571428572, + "url": "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree" }, - "pytest-cov": { - "credit": 0.030252745353708792, - "url": "https://github.com/pytest-dev/pytest-cov" + "MarkupSafe": { + "credit": 0.22298689285714285, + "url": "https://palletsprojects.com/p/markupsafe/" }, - "pytest-flake8": { - "credit": 0.02794362032967033, - "url": "https://github.com/tholo/pytest-flake8" + "ruamel.yaml.clib": { + "credit": 0.14142857142857143, + "url": "https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree" }, - "pytest-checkdocs": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-checkdocs" + "semver": { + "credit": 0.30454521428571424, + "url": "https://github.com/python-semver/python-semver" }, "pytest": { - "credit": 0.09642254402234783, + "credit": 0.0002333571428571428, "url": "https://docs.pytest.org/en/latest/" }, - "jaraco.tidelift": { - "credit": 0.0007539230769230826, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/jaraco.packaging" - }, - "sphinx": { - "credit": 0.03167374536850169, - "url": "https://www.sphinx-doc.org/" - }, - "mypy": { - "credit": 0.004593131360946745, - "url": "http://www.mypy-lang.org/" - }, - "filelock": { - "credit": 0.00018659596153846117, - "url": "https://github.com/tox-dev/py-filelock" - }, - "attrs": { - "credit": 0.0060060575120192295, - "url": "https://www.attrs.org/" - }, - "mock": { - "credit": 0.02074713847355769, - "url": "http://mock.readthedocs.org/en/latest/" - }, - "virtualenv": { - "credit": 0.024257474999999997, - "url": "https://virtualenv.pypa.io/" - }, - "pytest-shutil": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.010750798091715976, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.013059923115754437, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.04030472769230769, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.010307205494505494, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.02568748869333791, - "url": "https://pypi.org/project/importlib-metadata" + "requests": { + "credit": 0.001677254464285714, + "url": "https://requests.readthedocs.io" }, - "pep517": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/pep517" + "jsonschema": { + "credit": 0.0002333571428571428, + "url": "https://github.com/Julian/jsonschema" }, - "docutils": { - "credit": 0.008316848571428571, - "url": "https://pypi.org/project/docutils" + "Babel": { + "credit": 0.08155832142857142, + "url": "http://babel.pocoo.org/" }, "xmlschema": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/requests" + "credit": 0.0014438973214285712, + "url": "https://github.com/sissaschool/xmlschema" }, "pygments": { - "credit": 0.005819461550480768, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.005819461550480768, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/nose" }, + "mock": { + "credit": 0.0014438973214285712, + "url": "https://pypi.org/project/mock" + }, "hypothesis": { - "credit": 0.007240461565273667, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.005819461550480768, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.008804996935096152, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.005819461550480768, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/atomicwrites" }, + "importlib-metadata": { + "credit": 0.0030940656887755097, + "url": "https://pypi.org/project/importlib-metadata" + }, "tomli": { - "credit": 0.008898294915865383, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.005819461550480768, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.005819461550480768, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.008804996935096152, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.005819461550480768, + "credit": 0.0014438973214285712, "url": "https://pypi.org/project/iniconfig" }, - "importlib-resources": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-python-dateutil" - }, - "path": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/path" - }, - "python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/python-dateutil" - }, - "types-requests": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/isort" - }, - "sphinxcontrib-websupport": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-websupport" + "attrs": { + "credit": 0.0030940656887755097, + "url": "https://pypi.org/project/attrs" }, - "imagesize": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/imagesize" + "win-inet-pton": { + "credit": 0.003300336734693877, + "url": "https://pypi.org/project/win-inet-pton" }, - "alabaster": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/alabaster" + "PySocks": { + "credit": 0.003300336734693877, + "url": "https://pypi.org/project/PySocks" }, - "babel": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/babel" + "charset-normalizer": { + "credit": 0.003300336734693877, + "url": "https://pypi.org/project/charset-normalizer" }, - "snowballstemmer": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/snowballstemmer" + "idna": { + "credit": 0.004950505102040816, + "url": "https://pypi.org/project/idna" }, - "Pygments": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Pygments" + "chardet": { + "credit": 0.003300336734693877, + "url": "https://pypi.org/project/chardet" }, - "Jinja2": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Jinja2" + "certifi": { + "credit": 0.003300336734693877, + "url": "https://pypi.org/project/certifi" }, - "sphinxcontrib-qthelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" + "urllib3": { + "credit": 0.003300336734693877, + "url": "https://pypi.org/project/urllib3" }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + "rfc3986-validator": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/rfc3986-validator" }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + "webcolors": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/webcolors" }, - "sphinxcontrib-jsmath": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" + "uri-template": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/uri-template" }, - "sphinxcontrib-devhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" + "rfc3987": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/rfc3987" }, - "sphinxcontrib-applehelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" + "rfc3339-validator": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/rfc3339-validator" }, - "lxml": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/lxml" + "jsonpointer": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/jsonpointer" }, - "psutil": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/psutil" + "isoduration": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/isoduration" }, - "typed-ast": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typed-ast" + "fqdn": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/fqdn" }, - "mypy-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/mypy-extensions" + "importlib-resources": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/importlib-resources" }, "typing-extensions": { - "credit": 0.003078833365384615, + "credit": 0.0016501683673469385, "url": "https://pypi.org/project/typing-extensions" }, - "pytest-timeout": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/pytest-timeout" - }, - "covdefaults": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/covdefaults" - }, - "sphinx-autodoc-typehints": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "furo": { - "credit": 0.003730125038831361, - "url": "https://pypi.org/project/furo" - }, - "cloudpickle": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "zope.interface": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "pympler": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pympler" + "pyrsistent": { + "credit": 0.0016501683673469385, + "url": "https://pypi.org/project/pyrsistent" } } } \ No newline at end of file diff --git a/_repos/github/singularityhub/sregistry/badge.png b/_repos/github/singularityhub/sregistry/badge.png index 8848b742..1d6973a9 100644 Binary files a/_repos/github/singularityhub/sregistry/badge.png and b/_repos/github/singularityhub/sregistry/badge.png differ diff --git a/_repos/github/singularityhub/sregistry/requirements.txt b/_repos/github/singularityhub/sregistry/requirements.txt index f7fd0b4d..f41f2ca3 100644 --- a/_repos/github/singularityhub/sregistry/requirements.txt +++ b/_repos/github/singularityhub/sregistry/requirements.txt @@ -18,7 +18,7 @@ django-rq django-taggit django-taggit-templatetags django-user-agents -django==2.2.27 +django==2.2.28 djangorestframework==3.11.2 google google-api-python-client diff --git a/_repos/github/skovaka/UNCALLED/README.md b/_repos/github/skovaka/UNCALLED/README.md index 8caf73a4..bcdb504c 100644 --- a/_repos/github/skovaka/UNCALLED/README.md +++ b/_repos/github/skovaka/UNCALLED/README.md @@ -8,30 +8,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pybind11-global](https://github.com/pybind/pybind11)|0.49| -|pypi|[numpy](https://www.numpy.org)|0.285| -|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.04| -|pypi|[pytz](https://pypi.org/project/pytz)|0.04| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.04| -|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.01| -|pypi|[enum34](https://pypi.org/project/enum34)|0.01| -|pypi|[futures](https://pypi.org/project/futures)|0.01| -|pypi|[six](https://pypi.org/project/six)|0.01| |setup.py|github/skovaka/UNCALLED|0.01| -|pypi|[pybind11](https://github.com/pybind/pybind11)|0.005| -|pypi|[read-until](https://pypi.org/project/read-until)|0.005| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.004| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| -|pypi|[pytest](https://pypi.org/project/pytest)|0.004| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| -|pypi|[zipp](https://pypi.org/project/zipp)|0.004| -|pypi|[minknow-api](https://github.com/nanoporetech/minknow_api)|0.002| +|pypi|[uncalled](https://github.com/elazarg/uncalled)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/skovaka/UNCALLED/badge.png b/_repos/github/skovaka/UNCALLED/badge.png index ac615da5..a9c9934a 100644 Binary files a/_repos/github/skovaka/UNCALLED/badge.png and b/_repos/github/skovaka/UNCALLED/badge.png differ diff --git a/_repos/github/skovaka/UNCALLED/data.json b/_repos/github/skovaka/UNCALLED/data.json index 809c8e66..3c892f80 100644 --- a/_repos/github/skovaka/UNCALLED/data.json +++ b/_repos/github/skovaka/UNCALLED/data.json @@ -6,113 +6,9 @@ } }, "pypi": { - "pybind11": { - "credit": 0.00495000000000001, - "url": "https://github.com/pybind/pybind11" - }, - "read-until": { - "credit": 0.00495000000000001, - "url": "https://pypi.org/project/read-until" - }, - "pybind11-global": { - "credit": 0.49005, - "url": "https://github.com/pybind/pybind11" - }, - "minknow-api": { - "credit": 0.002450250000000015, - "url": "https://github.com/nanoporetech/minknow_api" - }, - "numpy": { - "credit": 0.285454125, - "url": "https://www.numpy.org" - }, - "importlib-resources": { - "credit": 0.00040429125000000093, - "url": "https://github.com/python/importlib_resources" - }, - "pyrfc3339": { - "credit": 0.00040429125000000093, - "url": "https://github.com/kurtraschke/pyRFC3339" - }, - "packaging": { - "credit": 0.00040429125000000093, - "url": "https://github.com/pypa/packaging" - }, - "protobuf": { - "credit": 0.040429124999999996, - "url": "https://developers.google.com/protocol-buffers/" - }, - "grpcio": { - "credit": 0.00040429125000000093, - "url": "https://grpc.io" - }, - "pytest-mypy": { - "credit": 0.0036386212499999997, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-black": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/pytest-black" - }, - "pytest-enabler": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "pytest": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/pytest" - }, - "rst.linker": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/sphinx" - }, - "zipp": { - "credit": 0.0036386212499999997, - "url": "https://pypi.org/project/zipp" - }, - "pytz": { - "credit": 0.040024833749999995, - "url": "https://pypi.org/project/pytz" - }, - "pyparsing": { - "credit": 0.040024833749999995, - "url": "https://pypi.org/project/pyparsing" - }, - "grpcio-tools": { - "credit": 0.010006208437499999, - "url": "https://pypi.org/project/grpcio-tools" - }, - "enum34": { - "credit": 0.010006208437499999, - "url": "https://pypi.org/project/enum34" - }, - "futures": { - "credit": 0.010006208437499999, - "url": "https://pypi.org/project/futures" - }, - "six": { - "credit": 0.010006208437499999, - "url": "https://pypi.org/project/six" + "uncalled": { + "credit": 0.0099, + "url": "https://github.com/elazarg/uncalled" } } } \ No newline at end of file diff --git a/_repos/github/slzarate/parliament2/badge.png b/_repos/github/slzarate/parliament2/badge.png index 596017bf..cbd4fb76 100644 Binary files a/_repos/github/slzarate/parliament2/badge.png and b/_repos/github/slzarate/parliament2/badge.png differ diff --git a/_repos/github/smog-server/OpenSMOG/README.md b/_repos/github/smog-server/OpenSMOG/README.md index 03fd1d9b..c8317f8d 100644 --- a/_repos/github/smog-server/OpenSMOG/README.md +++ b/_repos/github/smog-server/OpenSMOG/README.md @@ -9,7 +9,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/smog-server/OpenSMOG|0.01| -|pypi|[numpy](https://www.numpy.org)|0.005| +|pypi|[OpenSMOG](https://github.com/junioreif/OpenSMOG)|0.005| |pypi|[lxml](https://lxml.de/)|0.005| diff --git a/_repos/github/smog-server/OpenSMOG/badge.png b/_repos/github/smog-server/OpenSMOG/badge.png index 855dcc07..afa1697e 100644 Binary files a/_repos/github/smog-server/OpenSMOG/badge.png and b/_repos/github/smog-server/OpenSMOG/badge.png differ diff --git a/_repos/github/smog-server/OpenSMOG/data.json b/_repos/github/smog-server/OpenSMOG/data.json index 27f45040..5c886352 100644 --- a/_repos/github/smog-server/OpenSMOG/data.json +++ b/_repos/github/smog-server/OpenSMOG/data.json @@ -6,9 +6,9 @@ } }, "pypi": { - "numpy": { + "OpenSMOG": { "credit": 0.00495, - "url": "https://www.numpy.org" + "url": "https://github.com/junioreif/OpenSMOG" }, "lxml": { "credit": 0.00495, diff --git a/_repos/github/snakemake/snakemake/README.md b/_repos/github/snakemake/snakemake/README.md index 9cc9b4a8..434e20a1 100644 --- a/_repos/github/snakemake/snakemake/README.md +++ b/_repos/github/snakemake/snakemake/README.md @@ -8,56 +8,42 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pyyaml](https://pyyaml.org/)|0.074| -|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.05| -|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.05| -|pypi|[datrie](https://github.com/kmike/datrie)|0.05| -|pypi|[docutils](http://docutils.sourceforge.net/)|0.05| -|pypi|[toposort](https://pypi.org/project/toposort)|0.05| -|pypi|[connection_pool](https://github.com/zhouyl/ConnectionPool)|0.05| -|pypi|[pulp](https://github.com/coin-or/pulp)|0.05| -|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.05| -|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.049| -|pypi|[pytest](https://pypi.org/project/pytest)|0.041| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.028| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.025| -|pypi|[gitdb](https://pypi.org/project/gitdb)|0.025| -|pypi|[plac](https://pypi.org/project/plac)|0.025| -|pypi|[Babel](https://pypi.org/project/Babel)|0.025| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.025| -|pypi|[py](https://pypi.org/project/py)|0.025| -|pypi|[decorator](https://pypi.org/project/decorator)|0.025| -|pypi|[mock](https://pypi.org/project/mock)|0.025| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.016| -|pypi|[requests](https://requests.readthedocs.io)|0.013| -|pypi|[boto3](https://pypi.org/project/boto3)|0.012| -|pypi|[bz2file](https://pypi.org/project/bz2file)|0.012| -|pypi|[boto](https://pypi.org/project/boto)|0.012| -|pypi|[idna](https://github.com/kjd/idna)|0.011| +|pypi|[smmap](https://github.com/gitpython-developers/smmap)|0.082| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.062| +|pypi|[plac](https://github.com/ialbert/plac)|0.062| +|pypi|[fastjsonschema](https://github.com/seznam/python-fastjsonschema)|0.046| +|pypi|[snakemake](https://snakemake.readthedocs.io)|0.041| +|pypi|[connection_pool](https://github.com/zhouyl/ConnectionPool)|0.041| +|pypi|[pulp](https://github.com/coin-or/pulp)|0.041| +|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.041| +|pypi|[datrie](https://github.com/kmike/datrie)|0.041| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.041| +|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.041| +|pypi|[toposort](https://pypi.org/project/toposort)|0.041| +|pypi|[wrapt](https://github.com/GrahamDumpleton/wrapt)|0.041| +|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.041| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.039| +|pypi|[pywin32](https://pypi.org/project/pywin32)|0.027| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.026| +|pypi|[gitdb](https://github.com/gitpython-developers/gitdb)|0.021| +|pypi|[Babel](http://babel.pocoo.org/)|0.02| +|pypi|[pyyaml](https://pyyaml.org/)|0.02| +|pypi|[mock](https://pypi.org/project/mock)|0.02| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.02| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.02| +|pypi|[py](https://pypi.org/project/py)|0.02| +|pypi|[decorator](https://pypi.org/project/decorator)|0.02| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.014| |setup.py|github/snakemake/snakemake|0.01| -|pypi|[wmi](https://pypi.org/project/wmi)|0.008| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.008| -|pypi|[enum34](https://pypi.org/project/enum34)|0.008| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.008| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.008| -|pypi|[win-inet-pton](https://github.com/hickeroar/win_inet_pton)|0.007| -|pypi|[PySocks](https://github.com/Anorov/PySocks)|0.007| -|pypi|[chardet](https://github.com/chardet/chardet)|0.007| -|pypi|[certifi](https://certifiio.readthedocs.io/en/latest/)|0.007| -|pypi|[urllib3](https://urllib3.readthedocs.io/)|0.007| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.007| -|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|0.004| -|pypi|[webcolors](https://pypi.org/project/webcolors)|0.004| -|pypi|[uri-template](https://pypi.org/project/uri-template)|0.004| -|pypi|[rfc3987](https://pypi.org/project/rfc3987)|0.004| -|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|0.004| -|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|0.004| -|pypi|[isoduration](https://pypi.org/project/isoduration)|0.004| -|pypi|[fqdn](https://pypi.org/project/fqdn)|0.004| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[pyrsistent](https://pypi.org/project/pyrsistent)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| +|pypi|[wmi](https://pypi.org/project/wmi)|0.007| +|pypi|[enum34](https://pypi.org/project/enum34)|0.007| +|pypi|[unittest2](https://pypi.org/project/unittest2)|0.007| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.007| +|pypi|[jupyter-core](https://jupyter.org)|0.006| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.005| +|pypi|[testpath](https://pypi.org/project/testpath)|0.005| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.005| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.005| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/snakemake/snakemake/badge.png b/_repos/github/snakemake/snakemake/badge.png index dd6fbfbc..68856a53 100644 Binary files a/_repos/github/snakemake/snakemake/badge.png and b/_repos/github/snakemake/snakemake/badge.png differ diff --git a/_repos/github/snakemake/snakemake/data.json b/_repos/github/snakemake/snakemake/data.json index ad4f2ea8..d6c03644 100644 --- a/_repos/github/snakemake/snakemake/data.json +++ b/_repos/github/snakemake/snakemake/data.json @@ -6,245 +6,181 @@ } }, "pypi": { - "wrapt": { - "credit": 0.0495, - "url": "https://github.com/GrahamDumpleton/wrapt" + "snakemake": { + "credit": 0.04125, + "url": "https://snakemake.readthedocs.io" }, - "requests": { - "credit": 0.012746250000000002, - "url": "https://requests.readthedocs.io" + "connection_pool": { + "credit": 0.04125, + "url": "https://github.com/zhouyl/ConnectionPool" }, - "ratelimiter": { - "credit": 0.0004950000000000024, - "url": "https://github.com/RazerM/ratelimiter" + "jinja2": { + "credit": 0.00041250000000000314, + "url": "https://palletsprojects.com/p/jinja/" }, - "pyyaml": { - "credit": 0.0740025, - "url": "https://pyyaml.org/" + "pulp": { + "credit": 0.04125, + "url": "https://github.com/coin-or/pulp" }, - "configargparse": { - "credit": 0.0004950000000000093, - "url": "https://github.com/bw2/ConfigArgParse" + "yte": { + "credit": 0.00041250000000000314, + "url": "https://github.com/koesterlab/yte" }, "appdirs": { - "credit": 0.0495, + "credit": 0.04125, "url": "http://github.com/ActiveState/appdirs" }, + "configargparse": { + "credit": 0.00041250000000000314, + "url": "https://github.com/bw2/ConfigArgParse" + }, "datrie": { - "credit": 0.0495, + "credit": 0.04125, "url": "https://github.com/kmike/datrie" }, - "jsonschema": { - "credit": 0.0004950000000000024, - "url": "https://github.com/Julian/jsonschema" - }, "docutils": { - "credit": 0.0495, + "credit": 0.04125, "url": "http://docutils.sourceforge.net/" }, "gitpython": { - "credit": 0.0004950000000000024, + "credit": 0.00041250000000000314, "url": "https://github.com/gitpython-developers/GitPython" }, + "nbformat": { + "credit": 0.00041250000000000314, + "url": "http://jupyter.org" + }, "psutil": { - "credit": 0.0004950000000000093, + "credit": 0.00041250000000000314, "url": "https://github.com/giampaolo/psutil" }, - "toposort": { - "credit": 0.0495, - "url": "https://pypi.org/project/toposort" - }, - "connection_pool": { - "credit": 0.0495, - "url": "https://github.com/zhouyl/ConnectionPool" - }, - "pulp": { - "credit": 0.0495, - "url": "https://github.com/coin-or/pulp" + "ratelimiter": { + "credit": 0.00041250000000000314, + "url": "https://github.com/RazerM/ratelimiter" }, - "smart_open": { - "credit": 0.0004950000000000024, - "url": "https://github.com/piskvorky/smart_open" + "retry": { + "credit": 0.00041250000000000314, + "url": "https://github.com/invl/retry" }, "stopit": { - "credit": 0.0495, + "credit": 0.04125, "url": "http://pypi.python.org/pypi/stopit" }, "tabulate": { - "credit": 0.0004950000000000024, + "credit": 0.00041250000000000314, "url": "https://github.com/astanin/python-tabulate" }, - "yte": { - "credit": 0.0004950000000000024, - "url": "https://github.com/koesterlab/yte" - }, - "jinja2": { - "credit": 0.0004950000000000024, - "url": "https://palletsprojects.com/p/jinja/" + "toposort": { + "credit": 0.04125, + "url": "https://pypi.org/project/toposort" }, - "retry": { - "credit": 0.0004950000000000024, - "url": "https://github.com/invl/retry" + "wrapt": { + "credit": 0.04125, + "url": "https://github.com/GrahamDumpleton/wrapt" }, - "win-inet-pton": { - "credit": 0.0070007142857142855, - "url": "https://github.com/hickeroar/win_inet_pton" + "gitdb": { + "credit": 0.020831250000000003, + "url": "https://github.com/gitpython-developers/gitdb" }, - "PySocks": { - "credit": 0.0070007142857142855, - "url": "https://github.com/Anorov/PySocks" + "MarkupSafe": { + "credit": 0.06166875, + "url": "https://palletsprojects.com/p/markupsafe/" }, - "charset-normalizer": { - "credit": 7.000714285714318e-05, - "url": "https://github.com/ousret/charset_normalizer" + "plac": { + "credit": 0.06166875, + "url": "https://github.com/ialbert/plac" }, - "idna": { - "credit": 0.010501071428571429, - "url": "https://github.com/kjd/idna" + "fastjsonschema": { + "credit": 0.046354687500000005, + "url": "https://github.com/seznam/python-fastjsonschema" }, - "chardet": { - "credit": 0.0070007142857142855, - "url": "https://github.com/chardet/chardet" + "jupyter-core": { + "credit": 0.005517187500000003, + "url": "https://jupyter.org" }, - "certifi": { - "credit": 0.0070007142857142855, - "url": "https://certifiio.readthedocs.io/en/latest/" + "smmap": { + "credit": 0.08208750000000001, + "url": "https://github.com/gitpython-developers/smmap" }, - "urllib3": { - "credit": 0.0070007142857142855, - "url": "https://urllib3.readthedocs.io/" + "Babel": { + "credit": 0.02041875, + "url": "http://babel.pocoo.org/" }, - "pytest-asyncio": { - "credit": 0.0245025, - "url": "https://pypi.org/project/pytest-asyncio" + "pyyaml": { + "credit": 0.02041875, + "url": "https://pyyaml.org/" }, "pytest": { - "credit": 0.0408375, - "url": "https://pypi.org/project/pytest" + "credit": 0.039135937499999995, + "url": "https://docs.pytest.org/en/latest/" }, "PyYAML": { - "credit": 0.016335, + "credit": 0.0136125, "url": "https://pypi.org/project/PyYAML" }, "mock": { - "credit": 0.024502499999999997, + "credit": 0.02041875, "url": "https://pypi.org/project/mock" }, - "rfc3986-validator": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/rfc3986-validator" - }, - "webcolors": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/webcolors" - }, - "uri-template": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/uri-template" - }, - "rfc3987": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/rfc3987" - }, - "rfc3339-validator": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/rfc3339-validator" - }, - "jsonpointer": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/jsonpointer" - }, - "isoduration": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/isoduration" - }, - "fqdn": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/fqdn" - }, - "importlib-resources": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/importlib-resources" - }, "typing-extensions": { - "credit": 0.028002857142857142, + "credit": 0.02041875, "url": "https://pypi.org/project/typing-extensions" }, - "importlib-metadata": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/importlib-metadata" + "pre-commit": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/pre-commit" }, - "pyrsistent": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/pyrsistent" + "testpath": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/testpath" }, - "attrs": { - "credit": 0.0035003571428571427, - "url": "https://pypi.org/project/attrs" + "check-manifest": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/check-manifest" }, - "gitdb": { - "credit": 0.0245025, - "url": "https://pypi.org/project/gitdb" + "jsonschema": { + "credit": 0.0051046875, + "url": "https://pypi.org/project/jsonschema" + }, + "traitlets": { + "credit": 0.0255234375, + "url": "https://pypi.org/project/traitlets" }, "wmi": { - "credit": 0.0081675, + "credit": 0.00680625, "url": "https://pypi.org/project/wmi" }, "pywin32": { - "credit": 0.0081675, + "credit": 0.027225, "url": "https://pypi.org/project/pywin32" }, "enum34": { - "credit": 0.0081675, + "credit": 0.00680625, "url": "https://pypi.org/project/enum34" }, "unittest2": { - "credit": 0.0081675, + "credit": 0.00680625, "url": "https://pypi.org/project/unittest2" }, "ipaddress": { - "credit": 0.0081675, + "credit": 0.00680625, "url": "https://pypi.org/project/ipaddress" }, - "boto3": { - "credit": 0.01225125, - "url": "https://pypi.org/project/boto3" - }, - "bz2file": { - "credit": 0.01225125, - "url": "https://pypi.org/project/bz2file" - }, - "boto": { - "credit": 0.01225125, - "url": "https://pypi.org/project/boto" - }, - "wcwidth": { - "credit": 0.049005, - "url": "https://pypi.org/project/wcwidth" - }, - "plac": { - "credit": 0.0245025, - "url": "https://pypi.org/project/plac" - }, - "Babel": { - "credit": 0.0245025, - "url": "https://pypi.org/project/Babel" - }, - "MarkupSafe": { - "credit": 0.0245025, - "url": "https://pypi.org/project/MarkupSafe" + "pytest-asyncio": { + "credit": 0.02041875, + "url": "https://pypi.org/project/pytest-asyncio" }, "py": { - "credit": 0.0245025, + "credit": 0.02041875, "url": "https://pypi.org/project/py" }, "decorator": { - "credit": 0.0245025, + "credit": 0.02041875, "url": "https://pypi.org/project/decorator" }, - "unicodedata2": { - "credit": 0.006930707142857142, - "url": "https://pypi.org/project/unicodedata2" + "wcwidth": { + "credit": 0.0408375, + "url": "https://pypi.org/project/wcwidth" } } } \ No newline at end of file diff --git a/_repos/github/snowformatics/macrobot/badge.png b/_repos/github/snowformatics/macrobot/badge.png index 45b87218..55974da9 100644 Binary files a/_repos/github/snowformatics/macrobot/badge.png and b/_repos/github/snowformatics/macrobot/badge.png differ diff --git a/_repos/github/soraxas/sbp-env/badge.png b/_repos/github/soraxas/sbp-env/badge.png index baf120ee..1914d6b4 100644 Binary files a/_repos/github/soraxas/sbp-env/badge.png and b/_repos/github/soraxas/sbp-env/badge.png differ diff --git a/_repos/github/sorenwacker/ProteomicsQC/badge.png b/_repos/github/sorenwacker/ProteomicsQC/badge.png index 1258519e..b15e264b 100644 Binary files a/_repos/github/sorenwacker/ProteomicsQC/badge.png and b/_repos/github/sorenwacker/ProteomicsQC/badge.png differ diff --git a/_repos/github/spack/spack/README.md b/_repos/github/spack/spack/README.md new file mode 100644 index 00000000..980f928c --- /dev/null +++ b/_repos/github/spack/spack/README.md @@ -0,0 +1,47 @@ +--- +title: github/spack/spack +layout: repo +tipue_search_active: true +exclude_from_search: true +--- +# Software Credit + +|Manager|Name|Credit| +|-------|----|------| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.206| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.198| +|pypi|[python-levenshtein](http://github.com/ztane/python-Levenshtein)|0.198| +|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.196| +|requirements.txt|github/spack/spack|0.01| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.008| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.008| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.008| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.008| +|pypi|[mypy](https://pypi.org/project/mypy)|0.008| +|pypi|[isort](https://pypi.org/project/isort)|0.008| +|pypi|[flake8](https://pypi.org/project/flake8)|0.008| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.008| +|pypi|[colorama](https://pypi.org/project/colorama)|0.008| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.008| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| +|pypi|[requests](https://pypi.org/project/requests)|0.008| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.008| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.008| +|pypi|[babel](https://pypi.org/project/babel)|0.008| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.008| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.008| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.008| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.008| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.008| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.008| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.008| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.008| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.008| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-programoutput](https://sphinxcontrib-programoutput.readthedocs.org/)|0.002| + + +> Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. + + +- Generated by [CiteLang](https://github.com/vsoch/citelang) diff --git a/_repos/github/spack/spack/badge.png b/_repos/github/spack/spack/badge.png new file mode 100644 index 00000000..2b27a173 Binary files /dev/null and b/_repos/github/spack/spack/badge.png differ diff --git a/_repos/github/spack/spack/data.json b/_repos/github/spack/spack/data.json new file mode 100644 index 00000000..f41e087b --- /dev/null +++ b/_repos/github/spack/spack/data.json @@ -0,0 +1,130 @@ +{ + "requirements.txt": { + "github/spack/spack": { + "credit": 0.01, + "url": null + } + }, + "pypi": { + "sphinx": { + "credit": 0.0019800000000000095, + "url": "https://www.sphinx-doc.org/" + }, + "sphinxcontrib-programoutput": { + "credit": 0.0019800000000000095, + "url": "https://sphinxcontrib-programoutput.readthedocs.org/" + }, + "sphinx-rtd-theme": { + "credit": 0.198, + "url": "https://github.com/readthedocs/sphinx_rtd_theme" + }, + "python-levenshtein": { + "credit": 0.198, + "url": "http://github.com/ztane/python-Levenshtein" + }, + "docutils": { + "credit": 0.20584080000000002, + "url": "http://docutils.sourceforge.net/" + }, + "pytest": { + "credit": 0.0078408, + "url": "https://docs.pytest.org/en/latest/" + }, + "types-requests": { + "credit": 0.0078408, + "url": "https://pypi.org/project/types-requests" + }, + "types-typed-ast": { + "credit": 0.0078408, + "url": "https://pypi.org/project/types-typed-ast" + }, + "docutils-stubs": { + "credit": 0.0078408, + "url": "https://pypi.org/project/docutils-stubs" + }, + "mypy": { + "credit": 0.0078408, + "url": "https://pypi.org/project/mypy" + }, + "isort": { + "credit": 0.0078408, + "url": "https://pypi.org/project/isort" + }, + "flake8": { + "credit": 0.0078408, + "url": "https://pypi.org/project/flake8" + }, + "sphinxcontrib-websupport": { + "credit": 0.0078408, + "url": "https://pypi.org/project/sphinxcontrib-websupport" + }, + "colorama": { + "credit": 0.0078408, + "url": "https://pypi.org/project/colorama" + }, + "importlib-metadata": { + "credit": 0.0078408, + "url": "https://pypi.org/project/importlib-metadata" + }, + "packaging": { + "credit": 0.0078408, + "url": "https://pypi.org/project/packaging" + }, + "requests": { + "credit": 0.0078408, + "url": "https://pypi.org/project/requests" + }, + "imagesize": { + "credit": 0.0078408, + "url": "https://pypi.org/project/imagesize" + }, + "alabaster": { + "credit": 0.0078408, + "url": "https://pypi.org/project/alabaster" + }, + "babel": { + "credit": 0.0078408, + "url": "https://pypi.org/project/babel" + }, + "snowballstemmer": { + "credit": 0.0078408, + "url": "https://pypi.org/project/snowballstemmer" + }, + "Pygments": { + "credit": 0.0078408, + "url": "https://pypi.org/project/Pygments" + }, + "Jinja2": { + "credit": 0.0078408, + "url": "https://pypi.org/project/Jinja2" + }, + "sphinxcontrib-qthelp": { + "credit": 0.0078408, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" + }, + "sphinxcontrib-serializinghtml": { + "credit": 0.0078408, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + }, + "sphinxcontrib-htmlhelp": { + "credit": 0.0078408, + "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" + }, + "sphinxcontrib-jsmath": { + "credit": 0.0078408, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" + }, + "sphinxcontrib-devhelp": { + "credit": 0.0078408, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" + }, + "sphinxcontrib-applehelp": { + "credit": 0.0078408, + "url": "https://pypi.org/project/sphinxcontrib-applehelp" + }, + "Sphinx": { + "credit": 0.19602, + "url": "https://pypi.org/project/Sphinx" + } + } +} \ No newline at end of file diff --git a/_repos/github/spokenlanguage/platalea/README.md b/_repos/github/spokenlanguage/platalea/README.md new file mode 100644 index 00000000..a7cd5cb1 --- /dev/null +++ b/_repos/github/spokenlanguage/platalea/README.md @@ -0,0 +1,86 @@ +--- +title: github/spokenlanguage/platalea +layout: repo +tipue_search_active: true +exclude_from_search: true +--- +# Software Credit + +|Manager|Name|Credit| +|-------|----|------| +|pypi|[numpy](https://www.numpy.org)|0.275| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.106| +|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|0.09| +|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.09| +|pypi|[cffi](https://pypi.org/project/cffi)|0.045| +|pypi|[pytest](https://pypi.org/project/pytest)|0.034| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.032| +|pypi|[mock](https://pypi.org/project/mock)|0.03| +|pypi|[joblib](https://pypi.org/project/joblib)|0.019| +|pypi|[pillow](https://python-pillow.org)|0.017| +|pypi|[requests](https://pypi.org/project/requests)|0.017| +|pypi|[torch](https://pytorch.org/)|0.016| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.015| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.015| +|pypi|[regex](https://pypi.org/project/regex)|0.015| +|pypi|[click](https://pypi.org/project/click)|0.015| +|setup.py|github/spokenlanguage/platalea|0.01| +|pypi|[scipy](https://www.scipy.org)|0.008| +|pypi|[pyamg](https://pypi.org/project/pyamg)|0.004| +|pypi|[mypy](https://pypi.org/project/mypy)|0.004| +|pypi|[black](https://pypi.org/project/black)|0.004| +|pypi|[flake8](https://pypi.org/project/flake8)|0.004| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.004| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.004| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.004| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.004| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.004| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.004| +|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.004| +|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.004| +|pypi|[pandas](https://pypi.org/project/pandas)|0.004| +|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.004| +|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.004| +|pypi|[soundfile](https://github.com/bastibe/PySoundFile)|0.003| +|pypi|[scikit-learn](http://scikit-learn.org)|0.003| +|pypi|[pydantic](https://pypi.org/project/pydantic)|0.002| +|pypi|[jsonref](https://pypi.org/project/jsonref)|0.002| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.002| +|pypi|[rdkit-pypi](https://pypi.org/project/rdkit-pypi)|0.002| +|pypi|[plotly](https://pypi.org/project/plotly)|0.002| +|pypi|[bokeh](https://pypi.org/project/bokeh)|0.002| +|pypi|[moviepy](https://pypi.org/project/moviepy)|0.002| +|pypi|[iso8601](https://pypi.org/project/iso8601)|0.002| +|pypi|[chardet](https://pypi.org/project/chardet)|0.002| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.002| +|pypi|[sh](https://pypi.org/project/sh)|0.002| +|pypi|[minio](https://pypi.org/project/minio)|0.002| +|pypi|[kubernetes](https://pypi.org/project/kubernetes)|0.002| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.002| +|pypi|[google-cloud-storage](https://pypi.org/project/google-cloud-storage)|0.002| +|pypi|[azure-storage-blob](https://pypi.org/project/azure-storage-blob)|0.002| +|pypi|[boto3](https://pypi.org/project/boto3)|0.002| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.002| +|pypi|[pathtools](https://pypi.org/project/pathtools)|0.002| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.002| +|pypi|[docker-pycreds](https://pypi.org/project/docker-pycreds)|0.002| +|pypi|[six](https://pypi.org/project/six)|0.002| +|pypi|[sentry-sdk](https://pypi.org/project/sentry-sdk)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[shortuuid](https://pypi.org/project/shortuuid)|0.002| +|pypi|[promise](https://pypi.org/project/promise)|0.002| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.002| +|pypi|[GitPython](https://pypi.org/project/GitPython)|0.002| +|pypi|[Click](https://pypi.org/project/Click)|0.002| +|pypi|[torchvision](https://github.com/pytorch/vision)|0.001| +|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|0.001| +|pypi|[nltk](https://www.nltk.org/)|0.001| +|pypi|[wandb](https://github.com/wandb/client)|0.001| + + +> Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. + + +- Generated by [CiteLang](https://github.com/vsoch/citelang) diff --git a/_repos/github/spokenlanguage/platalea/badge.png b/_repos/github/spokenlanguage/platalea/badge.png new file mode 100644 index 00000000..634adef1 Binary files /dev/null and b/_repos/github/spokenlanguage/platalea/badge.png differ diff --git a/_repos/github/spokenlanguage/platalea/data.json b/_repos/github/spokenlanguage/platalea/data.json new file mode 100644 index 00000000..80ab1f58 --- /dev/null +++ b/_repos/github/spokenlanguage/platalea/data.json @@ -0,0 +1,286 @@ +{ + "setup.py": { + "github/spokenlanguage/platalea": { + "credit": 0.01, + "url": null + } + }, + "pypi": { + "torch": { + "credit": 0.01575, + "url": "https://pytorch.org/" + }, + "torchvision": { + "credit": 0.000899999999999998, + "url": "https://github.com/pytorch/vision" + }, + "numpy": { + "credit": 0.27470246525096526, + "url": "https://www.numpy.org" + }, + "scipy": { + "credit": 0.007699465250965248, + "url": "https://www.scipy.org" + }, + "configargparse": { + "credit": 0.000899999999999998, + "url": "https://github.com/bw2/ConfigArgParse" + }, + "nltk": { + "credit": 0.000899999999999998, + "url": "https://www.nltk.org/" + }, + "soundfile": { + "credit": 0.003308108108108106, + "url": "https://github.com/bastibe/PySoundFile" + }, + "scikit-learn": { + "credit": 0.003308108108108106, + "url": "http://scikit-learn.org" + }, + "wandb": { + "credit": 0.000899999999999998, + "url": "https://github.com/wandb/client" + }, + "python-Levenshtein": { + "credit": 0.09, + "url": "http://github.com/ztane/python-Levenshtein" + }, + "setuptools_scm": { + "credit": 0.09, + "url": "https://github.com/pypa/setuptools_scm/" + }, + "typing-extensions": { + "credit": 0.10635810810810811, + "url": "https://typing.readthedocs.io/" + }, + "pillow": { + "credit": 0.017258108108108107, + "url": "https://python-pillow.org" + }, + "requests": { + "credit": 0.017258108108108107, + "url": "https://pypi.org/project/requests" + }, + "pytest": { + "credit": 0.03394285714285714, + "url": "https://pypi.org/project/pytest" + }, + "PyYAML": { + "credit": 0.03210810810810811, + "url": "https://pypi.org/project/PyYAML" + }, + "mock": { + "credit": 0.0297, + "url": "https://pypi.org/project/mock" + }, + "pyparsing": { + "credit": 0.01485, + "url": "https://pypi.org/project/pyparsing" + }, + "tqdm": { + "credit": 0.01485, + "url": "https://pypi.org/project/tqdm" + }, + "regex": { + "credit": 0.01485, + "url": "https://pypi.org/project/regex" + }, + "joblib": { + "credit": 0.019092857142857144, + "url": "https://pypi.org/project/joblib" + }, + "click": { + "credit": 0.01485, + "url": "https://pypi.org/project/click" + }, + "cffi": { + "credit": 0.04455, + "url": "https://pypi.org/project/cffi" + }, + "pyamg": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/pyamg" + }, + "mypy": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/mypy" + }, + "black": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/black" + }, + "flake8": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/flake8" + }, + "pytest-cov": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/pytest-cov" + }, + "sphinxext-opengraph": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-prompt": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/sphinx-prompt" + }, + "Pillow": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/Pillow" + }, + "numpydoc": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/numpydoc" + }, + "sphinx-gallery": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/sphinx-gallery" + }, + "sphinx": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/sphinx" + }, + "seaborn": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/seaborn" + }, + "scikit-image": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/scikit-image" + }, + "memory-profiler": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/memory-profiler" + }, + "pandas": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/pandas" + }, + "matplotlib": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/matplotlib" + }, + "threadpoolctl": { + "credit": 0.004242857142857143, + "url": "https://pypi.org/project/threadpoolctl" + }, + "pydantic": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/pydantic" + }, + "jsonref": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/jsonref" + }, + "jsonschema": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/jsonschema" + }, + "rdkit-pypi": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/rdkit-pypi" + }, + "plotly": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/plotly" + }, + "bokeh": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/bokeh" + }, + "moviepy": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/moviepy" + }, + "iso8601": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/iso8601" + }, + "chardet": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/chardet" + }, + "nbconvert": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/nbconvert" + }, + "sh": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/sh" + }, + "minio": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/minio" + }, + "kubernetes": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/kubernetes" + }, + "grpcio": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/grpcio" + }, + "google-cloud-storage": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/google-cloud-storage" + }, + "azure-storage-blob": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/azure-storage-blob" + }, + "boto3": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/boto3" + }, + "setproctitle": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/setproctitle" + }, + "pathtools": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/pathtools" + }, + "protobuf": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/protobuf" + }, + "docker-pycreds": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/docker-pycreds" + }, + "six": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/six" + }, + "sentry-sdk": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/sentry-sdk" + }, + "psutil": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/psutil" + }, + "shortuuid": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/shortuuid" + }, + "promise": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/promise" + }, + "python-dateutil": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/python-dateutil" + }, + "GitPython": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/GitPython" + }, + "Click": { + "credit": 0.002408108108108108, + "url": "https://pypi.org/project/Click" + } + } +} \ No newline at end of file diff --git a/_repos/github/spokenlanguage/platalea/setup.py b/_repos/github/spokenlanguage/platalea/setup.py new file mode 100644 index 00000000..859abcaa --- /dev/null +++ b/_repos/github/spokenlanguage/platalea/setup.py @@ -0,0 +1,27 @@ +# encoding: utf-8 +from setuptools import setup + +setup(name='platalea', + description='Understanding visually grounded spoken language via multi-tasking', + url='https://github.com/spokenlanguage/platalea', + author='Grzegorz Chrupała', + author_email='g.chrupala@uvt.nl', + license='Apache', + zip_safe=False, + packages=['platalea', 'platalea.audio', 'platalea.utils', 'platalea.experiments', + 'platalea.experiments.flickr8k', 'platalea.experiments.librispeech_places'], + include_package_data=True, + install_requires=[ + 'torch==1.8.1', + 'torchvision>=0.4.0', + 'numpy>=1.17.2', + 'scipy>=1.3.1', + 'configargparse>=1.0', + 'nltk>=3.4.5', + 'soundfile>=0.10.3', + 'scikit-learn==0.22.1', + 'wandb>=0.10.10', + 'python-Levenshtein>=0.12.0'], + use_scm_version=True, + setup_requires=['setuptools_scm'], + ) diff --git a/_repos/github/spyder-ide/spyder/badge.png b/_repos/github/spyder-ide/spyder/badge.png index a8b8fc78..2380815d 100644 Binary files a/_repos/github/spyder-ide/spyder/badge.png and b/_repos/github/spyder-ide/spyder/badge.png differ diff --git a/_repos/github/stammler/simframe/README.md b/_repos/github/stammler/simframe/README.md index ad840a27..72b94c21 100644 --- a/_repos/github/stammler/simframe/README.md +++ b/_repos/github/stammler/simframe/README.md @@ -8,34 +8,52 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.394| -|pypi|[h5py](http://www.h5py.org)|0.198| -|pypi|[matplotlib](https://matplotlib.org)|0.198| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.02| -|pypi|[tox](https://pypi.org/project/tox)|0.018| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.015| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.015| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.015| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.015| -|pypi|[twine](https://pypi.org/project/twine)|0.015| -|pypi|[wheel](https://pypi.org/project/wheel)|0.015| -|pypi|[pep8-naming](https://pypi.org/project/pep8-naming)|0.015| -|pypi|[flake8](https://pypi.org/project/flake8)|0.015| -|pypi|[tomli](https://pypi.org/project/tomli)|0.015| +|pypi|[matplotlib](https://matplotlib.org)|0.133| +|pypi|[simframe](https://github.com/stammler/simframe)|0.124| +|pypi|[h5py](http://www.h5py.org)|0.124| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.121| +|pypi|[pytest](https://pypi.org/project/pytest)|0.031| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| +|pypi|[coverage](https://pypi.org/project/coverage)|0.012| |setup.py|github/stammler/simframe|0.01| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.004| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.004| -|pypi|[dill](https://github.com/uqfoundation/dill)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.002| -|pypi|[objgraph](https://mg.pov.lt/objgraph/)|0.002| -|pypi|[graphviz](https://github.com/xflr6/graphviz)|0.002| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.002| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.009| +|pypi|[brotli](https://github.com/google/brotli)|0.009| +|pypi|[lxml](https://lxml.de/)|0.009| +|pypi|[numpy](https://pypi.org/project/numpy)|0.009| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.009| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[enum34](https://pypi.org/project/enum34)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[objgraph](https://mg.pov.lt/objgraph/)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[six](https://pypi.org/project/six)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/stammler/simframe/badge.png b/_repos/github/stammler/simframe/badge.png index 62319f5e..6c74f757 100644 Binary files a/_repos/github/stammler/simframe/badge.png and b/_repos/github/stammler/simframe/badge.png differ diff --git a/_repos/github/stammler/simframe/data.json b/_repos/github/stammler/simframe/data.json index cde3bcd9..205e6d48 100644 --- a/_repos/github/stammler/simframe/data.json +++ b/_repos/github/stammler/simframe/data.json @@ -6,121 +6,225 @@ } }, "pypi": { + "simframe": { + "credit": 0.12375, + "url": "https://github.com/stammler/simframe" + }, "dill": { - "credit": 0.0019800000000000095, + "credit": 0.0012375000000000025, "url": "https://github.com/uqfoundation/dill" }, "h5py": { - "credit": 0.198, + "credit": 0.12375, "url": "http://www.h5py.org" }, "matplotlib": { - "credit": 0.198, + "credit": 0.13317403846153847, "url": "https://matplotlib.org" }, - "numpy": { - "credit": 0.39402000000000004, - "url": "https://www.numpy.org" + "cycler": { + "credit": 0.12375, + "url": "https://github.com/matplotlib/cycler" }, - "scipy": { - "credit": 0.0019800000000000095, - "url": "https://www.scipy.org" + "fonttools": { + "credit": 0.0012375000000000025, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.0012375000000000025, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" }, "objgraph": { - "credit": 0.0019601999999999953, + "credit": 0.0012251250000000075, "url": "https://mg.pov.lt/objgraph/" }, - "graphviz": { - "credit": 0.0019405980000000156, - "url": "https://github.com/xflr6/graphviz" + "xattr": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/xattr/xattr" }, - "coverage": { - "credit": 0.0019766110205769235, - "url": "https://github.com/nedbat/coveragepy" + "unicodedata2": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/mikekap/unicodedata2" + }, + "munkres": { + "credit": 0.009424038461538461, + "url": "https://software.clapper.org/munkres/" + }, + "brotli": { + "credit": 0.009424038461538461, + "url": "https://github.com/google/brotli" + }, + "scipy": { + "credit": 9.424038461538532e-05, + "url": "https://www.scipy.org" + }, + "brotlicffi": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-hyper/brotlicffi" + }, + "skia-pathops": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/skia-pathops" + }, + "sympy": { + "credit": 9.424038461538532e-05, + "url": "https://sympy.org" + }, + "lz4": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.009424038461538461, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.1225125, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 7.657031250000047e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" }, "pytest-cov": { - "credit": 0.00014778400153846183, + "credit": 0.009211997596153846, "url": "https://github.com/pytest-dev/pytest-cov" }, - "mock": { - "credit": 0.014778400153846153, - "url": "http://mock.readthedocs.org/en/latest/" + "pytest": { + "credit": 0.03078715564903846, + "url": "https://pypi.org/project/pytest" + }, + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" }, - "pytest-mock": { - "credit": 0.00014778400153846183, - "url": "https://github.com/pytest-dev/pytest-mock/" + "packaging": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/packaging" }, - "pytest": { - "credit": 0.02026488121096154, - "url": "https://docs.pytest.org/en/latest/" + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.012321930288461538, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" }, "sphinx-rtd-theme": { - "credit": 0.014778400153846153, + "credit": 0.00765703125, "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "sphinx-autodoc-typehints": { - "credit": 0.014778400153846153, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" }, "sphinx": { - "credit": 0.014778400153846153, + "credit": 0.009211997596153846, "url": "https://pypi.org/project/sphinx" }, - "twine": { - "credit": 0.014778400153846153, - "url": "https://pypi.org/project/twine" + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" }, - "wheel": { - "credit": 0.014778400153846153, - "url": "https://pypi.org/project/wheel" + "graphviz": { + "credit": 0.12128737499999999, + "url": "https://pypi.org/project/graphviz" + }, + "cffi": { + "credit": 0.013994697115384614, + "url": "https://pypi.org/project/cffi" }, - "pep8-naming": { - "credit": 0.014778400153846153, - "url": "https://pypi.org/project/pep8-naming" + "pytest-randomly": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-randomly" + }, + "pytest-xdist": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-xdist" + }, + "numpy": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.005831123798076923, + "url": "https://pypi.org/project/enum34" + }, + "mpmath": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/mpmath" + }, + "psutil": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/psutil" }, "flake8": { - "credit": 0.014778400153846153, + "credit": 0.001554966346153846, "url": "https://pypi.org/project/flake8" }, - "tox": { - "credit": 0.018436054191923075, - "url": "https://pypi.org/project/tox" + "sphinx-bootstrap-theme": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" }, - "tomli": { - "credit": 0.014630616152307692, - "url": "https://pypi.org/project/tomli" + "scandir": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/scandir" }, - "virtualenv": { - "credit": 0.0018288270190384614, - "url": "https://pypi.org/project/virtualenv" + "typing": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/typing" }, - "pytest-xdist": { - "credit": 0.0018288270190384614, - "url": "https://pypi.org/project/pytest-xdist" + "backports.os": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/backports.os" }, "six": { - "credit": 0.0018288270190384614, + "credit": 0.0011662247596153845, "url": "https://pypi.org/project/six" }, - "process-tests": { - "credit": 0.0018288270190384614, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.0018288270190384614, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.0018288270190384614, - "url": "https://pypi.org/project/fields" + "setuptools": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/setuptools" }, - "pytest-asyncio": { - "credit": 0.003657654038076923, - "url": "https://pypi.org/project/pytest-asyncio" + "pytz": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/pytz" }, - "pre-commit": { - "credit": 0.003657654038076923, - "url": "https://pypi.org/project/pre-commit" + "appdirs": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/appdirs" } } } \ No newline at end of file diff --git a/_repos/github/surf-eds/one-button-compute/badge.png b/_repos/github/surf-eds/one-button-compute/badge.png index 58cbfbaa..febb677f 100644 Binary files a/_repos/github/surf-eds/one-button-compute/badge.png and b/_repos/github/surf-eds/one-button-compute/badge.png differ diff --git a/_repos/github/swiftsim/swiftsimio/badge.png b/_repos/github/swiftsim/swiftsimio/badge.png index 8f3e215d..c40485a5 100644 Binary files a/_repos/github/swiftsim/swiftsimio/badge.png and b/_repos/github/swiftsim/swiftsimio/badge.png differ diff --git a/_repos/github/symmy596/Polypy/README.md b/_repos/github/symmy596/Polypy/README.md index a6737aa1..f716f383 100644 --- a/_repos/github/symmy596/Polypy/README.md +++ b/_repos/github/symmy596/Polypy/README.md @@ -9,8 +9,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/symmy596/Polypy|0.01| -|pypi|[numpy](https://www.numpy.org)|0.01| -|pypi|[scipy](https://www.scipy.org)|0.005| +|pypi|[polypy](https://github.com/symmy596/Polypy)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/symmy596/Polypy/badge.png b/_repos/github/symmy596/Polypy/badge.png index 48950750..542310b5 100644 Binary files a/_repos/github/symmy596/Polypy/badge.png and b/_repos/github/symmy596/Polypy/badge.png differ diff --git a/_repos/github/symmy596/Polypy/data.json b/_repos/github/symmy596/Polypy/data.json index ab9bf4af..8127054f 100644 --- a/_repos/github/symmy596/Polypy/data.json +++ b/_repos/github/symmy596/Polypy/data.json @@ -6,13 +6,9 @@ } }, "pypi": { - "scipy": { - "credit": 0.00495, - "url": "https://www.scipy.org" - }, - "numpy": { - "credit": 0.009850500000000002, - "url": "https://www.numpy.org" + "polypy": { + "credit": 0.0099, + "url": "https://github.com/symmy596/Polypy" } } } \ No newline at end of file diff --git a/_repos/github/symmy596/SurfinPy/README.md b/_repos/github/symmy596/SurfinPy/README.md index 610b2e6e..8a438a93 100644 --- a/_repos/github/symmy596/SurfinPy/README.md +++ b/_repos/github/symmy596/SurfinPy/README.md @@ -8,29 +8,76 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.468| -|pypi|[matplotlib](https://matplotlib.org)|0.186| -|pypi|[pyyaml](https://pyyaml.org/)|0.141| -|pypi|[scipy](https://www.scipy.org)|0.044| -|pypi|[pandas](https://pypi.org/project/pandas)|0.042| +|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.096| +|pypi|[numpy](https://pypi.org/project/numpy)|0.075| +|pypi|[matplotlib](https://matplotlib.org)|0.067| +|pypi|[future](https://python-future.org)|0.059| +|pypi|[six](https://pypi.org/project/six)|0.058| +|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.05| +|pypi|[surfinpy](https://github.com/symmy596/SurfinPy)|0.047| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.047| +|pypi|[mpmath](http://mpmath.org/)|0.047| +|pypi|[ruamel.yaml.clib](https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree)|0.047| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.047| +|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.047| +|pypi|[pytest](https://pypi.org/project/pytest)|0.026| +|pypi|[scipy](https://pypi.org/project/scipy)|0.02| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.017| +|pypi|[pandas](https://pypi.org/project/pandas)|0.016| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.015| +|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|0.012| +|pypi|[codecov](https://pypi.org/project/codecov)|0.012| +|pypi|[nose](https://pypi.org/project/nose)|0.012| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.012| |setup.py|github/symmy596/SurfinPy|0.01| -|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|0.007| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.007| -|pypi|[tqdm](https://pypi.org/project/tqdm)|0.007| -|pypi|[pybtex](https://pypi.org/project/pybtex)|0.007| -|pypi|[uncertainties](https://pypi.org/project/uncertainties)|0.007| -|pypi|[plotly](https://pypi.org/project/plotly)|0.007| -|pypi|[sympy](https://pypi.org/project/sympy)|0.007| -|pypi|[palettable](https://pypi.org/project/palettable)|0.007| -|pypi|[networkx](https://pypi.org/project/networkx)|0.007| -|pypi|[spglib](https://pypi.org/project/spglib)|0.007| -|pypi|[tabulate](https://pypi.org/project/tabulate)|0.007| -|pypi|[monty](https://pypi.org/project/monty)|0.007| -|pypi|[ruamel.yaml](https://pypi.org/project/ruamel.yaml)|0.007| -|pypi|[requests](https://pypi.org/project/requests)|0.007| -|pypi|[wslink](https://pypi.org/project/wslink)|0.002| -|pypi|[pymatgen](https://pymatgen.org)|0.001| -|pypi|[seaborn](https://seaborn.pydata.org)|0.001| +|pypi|[wheel](https://pypi.org/project/wheel)|0.009| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.009| +|pypi|[sympy](https://sympy.org)|0.009| +|pypi|[lxml](https://pypi.org/project/lxml)|0.006| +|pypi|[xattr](https://pypi.org/project/xattr)|0.004| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.004| +|pypi|[munkres](https://pypi.org/project/munkres)|0.004| +|pypi|[brotli](https://pypi.org/project/brotli)|0.004| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.004| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.004| +|pypi|[lz4](https://pypi.org/project/lz4)|0.004| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.004| +|pypi|[fs](https://pypi.org/project/fs)|0.004| +|pypi|[monty](https://github.com/materialsvirtuallab/monty)|0.003| +|pypi|[networkx](https://networkx.org/)|0.003| +|pypi|[spglib](http://spglib.github.io/spglib/)|0.003| +|pypi|[uncertainties](http://uncertainties-python-package.readthedocs.io/)|0.003| +|pypi|[pybtex](https://pybtex.org/)|0.003| +|pypi|[tabulate](https://github.com/astanin/python-tabulate)|0.003| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.003| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.003| +|pypi|[packaging](https://pypi.org/project/packaging)|0.003| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.003| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| +|pypi|[coverage](https://pypi.org/project/coverage)|0.003| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.003| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.003| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.003| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| +|pypi|[olefile](https://pypi.org/project/olefile)|0.003| +|pypi|[pillow](https://python-pillow.org)|0.003| +|pypi|[vtk](https://vtk.org)|0.002| +|pypi|[ase](https://pypi.org/project/ase)|0.002| +|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.002| +|pypi|[tqdm](https://pypi.org/project/tqdm)|0.002| +|pypi|[plotly](https://pypi.org/project/plotly)|0.002| +|pypi|[requests](https://pypi.org/project/requests)|0.002| +|pypi|[pydot](https://pypi.org/project/pydot)|0.002| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.002| +|pypi|[texext](https://pypi.org/project/texext)|0.002| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.002| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.002| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.002| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.002| +|pypi|[mypy](https://pypi.org/project/mypy)|0.002| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/symmy596/SurfinPy/badge.png b/_repos/github/symmy596/SurfinPy/badge.png index d76acb7d..e6027643 100644 Binary files a/_repos/github/symmy596/SurfinPy/badge.png and b/_repos/github/symmy596/SurfinPy/badge.png differ diff --git a/_repos/github/symmy596/SurfinPy/data.json b/_repos/github/symmy596/SurfinPy/data.json index 3ff7264b..d2748e5e 100644 --- a/_repos/github/symmy596/SurfinPy/data.json +++ b/_repos/github/symmy596/SurfinPy/data.json @@ -6,97 +6,297 @@ } }, "pypi": { - "scipy": { - "credit": 0.043787030075187985, - "url": "https://www.scipy.org" + "surfinpy": { + "credit": 0.04714285714285714, + "url": "https://github.com/symmy596/SurfinPy" }, - "numpy": { - "credit": 0.4676759999999999, - "url": "https://www.numpy.org" + "matplotlib": { + "credit": 0.06719078658183922, + "url": "https://matplotlib.org" }, "pymatgen": { - "credit": 0.001414285714285729, + "credit": 0.00047142857142857403, "url": "https://pymatgen.org" }, - "matplotlib": { - "credit": 0.18623314285714285, - "url": "https://matplotlib.org" - }, "seaborn": { - "credit": 0.001414285714285729, + "credit": 0.00047142857142857403, "url": "https://seaborn.pydata.org" }, - "pyyaml": { - "credit": 0.14142857142857143, - "url": "https://pyyaml.org/" + "cycler": { + "credit": 0.04714285714285714, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.00047142857142857403, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.00047142857142857403, + "url": "https://github.com/nucleic/kiwi" + }, + "monty": { + "credit": 0.002927819548872183, + "url": "https://github.com/materialsvirtuallab/monty" + }, + "networkx": { + "credit": 0.002927819548872183, + "url": "https://networkx.org/" + }, + "palettable": { + "credit": 0.04959924812030075, + "url": "https://jiffyclub.github.io/palettable/" + }, + "pillow": { + "credit": 0.0028050000000000024, + "url": "https://python-pillow.org" + }, + "ruamel.yaml": { + "credit": 0.09627067669172931, + "url": "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree" + }, + "spglib": { + "credit": 0.002927819548872183, + "url": "http://spglib.github.io/spglib/" + }, + "uncertainties": { + "credit": 0.002927819548872183, + "url": "http://uncertainties-python-package.readthedocs.io/" + }, + "pybtex": { + "credit": 0.002927819548872183, + "url": "https://pybtex.org/" + }, + "sympy": { + "credit": 0.008851500867553501, + "url": "https://sympy.org" + }, + "tabulate": { + "credit": 0.002927819548872183, + "url": "https://github.com/astanin/python-tabulate" + }, + "latexcodec": { + "credit": 0.012139285714285715, + "url": "https://github.com/mcmtroffaes/latexcodec" + }, + "mpmath": { + "credit": 0.04714285714285714, + "url": "http://mpmath.org/" + }, + "ruamel.yaml.clib": { + "credit": 0.04714285714285714, + "url": "https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree" + }, + "future": { + "credit": 0.05881071428571428, + "url": "https://python-future.org" }, "vtk": { - "credit": 7.36917293233082e-05, + "credit": 0.002456390977443609, "url": "https://vtk.org" }, "ase": { - "credit": 0.0073691729323308265, - "url": "https://wiki.fysik.dtu.dk/ase" + "credit": 0.002456390977443609, + "url": "https://pypi.org/project/ase" }, "netcdf4": { - "credit": 0.0073691729323308265, + "credit": 0.002456390977443609, "url": "https://pypi.org/project/netcdf4" }, "tqdm": { - "credit": 0.0073691729323308265, + "credit": 0.002456390977443609, "url": "https://pypi.org/project/tqdm" }, - "pybtex": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/pybtex" - }, - "uncertainties": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/uncertainties" - }, "plotly": { - "credit": 0.0073691729323308265, + "credit": 0.002456390977443609, "url": "https://pypi.org/project/plotly" }, "pandas": { - "credit": 0.04237274436090225, + "credit": 0.01645781954887218, "url": "https://pypi.org/project/pandas" }, - "sympy": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/sympy" + "scipy": { + "credit": 0.02004792943898207, + "url": "https://pypi.org/project/scipy" }, - "palettable": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/palettable" + "requests": { + "credit": 0.002456390977443609, + "url": "https://pypi.org/project/requests" }, - "networkx": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/networkx" + "numpy": { + "credit": 0.07479710526315789, + "url": "https://pypi.org/project/numpy" }, - "spglib": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/spglib" + "xattr": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/xattr" }, - "tabulate": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/tabulate" + "unicodedata2": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/unicodedata2" }, - "monty": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/monty" + "munkres": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/munkres" }, - "ruamel.yaml": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/ruamel.yaml" + "brotli": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/brotli" }, - "requests": { - "credit": 0.0073691729323308265, - "url": "https://pypi.org/project/requests" + "brotlicffi": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/skia-pathops" + }, + "lz4": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.0059236813186813175, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.0035901098901098896, + "url": "https://pypi.org/project/fs" + }, + "typing-extensions": { + "credit": 0.046671428571428565, + "url": "https://pypi.org/project/typing-extensions" + }, + "codecov": { + "credit": 0.011667857142857141, + "url": "https://pypi.org/project/codecov" + }, + "pytest-cov": { + "credit": 0.014584821428571426, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest": { + "credit": 0.026252678571428566, + "url": "https://pypi.org/project/pytest" + }, + "pydot": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/pydot" + }, + "pygraphviz": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/pygraphviz" + }, + "texext": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/texext" + }, + "nb2plots": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/nb2plots" + }, + "numpydoc": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/numpydoc" + }, + "sphinx-gallery": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/sphinx-gallery" + }, + "pydata-sphinx-theme": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/pydata-sphinx-theme" + }, + "sphinx": { + "credit": 0.016918392857142854, + "url": "https://pypi.org/project/sphinx" + }, + "mypy": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/mypy" + }, + "pre-commit": { + "credit": 0.0023335714285714283, + "url": "https://pypi.org/project/pre-commit" + }, + "pytest-timeout": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.0029169642857142853, + "url": "https://pypi.org/project/olefile" + }, + "nose": { + "credit": 0.011667857142857141, + "url": "https://pypi.org/project/nose" + }, + "six": { + "credit": 0.058339285714285705, + "url": "https://pypi.org/project/six" + }, + "PyYAML": { + "credit": 0.011667857142857141, + "url": "https://pypi.org/project/PyYAML" + }, + "wcwidth": { + "credit": 0.046671428571428565, + "url": "https://pypi.org/project/wcwidth" + }, + "wheel": { + "credit": 0.009334285714285713, + "url": "https://pypi.org/project/wheel" }, - "wslink": { - "credit": 0.002431827067669173, - "url": "https://pypi.org/project/wslink" + "pycodestyle": { + "credit": 0.009334285714285713, + "url": "https://pypi.org/project/pycodestyle" } } } \ No newline at end of file diff --git a/_repos/github/tariqdaouda/CAMAP/badge.png b/_repos/github/tariqdaouda/CAMAP/badge.png index 80d05dfd..cf3885f0 100644 Binary files a/_repos/github/tariqdaouda/CAMAP/badge.png and b/_repos/github/tariqdaouda/CAMAP/badge.png differ diff --git a/_repos/github/thejasvibr/bat_beamshapes/README.md b/_repos/github/thejasvibr/bat_beamshapes/README.md index 7063df7d..a0cb34ec 100644 --- a/_repos/github/thejasvibr/bat_beamshapes/README.md +++ b/_repos/github/thejasvibr/bat_beamshapes/README.md @@ -8,54 +8,71 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.281| -|pypi|[joblib](https://joblib.readthedocs.io)|0.141| -|pypi|[matplotlib](https://matplotlib.org)|0.141| -|pypi|[pycodestyle](https://pycodestyle.pycqa.org/)|0.056| -|pypi|[wheel](https://github.com/pypa/wheel)|0.046| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.045| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.042| -|pypi|[codecov](https://github.com/codecov/codecov-python)|0.028| -|pypi|[colorama](https://pypi.org/project/colorama)|0.019| -|pypi|[slack-sdk](https://github.com/slackapi/python-slack-sdk)|0.018| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.018| -|pypi|[twine](https://pypi.org/project/twine)|0.018| -|pypi|[py-make](https://pypi.org/project/py-make)|0.018| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.018| -|pypi|[coverage](https://pypi.org/project/coverage)|0.017| -|pypi|[requests](https://requests.readthedocs.io)|0.016| +|pypi|[matplotlib](https://matplotlib.org)|0.133| +|pypi|[beamshapes](https://github.com/thejasvibr/bat_beamshapes.git)|0.124| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.124| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.123| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.07| +|pypi|[pycodestyle](https://pycodestyle.pycqa.org/)|0.049| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.046| +|pypi|[coverage](https://pypi.org/project/coverage)|0.027| +|pypi|[wheel](https://github.com/pypa/wheel)|0.025| +|pypi|[codecov](https://github.com/codecov/codecov-python)|0.025| +|pypi|[cffi](https://pypi.org/project/cffi)|0.014| +|pypi|[requests](https://pypi.org/project/requests)|0.014| +|pypi|[mpmath](http://mpmath.org/)|0.012| |setup.py|github/thejasvibr/bat_beamshapes|0.01| +|pypi|[munkres](https://software.clapper.org/munkres/)|0.009| +|pypi|[brotli](https://github.com/google/brotli)|0.009| +|pypi|[lxml](https://lxml.de/)|0.009| +|pypi|[numpy](https://pypi.org/project/numpy)|0.009| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.009| +|pypi|[packaging](https://pypi.org/project/packaging)|0.009| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.008| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.008| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.008| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.008| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.008| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.008| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.008| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.008| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.008| +|pypi|[olefile](https://pypi.org/project/olefile)|0.008| +|pypi|[enum34](https://pypi.org/project/enum34)|0.006| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.005| +|pypi|[six](https://pypi.org/project/six)|0.004| |pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| -|pypi|[six](https://pypi.org/project/six)|0.003| |pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| |pypi|[hunter](https://pypi.org/project/hunter)|0.003| |pypi|[fields](https://pypi.org/project/fields)|0.003| -|pypi|[mpmath](http://mpmath.org/)|0.003| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.002| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.002| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.002| -|pypi|[idna](https://pypi.org/project/idna)|0.002| -|pypi|[chardet](https://pypi.org/project/chardet)|0.002| -|pypi|[certifi](https://pypi.org/project/certifi)|0.002| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.002| +|pypi|[psutil](https://pypi.org/project/psutil)|0.002| +|pypi|[flake8](https://pypi.org/project/flake8)|0.002| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|0.002| |pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| |pypi|[pygments](https://pypi.org/project/pygments)|0.002| |pypi|[nose](https://pypi.org/project/nose)|0.002| |pypi|[mock](https://pypi.org/project/mock)|0.002| |pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| |pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| |pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| |pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.002| |pypi|[tomli](https://pypi.org/project/tomli)|0.002| |pypi|[py](https://pypi.org/project/py)|0.002| |pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| |pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| |pypi|[attrs](https://pypi.org/project/attrs)|0.002| |pypi|[sympy](https://sympy.org)|0.001| -|pypi|[scipy](https://www.scipy.org)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| +|pypi|[scandir](https://pypi.org/project/scandir)|0.001| +|pypi|[typing](https://pypi.org/project/typing)|0.001| +|pypi|[backports.os](https://pypi.org/project/backports.os)|0.001| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001| +|pypi|[pytz](https://pypi.org/project/pytz)|0.001| +|pypi|[appdirs](https://pypi.org/project/appdirs)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/thejasvibr/bat_beamshapes/badge.png b/_repos/github/thejasvibr/bat_beamshapes/badge.png index a7f7f834..3e147bc0 100644 Binary files a/_repos/github/thejasvibr/bat_beamshapes/badge.png and b/_repos/github/thejasvibr/bat_beamshapes/badge.png differ diff --git a/_repos/github/thejasvibr/bat_beamshapes/data.json b/_repos/github/thejasvibr/bat_beamshapes/data.json index 4bdd9ac2..9d46f752 100644 --- a/_repos/github/thejasvibr/bat_beamshapes/data.json +++ b/_repos/github/thejasvibr/bat_beamshapes/data.json @@ -6,193 +6,297 @@ } }, "pypi": { - "joblib": { - "credit": 0.14142857142857143, - "url": "https://joblib.readthedocs.io" + "beamshapes": { + "credit": 0.12375, + "url": "https://github.com/thejasvibr/bat_beamshapes.git" }, - "numpy": { - "credit": 0.2814428571428571, - "url": "https://www.numpy.org" + "matplotlib": { + "credit": 0.13317403846153847, + "url": "https://matplotlib.org" + }, + "mpmath": { + "credit": 0.011792423076923086, + "url": "http://mpmath.org/" }, "sympy": { - "credit": 0.001414285714285729, + "credit": 0.0013317403846153878, "url": "https://sympy.org" }, - "mpmath": { - "credit": 0.002814428571428579, - "url": "http://mpmath.org/" + "cycler": { + "credit": 0.12375, + "url": "https://github.com/matplotlib/cycler" }, - "scipy": { - "credit": 0.001414285714285729, - "url": "https://www.scipy.org" + "fonttools": { + "credit": 0.0012375000000000025, + "url": "http://github.com/fonttools/fonttools" }, - "matplotlib": { - "credit": 0.14142857142857143, - "url": "https://matplotlib.org" + "kiwisolver": { + "credit": 0.0012375000000000025, + "url": "https://github.com/nucleic/kiwi" }, - "tqdm": { - "credit": 0.001414285714285729, - "url": "https://tqdm.github.io" + "pillow": { + "credit": 0.0012375000000000025, + "url": "https://python-pillow.org" }, "wheel": { - "credit": 0.045504642857142855, + "credit": 0.024502499999999997, "url": "https://github.com/pypa/wheel" }, "codecov": { - "credit": 0.028002857142857142, + "credit": 0.024502499999999997, "url": "https://github.com/codecov/codecov-python" }, "pytest-cov": { - "credit": 0.04186427142857142, + "credit": 0.045843235096153845, "url": "https://github.com/pytest-dev/pytest-cov" }, "pycodestyle": { - "credit": 0.05572568571428571, + "credit": 0.048759975, "url": "https://pycodestyle.pycqa.org/" }, "pytest": { - "credit": 0.04532962499999999, + "credit": 0.07045057752403847, "url": "https://docs.pytest.org/en/latest/" }, - "requests": { - "credit": 0.015769108928571425, - "url": "https://requests.readthedocs.io" + "xattr": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/xattr/xattr" }, - "slack-sdk": { - "credit": 0.017501785714285713, - "url": "https://github.com/slackapi/python-slack-sdk" + "unicodedata2": { + "credit": 9.424038461538532e-05, + "url": "http://github.com/mikekap/unicodedata2" }, - "ipywidgets": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/ipywidgets" + "munkres": { + "credit": 0.009424038461538461, + "url": "https://software.clapper.org/munkres/" }, - "twine": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/twine" + "brotli": { + "credit": 0.009424038461538461, + "url": "https://github.com/google/brotli" }, - "py-make": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/py-make" + "scipy": { + "credit": 9.424038461538532e-05, + "url": "https://www.scipy.org" }, - "importlib-resources": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/importlib-resources" + "brotlicffi": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-hyper/brotlicffi" }, - "colorama": { - "credit": 0.019234462499999997, - "url": "https://pypi.org/project/colorama" + "skia-pathops": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/skia-pathops" + }, + "lz4": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/python-lz4/python-lz4" + }, + "zopfli": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/fonttools/py-zopfli" + }, + "lxml": { + "credit": 0.009424038461538461, + "url": "https://lxml.de/" + }, + "fs": { + "credit": 9.424038461538532e-05, + "url": "https://github.com/PyFilesystem/pyfilesystem2" + }, + "typing-extensions": { + "credit": 0.1225125, + "url": "https://typing.readthedocs.io/" + }, + "pytest-timeout": { + "credit": 7.657031250000047e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" + }, + "pyroma": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/pyroma" + }, + "packaging": { + "credit": 0.0091731234375, + "url": "https://pypi.org/project/packaging" + }, + "markdown2": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/defusedxml" }, "coverage": { - "credit": 0.017326767857142857, + "credit": 0.02748285216346154, "url": "https://pypi.org/project/coverage" }, + "check-manifest": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.009211997596153846, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.00765703125, + "url": "https://pypi.org/project/olefile" + }, + "requests": { + "credit": 0.0136448296875, + "url": "https://pypi.org/project/requests" + }, "virtualenv": { - "credit": 0.003465353571428571, + "credit": 0.003032184375, "url": "https://pypi.org/project/virtualenv" }, "pytest-xdist": { - "credit": 0.003465353571428571, + "credit": 0.007697083413461538, "url": "https://pypi.org/project/pytest-xdist" }, "six": { - "credit": 0.003465353571428571, + "credit": 0.004198409134615385, "url": "https://pypi.org/project/six" }, "process-tests": { - "credit": 0.003465353571428571, + "credit": 0.003032184375, "url": "https://pypi.org/project/process-tests" }, "hunter": { - "credit": 0.003465353571428571, + "credit": 0.003032184375, "url": "https://pypi.org/project/hunter" }, "fields": { - "credit": 0.003465353571428571, + "credit": 0.003032184375, "url": "https://pypi.org/project/fields" }, "xmlschema": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/xmlschema" }, "pygments": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/nose" }, "mock": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/mock" }, "hypothesis": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/argcomplete" }, + "colorama": { + "credit": 0.0015160921875, + "url": "https://pypi.org/project/colorama" + }, "atomicwrites": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/importlib-metadata" }, "tomli": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/tomli" }, "py": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/pluggy" }, - "packaging": { - "credit": 0.0017326767857142856, - "url": "https://pypi.org/project/packaging" - }, "iniconfig": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.0017326767857142856, + "credit": 0.0015160921875, "url": "https://pypi.org/project/attrs" }, - "win-inet-pton": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/win-inet-pton" + "cffi": { + "credit": 0.013994697115384614, + "url": "https://pypi.org/project/cffi" + }, + "pytest-randomly": { + "credit": 0.004664899038461538, + "url": "https://pypi.org/project/pytest-randomly" + }, + "numpy": { + "credit": 0.009329798076923076, + "url": "https://pypi.org/project/numpy" + }, + "enum34": { + "credit": 0.005831123798076923, + "url": "https://pypi.org/project/enum34" + }, + "psutil": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/psutil" + }, + "flake8": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/flake8" + }, + "sphinx-bootstrap-theme": { + "credit": 0.001554966346153846, + "url": "https://pypi.org/project/sphinx-bootstrap-theme" }, - "PySocks": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/PySocks" + "scandir": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/scandir" }, - "charset-normalizer": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/charset-normalizer" + "typing": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/typing" }, - "idna": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/idna" + "backports.os": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/backports.os" }, - "chardet": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/chardet" + "setuptools": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/setuptools" }, - "certifi": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/certifi" + "pytz": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/pytz" }, - "urllib3": { - "credit": 0.002475252551020408, - "url": "https://pypi.org/project/urllib3" + "appdirs": { + "credit": 0.0011662247596153845, + "url": "https://pypi.org/project/appdirs" } } } \ No newline at end of file diff --git a/_repos/github/tool-bin/ukbcc/README.md b/_repos/github/tool-bin/ukbcc/README.md index a0809327..b95f7234 100644 --- a/_repos/github/tool-bin/ukbcc/README.md +++ b/_repos/github/tool-bin/ukbcc/README.md @@ -8,106 +8,51 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.131| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.087| -|pypi|[nose](http://readthedocs.org/docs/nose/)|0.081| -|pypi|[tomli](https://pypi.org/project/tomli)|0.08| -|pypi|[pypi-publisher](https://github.com/wdm0006/ppp)|0.076| -|pypi|[pandas](https://pandas.pydata.org)|0.043| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.029| -|pypi|[dash](https://plotly.com/dash)|0.026| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.017| -|pypi|[flake8](https://pypi.org/project/flake8)|0.016| -|pypi|[tabulate](https://pypi.org/project/tabulate)|0.015| -|pypi|[statsmodels](https://pypi.org/project/statsmodels)|0.015| -|pypi|[scipy](https://pypi.org/project/scipy)|0.015| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.013| -|pypi|[pytz](https://pypi.org/project/pytz)|0.013| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.013| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.011| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.011| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.011| -|pypi|[idna](https://pypi.org/project/idna)|0.011| -|pypi|[chardet](https://pypi.org/project/chardet)|0.011| -|pypi|[certifi](https://pypi.org/project/certifi)|0.011| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.011| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.011| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.011| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.011| -|pypi|[python-utils](https://pypi.org/project/python-utils)|0.011| -|pypi|[requests](https://requests.readthedocs.io)|0.01| +|pypi|[dash](https://plotly.com/dash)|0.028| +|pypi|[dash-bootstrap-components](https://pypi.org/project/dash-bootstrap-components)|0.028| +|pypi|[nose](https://pypi.org/project/nose)|0.028| +|pypi|[pypi-publisher](https://pypi.org/project/pypi-publisher)|0.028| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.028| +|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|0.025| +|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|0.025| +|pypi|[dash-table](https://pypi.org/project/dash-table)|0.025| +|pypi|[progressbar2](https://pypi.org/project/progressbar2)|0.025| +|pypi|[gitpython](https://pypi.org/project/gitpython)|0.025| +|pypi|[sphinx_rtd_theme](https://pypi.org/project/sphinx_rtd_theme)|0.025| +|pypi|[tableone](https://pypi.org/project/tableone)|0.025| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.025| +|pypi|[babel](https://pypi.org/project/babel)|0.025| +|pypi|[docutils](https://pypi.org/project/docutils)|0.025| +|pypi|[Flask](https://pypi.org/project/Flask)|0.025| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.025| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.025| +|pypi|[python-utils](https://pypi.org/project/python-utils)|0.025| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.025| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.025| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.025| +|pypi|[statsmodels](https://pypi.org/project/statsmodels)|0.025| +|pypi|[tabulate](https://pypi.org/project/tabulate)|0.025| +|pypi|[flask-compress](https://pypi.org/project/flask-compress)|0.025| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.025| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.025| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.025| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.025| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.025| +|pypi|[gitdb](https://pypi.org/project/gitdb)|0.025| +|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.025| +|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.025| +|pypi|[patsy](https://pypi.org/project/patsy)|0.025| +|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.025| +|pypi|[brotli](https://pypi.org/project/brotli)|0.025| +|pypi|[smmap](https://pypi.org/project/smmap)|0.025| +|pypi|[tomli](https://pypi.org/project/tomli)|0.025| |setup.py|github/tool-bin/ukbcc|0.01| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.008| -|pypi|[packaging](https://pypi.org/project/packaging)|0.008| -|pypi|[mock](https://pypi.org/project/mock)|0.006| -|pypi|[isort](https://pypi.org/project/isort)|0.005| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.005| -|pypi|[pygments](https://pypi.org/project/pygments)|0.005| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.005| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.005| -|pypi|[py](https://pypi.org/project/py)|0.005| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.005| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.005| -|pypi|[attrs](https://pypi.org/project/attrs)|0.005| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[docutils](https://pypi.org/project/docutils)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.002| -|pypi|[waitress](https://pypi.org/project/waitress)|0.002| -|pypi|[selenium](https://pypi.org/project/selenium)|0.002| -|pypi|[percy](https://pypi.org/project/percy)|0.002| -|pypi|[lxml](https://pypi.org/project/lxml)|0.002| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.002| -|pypi|[psutil](https://pypi.org/project/psutil)|0.002| -|pypi|[multiprocess](https://pypi.org/project/multiprocess)|0.002| -|pypi|[diskcache](https://pypi.org/project/diskcache)|0.002| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.002| -|pypi|[fire](https://pypi.org/project/fire)|0.002| -|pypi|[coloredlogs](https://pypi.org/project/coloredlogs)|0.002| -|pypi|[openpyxl](https://pypi.org/project/openpyxl)|0.002| -|pypi|[xlrd](https://pypi.org/project/xlrd)|0.002| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.002| -|pypi|[orjson](https://pypi.org/project/orjson)|0.002| -|pypi|[pytest-sugar](https://pypi.org/project/pytest-sugar)|0.002| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.002| -|pypi|[pylint](https://pypi.org/project/pylint)|0.002| -|pypi|[preconditions](https://pypi.org/project/preconditions)|0.002| -|pypi|[mimesis](https://pypi.org/project/mimesis)|0.002| -|pypi|[flask-talisman](https://pypi.org/project/flask-talisman)|0.002| -|pypi|[flaky](https://pypi.org/project/flaky)|0.002| -|pypi|[dash-dangerously-set-inner-html](https://pypi.org/project/dash-dangerously-set-inner-html)|0.002| -|pypi|[dash-flow-example](https://pypi.org/project/dash-flow-example)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[celery](https://pypi.org/project/celery)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[dash-table](https://pypi.org/project/dash-table)|0.002| -|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|0.002| -|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|0.002| -|pypi|[plotly](https://pypi.org/project/plotly)|0.002| -|pypi|[flask-compress](https://pypi.org/project/flask-compress)|0.002| -|pypi|[Flask](https://pypi.org/project/Flask)|0.002| -|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|0.001| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.001| -|pypi|[tableone](https://github.com/tompollard/tableone)|0.001| -|pypi|[dash-bootstrap-components](https://dash-bootstrap-components.opensource.faculty.ai/)|0.001| -|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|0.001| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.003| +|pypi|[pytest](https://pypi.org/project/pytest)|0.002| +|pypi|[numpy](https://pypi.org/project/numpy)|0.002| +|pypi|[requests](https://pypi.org/project/requests)|0.002| +|pypi|[pandas](https://pypi.org/project/pandas)|0.002| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/tool-bin/ukbcc/badge.png b/_repos/github/tool-bin/ukbcc/badge.png index 1ab37814..cebd9f35 100644 Binary files a/_repos/github/tool-bin/ukbcc/badge.png and b/_repos/github/tool-bin/ukbcc/badge.png differ diff --git a/_repos/github/tool-bin/ukbcc/data.json b/_repos/github/tool-bin/ukbcc/data.json index c996ad78..24a93623 100644 --- a/_repos/github/tool-bin/ukbcc/data.json +++ b/_repos/github/tool-bin/ukbcc/data.json @@ -6,401 +6,185 @@ } }, "pypi": { - "sphinx": { - "credit": 0.08692417582417583, - "url": "https://www.sphinx-doc.org/" - }, - "sphinx_rtd_theme": { - "credit": 0.0007615384615384663, - "url": "https://github.com/rtfd/sphinx_rtd_theme/" - }, - "nose": { - "credit": 0.08086586538461539, - "url": "http://readthedocs.org/docs/nose/" + "ukbcc": { + "credit": 0.0002538461538461531, + "url": "https://github.com/tool-bin/ukbcc/" }, "coverage": { - "credit": 0.0007615384615384663, + "credit": 0.0025384615384615376, "url": "https://github.com/nedbat/coveragepy" }, - "pypi-publisher": { - "credit": 0.07615384615384616, - "url": "https://github.com/wdm0006/ppp" - }, - "pandas": { - "credit": 0.04272407871198569, - "url": "https://pandas.pydata.org" - }, - "requests": { - "credit": 0.010242559481216463, - "url": "https://requests.readthedocs.io" - }, - "numpy": { - "credit": 0.130681771019678, - "url": "https://www.numpy.org" - }, - "tableone": { - "credit": 0.0007615384615384663, - "url": "https://github.com/tompollard/tableone" - }, "dash": { - "credit": 0.025892307692307697, + "credit": 0.02766923076923077, "url": "https://plotly.com/dash" }, - "dash-bootstrap-components": { - "credit": 0.0007615384615384663, - "url": "https://dash-bootstrap-components.opensource.faculty.ai/" - }, - "progressbar2": { - "credit": 0.0007615384615384663, - "url": "https://github.com/WoLpH/python-progressbar" - }, - "pytest": { - "credit": 0.02886625453616152, - "url": "https://docs.pytest.org/en/latest/" - }, - "types-requests": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/types-requests" + "dash-core-components": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/dash-core-components" }, - "types-typed-ast": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/types-typed-ast" + "dash-html-components": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/dash-html-components" }, - "docutils-stubs": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/docutils-stubs" + "dash-table": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/dash-table" }, - "mypy": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/mypy" + "dash-bootstrap-components": { + "credit": 0.02766923076923077, + "url": "https://pypi.org/project/dash-bootstrap-components" }, - "isort": { - "credit": 0.004769001788908766, - "url": "https://pypi.org/project/isort" + "nose": { + "credit": 0.02766923076923077, + "url": "https://pypi.org/project/nose" }, - "flake8": { - "credit": 0.015539331459238435, - "url": "https://pypi.org/project/flake8" + "progressbar2": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/progressbar2" }, - "sphinxcontrib-websupport": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/sphinxcontrib-websupport" + "pypi-publisher": { + "credit": 0.02766923076923077, + "url": "https://pypi.org/project/pypi-publisher" }, - "colorama": { - "credit": 0.007727711538461538, - "url": "https://pypi.org/project/colorama" + "gitpython": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/gitpython" }, - "importlib-metadata": { - "credit": 0.009481021019677996, - "url": "https://pypi.org/project/importlib-metadata" + "sphinx": { + "credit": 0.02766923076923077, + "url": "https://pypi.org/project/sphinx" }, - "packaging": { - "credit": 0.007727711538461538, - "url": "https://pypi.org/project/packaging" + "sphinx_rtd_theme": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/sphinx_rtd_theme" }, - "imagesize": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/imagesize" + "tableone": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/tableone" }, "alabaster": { - "credit": 0.0030156923076923078, + "credit": 0.025384615384615384, "url": "https://pypi.org/project/alabaster" }, "babel": { - "credit": 0.0030156923076923078, + "credit": 0.025384615384615384, "url": "https://pypi.org/project/babel" }, - "snowballstemmer": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/snowballstemmer" - }, "docutils": { - "credit": 0.0030156923076923078, + "credit": 0.025384615384615384, "url": "https://pypi.org/project/docutils" }, - "Pygments": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/Pygments" + "Flask": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/Flask" + }, + "importlib-metadata": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/importlib-metadata" }, "Jinja2": { - "credit": 0.0030156923076923078, + "credit": 0.025384615384615384, "url": "https://pypi.org/project/Jinja2" }, - "sphinxcontrib-qthelp": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" + "python-utils": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/python-utils" }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" + "snowballstemmer": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/snowballstemmer" }, "sphinxcontrib-htmlhelp": { - "credit": 0.0030156923076923078, + "credit": 0.025384615384615384, "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" }, - "sphinxcontrib-jsmath": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.0030156923076923078, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "tomli": { - "credit": 0.08010432692307692, - "url": "https://pypi.org/project/tomli" - }, - "pytest-xdist": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/pytest-xdist" - }, - "hypothesis": { - "credit": 0.017277403846153845, - "url": "https://pypi.org/project/hypothesis" - }, - "pytz": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/pytz" - }, - "python-dateutil": { - "credit": 0.012565384615384615, - "url": "https://pypi.org/project/python-dateutil" - }, - "win-inet-pton": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/idna" - }, - "chardet": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/chardet" - }, - "certifi": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/certifi" - }, - "urllib3": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/urllib3" - }, - "tabulate": { - "credit": 0.015078461538461537, - "url": "https://pypi.org/project/tabulate" + "sphinxcontrib-serializinghtml": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" }, "statsmodels": { - "credit": 0.015078461538461537, + "credit": 0.025384615384615384, "url": "https://pypi.org/project/statsmodels" }, - "scipy": { - "credit": 0.015078461538461537, - "url": "https://pypi.org/project/scipy" - }, - "cryptography": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/cryptography" - }, - "waitress": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/waitress" - }, - "selenium": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/selenium" - }, - "percy": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/percy" - }, - "lxml": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/lxml" - }, - "beautifulsoup4": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/beautifulsoup4" - }, - "psutil": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/psutil" - }, - "multiprocess": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/multiprocess" - }, - "diskcache": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/diskcache" - }, - "PyYAML": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/PyYAML" - }, - "fire": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/fire" - }, - "coloredlogs": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/coloredlogs" - }, - "openpyxl": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/openpyxl" - }, - "xlrd": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/xlrd" - }, - "pyarrow": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/pyarrow" - }, - "orjson": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/orjson" - }, - "pytest-sugar": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/pytest-sugar" - }, - "pytest-mock": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/pytest-mock" - }, - "pylint": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/pylint" - }, - "preconditions": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/preconditions" - }, - "mock": { - "credit": 0.0064653287119856885, - "url": "https://pypi.org/project/mock" - }, - "mimesis": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/mimesis" - }, - "flask-talisman": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/flask-talisman" - }, - "flaky": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/flaky" - }, - "dash-dangerously-set-inner-html": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/dash-dangerously-set-inner-html" - }, - "dash-flow-example": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/dash-flow-example" - }, - "click": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/click" - }, - "black": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/black" - }, - "celery": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/celery" + "tabulate": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/tabulate" }, - "redis": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/redis" + "flask-compress": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/flask-compress" }, - "dash-table": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/dash-table" + "imagesize": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/imagesize" }, - "dash-core-components": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/dash-core-components" + "sphinxcontrib-applehelp": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/sphinxcontrib-applehelp" }, - "dash-html-components": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/dash-html-components" + "sphinxcontrib-devhelp": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/sphinxcontrib-devhelp" }, - "plotly": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/plotly" + "sphinxcontrib-jsmath": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/sphinxcontrib-jsmath" }, - "flask-compress": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/flask-compress" + "sphinxcontrib-qthelp": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/sphinxcontrib-qthelp" }, - "Flask": { - "credit": 0.001753309481216458, - "url": "https://pypi.org/project/Flask" + "gitdb": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/gitdb" }, - "freezegun": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/freezegun" + "itsdangerous": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/itsdangerous" }, - "pytest-mypy": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/pytest-mypy" + "MarkupSafe": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/MarkupSafe" }, - "pytest-cov": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/pytest-cov" + "patsy": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/patsy" }, - "python-utils": { - "credit": 0.01077032967032967, - "url": "https://pypi.org/project/python-utils" + "Werkzeug": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/Werkzeug" }, - "xmlschema": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/xmlschema" + "brotli": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/brotli" }, - "pygments": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/pygments" + "smmap": { + "credit": 0.025384615384615384, + "url": "https://pypi.org/project/smmap" }, - "argcomplete": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/argcomplete" + "pytest": { + "credit": 0.0022846153846153845, + "url": "https://pypi.org/project/pytest" }, - "atomicwrites": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/atomicwrites" + "numpy": { + "credit": 0.0022846153846153845, + "url": "https://pypi.org/project/numpy" }, - "py": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/py" + "requests": { + "credit": 0.0022846153846153845, + "url": "https://pypi.org/project/requests" }, - "pluggy": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/pluggy" + "pandas": { + "credit": 0.0022846153846153845, + "url": "https://pypi.org/project/pandas" }, - "iniconfig": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/iniconfig" + "sphinx-rtd-theme": { + "credit": 0.0022846153846153845, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "attrs": { - "credit": 0.0047120192307692306, - "url": "https://pypi.org/project/attrs" + "tomli": { + "credit": 0.02513076923076923, + "url": "https://pypi.org/project/tomli" } } } \ No newline at end of file diff --git a/_repos/github/twesterhout/lattice-symmetries/README.md b/_repos/github/twesterhout/lattice-symmetries/README.md index ac0380d5..143b4c03 100644 --- a/_repos/github/twesterhout/lattice-symmetries/README.md +++ b/_repos/github/twesterhout/lattice-symmetries/README.md @@ -9,8 +9,6 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|github/twesterhout/lattice-symmetries|0.01| -|pypi|[numpy](https://www.numpy.org)|0.01| -|pypi|[scipy](https://www.scipy.org)|0.005| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/twesterhout/lattice-symmetries/badge.png b/_repos/github/twesterhout/lattice-symmetries/badge.png index 8cd5b827..73dea366 100644 Binary files a/_repos/github/twesterhout/lattice-symmetries/badge.png and b/_repos/github/twesterhout/lattice-symmetries/badge.png differ diff --git a/_repos/github/twesterhout/lattice-symmetries/data.json b/_repos/github/twesterhout/lattice-symmetries/data.json index 75c10f07..5f6a57dd 100644 --- a/_repos/github/twesterhout/lattice-symmetries/data.json +++ b/_repos/github/twesterhout/lattice-symmetries/data.json @@ -4,15 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "numpy": { - "credit": 0.009850500000000002, - "url": "https://www.numpy.org" - }, - "scipy": { - "credit": 0.00495, - "url": "https://www.scipy.org" - } } } \ No newline at end of file diff --git a/_repos/github/tylunel/pvpumpingsystem/README.md b/_repos/github/tylunel/pvpumpingsystem/README.md index 14fc36e8..abaf3aaa 100644 --- a/_repos/github/tylunel/pvpumpingsystem/README.md +++ b/_repos/github/tylunel/pvpumpingsystem/README.md @@ -8,63 +8,78 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[matplotlib](https://matplotlib.org)|0.146| -|pypi|[numpy](https://pypi.org/project/numpy)|0.144| -|pypi|[fluids](https://github.com/CalebBell/fluids)|0.141| -|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.141| -|pypi|[requests](https://pypi.org/project/requests)|0.031| -|pypi|[colorama](https://pypi.org/project/colorama)|0.026| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.018| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.018| -|pypi|[wheel](https://pypi.org/project/wheel)|0.018| -|pypi|[twine](https://pypi.org/project/twine)|0.018| -|pypi|[py-make](https://pypi.org/project/py-make)|0.018| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.018| -|pypi|[nose](https://pypi.org/project/nose)|0.013| +|pypi|[matplotlib](https://matplotlib.org)|0.112| +|pypi|[fluids](https://github.com/CalebBell/fluids)|0.103| +|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.103| +|pypi|[h5py](http://www.h5py.org)|0.093| +|pypi|[numpy](https://pypi.org/project/numpy)|0.092| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.09| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.089| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.021| +|pypi|[numpy-financial](https://numpy.org/numpy-financial/)|0.014| +|pypi|[pvlib](https://github.com/pvlib/pvlib-python)|0.014| |setup.py|github/tylunel/pvpumpingsystem|0.01| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.009| -|pypi|[pygments](https://pypi.org/project/pygments)|0.009| -|pypi|[mock](https://pypi.org/project/mock)|0.009| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.009| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.009| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.009| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[py](https://pypi.org/project/py)|0.009| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.009| -|pypi|[attrs](https://pypi.org/project/attrs)|0.009| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.009| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.006| -|pypi|[statsmodels](https://www.statsmodels.org/)|0.004| -|pypi|[sphinx-gallery](https://sphinx-gallery.github.io)|0.004| -|pypi|[siphon](https://pypi.org/project/siphon)|0.004| -|pypi|[requests-mock](https://pypi.org/project/requests-mock)|0.004| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| -|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|0.004| -|pypi|[pytest-remotedata](https://pypi.org/project/pytest-remotedata)|0.004| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.004| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.004| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.004| -|pypi|[pvfactors](https://pypi.org/project/pvfactors)|0.004| -|pypi|[pillow](https://pypi.org/project/pillow)|0.004| -|pypi|[numba](https://pypi.org/project/numba)|0.004| -|pypi|[nrel-pysam](https://pypi.org/project/nrel-pysam)|0.004| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.004| -|pypi|[ipython](https://pypi.org/project/ipython)|0.004| -|pypi|[ephem](https://pypi.org/project/ephem)|0.004| -|pypi|[docutils](https://pypi.org/project/docutils)|0.004| -|pypi|[cython](https://pypi.org/project/cython)|0.004| -|pypi|[cftime](https://pypi.org/project/cftime)|0.004| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.004| -|pypi|[h5py](https://pypi.org/project/h5py)|0.004| -|pypi|[scipy](https://pypi.org/project/scipy)|0.004| -|pypi|[pytz](https://pypi.org/project/pytz)|0.004| -|pypi|[pandas](https://pypi.org/project/pandas)|0.004| -|pypi|[pvlib](https://github.com/pvlib/pvlib-python)|0.001| -|pypi|[numpy-financial](https://numpy.org/numpy-financial/)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| +|pypi|[scipy](https://pypi.org/project/scipy)|0.01| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.008| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008| +|pypi|[xattr](https://pypi.org/project/xattr)|0.007| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.007| +|pypi|[munkres](https://pypi.org/project/munkres)|0.007| +|pypi|[brotli](https://pypi.org/project/brotli)|0.007| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.007| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.007| +|pypi|[sympy](https://pypi.org/project/sympy)|0.007| +|pypi|[lz4](https://pypi.org/project/lz4)|0.007| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.007| +|pypi|[lxml](https://pypi.org/project/lxml)|0.007| +|pypi|[fs](https://pypi.org/project/fs)|0.007| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.006| +|pypi|[packaging](https://pypi.org/project/packaging)|0.006| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.006| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.006| +|pypi|[coverage](https://pypi.org/project/coverage)|0.006| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.006| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.006| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.006| +|pypi|[olefile](https://pypi.org/project/olefile)|0.006| +|pypi|[requests](https://pypi.org/project/requests)|0.004| +|pypi|[pillow](https://python-pillow.org)|0.004| +|pypi|[statsmodels](https://pypi.org/project/statsmodels)|0.003| +|pypi|[sphinx-toggleprompt](https://pypi.org/project/sphinx-toggleprompt)|0.003| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.003| +|pypi|[siphon](https://pypi.org/project/siphon)|0.003| +|pypi|[requests-mock](https://pypi.org/project/requests-mock)|0.003| +|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|0.003| +|pypi|[pytest-remotedata](https://pypi.org/project/pytest-remotedata)|0.003| +|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.003| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.003| +|pypi|[pvfactors](https://pypi.org/project/pvfactors)|0.003| +|pypi|[numba](https://pypi.org/project/numba)|0.003| +|pypi|[nrel-pysam](https://pypi.org/project/nrel-pysam)|0.003| +|pypi|[nose](https://pypi.org/project/nose)|0.003| +|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.003| +|pypi|[ipython](https://pypi.org/project/ipython)|0.003| +|pypi|[ephem](https://pypi.org/project/ephem)|0.003| +|pypi|[docutils](https://pypi.org/project/docutils)|0.003| +|pypi|[cython](https://pypi.org/project/cython)|0.003| +|pypi|[cftime](https://pypi.org/project/cftime)|0.003| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.003| +|pypi|[pytz](https://pypi.org/project/pytz)|0.003| +|pypi|[pandas](https://pypi.org/project/pandas)|0.003| +|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.002| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.002| +|pypi|[wheel](https://pypi.org/project/wheel)|0.002| +|pypi|[twine](https://pypi.org/project/twine)|0.002| +|pypi|[py-make](https://pypi.org/project/py-make)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[pvpumpingsystem](https://github.com/tylunel/pvpumpingsystem)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/tylunel/pvpumpingsystem/badge.png b/_repos/github/tylunel/pvpumpingsystem/badge.png index 213d0ff4..1c32d7be 100644 Binary files a/_repos/github/tylunel/pvpumpingsystem/badge.png and b/_repos/github/tylunel/pvpumpingsystem/badge.png differ diff --git a/_repos/github/tylunel/pvpumpingsystem/data.json b/_repos/github/tylunel/pvpumpingsystem/data.json index 943eb9cb..a16b935e 100644 --- a/_repos/github/tylunel/pvpumpingsystem/data.json +++ b/_repos/github/tylunel/pvpumpingsystem/data.json @@ -6,233 +6,293 @@ } }, "pypi": { - "pvlib": { - "credit": 0.001414285714285729, - "url": "https://github.com/pvlib/pvlib-python" + "pvpumpingsystem": { + "credit": 0.000899999999999998, + "url": "https://github.com/tylunel/pvpumpingsystem" }, "fluids": { - "credit": 0.14142857142857143, + "credit": 0.10272857142857142, "url": "https://github.com/CalebBell/fluids" }, - "numpy-financial": { - "credit": 0.001414285714285729, - "url": "https://numpy.org/numpy-financial/" - }, "matplotlib": { - "credit": 0.14580401785714286, + "credit": 0.11236679258241758, "url": "https://matplotlib.org" }, - "pytest": { - "credit": 0.005789732142857157, - "url": "https://docs.pytest.org/en/latest/" + "numpy-financial": { + "credit": 0.013628571428571426, + "url": "https://numpy.org/numpy-financial/" + }, + "pvlib": { + "credit": 0.013628571428571426, + "url": "https://github.com/pvlib/pvlib-python" }, "sklearn": { - "credit": 0.14142857142857143, + "credit": 0.10272857142857142, "url": "https://pypi.python.org/pypi/scikit-learn/" }, + "cycler": { + "credit": 0.09, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.000899999999999998, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.000899999999999998, + "url": "https://github.com/nucleic/kiwi" + }, + "pillow": { + "credit": 0.003684374999999998, + "url": "https://python-pillow.org" + }, + "h5py": { + "credit": 0.092784375, + "url": "http://www.h5py.org" + }, "tqdm": { - "credit": 0.001414285714285729, + "credit": 0.0001272857142857152, "url": "https://tqdm.github.io" }, + "pytest": { + "credit": 0.02108169642857143, + "url": "https://docs.pytest.org/en/latest/" + }, + "numpy": { + "credit": 0.091884375, + "url": "https://pypi.org/project/numpy" + }, "statsmodels": { - "credit": 0.004375446428571428, - "url": "https://www.statsmodels.org/" + "credit": 0.002784375, + "url": "https://pypi.org/project/statsmodels" }, "sphinx-toggleprompt": { - "credit": 4.3754464285714056e-05, - "url": "https://github.com/jurasofish/sphinx-toggleprompt" + "credit": 0.002784375, + "url": "https://pypi.org/project/sphinx-toggleprompt" }, "sphinx-gallery": { - "credit": 0.004375446428571428, - "url": "https://sphinx-gallery.github.io" + "credit": 0.002784375, + "url": "https://pypi.org/project/sphinx-gallery" }, "sphinx": { - "credit": 0.008707138392857142, - "url": "https://www.sphinx-doc.org/" + "credit": 0.008353125, + "url": "https://pypi.org/project/sphinx" }, "siphon": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/siphon" }, "requests-mock": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/requests-mock" }, "pytest-timeout": { - "credit": 0.004375446428571428, + "credit": 0.008353125, "url": "https://pypi.org/project/pytest-timeout" }, "pytest-rerunfailures": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/pytest-rerunfailures" }, "pytest-remotedata": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/pytest-remotedata" }, "pytest-mock": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/pytest-mock" }, "pytest-cov": { - "credit": 0.004375446428571428, + "credit": 0.008353125, "url": "https://pypi.org/project/pytest-cov" }, "pydata-sphinx-theme": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "pvfactors": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/pvfactors" }, - "pillow": { - "credit": 0.004375446428571428, - "url": "https://pypi.org/project/pillow" - }, "numba": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/numba" }, "nrel-pysam": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/nrel-pysam" }, "nose": { - "credit": 0.013126339285714285, + "credit": 0.002784375, "url": "https://pypi.org/project/nose" }, "netcdf4": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/netcdf4" }, "ipython": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/ipython" }, "ephem": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/ephem" }, "docutils": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/docutils" }, "cython": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/cython" }, "cftime": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/cftime" }, "dataclasses": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/dataclasses" }, - "h5py": { - "credit": 0.004375446428571428, - "url": "https://pypi.org/project/h5py" - }, "scipy": { - "credit": 0.004375446428571428, + "credit": 0.009638221153846153, "url": "https://pypi.org/project/scipy" }, "requests": { - "credit": 0.030628125, + "credit": 0.004359535714285714, "url": "https://pypi.org/project/requests" }, "pytz": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/pytz" }, "pandas": { - "credit": 0.004375446428571428, + "credit": 0.002784375, "url": "https://pypi.org/project/pandas" }, - "numpy": { - "credit": 0.14438973214285714, - "url": "https://pypi.org/project/numpy" + "xattr": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/xattr" }, - "xmlschema": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/xmlschema" + "unicodedata2": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/unicodedata2" }, - "pygments": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/pygments" + "munkres": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/munkres" }, - "mock": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/mock" + "brotli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotli" }, - "hypothesis": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/hypothesis" + "brotlicffi": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/brotlicffi" }, - "argcomplete": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/argcomplete" + "skia-pathops": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/skia-pathops" }, - "colorama": { - "credit": 0.02625267857142857, - "url": "https://pypi.org/project/colorama" + "sympy": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lz4" }, - "atomicwrites": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/atomicwrites" + "zopfli": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/zopfli" }, - "importlib-metadata": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/importlib-metadata" + "lxml": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/lxml" }, - "tomli": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/tomli" + "fs": { + "credit": 0.006853846153846154, + "url": "https://pypi.org/project/fs" }, - "py": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/py" + "typing-extensions": { + "credit": 0.0891, + "url": "https://pypi.org/project/typing-extensions" }, - "pluggy": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.00556875, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.008750892857142856, + "credit": 0.00556875, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/iniconfig" + "markdown2": { + "credit": 0.00556875, + "url": "https://pypi.org/project/markdown2" }, - "attrs": { - "credit": 0.008750892857142856, - "url": "https://pypi.org/project/attrs" + "defusedxml": { + "credit": 0.00556875, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.00556875, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.00556875, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.00556875, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.00556875, + "url": "https://pypi.org/project/olefile" }, "slack-sdk": { - "credit": 0.017501785714285713, + "credit": 0.001575160714285714, "url": "https://pypi.org/project/slack-sdk" }, "ipywidgets": { - "credit": 0.017501785714285713, + "credit": 0.001575160714285714, "url": "https://pypi.org/project/ipywidgets" }, "wheel": { - "credit": 0.017501785714285713, + "credit": 0.001575160714285714, "url": "https://pypi.org/project/wheel" }, "twine": { - "credit": 0.017501785714285713, + "credit": 0.001575160714285714, "url": "https://pypi.org/project/twine" }, "py-make": { - "credit": 0.017501785714285713, + "credit": 0.001575160714285714, "url": "https://pypi.org/project/py-make" }, "importlib-resources": { - "credit": 0.017501785714285713, + "credit": 0.001575160714285714, "url": "https://pypi.org/project/importlib-resources" + }, + "colorama": { + "credit": 0.001575160714285714, + "url": "https://pypi.org/project/colorama" } } } \ No newline at end of file diff --git a/_repos/github/villano-lab/nrCascadeSim/badge.png b/_repos/github/villano-lab/nrCascadeSim/badge.png index 32c6b6fb..b206161a 100644 Binary files a/_repos/github/villano-lab/nrCascadeSim/badge.png and b/_repos/github/villano-lab/nrCascadeSim/badge.png differ diff --git a/_repos/github/virgesmith/neworder/README.md b/_repos/github/virgesmith/neworder/README.md index 6f50d084..8fa3a87f 100644 --- a/_repos/github/virgesmith/neworder/README.md +++ b/_repos/github/virgesmith/neworder/README.md @@ -8,77 +8,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.428| -|pypi|[pybind11-global](https://github.com/pybind/pybind11)|0.196| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.041| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.034| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.034| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.017| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.017| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.017| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.017| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.015| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.015| |setup.py|github/virgesmith/neworder|0.01| -|pypi|[filelock](https://pypi.org/project/filelock)|0.009| -|pypi|[attrs](https://pypi.org/project/attrs)|0.008| -|pypi|[flake8](https://pypi.org/project/flake8)|0.007| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.005| -|pypi|[psutil](https://pypi.org/project/psutil)|0.005| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.005| -|pypi|[execnet](https://pypi.org/project/execnet)|0.005| -|pypi|[mock](https://pypi.org/project/mock)|0.005| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.005| -|pypi|[pandas](https://pandas.pydata.org)|0.004| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.003| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.002| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.002| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.002| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.002| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.002| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[requests](https://pypi.org/project/requests)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[colorama](https://pypi.org/project/colorama)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[packaging](https://pypi.org/project/packaging)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[scipy](https://www.scipy.org)|0.002| -|pypi|[pybind11](https://github.com/pybind/pybind11)|0.002| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.002| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[rich](https://pypi.org/project/rich)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[libcst](https://pypi.org/project/libcst)|0.002| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.002| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.002| -|pypi|[django](https://pypi.org/project/django)|0.002| -|pypi|[click](https://pypi.org/project/click)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.001| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.001| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.001| -|pypi|[toml](https://pypi.org/project/toml)|0.001| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.001| -|pypi|[pep517](https://pypi.org/project/pep517)|0.001| -|pypi|[docutils](https://pypi.org/project/docutils)|0.001| +|pypi|[neworder](https://neworder.readthedocs.io)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/virgesmith/neworder/badge.png b/_repos/github/virgesmith/neworder/badge.png index 5d40461d..a0218c5d 100644 Binary files a/_repos/github/virgesmith/neworder/badge.png and b/_repos/github/virgesmith/neworder/badge.png differ diff --git a/_repos/github/virgesmith/neworder/data.json b/_repos/github/virgesmith/neworder/data.json index 0b898887..ab3d15a9 100644 --- a/_repos/github/virgesmith/neworder/data.json +++ b/_repos/github/virgesmith/neworder/data.json @@ -6,289 +6,9 @@ } }, "pypi": { - "numpy": { - "credit": 0.42848685000000003, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.0037768500000000373, - "url": "https://pandas.pydata.org" - }, - "scipy": { - "credit": 0.0019800000000000095, - "url": "https://www.scipy.org" - }, - "pybind11": { - "credit": 0.0019800000000000095, - "url": "https://github.com/pybind/pybind11" - }, - "pytest-runner": { - "credit": 0.0019800000000000095, - "url": "https://github.com/pytest-dev/pytest-runner/" - }, - "pytest-xdist": { - "credit": 0.0021926596153846144, - "url": "https://github.com/pytest-dev/pytest-xdist" - }, - "pytest": { - "credit": 0.040772339505494505, - "url": "https://docs.pytest.org/en/latest/" - }, - "hypothesis": { - "credit": 0.002348156249999999, - "url": "https://hypothesis.works" - }, - "pytz": { - "credit": 0.03446685, - "url": "http://pythonhosted.org/pytz" - }, - "python-dateutil": { - "credit": 0.03446685, - "url": "https://github.com/dateutil/dateutil" - }, - "pybind11-global": { - "credit": 0.19602, - "url": "https://github.com/pybind/pybind11" - }, - "pytest-mypy": { - "credit": 0.0022833098901098906, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-black": { - "credit": 0.017210986813186814, - "url": "https://github.com/shopkeep/pytest-black" - }, - "types-setuptools": { - "credit": 0.015078461538461539, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.0001507846153846141, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.0022833098901098906, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.0022833098901098906, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.0022833098901098906, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.0022833098901098906, - "url": "https://github.com/jaraco/pytest-checkdocs" - }, - "jaraco.tidelift": { - "credit": 0.015078461538461539, - "url": "https://pypi.org/project/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.017210986813186814, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.017210986813186814, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.017210986813186814, - "url": "https://pypi.org/project/sphinx" - }, - "filelock": { - "credit": 0.009122469230769231, - "url": "https://pypi.org/project/filelock" - }, - "setproctitle": { - "credit": 0.00539055, - "url": "https://pypi.org/project/setproctitle" - }, - "psutil": { - "credit": 0.00539055, - "url": "https://pypi.org/project/psutil" - }, - "pytest-forked": { - "credit": 0.00539055, - "url": "https://pypi.org/project/pytest-forked" - }, - "execnet": { - "credit": 0.00539055, - "url": "https://pypi.org/project/execnet" - }, - "xmlschema": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.005006991634615385, - "url": "https://pypi.org/project/mock" - }, - "argcomplete": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.004884568887362637, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.00202145625, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.007550225480769231, - "url": "https://pypi.org/project/attrs" - }, - "tzdata": { - "credit": 0.00179685, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.00179685, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.00179685, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.00179685, - "url": "https://pypi.org/project/redis" - }, - "libcst": { - "credit": 0.00179685, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.00179685, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.00179685, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.00179685, - "url": "https://pypi.org/project/django" - }, - "click": { - "credit": 0.00179685, - "url": "https://pypi.org/project/click" - }, - "black": { - "credit": 0.00179685, - "url": "https://pypi.org/project/black" - }, - "sortedcontainers": { - "credit": 0.00179685, - "url": "https://pypi.org/project/sortedcontainers" - }, - "mypy": { - "credit": 0.0037319192307692308, - "url": "https://pypi.org/project/mypy" - }, - "virtualenv": { - "credit": 0.004851495, - "url": "https://pypi.org/project/virtualenv" - }, - "pytest-shutil": { - "credit": 0.0029855353846153848, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.0029855353846153848, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/toml" - }, - "six": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.0018659596153846154, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.0074638384615384615, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/types-docutils" - }, - "pep517": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.0010662626373626374, - "url": "https://pypi.org/project/docutils" + "neworder": { + "credit": 0.0099, + "url": "https://neworder.readthedocs.io" } } } \ No newline at end of file diff --git a/_repos/github/volkamerlab/opencadd/README.md b/_repos/github/volkamerlab/opencadd/README.md index 1c8e6f4d..c32b8a82 100644 --- a/_repos/github/volkamerlab/opencadd/README.md +++ b/_repos/github/volkamerlab/opencadd/README.md @@ -8,94 +8,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.103| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.096| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.075| -|pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.032| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.03| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.028| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.028| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.028| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.028| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.026| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.024| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.021| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.015| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.013| -|pypi|[pep517](https://pypi.org/project/pep517)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.01| |setup.py|github/volkamerlab/opencadd|0.01| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[attrs](https://www.attrs.org/)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.005| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.005| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.005| -|pypi|[path](https://pypi.org/project/path)|0.005| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| -|pypi|[keyring](https://pypi.org/project/keyring)|0.005| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.005| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.005| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.003| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|0.001| -|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/volkamerlab/opencadd/badge.png b/_repos/github/volkamerlab/opencadd/badge.png index c27c9dd0..66cdd8ed 100644 Binary files a/_repos/github/volkamerlab/opencadd/badge.png and b/_repos/github/volkamerlab/opencadd/badge.png differ diff --git a/_repos/github/volkamerlab/opencadd/data.json b/_repos/github/volkamerlab/opencadd/data.json index 81eecb74..17b539cb 100644 --- a/_repos/github/volkamerlab/opencadd/data.json +++ b/_repos/github/volkamerlab/opencadd/data.json @@ -4,359 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "pytest_runner": { - "credit": 0.00990000000000002, - "url": "https://github.com/pytest-dev/pytest-runner/" - }, - "pytest-mypy": { - "credit": 0.02794362032967033, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-black": { - "credit": 0.10258200494505493, - "url": "https://github.com/shopkeep/pytest-black" - }, - "types-setuptools": { - "credit": 0.07539230769230769, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.0007539230769230826, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.030252745353708792, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.02794362032967033, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-checkdocs" - }, - "pytest": { - "credit": 0.09642254402234783, - "url": "https://docs.pytest.org/en/latest/" - }, - "jaraco.tidelift": { - "credit": 0.0007539230769230826, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/jaraco.packaging" - }, - "sphinx": { - "credit": 0.03167374536850169, - "url": "https://www.sphinx-doc.org/" - }, - "mypy": { - "credit": 0.004593131360946745, - "url": "http://www.mypy-lang.org/" - }, - "filelock": { - "credit": 0.00018659596153846117, - "url": "https://github.com/tox-dev/py-filelock" - }, - "attrs": { - "credit": 0.0060060575120192295, - "url": "https://www.attrs.org/" - }, - "mock": { - "credit": 0.02074713847355769, - "url": "http://mock.readthedocs.org/en/latest/" - }, - "virtualenv": { - "credit": 0.024257474999999997, - "url": "https://virtualenv.pypa.io/" - }, - "pytest-shutil": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.010750798091715976, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.013059923115754437, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.04030472769230769, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.010307205494505494, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.02568748869333791, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pep517": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.008316848571428571, - "url": "https://pypi.org/project/docutils" - }, - "xmlschema": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/nose" - }, - "hypothesis": { - "credit": 0.007240461565273667, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.008898294915865383, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/iniconfig" - }, - "importlib-resources": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-python-dateutil" - }, - "path": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/path" - }, - "python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/python-dateutil" - }, - "types-requests": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/isort" - }, - "sphinxcontrib-websupport": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "imagesize": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/snowballstemmer" - }, - "Pygments": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "lxml": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/lxml" - }, - "psutil": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/psutil" - }, - "typed-ast": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typed-ast" - }, - "mypy-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/mypy-extensions" - }, - "typing-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typing-extensions" - }, - "pytest-timeout": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/pytest-timeout" - }, - "covdefaults": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/covdefaults" - }, - "sphinx-autodoc-typehints": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "furo": { - "credit": 0.003730125038831361, - "url": "https://pypi.org/project/furo" - }, - "cloudpickle": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "zope.interface": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "pympler": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pympler" - } } } \ No newline at end of file diff --git a/_repos/github/vsoch/gridtest/README.md b/_repos/github/vsoch/gridtest/README.md index f791f7d5..91acbf2e 100644 --- a/_repos/github/vsoch/gridtest/README.md +++ b/_repos/github/vsoch/gridtest/README.md @@ -8,94 +8,11 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.103| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.096| -|pypi|[types-setuptools](https://github.com/python/typeshed)|0.075| -|pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.032| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.03| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.028| -|pypi|[pytest-enabler](https://github.com/jaraco/pytest-enabler)|0.028| -|pypi|[pytest-flake8](https://github.com/tholo/pytest-flake8)|0.028| -|pypi|[pytest-checkdocs](https://github.com/jaraco/pytest-checkdocs)|0.028| -|pypi|[rst.linker](https://github.com/jaraco/rst.linker)|0.028| -|pypi|[jaraco.packaging](https://github.com/jaraco/jaraco.packaging)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.026| -|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.024| -|pypi|[mock](http://mock.readthedocs.org/en/latest/)|0.021| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.015| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.015| -|pypi|[coverage](https://pypi.org/project/coverage)|0.013| -|pypi|[pep517](https://pypi.org/project/pep517)|0.012| -|pypi|[six](https://pypi.org/project/six)|0.011| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.01| |setup.py|github/vsoch/gridtest|0.01| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.01| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.009| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.009| -|pypi|[hunter](https://pypi.org/project/hunter)|0.009| -|pypi|[fields](https://pypi.org/project/fields)|0.009| -|pypi|[tomli](https://pypi.org/project/tomli)|0.009| -|pypi|[requests](https://pypi.org/project/requests)|0.009| -|pypi|[colorama](https://pypi.org/project/colorama)|0.009| -|pypi|[packaging](https://pypi.org/project/packaging)|0.009| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.007| -|pypi|[attrs](https://www.attrs.org/)|0.006| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[nose](https://pypi.org/project/nose)|0.006| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.006| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.006| -|pypi|[py](https://pypi.org/project/py)|0.006| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.006| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.006| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.005| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.005| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.005| -|pypi|[path](https://pypi.org/project/path)|0.005| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.005| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.005| -|pypi|[keyring](https://pypi.org/project/keyring)|0.005| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.005| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.005| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.004| -|pypi|[lxml](https://pypi.org/project/lxml)|0.003| -|pypi|[psutil](https://pypi.org/project/psutil)|0.003| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.003| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.003| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.003| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.003| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.003| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.003| -|pypi|[isort](https://pypi.org/project/isort)|0.003| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.003| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.003| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.003| -|pypi|[babel](https://pypi.org/project/babel)|0.003| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.003| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.003| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.003| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.003| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.003| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.003| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.003| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.003| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.003| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.002| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.002| -|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.001| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.001| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.001| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.001| -|pypi|[pympler](https://pypi.org/project/pympler)|0.001| -|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|0.001| -|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.001| +|pypi|[json-tricks](https://github.com/mverleg/pyjson_tricks)|0.007| +|pypi|[gridtest](http://www.github.com/vsoch/gridtest)|0.005| +|pypi|[pyaml](https://github.com/mk-fg/pretty-yaml)|0.002| +|pypi|[PyYAML](https://pyyaml.org/)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/vsoch/gridtest/badge.png b/_repos/github/vsoch/gridtest/badge.png index 392dc797..9c8f8e31 100644 Binary files a/_repos/github/vsoch/gridtest/badge.png and b/_repos/github/vsoch/gridtest/badge.png differ diff --git a/_repos/github/vsoch/gridtest/data.json b/_repos/github/vsoch/gridtest/data.json index 730d4a4f..a9531cd9 100644 --- a/_repos/github/vsoch/gridtest/data.json +++ b/_repos/github/vsoch/gridtest/data.json @@ -6,357 +6,21 @@ } }, "pypi": { - "pytest-runner": { - "credit": 0.00990000000000002, - "url": "https://github.com/pytest-dev/pytest-runner/" + "gridtest": { + "credit": 0.00495, + "url": "http://www.github.com/vsoch/gridtest" }, - "pytest-mypy": { - "credit": 0.02794362032967033, - "url": "https://github.com/dbader/pytest-mypy" + "json-tricks": { + "credit": 0.007400250000000001, + "url": "https://github.com/mverleg/pyjson_tricks" }, - "pytest-black": { - "credit": 0.10258200494505493, - "url": "https://github.com/shopkeep/pytest-black" + "pyaml": { + "credit": 0.00245025, + "url": "https://github.com/mk-fg/pretty-yaml" }, - "types-setuptools": { - "credit": 0.07539230769230769, - "url": "https://github.com/python/typeshed" - }, - "pytest-virtualenv": { - "credit": 0.0007539230769230826, - "url": "https://github.com/manahl/pytest-plugins" - }, - "pytest-enabler": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.030252745353708792, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.02794362032967033, - "url": "https://github.com/tholo/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/pytest-checkdocs" - }, - "pytest": { - "credit": 0.09642254402234783, - "url": "https://docs.pytest.org/en/latest/" - }, - "jaraco.tidelift": { - "credit": 0.0007539230769230826, - "url": "https://github.com/jaraco/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.02794362032967033, - "url": "https://github.com/jaraco/jaraco.packaging" - }, - "sphinx": { - "credit": 0.03167374536850169, - "url": "https://www.sphinx-doc.org/" - }, - "mypy": { - "credit": 0.004593131360946745, - "url": "http://www.mypy-lang.org/" - }, - "filelock": { - "credit": 0.00018659596153846117, - "url": "https://github.com/tox-dev/py-filelock" - }, - "attrs": { - "credit": 0.0060060575120192295, - "url": "https://www.attrs.org/" - }, - "mock": { - "credit": 0.02074713847355769, - "url": "http://mock.readthedocs.org/en/latest/" - }, - "virtualenv": { - "credit": 0.024257474999999997, - "url": "https://virtualenv.pypa.io/" - }, - "pytest-shutil": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-shutil" - }, - "pytest-fixture-config": { - "credit": 0.014927676923076921, - "url": "https://pypi.org/project/pytest-fixture-config" - }, - "types-toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-toml" - }, - "jaraco.context": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.context" - }, - "jaraco.functools": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/jaraco.functools" - }, - "toml": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/toml" - }, - "pytest-xdist": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/pytest-xdist" - }, - "six": { - "credit": 0.010750798091715976, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.009329798076923076, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.013059923115754437, - "url": "https://pypi.org/project/coverage" - }, - "flake8": { - "credit": 0.04030472769230769, - "url": "https://pypi.org/project/flake8" - }, - "types-docutils": { - "credit": 0.010307205494505494, - "url": "https://pypi.org/project/types-docutils" - }, - "importlib-metadata": { - "credit": 0.02568748869333791, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pep517": { - "credit": 0.01155117857142857, - "url": "https://pypi.org/project/pep517" - }, - "docutils": { - "credit": 0.008316848571428571, - "url": "https://pypi.org/project/docutils" - }, - "xmlschema": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/xmlschema" - }, - "requests": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/requests" - }, - "pygments": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/nose" - }, - "hypothesis": { - "credit": 0.007240461565273667, - "url": "https://pypi.org/project/hypothesis" - }, - "argcomplete": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/argcomplete" - }, - "colorama": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/colorama" - }, - "atomicwrites": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/atomicwrites" - }, - "tomli": { - "credit": 0.008898294915865383, - "url": "https://pypi.org/project/tomli" - }, - "py": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/pluggy" - }, - "packaging": { - "credit": 0.008804996935096152, - "url": "https://pypi.org/project/packaging" - }, - "iniconfig": { - "credit": 0.005819461550480768, - "url": "https://pypi.org/project/iniconfig" - }, - "importlib-resources": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/importlib-resources" - }, - "keyring": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/keyring" - }, - "requests-toolbelt": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/requests-toolbelt" - }, - "autocommand": { - "credit": 0.004975892307692307, - "url": "https://pypi.org/project/autocommand" - }, - "types-python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/types-python-dateutil" - }, - "path": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/path" - }, - "python-dateutil": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/python-dateutil" - }, - "types-requests": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/isort" - }, - "sphinxcontrib-websupport": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "imagesize": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/snowballstemmer" - }, - "Pygments": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.0029855353846153843, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "lxml": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/lxml" - }, - "psutil": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/psutil" - }, - "typed-ast": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typed-ast" - }, - "mypy-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/mypy-extensions" - }, - "typing-extensions": { - "credit": 0.003078833365384615, - "url": "https://pypi.org/project/typing-extensions" - }, - "pytest-timeout": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/pytest-timeout" - }, - "covdefaults": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/covdefaults" - }, - "sphinx-autodoc-typehints": { - "credit": 0.0023091250240384613, - "url": "https://pypi.org/project/sphinx-autodoc-typehints" - }, - "furo": { - "credit": 0.003730125038831361, - "url": "https://pypi.org/project/furo" - }, - "cloudpickle": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/cloudpickle" - }, - "pre-commit": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/sphinx-notfound-page" - }, - "zope.interface": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pytest-mypy-plugins" - }, - "pympler": { - "credit": 0.0014210000147928993, - "url": "https://pypi.org/project/pympler" + "PyYAML": { + "credit": 0.0024257475, + "url": "https://pyyaml.org/" } } } \ No newline at end of file diff --git a/_repos/github/wdecoster/nanopack/README.md b/_repos/github/wdecoster/nanopack/README.md index 1a237f22..51e2d39e 100644 --- a/_repos/github/wdecoster/nanopack/README.md +++ b/_repos/github/wdecoster/nanopack/README.md @@ -8,15 +8,51 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.074| +|pypi|[tornado](http://www.tornadoweb.org/)|0.056| +|pypi|[numpy](https://pypi.org/project/numpy)|0.055| +|pypi|[nanopack](https://github.com/wdecoster/nanopack)|0.05| +|pypi|[NanoComp](https://github.com/wdecoster/NanoComp)|0.05| +|pypi|[NanoFilt](https://github.com/wdecoster/nanofilt)|0.05| +|pypi|[nanoget](https://github.com/wdecoster/nanoget)|0.05| +|pypi|[NanoLyse](https://github.com/wdecoster/nanolyse)|0.05| +|pypi|[nanomath](https://github.com/wdecoster/nanomath)|0.05| +|pypi|[NanoPlot](https://github.com/wdecoster/NanoPlot)|0.05| +|pypi|[nanoQC](https://github.com/wdecoster/nanoQC)|0.05| +|pypi|[NanoStat](https://github.com/wdecoster/nanostat)|0.05| +|pypi|[mappy](https://github.com/lh3/minimap2)|0.05| +|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.05| +|pypi|[biopython](https://biopython.org/)|0.05| +|pypi|[Python-Deprecated](https://github.com/vrcmarcos/python-deprecated)|0.05| +|pypi|[Babel](https://pypi.org/project/Babel)|0.025| |setup.py|github/wdecoster/nanopack|0.01| -|pypi|[NanoPlot](https://github.com/wdecoster/NanoPlot)|0.001| -|pypi|[NanoStat](https://github.com/wdecoster/nanostat)|0.001| -|pypi|[NanoFilt](https://github.com/wdecoster/nanofilt)|0.001| -|pypi|[NanoLyse](https://github.com/wdecoster/nanolyse)|0.001| -|pypi|[nanoget](https://github.com/wdecoster/nanoget)|0.001| -|pypi|[nanomath](https://github.com/wdecoster/nanomath)|0.001| -|pypi|[NanoComp](https://github.com/wdecoster/NanoComp)|0.001| -|pypi|[nanoQC](https://github.com/wdecoster/nanoQC)|0.001| +|pypi|[packaging](https://pypi.org/project/packaging)|0.009| +|pypi|[wmi](https://pypi.org/project/wmi)|0.008| +|pypi|[pywin32](https://pypi.org/project/pywin32)|0.008| +|pypi|[enum34](https://pypi.org/project/enum34)|0.008| +|pypi|[unittest2](https://pypi.org/project/unittest2)|0.008| +|pypi|[mock](https://pypi.org/project/mock)|0.008| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.008| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.007| +|pypi|[pillow](https://python-pillow.org)|0.007| +|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.006| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.006| +|pypi|[PyYAML](https://pyyaml.org/)|0.006| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.003| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.003| +|pypi|[pytest](https://pypi.org/project/pytest)|0.003| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.003| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.003| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.003| +|pypi|[coverage](https://pypi.org/project/coverage)|0.003| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.003| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.003| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.003| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.003| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.003| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.003| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.003| +|pypi|[olefile](https://pypi.org/project/olefile)|0.003| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/wdecoster/nanopack/badge.png b/_repos/github/wdecoster/nanopack/badge.png index c240ebaa..64aae102 100644 Binary files a/_repos/github/wdecoster/nanopack/badge.png and b/_repos/github/wdecoster/nanopack/badge.png differ diff --git a/_repos/github/wdecoster/nanopack/data.json b/_repos/github/wdecoster/nanopack/data.json index 2a117f68..ae8bf422 100644 --- a/_repos/github/wdecoster/nanopack/data.json +++ b/_repos/github/wdecoster/nanopack/data.json @@ -6,37 +6,193 @@ } }, "pypi": { - "NanoPlot": { - "credit": 0.0012375, - "url": "https://github.com/wdecoster/NanoPlot" + "nanopack": { + "credit": 0.0495, + "url": "https://github.com/wdecoster/nanopack" }, - "NanoStat": { - "credit": 0.0012375, - "url": "https://github.com/wdecoster/nanostat" + "NanoComp": { + "credit": 0.0495, + "url": "https://github.com/wdecoster/NanoComp" }, "NanoFilt": { - "credit": 0.0012375, + "credit": 0.0495, "url": "https://github.com/wdecoster/nanofilt" }, - "NanoLyse": { - "credit": 0.0012375, - "url": "https://github.com/wdecoster/nanolyse" - }, "nanoget": { - "credit": 0.0012375, + "credit": 0.0495, "url": "https://github.com/wdecoster/nanoget" }, + "NanoLyse": { + "credit": 0.0495, + "url": "https://github.com/wdecoster/nanolyse" + }, "nanomath": { - "credit": 0.0012375, + "credit": 0.0495, "url": "https://github.com/wdecoster/nanomath" }, - "NanoComp": { - "credit": 0.0012375, - "url": "https://github.com/wdecoster/NanoComp" + "NanoPlot": { + "credit": 0.0495, + "url": "https://github.com/wdecoster/NanoPlot" }, "nanoQC": { - "credit": 0.0012375, + "credit": 0.0495, "url": "https://github.com/wdecoster/nanoQC" + }, + "NanoStat": { + "credit": 0.0495, + "url": "https://github.com/wdecoster/nanostat" + }, + "mappy": { + "credit": 0.0495, + "url": "https://github.com/lh3/minimap2" + }, + "pysam": { + "credit": 0.0495, + "url": "https://github.com/pysam-developers/pysam" + }, + "biopython": { + "credit": 0.0495, + "url": "https://biopython.org/" + }, + "bokeh": { + "credit": 0.0004950000000000024, + "url": "https://github.com/bokeh/bokeh" + }, + "psutil": { + "credit": 0.0004950000000000093, + "url": "https://github.com/giampaolo/psutil" + }, + "pyarrow": { + "credit": 0.0004950000000000024, + "url": "https://arrow.apache.org/" + }, + "Python-Deprecated": { + "credit": 0.0495, + "url": "https://github.com/vrcmarcos/python-deprecated" + }, + "Jinja2": { + "credit": 0.006620625000000002, + "url": "https://palletsprojects.com/p/jinja/" + }, + "pillow": { + "credit": 0.006620625000000002, + "url": "https://python-pillow.org" + }, + "tornado": { + "credit": 0.055625625000000005, + "url": "http://www.tornadoweb.org/" + }, + "MarkupSafe": { + "credit": 0.0740025, + "url": "https://palletsprojects.com/p/markupsafe/" + }, + "xyzservices": { + "credit": 0.006125625, + "url": "https://github.com/geopandas/xyzservices" + }, + "typing-extensions": { + "credit": 0.006125625, + "url": "https://typing.readthedocs.io/" + }, + "PyYAML": { + "credit": 0.006125625, + "url": "https://pyyaml.org/" + }, + "packaging": { + "credit": 0.0091884375, + "url": "https://pypi.org/project/packaging" + }, + "numpy": { + "credit": 0.055130625, + "url": "https://pypi.org/project/numpy" + }, + "wmi": { + "credit": 0.0081675, + "url": "https://pypi.org/project/wmi" + }, + "pywin32": { + "credit": 0.0081675, + "url": "https://pypi.org/project/pywin32" + }, + "enum34": { + "credit": 0.0081675, + "url": "https://pypi.org/project/enum34" + }, + "unittest2": { + "credit": 0.0081675, + "url": "https://pypi.org/project/unittest2" + }, + "mock": { + "credit": 0.0081675, + "url": "https://pypi.org/project/mock" + }, + "ipaddress": { + "credit": 0.0081675, + "url": "https://pypi.org/project/ipaddress" + }, + "Babel": { + "credit": 0.0245025, + "url": "https://pypi.org/project/Babel" + }, + "pytest-timeout": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pytest-cov": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/pytest-cov" + }, + "pytest": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/pytest" + }, + "pyroma": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/defusedxml" + }, + "coverage": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/coverage" + }, + "check-manifest": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-rtd-theme": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/sphinx-rtd-theme" + }, + "sphinx-removed-in": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "sphinx": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/sphinx" + }, + "olefile": { + "credit": 0.0030628125, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/weecology/retriever/README.md b/_repos/github/weecology/retriever/README.md index a00a962c..9b867519 100644 --- a/_repos/github/weecology/retriever/README.md +++ b/_repos/github/weecology/retriever/README.md @@ -8,39 +8,22 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[future](https://python-future.org)|0.11| -|pypi|[kaggle](https://github.com/Kaggle/kaggle-api)|0.11| +|pypi|[text-unidecode](https://github.com/kmike/text-unidecode/)|0.164| +|pypi|[future](https://python-future.org)|0.128| |pypi|[h5py](http://www.h5py.org)|0.11| -|pypi|[wheel](https://pypi.org/project/wheel)|0.057| -|pypi|[twine](https://pypi.org/project/twine)|0.035| -|pypi|[coverage](https://pypi.org/project/coverage)|0.031| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.029| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.028| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.023| -|pypi|[pexpect](https://pypi.org/project/pexpect)|0.022| -|pypi|[flake8](https://pypi.org/project/flake8)|0.022| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.021| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.019| -|pypi|[numpy](https://pypi.org/project/numpy)|0.018| -|pypi|[pytz](https://pypi.org/project/pytz)|0.018| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.018| -|pypi|[requests](https://requests.readthedocs.io)|0.016| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.016| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.016| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.016| -|pypi|[idna](https://pypi.org/project/idna)|0.016| -|pypi|[chardet](https://pypi.org/project/chardet)|0.016| -|pypi|[certifi](https://pypi.org/project/certifi)|0.016| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.016| -|pypi|[colorama](https://pypi.org/project/colorama)|0.015| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.014| -|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.014| -|pypi|[py-make](https://pypi.org/project/py-make)|0.014| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.014| +|pypi|[kaggle](https://github.com/Kaggle/kaggle-api)|0.11| +|pypi|[Unidecode](https://pypi.org/project/Unidecode)|0.054| +|pypi|[pytest](https://pypi.org/project/pytest)|0.054| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.044| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.033| +|pypi|[wheel](https://github.com/pypa/wheel)|0.031| +|pypi|[twine](https://pypi.org/project/twine)|0.028| +|pypi|[pexpect](https://pexpect.readthedocs.io/)|0.025| +|pypi|[tomli](https://pypi.org/project/tomli)|0.022| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.011| |setup.py|github/weecology/retriever|0.01| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.009| |pypi|[packaging](https://pypi.org/project/packaging)|0.008| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.007| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.007| |pypi|[pyroma](https://pypi.org/project/pyroma)|0.007| |pypi|[markdown2](https://pypi.org/project/markdown2)|0.007| |pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.007| @@ -51,26 +34,46 @@ exclude_from_search: true |pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.007| |pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.007| |pypi|[olefile](https://pypi.org/project/olefile)|0.007| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[six](https://pypi.org/project/six)|0.003| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.003| -|pypi|[hunter](https://pypi.org/project/hunter)|0.003| -|pypi|[fields](https://pypi.org/project/fields)|0.003| -|pypi|[argcomplete](https://github.com/kislyuk/argcomplete)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| -|pypi|[attrs](https://pypi.org/project/attrs)|0.001| +|pypi|[pyflakes](https://pypi.org/project/pyflakes)|0.005| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.005| +|pypi|[mccabe](https://pypi.org/project/mccabe)|0.005| +|pypi|[flake8](https://github.com/pycqa/flake8)|0.004| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.003| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.003| +|pypi|[numpy](https://pypi.org/project/numpy)|0.003| +|pypi|[pytz](https://pypi.org/project/pytz)|0.003| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.003| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.003| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.003| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.003| +|pypi|[idna](https://pypi.org/project/idna)|0.003| +|pypi|[chardet](https://pypi.org/project/chardet)|0.003| +|pypi|[certifi](https://pypi.org/project/certifi)|0.003| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.003| +|pypi|[requests](https://requests.readthedocs.io)|0.002| +|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.002| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.002| +|pypi|[py-make](https://pypi.org/project/py-make)|0.002| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002| +|pypi|[argcomplete](https://github.com/kislyuk/argcomplete)|0.001| |pypi|[xlrd](http://www.python-excel.org/)|0.001| -|pypi|[tqdm](https://tqdm.github.io)|0.001| -|pypi|[pandas](https://pandas.pydata.org)|0.001| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.001| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.001| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| +|pypi|[ipython](https://pypi.org/project/ipython)|0.001| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.001| +|pypi|[zipp](https://pypi.org/project/zipp)|0.001| +|pypi|[retriever](https://github.com/weecology/retriever)|0.001| |pypi|[Pillow](https://python-pillow.org)|0.001| +|pypi|[python-slugify](https://github.com/un33k/python-slugify)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/weecology/retriever/badge.png b/_repos/github/weecology/retriever/badge.png index 1274e6de..bb5aecdc 100644 Binary files a/_repos/github/weecology/retriever/badge.png and b/_repos/github/weecology/retriever/badge.png differ diff --git a/_repos/github/weecology/retriever/data.json b/_repos/github/weecology/retriever/data.json index 1b221aae..16a5451d 100644 --- a/_repos/github/weecology/retriever/data.json +++ b/_repos/github/weecology/retriever/data.json @@ -6,156 +6,92 @@ } }, "pypi": { - "xlrd": { + "retriever": { "credit": 0.0011000000000000038, - "url": "http://www.python-excel.org/" - }, - "future": { - "credit": 0.11, - "url": "https://python-future.org" - }, - "kaggle": { - "credit": 0.11, - "url": "https://github.com/Kaggle/kaggle-api" + "url": "https://github.com/weecology/retriever" }, "argcomplete": { - "credit": 0.002447637500000004, + "credit": 0.0012815000000000049, "url": "https://github.com/kislyuk/argcomplete" }, - "tqdm": { - "credit": 0.0011000000000000038, - "url": "https://tqdm.github.io" - }, - "requests": { - "credit": 0.016060137500000002, - "url": "https://requests.readthedocs.io" - }, - "pandas": { - "credit": 0.0011000000000000038, - "url": "https://pandas.pydata.org" + "future": { + "credit": 0.12815, + "url": "https://python-future.org" }, "h5py": { "credit": 0.11, "url": "http://www.h5py.org" }, + "kaggle": { + "credit": 0.11, + "url": "https://github.com/Kaggle/kaggle-api" + }, "Pillow": { "credit": 0.0011000000000000038, "url": "https://python-pillow.org" }, - "pytest-cov": { - "credit": 0.00702405, - "url": "https://github.com/pytest-dev/pytest-cov" + "xlrd": { + "credit": 0.0012815000000000049, + "url": "http://www.python-excel.org/" }, - "pytest": { - "credit": 0.027869325, - "url": "https://docs.pytest.org/en/latest/" + "python-slugify": { + "credit": 0.0011000000000000038, + "url": "https://github.com/un33k/python-slugify" }, - "sphinx": { - "credit": 0.02858625, - "url": "https://www.sphinx-doc.org/" + "text-unidecode": { + "credit": 0.16444999999999999, + "url": "https://github.com/kmike/text-unidecode/" }, - "twine": { - "credit": 0.0353925, - "url": "https://pypi.org/project/twine" + "pandas": { + "credit": 0.0001815000000000011, + "url": "https://pandas.pydata.org" + }, + "requests": { + "credit": 0.002427562500000001, + "url": "https://requests.readthedocs.io" + }, + "tqdm": { + "credit": 0.0001815000000000011, + "url": "https://tqdm.github.io" }, "wheel": { - "credit": 0.0571725, - "url": "https://pypi.org/project/wheel" + "credit": 0.0314312625, + "url": "https://github.com/pypa/wheel" }, "pexpect": { - "credit": 0.02178, - "url": "https://pypi.org/project/pexpect" + "credit": 0.0253737, + "url": "https://pexpect.readthedocs.io/" }, "flake8": { - "credit": 0.02178, - "url": "https://pypi.org/project/flake8" + "credit": 0.0038115000000000002, + "url": "https://github.com/pycqa/flake8" }, "coverage": { - "credit": 0.031281525, - "url": "https://pypi.org/project/coverage" + "credit": 0.01061775, + "url": "https://github.com/nedbat/coveragepy" }, "importlib-metadata": { - "credit": 0.0231276375, - "url": "https://pypi.org/project/importlib-metadata" - }, - "slack-sdk": { - "credit": 0.0136125, - "url": "https://pypi.org/project/slack-sdk" - }, - "ipywidgets": { - "credit": 0.0136125, - "url": "https://pypi.org/project/ipywidgets" - }, - "py-make": { - "credit": 0.0136125, - "url": "https://pypi.org/project/py-make" - }, - "importlib-resources": { - "credit": 0.0136125, - "url": "https://pypi.org/project/importlib-resources" - }, - "colorama": { - "credit": 0.0149601375, - "url": "https://pypi.org/project/colorama" - }, - "win-inet-pton": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/win-inet-pton" - }, - "PySocks": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/PySocks" - }, - "charset-normalizer": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/charset-normalizer" - }, - "idna": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/idna" - }, - "chardet": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/chardet" - }, - "certifi": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/certifi" - }, - "urllib3": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/urllib3" + "credit": 0.00920205, + "url": "https://github.com/python/importlib_metadata" }, - "pytest-xdist": { - "credit": 0.020845275, - "url": "https://pypi.org/project/pytest-xdist" - }, - "hypothesis": { - "credit": 0.019497637499999998, - "url": "https://pypi.org/project/hypothesis" - }, - "numpy": { - "credit": 0.01815, - "url": "https://pypi.org/project/numpy" - }, - "pytz": { - "credit": 0.01815, - "url": "https://pypi.org/project/pytz" + "pytest-timeout": { + "credit": 6.806250000000041e-05, + "url": "https://github.com/pytest-dev/pytest-timeout" }, - "python-dateutil": { - "credit": 0.01815, - "url": "https://pypi.org/project/python-dateutil" + "pytest-cov": { + "credit": 0.04415895, + "url": "https://github.com/pytest-dev/pytest-cov" }, - "pytest-timeout": { - "credit": 0.00680625, - "url": "https://pypi.org/project/pytest-timeout" + "pytest": { + "credit": 0.0538918875, + "url": "https://pypi.org/project/pytest" }, "pyroma": { "credit": 0.00680625, "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.0081538875, + "credit": 0.00800415, "url": "https://pypi.org/project/packaging" }, "markdown2": { @@ -190,69 +126,157 @@ "credit": 0.00680625, "url": "https://pypi.org/project/sphinx-copybutton" }, + "sphinx": { + "credit": 0.03337785, + "url": "https://pypi.org/project/sphinx" + }, "olefile": { "credit": 0.00680625, "url": "https://pypi.org/project/olefile" }, - "virtualenv": { - "credit": 0.002695275, - "url": "https://pypi.org/project/virtualenv" + "twine": { + "credit": 0.0276197625, + "url": "https://pypi.org/project/twine" + }, + "Unidecode": { + "credit": 0.05445, + "url": "https://pypi.org/project/Unidecode" + }, + "pytest-xdist": { + "credit": 0.0029947499999999996, + "url": "https://pypi.org/project/pytest-xdist" + }, + "hypothesis": { + "credit": 0.0029947499999999996, + "url": "https://pypi.org/project/hypothesis" + }, + "numpy": { + "credit": 0.0029947499999999996, + "url": "https://pypi.org/project/numpy" + }, + "pytz": { + "credit": 0.0029947499999999996, + "url": "https://pypi.org/project/pytz" + }, + "python-dateutil": { + "credit": 0.0029947499999999996, + "url": "https://pypi.org/project/python-dateutil" + }, + "win-inet-pton": { + "credit": 0.002566928571428571, + "url": "https://pypi.org/project/win-inet-pton" }, - "six": { - "credit": 0.002695275, - "url": "https://pypi.org/project/six" + "PySocks": { + "credit": 0.002566928571428571, + "url": "https://pypi.org/project/PySocks" }, - "process-tests": { - "credit": 0.002695275, - "url": "https://pypi.org/project/process-tests" + "charset-normalizer": { + "credit": 0.002566928571428571, + "url": "https://pypi.org/project/charset-normalizer" }, - "hunter": { - "credit": 0.002695275, - "url": "https://pypi.org/project/hunter" + "idna": { + "credit": 0.002566928571428571, + "url": "https://pypi.org/project/idna" }, - "fields": { - "credit": 0.002695275, - "url": "https://pypi.org/project/fields" + "chardet": { + "credit": 0.002566928571428571, + "url": "https://pypi.org/project/chardet" }, - "xmlschema": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/xmlschema" + "certifi": { + "credit": 0.002566928571428571, + "url": "https://pypi.org/project/certifi" }, - "pygments": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/pygments" + "urllib3": { + "credit": 0.002566928571428571, + "url": "https://pypi.org/project/urllib3" }, - "nose": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/nose" + "slack-sdk": { + "credit": 0.0022460625, + "url": "https://pypi.org/project/slack-sdk" }, - "mock": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/mock" + "ipywidgets": { + "credit": 0.0022460625, + "url": "https://pypi.org/project/ipywidgets" }, - "atomicwrites": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/atomicwrites" + "py-make": { + "credit": 0.0022460625, + "url": "https://pypi.org/project/py-make" + }, + "importlib-resources": { + "credit": 0.0034439625, + "url": "https://pypi.org/project/importlib-resources" + }, + "colorama": { + "credit": 0.0022460625, + "url": "https://pypi.org/project/colorama" + }, + "pyflakes": { + "credit": 0.00539055, + "url": "https://pypi.org/project/pyflakes" + }, + "pycodestyle": { + "credit": 0.00539055, + "url": "https://pypi.org/project/pycodestyle" + }, + "mccabe": { + "credit": 0.00539055, + "url": "https://pypi.org/project/mccabe" }, "tomli": { - "credit": 0.0013476375, + "credit": 0.0215622, "url": "https://pypi.org/project/tomli" }, - "py": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/py" + "pytest-mypy": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pytest-mypy" + }, + "pytest-black": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pytest-black" + }, + "pytest-perf": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pytest-perf" + }, + "flufl.flake8": { + "credit": 0.0011979, + "url": "https://pypi.org/project/flufl.flake8" + }, + "pyfakefs": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pyfakefs" + }, + "pytest-enabler": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pytest-enabler" + }, + "pytest-flake8": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pytest-flake8" + }, + "pytest-checkdocs": { + "credit": 0.0011979, + "url": "https://pypi.org/project/pytest-checkdocs" + }, + "ipython": { + "credit": 0.0011979, + "url": "https://pypi.org/project/ipython" + }, + "rst.linker": { + "credit": 0.0011979, + "url": "https://pypi.org/project/rst.linker" }, - "pluggy": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/pluggy" + "jaraco.packaging": { + "credit": 0.0011979, + "url": "https://pypi.org/project/jaraco.packaging" }, - "iniconfig": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/iniconfig" + "typing-extensions": { + "credit": 0.0011979, + "url": "https://pypi.org/project/typing-extensions" }, - "attrs": { - "credit": 0.0013476375, - "url": "https://pypi.org/project/attrs" + "zipp": { + "credit": 0.0011979, + "url": "https://pypi.org/project/zipp" } } } \ No newline at end of file diff --git a/_repos/github/wilkelab/Opfi/badge.png b/_repos/github/wilkelab/Opfi/badge.png index d50041a8..d9c69c9d 100644 Binary files a/_repos/github/wilkelab/Opfi/badge.png and b/_repos/github/wilkelab/Opfi/badge.png differ diff --git a/_repos/github/wmglab-duke/ascent/badge.png b/_repos/github/wmglab-duke/ascent/badge.png index ad762ad8..3f580c4e 100644 Binary files a/_repos/github/wmglab-duke/ascent/badge.png and b/_repos/github/wmglab-duke/ascent/badge.png differ diff --git a/_repos/github/xenon-middleware/pyxenon/README.md b/_repos/github/xenon-middleware/pyxenon/README.md index 7b51a721..bc609eb4 100644 --- a/_repos/github/xenon-middleware/pyxenon/README.md +++ b/_repos/github/xenon-middleware/pyxenon/README.md @@ -8,85 +8,68 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pyxdg](http://freedesktop.org/wiki/Software/pyxdg)|0.247| -|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.102| -|pypi|[enum34](https://bitbucket.org/stoneleaf/enum34)|0.081| -|pypi|[futures](https://github.com/agronholm/pythonfutures)|0.081| -|pypi|[six](https://github.com/benjaminp/six)|0.081| -|pypi|[pretend](https://github.com/alex/pretend)|0.041| -|pypi|[flaky](https://github.com/box/flaky)|0.041| -|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.041| -|pypi|[cryptography](https://github.com/pyca/cryptography)|0.041| -|pypi|[grpcio](https://grpc.io)|0.024| -|pypi|[grpcio-tools](https://grpc.io)|0.023| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.021| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.219| +|pypi|[protobuf](https://developers.google.com/protocol-buffers/)|0.155| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.128| +|pypi|[pyxenon](https://github.com/NLeSC/pyxenon)|0.11| +|pypi|[pyxdg](http://freedesktop.org/wiki/Software/pyxdg)|0.11| +|pypi|[enum34](https://bitbucket.org/stoneleaf/enum34)|0.036| +|pypi|[futures](https://github.com/agronholm/pythonfutures)|0.036| +|pypi|[six](https://github.com/benjaminp/six)|0.036| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.019| +|pypi|[pretend](https://github.com/alex/pretend)|0.018| +|pypi|[flaky](https://github.com/box/flaky)|0.018| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.018| +|pypi|[grpcio](https://grpc.io)|0.01| +|pypi|[grpcio-tools](https://grpc.io)|0.01| |setup.py|github/xenon-middleware/pyxenon|0.01| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[mock](https://pypi.org/project/mock)|0.005| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.004| -|pypi|[colorama](https://pypi.org/project/colorama)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.004| -|pypi|[packaging](https://pypi.org/project/packaging)|0.004| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.003| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.003| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.003| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.003| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.003| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.003| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.003| -|pypi|[filelock](https://pypi.org/project/filelock)|0.003| -|pypi|[build](https://pypi.org/project/build)|0.003| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.003| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.003| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.003| -|pypi|[pip](https://pypi.org/project/pip)|0.003| -|pypi|[wheel](https://pypi.org/project/wheel)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.003| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.003| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.003| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.003| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.003| -|pypi|[furo](https://pypi.org/project/furo)|0.003| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.003| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.003| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.003| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.003| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.003| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.003| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.003| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.003| -|pypi|[pygments](https://pypi.org/project/pygments)|0.003| -|pypi|[nose](https://pypi.org/project/nose)|0.003| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.003| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.003| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.003| -|pypi|[py](https://pypi.org/project/py)|0.003| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.003| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[pyopenssl](https://pyopenssl.org/)|0.002| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.002| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.002| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.002| -|pypi|[mypy](https://pypi.org/project/mypy)|0.002| -|pypi|[isort](https://pypi.org/project/isort)|0.002| -|pypi|[flake8](https://pypi.org/project/flake8)|0.002| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.002| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.002| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.002| -|pypi|[babel](https://pypi.org/project/babel)|0.002| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.002| -|pypi|[docutils](https://pypi.org/project/docutils)|0.002| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.002| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.002| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.002| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.002| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.002| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.002| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.002| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.002| +|pypi|[setuptools](https://github.com/pypa/setuptools)|0.009| +|pypi|[tomli](https://pypi.org/project/tomli)|0.002| +|pypi|[mock](https://pypi.org/project/mock)|0.002| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.001| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.001| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.001| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| +|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.001| +|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.001| +|pypi|[pip-run](https://pypi.org/project/pip-run)|0.001| +|pypi|[filelock](https://pypi.org/project/filelock)|0.001| +|pypi|[build](https://pypi.org/project/build)|0.001| +|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.001| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.001| +|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.001| +|pypi|[pip](https://pypi.org/project/pip)|0.001| +|pypi|[wheel](https://pypi.org/project/wheel)|0.001| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.001| +|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.001| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.001| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| +|pypi|[furo](https://pypi.org/project/furo)|0.001| +|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.001| +|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.001| +|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.001| +|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.001| +|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.001| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| +|pypi|[requests](https://pypi.org/project/requests)|0.001| +|pypi|[pygments](https://pypi.org/project/pygments)|0.001| +|pypi|[nose](https://pypi.org/project/nose)|0.001| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.001| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| +|pypi|[colorama](https://pypi.org/project/colorama)|0.001| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| +|pypi|[py](https://pypi.org/project/py)|0.001| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| +|pypi|[packaging](https://pypi.org/project/packaging)|0.001| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| +|pypi|[attrs](https://pypi.org/project/attrs)|0.001| +|pypi|[pyopenssl](https://pyopenssl.org/)|0.001| +|pypi|[cffi](http://cffi.readthedocs.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/xenon-middleware/pyxenon/badge.png b/_repos/github/xenon-middleware/pyxenon/badge.png index 5343cfbf..b814c04d 100644 Binary files a/_repos/github/xenon-middleware/pyxenon/badge.png and b/_repos/github/xenon-middleware/pyxenon/badge.png differ diff --git a/_repos/github/xenon-middleware/pyxenon/data.json b/_repos/github/xenon-middleware/pyxenon/data.json index e930c0a3..dfcc6b1a 100644 --- a/_repos/github/xenon-middleware/pyxenon/data.json +++ b/_repos/github/xenon-middleware/pyxenon/data.json @@ -6,317 +6,249 @@ } }, "pypi": { + "pyxenon": { + "credit": 0.11, + "url": "https://github.com/NLeSC/pyxenon" + }, "grpcio": { - "credit": 0.023506312500000008, + "credit": 0.010447250000000005, "url": "https://grpc.io" }, "grpcio-tools": { - "credit": 0.023302125000000007, + "credit": 0.010356500000000005, "url": "https://grpc.io" }, + "pyopenssl": { + "credit": 0.0011000000000000038, + "url": "https://pyopenssl.org/" + }, "pyxdg": { - "credit": 0.2475, + "credit": 0.11, "url": "http://freedesktop.org/wiki/Software/pyxdg" }, - "pyopenssl": { - "credit": 0.002475000000000005, - "url": "https://pyopenssl.org/" + "cryptography": { + "credit": 0.12815, + "url": "https://github.com/pyca/cryptography" + }, + "protobuf": { + "credit": 0.15528424999999998, + "url": "https://developers.google.com/protocol-buffers/" + }, + "cffi": { + "credit": 0.0011000000000000038, + "url": "http://cffi.readthedocs.org" + }, + "pycparser": { + "credit": 0.21889999999999998, + "url": "https://github.com/eliben/pycparser" }, "enum34": { - "credit": 0.08147081249999999, + "credit": 0.03620925, "url": "https://bitbucket.org/stoneleaf/enum34" }, "futures": { - "credit": 0.08147081249999999, + "credit": 0.03620925, "url": "https://github.com/agronholm/pythonfutures" }, "six": { - "credit": 0.08147081249999999, + "credit": 0.03620925, "url": "https://github.com/benjaminp/six" }, "setuptools": { - "credit": 0.021031312500000003, + "credit": 0.009347250000000001, "url": "https://github.com/pypa/setuptools" }, - "protobuf": { - "credit": 0.1018895625, - "url": "https://developers.google.com/protocol-buffers/" - }, "pytest": { - "credit": 0.0046338706451612924, + "credit": 0.0013407580645161301, "url": "https://docs.pytest.org/en/latest/" }, "pretend": { - "credit": 0.0408375, + "credit": 0.01815, "url": "https://github.com/alex/pretend" }, "flaky": { - "credit": 0.0408375, + "credit": 0.01815, "url": "https://github.com/box/flaky" }, "sphinx-rtd-theme": { - "credit": 0.0408375, + "credit": 0.01815, "url": "https://github.com/readthedocs/sphinx_rtd_theme" }, "sphinx": { - "credit": 0.0030167056451612926, + "credit": 0.019309258064516128, "url": "https://www.sphinx-doc.org/" }, - "cryptography": { - "credit": 0.0408375, - "url": "https://github.com/pyca/cryptography" - }, "pytest-mypy": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pytest-mypy" }, "pytest-cov": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pytest-cov" }, "pytest-black": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pytest-black" }, "tomli": { - "credit": 0.00513515095766129, + "credit": 0.002282289314516129, "url": "https://pypi.org/project/tomli" }, "tomli-w": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/tomli-w" }, "ini2toml": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/ini2toml" }, "pip-run": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pip-run" }, "filelock": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/filelock" }, "build": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/build" }, "jaraco.path": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/jaraco.path" }, "pytest-xdist": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pytest-xdist" }, "jaraco.envs": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/jaraco.envs" }, "pip": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pip" }, "wheel": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/wheel" }, "virtualenv": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/virtualenv" }, "flake8-2020": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/flake8-2020" }, "mock": { - "credit": 0.00513515095766129, + "credit": 0.002282289314516129, "url": "https://pypi.org/project/mock" }, "pytest-perf": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pytest-perf" }, "pytest-enabler": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pytest-enabler" }, "pytest-flake8": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pytest-checkdocs" }, "furo": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/furo" }, "sphinxcontrib-towncrier": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/sphinxcontrib-towncrier" }, "sphinx-inline-tabs": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/sphinx-inline-tabs" }, "sphinx-favicon": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/sphinx-favicon" }, "pygments-github-lexers": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/pygments-github-lexers" }, "jaraco.tidelift": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/jaraco.tidelift" }, "rst.linker": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.00260833064516129, + "credit": 0.001159258064516129, "url": "https://pypi.org/project/jaraco.packaging" }, "xmlschema": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/xmlschema" }, "requests": { - "credit": 0.004143985312499999, + "credit": 0.00112303125, "url": "https://pypi.org/project/requests" }, "pygments": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/pygments" }, "nose": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/nose" }, "hypothesis": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/hypothesis" }, "argcomplete": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/argcomplete" }, "colorama": { - "credit": 0.004143985312499999, + "credit": 0.00112303125, "url": "https://pypi.org/project/colorama" }, "atomicwrites": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/atomicwrites" }, "importlib-metadata": { - "credit": 0.004143985312499999, + "credit": 0.00112303125, "url": "https://pypi.org/project/importlib-metadata" }, "py": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/py" }, "pluggy": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/pluggy" }, "packaging": { - "credit": 0.004143985312499999, + "credit": 0.00112303125, "url": "https://pypi.org/project/packaging" }, "iniconfig": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/iniconfig" }, "attrs": { - "credit": 0.0025268203124999998, + "credit": 0.00112303125, "url": "https://pypi.org/project/attrs" - }, - "types-requests": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/docutils-stubs" - }, - "mypy": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/mypy" - }, - "isort": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/isort" - }, - "flake8": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/flake8" - }, - "sphinxcontrib-websupport": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "imagesize": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/snowballstemmer" - }, - "docutils": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/docutils" - }, - "Pygments": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.0016171649999999998, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" } } } \ No newline at end of file diff --git a/_repos/github/yatiml/yatiml/README.md b/_repos/github/yatiml/yatiml/README.md index 3e743eef..300b793b 100644 --- a/_repos/github/yatiml/yatiml/README.md +++ b/_repos/github/yatiml/yatiml/README.md @@ -10,7 +10,9 @@ exclude_from_search: true |-------|----|------| |setup.py|github/yatiml/yatiml|0.01| |pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.005| -|pypi|[typing_extensions](https://typing.readthedocs.io/)|0.005| +|pypi|[yatiml](https://github.com/yatiml/yatiml)|0.003| +|pypi|[ruamel.yaml.clib](https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree)|0.003| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.002| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/yatiml/yatiml/badge.png b/_repos/github/yatiml/yatiml/badge.png index 81220eda..f211e058 100644 Binary files a/_repos/github/yatiml/yatiml/badge.png and b/_repos/github/yatiml/yatiml/badge.png differ diff --git a/_repos/github/yatiml/yatiml/data.json b/_repos/github/yatiml/yatiml/data.json index 8fd58ec9..1f3a31d8 100644 --- a/_repos/github/yatiml/yatiml/data.json +++ b/_repos/github/yatiml/yatiml/data.json @@ -6,12 +6,20 @@ } }, "pypi": { + "yatiml": { + "credit": 0.0033000000000000004, + "url": "https://github.com/yatiml/yatiml" + }, "ruamel.yaml": { - "credit": 0.00495, + "credit": 0.0049335, "url": "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree" }, - "typing_extensions": { - "credit": 0.00495, + "ruamel.yaml.clib": { + "credit": 0.0033000000000000004, + "url": "https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree" + }, + "typing-extensions": { + "credit": 0.0016335, "url": "https://typing.readthedocs.io/" } } diff --git a/_repos/github/ynop/audiomate/badge.png b/_repos/github/ynop/audiomate/badge.png index 0506ab06..b3143d20 100644 Binary files a/_repos/github/ynop/audiomate/badge.png and b/_repos/github/ynop/audiomate/badge.png differ diff --git a/_repos/github/zarr-developers/zarr-python/README.md b/_repos/github/zarr-developers/zarr-python/README.md index 59c4e607..049f7134 100644 --- a/_repos/github/zarr-developers/zarr-python/README.md +++ b/_repos/github/zarr-developers/zarr-python/README.md @@ -8,52 +8,14 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest](https://pypi.org/project/pytest)|0.121| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.116| -|pypi|[tomli](https://pypi.org/project/tomli)|0.115| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.104| -|pypi|[packaging](https://pypi.org/project/packaging)|0.099| -|pypi|[filelock](https://pypi.org/project/filelock)|0.02| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.018| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.017| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.016| -|pypi|[pip-run](https://github.com/jaraco/pip-run)|0.016| -|pypi|[build](https://pypi.org/project/build)|0.016| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.016| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.016| -|pypi|[pip](https://pypi.org/project/pip)|0.016| -|pypi|[wheel](https://pypi.org/project/wheel)|0.016| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.016| -|pypi|[mock](https://pypi.org/project/mock)|0.016| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.016| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.016| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.016| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.016| -|pypi|[furo](https://pypi.org/project/furo)|0.016| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.016| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.016| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.016| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.016| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.016| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.016| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.016| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.016| |setup.py|github/zarr-developers/zarr-python|0.01| -|pypi|[setuptools-scm](https://github.com/pypa/setuptools_scm/)|0.005| -|pypi|[mypy](https://pypi.org/project/mypy)|0.004| -|pypi|[attrs](https://pypi.org/project/attrs)|0.004| -|pypi|[six](https://pypi.org/project/six)|0.002| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.002| -|pypi|[hunter](https://pypi.org/project/hunter)|0.002| -|pypi|[fields](https://pypi.org/project/fields)|0.002| -|pypi|[coverage](https://pypi.org/project/coverage)|0.002| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.001| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.001| -|pypi|[validate-pyproject](https://pypi.org/project/validate-pyproject)|0.001| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.001| -|pypi|[pyproject-fmt](https://pypi.org/project/pyproject-fmt)|0.001| -|pypi|[tomlkit](https://pypi.org/project/tomlkit)|0.001| -|pypi|[configupdater](https://pypi.org/project/configupdater)|0.001| +|pypi|[asciitree](http://github.com/mbr/asciitree)|0.003| +|pypi|[fasteners](https://github.com/harlowja/fasteners)|0.003| +|pypi|[zarr](https://github.com/zarr-developers/zarr-python)|0.002| +|pypi|[numcodecs](https://github.com/zarr-developers/numcodecs)|0.002| +|pypi|[numpy](https://www.numpy.org)|0.002| +|pypi|[msgpack](https://msgpack.org/)|0.001| +|pypi|[typing-extensions](https://typing.readthedocs.io/)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/zarr-developers/zarr-python/badge.png b/_repos/github/zarr-developers/zarr-python/badge.png index aa7dcf96..19f628ed 100644 Binary files a/_repos/github/zarr-developers/zarr-python/badge.png and b/_repos/github/zarr-developers/zarr-python/badge.png differ diff --git a/_repos/github/zarr-developers/zarr-python/data.json b/_repos/github/zarr-developers/zarr-python/data.json index 3fa055ba..1926dd47 100644 --- a/_repos/github/zarr-developers/zarr-python/data.json +++ b/_repos/github/zarr-developers/zarr-python/data.json @@ -6,193 +6,33 @@ } }, "pypi": { - "setuptools": { - "credit": 0.10426416532258065, - "url": "https://github.com/pypa/setuptools" + "zarr": { + "credit": 0.002475, + "url": "https://github.com/zarr-developers/zarr-python" }, - "setuptools-scm": { - "credit": 0.00495000000000001, - "url": "https://github.com/pypa/setuptools_scm/" + "numcodecs": { + "credit": 0.002475, + "url": "https://github.com/zarr-developers/numcodecs" }, - "pytest-mypy": { - "credit": 0.0001580806451612904, - "url": "https://github.com/dbader/pytest-mypy" + "asciitree": { + "credit": 0.0032917500000000004, + "url": "http://github.com/mbr/asciitree" }, - "pytest-cov": { - "credit": 0.0014622459677419355, - "url": "https://github.com/pytest-dev/pytest-cov" + "fasteners": { + "credit": 0.0032917500000000004, + "url": "https://github.com/harlowja/fasteners" }, - "pytest-black": { - "credit": 0.015808064516129032, - "url": "https://github.com/shopkeep/pytest-black" + "numpy": { + "credit": 0.0016335, + "url": "https://www.numpy.org" }, - "tomli": { - "credit": 0.11512222983870966, - "url": "https://pypi.org/project/tomli" - }, - "tomli-w": { - "credit": 0.017112229838709678, - "url": "https://pypi.org/project/tomli-w" - }, - "ini2toml": { - "credit": 0.0001580806451612904, - "url": "https://github.com/abravalheri/ini2toml/" - }, - "pip-run": { - "credit": 0.015808064516129032, - "url": "https://github.com/jaraco/pip-run" - }, - "filelock": { - "credit": 0.01972056048387097, - "url": "https://pypi.org/project/filelock" - }, - "build": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/build" - }, - "jaraco.path": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/jaraco.path" - }, - "pytest-xdist": { - "credit": 0.0177643125, - "url": "https://pypi.org/project/pytest-xdist" - }, - "jaraco.envs": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/jaraco.envs" - }, - "pip": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/pip" - }, - "wheel": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/wheel" - }, - "virtualenv": { - "credit": 0.11577431249999999, - "url": "https://pypi.org/project/virtualenv" - }, - "flake8-2020": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/flake8-2020" - }, - "mock": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/mock" - }, - "pytest-perf": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/pytest-perf" - }, - "pytest-enabler": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-flake8": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "pytest": { - "credit": 0.12099097379032256, - "url": "https://pypi.org/project/pytest" - }, - "furo": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/furo" - }, - "sphinxcontrib-towncrier": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" - }, - "sphinx-inline-tabs": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/sphinx-inline-tabs" - }, - "sphinx-favicon": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/sphinx-favicon" - }, - "pygments-github-lexers": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/pygments-github-lexers" - }, - "jaraco.tidelift": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.015808064516129032, - "url": "https://pypi.org/project/sphinx" - }, - "packaging": { - "credit": 0.09931416532258064, - "url": "https://pypi.org/project/packaging" - }, - "mypy": { - "credit": 0.003912495967741935, - "url": "https://pypi.org/project/mypy" - }, - "attrs": { - "credit": 0.003912495967741935, - "url": "https://pypi.org/project/attrs" - }, - "six": { - "credit": 0.0019562479838709677, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.0019562479838709677, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.0019562479838709677, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.0019562479838709677, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.0019562479838709677, - "url": "https://pypi.org/project/coverage" + "msgpack": { + "credit": 0.00081675, + "url": "https://msgpack.org/" }, "typing-extensions": { - "credit": 0.001304165322580645, - "url": "https://pypi.org/project/typing-extensions" - }, - "validate-pyproject": { - "credit": 0.001304165322580645, - "url": "https://pypi.org/project/validate-pyproject" - }, - "importlib-metadata": { - "credit": 0.001304165322580645, - "url": "https://pypi.org/project/importlib-metadata" - }, - "pyproject-fmt": { - "credit": 0.001304165322580645, - "url": "https://pypi.org/project/pyproject-fmt" - }, - "tomlkit": { - "credit": 0.001304165322580645, - "url": "https://pypi.org/project/tomlkit" - }, - "configupdater": { - "credit": 0.001304165322580645, - "url": "https://pypi.org/project/configupdater" + "credit": 0.00081675, + "url": "https://typing.readthedocs.io/" } } } \ No newline at end of file diff --git a/_repos/github/zdelrosario/py_grama/README.md b/_repos/github/zdelrosario/py_grama/README.md index d3ab2ede..ca54c5d3 100644 --- a/_repos/github/zdelrosario/py_grama/README.md +++ b/_repos/github/zdelrosario/py_grama/README.md @@ -8,69 +8,67 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.341| -|pypi|[matplotlib](https://matplotlib.org)|0.162| -|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.141| -|pypi|[pytz](http://pythonhosted.org/pytz)|0.025| -|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.025| -|pypi|[pandas](https://pandas.pydata.org)|0.023| -|pypi|[scipy](https://www.scipy.org)|0.022| -|pypi|[scikit-learn](http://scikit-learn.org)|0.014| -|pypi|[descartes](https://pypi.org/project/descartes)|0.014| -|pypi|[statsmodels](https://pypi.org/project/statsmodels)|0.014| -|pypi|[patsy](https://pypi.org/project/patsy)|0.014| -|pypi|[mizani](https://pypi.org/project/mizani)|0.014| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.012| +|pypi|[matplotlib](https://matplotlib.org)|0.164| +|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.078| +|pypi|[statsmodels](https://www.statsmodels.org/)|0.078| +|pypi|[py-grama](https://github.com/zdelrosario/py_grama)|0.071| +|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.071| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.071| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.07| +|pypi|[numpy](https://pypi.org/project/numpy)|0.039| +|pypi|[scipy](https://pypi.org/project/scipy)|0.037| +|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.029| +|pypi|[pytest](https://pypi.org/project/pytest)|0.022| +|pypi|[pandas](https://pypi.org/project/pandas)|0.018| +|pypi|[sphinx](https://pypi.org/project/sphinx)|0.015| +|pypi|[six](https://pypi.org/project/six)|0.014| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.011| |setup.py|github/zdelrosario/py_grama|0.01| -|pypi|[black](https://pypi.org/project/black)|0.008| -|pypi|[codecov](https://pypi.org/project/codecov)|0.007| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.007| -|pypi|[pydot](https://pypi.org/project/pydot)|0.007| -|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.007| -|pypi|[lxml](https://pypi.org/project/lxml)|0.007| -|pypi|[texext](https://pypi.org/project/texext)|0.007| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.007| -|pypi|[pillow](https://pypi.org/project/pillow)|0.007| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.007| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.007| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.007| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.007| -|pypi|[mypy](https://pypi.org/project/mypy)|0.007| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.007| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.007| -|pypi|[filelock](https://pypi.org/project/filelock)|0.004| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.004| -|pypi|[psutil](https://pypi.org/project/psutil)|0.004| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.004| -|pypi|[execnet](https://pypi.org/project/execnet)|0.004| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.002| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.001| -|pypi|[requests](https://pypi.org/project/requests)|0.001| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001| -|pypi|[nose](https://pypi.org/project/nose)|0.001| -|pypi|[mock](https://pypi.org/project/mock)|0.001| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.001| -|pypi|[colorama](https://pypi.org/project/colorama)|0.001| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.001| -|pypi|[tomli](https://pypi.org/project/tomli)|0.001| -|pypi|[py](https://pypi.org/project/py)|0.001| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.001| -|pypi|[packaging](https://pypi.org/project/packaging)|0.001| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001| +|pypi|[lxml](https://pypi.org/project/lxml)|0.009| +|pypi|[flake8](https://pypi.org/project/flake8)|0.008| +|pypi|[descartes](http://bitbucket.org/sgillies/descartes/)|0.008| +|pypi|[mizani](https://github.com/has2k1/mizani)|0.008| +|pypi|[patsy](https://github.com/pydata/patsy)|0.008| +|pypi|[scikit-learn](http://scikit-learn.org)|0.007| +|pypi|[xattr](https://pypi.org/project/xattr)|0.005| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.005| +|pypi|[munkres](https://pypi.org/project/munkres)|0.005| +|pypi|[brotli](https://pypi.org/project/brotli)|0.005| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.005| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| +|pypi|[lz4](https://pypi.org/project/lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[packaging](https://pypi.org/project/packaging)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.004| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[pillow](https://python-pillow.org)|0.004| +|pypi|[codecov](https://pypi.org/project/codecov)|0.003| +|pypi|[pydot](https://pypi.org/project/pydot)|0.003| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.003| +|pypi|[texext](https://pypi.org/project/texext)|0.003| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.003| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.003| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.003| +|pypi|[mypy](https://pypi.org/project/mypy)|0.003| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.003| +|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.003| +|pypi|[black](https://pypi.org/project/black)|0.003| |pypi|[plotnine](https://github.com/has2k1/plotnine)|0.001| |pypi|[networkx](https://networkx.org/)|0.001| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.001| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.001| -|pypi|[rich](https://pypi.org/project/rich)|0.001| -|pypi|[redis](https://pypi.org/project/redis)|0.001| -|pypi|[libcst](https://pypi.org/project/libcst)|0.001| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.001| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.001| -|pypi|[django](https://pypi.org/project/django)|0.001| -|pypi|[click](https://pypi.org/project/click)|0.001| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/github/zdelrosario/py_grama/badge.png b/_repos/github/zdelrosario/py_grama/badge.png index 6d54b8e0..ce1776f8 100644 Binary files a/_repos/github/zdelrosario/py_grama/badge.png and b/_repos/github/zdelrosario/py_grama/badge.png differ diff --git a/_repos/github/zdelrosario/py_grama/data.json b/_repos/github/zdelrosario/py_grama/data.json index ff52893e..9eff5be9 100644 --- a/_repos/github/zdelrosario/py_grama/data.json +++ b/_repos/github/zdelrosario/py_grama/data.json @@ -6,261 +6,249 @@ } }, "pypi": { - "matplotlib": { - "credit": 0.16209734693877553, - "url": "https://matplotlib.org" - }, - "numpy": { - "credit": 0.3405922255102041, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.023366525510204097, - "url": "https://pandas.pydata.org" + "py-grama": { + "credit": 0.07071428571428572, + "url": "https://github.com/zdelrosario/py_grama" }, "plotnine": { - "credit": 0.001414285714285729, + "credit": 0.0007071428571428645, "url": "https://github.com/has2k1/plotnine" }, - "scipy": { - "credit": 0.02208306122448981, - "url": "https://www.scipy.org" + "matplotlib": { + "credit": 0.16421955259026688, + "url": "https://matplotlib.org" + }, + "networkx": { + "credit": 0.0007071428571428645, + "url": "https://networkx.org/" }, "toolz": { - "credit": 0.14142857142857143, + "credit": 0.07071428571428572, "url": "https://github.com/pytoolz/toolz/" }, - "networkx": { - "credit": 0.001414285714285729, - "url": "https://networkx.org/" + "cycler": { + "credit": 0.07071428571428572, + "url": "https://github.com/matplotlib/cycler" + }, + "descartes": { + "credit": 0.00770785714285715, + "url": "http://bitbucket.org/sgillies/descartes/" }, - "pytest-xdist": { - "credit": 0.0002333571428571428, - "url": "https://github.com/pytest-dev/pytest-xdist" + "fonttools": { + "credit": 0.0007071428571428645, + "url": "http://github.com/fonttools/fonttools" }, - "pytest": { - "credit": 0.012034561224489794, - "url": "https://docs.pytest.org/en/latest/" + "kiwisolver": { + "credit": 0.0007071428571428645, + "url": "https://github.com/nucleic/kiwi" }, - "hypothesis": { - "credit": 0.001677254464285714, - "url": "https://hypothesis.works" + "mizani": { + "credit": 0.00770785714285715, + "url": "https://github.com/has2k1/mizani" }, - "pytz": { - "credit": 0.02461917857142857, - "url": "http://pythonhosted.org/pytz" + "patsy": { + "credit": 0.00770785714285715, + "url": "https://github.com/pydata/patsy" + }, + "pillow": { + "credit": 0.004040816326530619, + "url": "https://python-pillow.org" + }, + "statsmodels": { + "credit": 0.077715, + "url": "https://www.statsmodels.org/" }, - "python-dateutil": { - "credit": 0.02461917857142857, - "url": "https://github.com/dateutil/dateutil" + "palettable": { + "credit": 0.07849285714285714, + "url": "https://jiffyclub.github.io/palettable/" }, "scikit-misc": { - "credit": 0.00014001428571428637, + "credit": 7.000714285714318e-05, "url": "https://github.com/has2k1/scikit-misc" }, "scikit-learn": { - "credit": 0.014001428571428571, + "credit": 0.0070007142857142855, "url": "http://scikit-learn.org" }, - "descartes": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/descartes" - }, - "statsmodels": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/statsmodels" + "pandas": { + "credit": 0.01811295918367347, + "url": "https://pypi.org/project/pandas" }, - "patsy": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/patsy" + "scipy": { + "credit": 0.03749955259026687, + "url": "https://pypi.org/project/scipy" }, - "mizani": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/mizani" + "numpy": { + "credit": 0.03904509489795919, + "url": "https://pypi.org/project/numpy" }, "codecov": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/codecov" }, "pytest-cov": { - "credit": 0.00666734693877551, + "credit": 0.02948911989795918, "url": "https://pypi.org/project/pytest-cov" }, + "pytest": { + "credit": 0.021710548469387754, + "url": "https://pypi.org/project/pytest" + }, "pydot": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/pydot" }, "pygraphviz": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/pygraphviz" }, "lxml": { - "credit": 0.00666734693877551, + "credit": 0.00871883830455259, "url": "https://pypi.org/project/lxml" }, "texext": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/texext" }, "nb2plots": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/nb2plots" }, - "pillow": { - "credit": 0.00666734693877551, - "url": "https://pypi.org/project/pillow" - }, "numpydoc": { - "credit": 0.00666734693877551, + "credit": 0.011112244897959183, "url": "https://pypi.org/project/numpydoc" }, "sphinx-gallery": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/sphinx-gallery" }, "pydata-sphinx-theme": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/pydata-sphinx-theme" }, "sphinx": { - "credit": 0.00666734693877551, + "credit": 0.015487691326530611, "url": "https://pypi.org/project/sphinx" }, "mypy": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/mypy" }, "pre-commit": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/pre-commit" }, "pyupgrade": { - "credit": 0.00666734693877551, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/pyupgrade" }, "black": { - "credit": 0.007950811224489795, + "credit": 0.003333673469387755, "url": "https://pypi.org/project/black" }, - "filelock": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/filelock" + "xattr": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/xattr" }, - "setproctitle": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/setproctitle" + "unicodedata2": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/unicodedata2" }, - "psutil": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/psutil" + "munkres": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/munkres" }, - "pytest-forked": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/pytest-forked" + "brotli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotli" }, - "execnet": { - "credit": 0.0038503928571428565, - "url": "https://pypi.org/project/execnet" + "brotlicffi": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotlicffi" }, - "xmlschema": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/xmlschema" + "skia-pathops": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/skia-pathops" }, - "requests": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/requests" + "sympy": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/sympy" }, - "pygments": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pygments" + "lz4": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/lz4" }, - "nose": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/nose" + "zopfli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/zopfli" }, - "mock": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/mock" + "fs": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/fs" }, - "argcomplete": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/argcomplete" + "typing-extensions": { + "credit": 0.07000714285714285, + "url": "https://pypi.org/project/typing-extensions" }, - "colorama": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/colorama" + "flake8": { + "credit": 0.007778571428571428, + "url": "https://pypi.org/project/flake8" }, - "atomicwrites": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/atomicwrites" - }, - "importlib-metadata": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/importlib-metadata" - }, - "tomli": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/tomli" + "six": { + "credit": 0.014001428571428571, + "url": "https://pypi.org/project/six" }, - "py": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/py" + "pytest-timeout": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pytest-timeout" }, - "pluggy": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/pluggy" + "pyroma": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pyroma" }, "packaging": { - "credit": 0.0014438973214285712, + "credit": 0.004375446428571428, "url": "https://pypi.org/project/packaging" }, - "iniconfig": { - "credit": 0.0014438973214285712, - "url": "https://pypi.org/project/iniconfig" - }, - "attrs": { - "credit": 0.002727361607142857, - "url": "https://pypi.org/project/attrs" - }, - "tzdata": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/tzdata" + "markdown2": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/markdown2" }, - "backports.zoneinfo": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/backports.zoneinfo" + "defusedxml": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/defusedxml" }, - "rich": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/rich" + "coverage": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/coverage" }, - "redis": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/redis" + "check-manifest": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/check-manifest" }, - "libcst": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/libcst" + "sphinxext-opengraph": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "lark-parser": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/lark-parser" + "sphinx-rtd-theme": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "dpcontracts": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/dpcontracts" + "sphinx-removed-in": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "django": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/django" + "sphinx-issues": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-issues" }, - "click": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/click" + "sphinx-copybutton": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "sortedcontainers": { - "credit": 0.0012834642857142856, - "url": "https://pypi.org/project/sortedcontainers" + "olefile": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/github/zhoux85/scAdapt/badge.png b/_repos/github/zhoux85/scAdapt/badge.png index f2f95baf..9ca9078f 100644 Binary files a/_repos/github/zhoux85/scAdapt/badge.png and b/_repos/github/zhoux85/scAdapt/badge.png differ diff --git a/_repos/gitlab/BioimageInformaticsGroup/openphi/README.md b/_repos/gitlab/BioimageInformaticsGroup/openphi/README.md index 6e28a04b..98436dce 100644 --- a/_repos/gitlab/BioimageInformaticsGroup/openphi/README.md +++ b/_repos/gitlab/BioimageInformaticsGroup/openphi/README.md @@ -8,7 +8,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.495| +|pypi|[openphi](https://gitlab.com/BioimageInformaticsGroup/openphi)|0.495| |pypi|[sphinx](https://www.sphinx-doc.org/)|0.042| |pypi|[tomli](https://pypi.org/project/tomli)|0.04| |pypi|[markdown2](https://github.com/trentm/python-markdown2)|0.031| diff --git a/_repos/gitlab/BioimageInformaticsGroup/openphi/badge.png b/_repos/gitlab/BioimageInformaticsGroup/openphi/badge.png index 24fb4e62..90a347c2 100644 Binary files a/_repos/gitlab/BioimageInformaticsGroup/openphi/badge.png and b/_repos/gitlab/BioimageInformaticsGroup/openphi/badge.png differ diff --git a/_repos/gitlab/BioimageInformaticsGroup/openphi/data.json b/_repos/gitlab/BioimageInformaticsGroup/openphi/data.json index e063f6e8..55cf3ad1 100644 --- a/_repos/gitlab/BioimageInformaticsGroup/openphi/data.json +++ b/_repos/gitlab/BioimageInformaticsGroup/openphi/data.json @@ -6,9 +6,9 @@ } }, "pypi": { - "numpy": { + "openphi": { "credit": 0.495, - "url": "https://www.numpy.org" + "url": "https://gitlab.com/BioimageInformaticsGroup/openphi" }, "pillow": { "credit": 0.00495000000000001, diff --git a/_repos/gitlab/LouisLab/PiVR/badge.png b/_repos/gitlab/LouisLab/PiVR/badge.png index fe0cffed..c0845b91 100644 Binary files a/_repos/gitlab/LouisLab/PiVR/badge.png and b/_repos/gitlab/LouisLab/PiVR/badge.png differ diff --git a/_repos/gitlab/Molcas/OpenMolcas/README.md b/_repos/gitlab/Molcas/OpenMolcas/README.md index d43c674a..92c27b77 100644 --- a/_repos/gitlab/Molcas/OpenMolcas/README.md +++ b/_repos/gitlab/Molcas/OpenMolcas/README.md @@ -8,103 +8,7 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[colorama](https://github.com/tartley/colorama)|0.249| -|pypi|[tomli](https://pypi.org/project/tomli)|0.046| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.038| -|pypi|[sphinx-notfound-page](https://github.com/readthedocs/sphinx-notfound-page)|0.038| -|pypi|[six](https://github.com/benjaminp/six)|0.038| -|pypi|[pympler](https://github.com/pympler/pympler)|0.038| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.027| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.02| -|pypi|[packaging](https://pypi.org/project/packaging)|0.017| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.015| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.015| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.015| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.015| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.015| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.015| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.015| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.015| -|pypi|[zipp](https://pypi.org/project/zipp)|0.015| -|pypi|[pytest-perf](https://github.com/jaraco/pytest-perf)|0.013| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.013| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.013| -|pypi|[ipython](https://pypi.org/project/ipython)|0.013| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.013| -|pypi|[attrs](https://www.attrs.org/)|0.013| -|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|0.012| -|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|0.012| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.012| -|pypi|[mypy](http://www.mypy-lang.org/)|0.011| |setup.py|gitlab/Molcas/OpenMolcas|0.01| -|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.01| -|pypi|[click](https://palletsprojects.com/p/click/)|0.007| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.007| -|pypi|[zope.testing](https://pypi.org/project/zope.testing)|0.006| -|pypi|[zope.event](https://pypi.org/project/zope.event)|0.006| -|pypi|[repoze.sphinx.autointerface](https://pypi.org/project/repoze.sphinx.autointerface)|0.006| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.006| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.006| -|pypi|[lxml](https://pypi.org/project/lxml)|0.006| -|pypi|[psutil](https://pypi.org/project/psutil)|0.006| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.006| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.006| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.005| -|pypi|[regex](https://pypi.org/project/regex)|0.005| -|pypi|[chevron](https://pypi.org/project/chevron)|0.005| -|pypi|[decorator](https://pypi.org/project/decorator)|0.005| -|pypi|[importlib-resources](https://github.com/python/importlib_resources)|0.005| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.005| -|pypi|[toml](https://pypi.org/project/toml)|0.005| -|pypi|[nodeenv](https://pypi.org/project/nodeenv)|0.005| -|pypi|[identify](https://pypi.org/project/identify)|0.005| -|pypi|[cfgv](https://pypi.org/project/cfgv)|0.005| -|pypi|[requests](https://pypi.org/project/requests)|0.004| -|pypi|[filelock](https://pypi.org/project/filelock)|0.003| -|pypi|[hypothesis](https://hypothesis.works)|0.003| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.002| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002| -|pypi|[nose](https://pypi.org/project/nose)|0.002| -|pypi|[mock](https://pypi.org/project/mock)|0.002| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.002| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.002| -|pypi|[py](https://pypi.org/project/py)|0.002| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.002| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.002| -|pypi|[tzdata](https://pypi.org/project/tzdata)|0.002| -|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.002| -|pypi|[rich](https://pypi.org/project/rich)|0.002| -|pypi|[redis](https://pypi.org/project/redis)|0.002| -|pypi|[pytz](https://pypi.org/project/pytz)|0.002| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.002| -|pypi|[pandas](https://pypi.org/project/pandas)|0.002| -|pypi|[numpy](https://pypi.org/project/numpy)|0.002| -|pypi|[libcst](https://pypi.org/project/libcst)|0.002| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.002| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.002| -|pypi|[django](https://pypi.org/project/django)|0.002| -|pypi|[black](https://pypi.org/project/black)|0.002| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.002| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.001| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.001| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.001| -|pypi|[isort](https://pypi.org/project/isort)|0.001| -|pypi|[flake8](https://pypi.org/project/flake8)|0.001| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.001| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.001| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.001| -|pypi|[babel](https://pypi.org/project/babel)|0.001| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.001| -|pypi|[docutils](https://pypi.org/project/docutils)|0.001| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.001| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.001| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.001| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.001| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.001| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.001| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.001| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.001| -|pypi|[pytest-mypy](https://github.com/dbader/pytest-mypy)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/gitlab/Molcas/OpenMolcas/badge.png b/_repos/gitlab/Molcas/OpenMolcas/badge.png index f45aedcb..7dd22d3c 100644 Binary files a/_repos/gitlab/Molcas/OpenMolcas/badge.png and b/_repos/gitlab/Molcas/OpenMolcas/badge.png differ diff --git a/_repos/gitlab/Molcas/OpenMolcas/data.json b/_repos/gitlab/Molcas/OpenMolcas/data.json index 36a93208..bcc9f233 100644 --- a/_repos/gitlab/Molcas/OpenMolcas/data.json +++ b/_repos/gitlab/Molcas/OpenMolcas/data.json @@ -4,407 +4,5 @@ "credit": 0.01, "url": null } - }, - "pypi": { - "click": { - "credit": 0.007023288461538471, - "url": "https://palletsprojects.com/p/click/" - }, - "attrs": { - "credit": 0.012691140793269239, - "url": "https://www.attrs.org/" - }, - "importlib-metadata": { - "credit": 0.013013654711538475, - "url": "https://github.com/python/importlib_metadata" - }, - "colorama": { - "credit": 0.24885021721153844, - "url": "https://github.com/tartley/colorama" - }, - "cloudpickle": { - "credit": 0.037696153846153845, - "url": "https://github.com/cloudpipe/cloudpickle" - }, - "pre-commit": { - "credit": 0.0003769615384615413, - "url": "https://github.com/pre-commit/pre-commit" - }, - "sphinx-notfound-page": { - "credit": 0.037696153846153845, - "url": "https://github.com/readthedocs/sphinx-notfound-page" - }, - "sphinx": { - "credit": 0.01506621028846154, - "url": "https://www.sphinx-doc.org/" - }, - "furo": { - "credit": 0.0003769615384615413, - "url": "https://pradyunsg.me/furo/quickstart" - }, - "zope.interface": { - "credit": 0.0003769615384615413, - "url": "https://github.com/zopefoundation/zope.interface" - }, - "pytest-mypy-plugins": { - "credit": 0.0003769615384615413, - "url": "https://github.com/TypedDjango/pytest-mypy-plugins" - }, - "mypy": { - "credit": 0.010536445230082419, - "url": "http://www.mypy-lang.org/" - }, - "six": { - "credit": 0.037696153846153845, - "url": "https://github.com/benjaminp/six" - }, - "pytest": { - "credit": 0.02729898244162088, - "url": "https://docs.pytest.org/en/latest/" - }, - "pympler": { - "credit": 0.037696153846153845, - "url": "https://github.com/pympler/pympler" - }, - "hypothesis": { - "credit": 0.0027094110576923102, - "url": "https://hypothesis.works" - }, - "coverage": { - "credit": 0.006596826923076925, - "url": "https://github.com/nedbat/coveragepy" - }, - "importlib-resources": { - "credit": 0.004799662788461539, - "url": "https://github.com/python/importlib_resources" - }, - "pytest-mypy": { - "credit": 0.0013476375000000007, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-black": { - "credit": 0.014689248749999998, - "url": "https://github.com/shopkeep/pytest-black" - }, - "pytest-perf": { - "credit": 0.013476374999999999, - "url": "https://github.com/jaraco/pytest-perf" - }, - "flufl.flake8": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/flufl.flake8" - }, - "pyfakefs": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/pyfakefs" - }, - "packaging": { - "credit": 0.01730159221153846, - "url": "https://pypi.org/project/packaging" - }, - "pytest-enabler": { - "credit": 0.014689248749999998, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-cov": { - "credit": 0.014689248749999998, - "url": "https://pypi.org/project/pytest-cov" - }, - "pytest-flake8": { - "credit": 0.014689248749999998, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.014689248749999998, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "ipython": { - "credit": 0.013476374999999999, - "url": "https://pypi.org/project/ipython" - }, - "rst.linker": { - "credit": 0.014689248749999998, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.014689248749999998, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "typing-extensions": { - "credit": 0.01969624038461538, - "url": "https://pypi.org/project/typing-extensions" - }, - "zipp": { - "credit": 0.014689248749999998, - "url": "https://pypi.org/project/zipp" - }, - "virtualenv": { - "credit": 0.004664899038461538, - "url": "https://pypi.org/project/virtualenv" - }, - "toml": { - "credit": 0.004664899038461538, - "url": "https://pypi.org/project/toml" - }, - "pyyaml": { - "credit": 0.009996212225274723, - "url": "https://pypi.org/project/pyyaml" - }, - "nodeenv": { - "credit": 0.004664899038461538, - "url": "https://pypi.org/project/nodeenv" - }, - "identify": { - "credit": 0.004664899038461538, - "url": "https://pypi.org/project/identify" - }, - "cfgv": { - "credit": 0.004664899038461538, - "url": "https://pypi.org/project/cfgv" - }, - "types-requests": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/types-requests" - }, - "types-typed-ast": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/types-typed-ast" - }, - "docutils-stubs": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/docutils-stubs" - }, - "isort": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/isort" - }, - "flake8": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/flake8" - }, - "sphinxcontrib-websupport": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/sphinxcontrib-websupport" - }, - "requests": { - "credit": 0.003825217211538461, - "url": "https://pypi.org/project/requests" - }, - "imagesize": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/snowballstemmer" - }, - "docutils": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/docutils" - }, - "Pygments": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/Pygments" - }, - "Jinja2": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/Jinja2" - }, - "sphinxcontrib-qthelp": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.0014927676923076922, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "pygments~=2.7": { - "credit": 0.012439730769230767, - "url": "https://pypi.org/project/pygments~=2.7" - }, - "sphinx~=4.0": { - "credit": 0.012439730769230767, - "url": "https://pypi.org/project/sphinx~=4.0" - }, - "beautifulsoup4": { - "credit": 0.012439730769230767, - "url": "https://pypi.org/project/beautifulsoup4" - }, - "zope.testing": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/zope.testing" - }, - "zope.event": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/zope.event" - }, - "repoze.sphinx.autointerface": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/repoze.sphinx.autointerface" - }, - "Sphinx": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/Sphinx" - }, - "setuptools": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/setuptools" - }, - "dataclasses": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/dataclasses" - }, - "regex": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/regex" - }, - "chevron": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/chevron" - }, - "decorator": { - "credit": 0.005331313186813186, - "url": "https://pypi.org/project/decorator" - }, - "lxml": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/lxml" - }, - "psutil": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/psutil" - }, - "typed-ast": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/typed-ast" - }, - "tomli": { - "credit": 0.04587150721153846, - "url": "https://pypi.org/project/tomli" - }, - "mypy-extensions": { - "credit": 0.006219865384615384, - "url": "https://pypi.org/project/mypy-extensions" - }, - "xmlschema": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/xmlschema" - }, - "pygments": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/pygments" - }, - "nose": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/nose" - }, - "mock": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/mock" - }, - "argcomplete": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/argcomplete" - }, - "atomicwrites": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/atomicwrites" - }, - "py": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/py" - }, - "pluggy": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/pluggy" - }, - "iniconfig": { - "credit": 0.002332449519230769, - "url": "https://pypi.org/project/iniconfig" - }, - "tzdata": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/tzdata" - }, - "backports.zoneinfo": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/backports.zoneinfo" - }, - "rich": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/rich" - }, - "redis": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/redis" - }, - "pytz": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/pytz" - }, - "python-dateutil": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/python-dateutil" - }, - "pandas": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/pandas" - }, - "numpy": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/numpy" - }, - "libcst": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/libcst" - }, - "lark-parser": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/lark-parser" - }, - "dpcontracts": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/dpcontracts" - }, - "django": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/django" - }, - "black": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/black" - }, - "sortedcontainers": { - "credit": 0.0020732884615384615, - "url": "https://pypi.org/project/sortedcontainers" - }, - "filelock": { - "credit": 0.0033354028124999995, - "url": "https://pypi.org/project/filelock" - } } } \ No newline at end of file diff --git a/_repos/gitlab/cracklet/cracklet/badge.png b/_repos/gitlab/cracklet/cracklet/badge.png index e086216d..5d3d8a54 100644 Binary files a/_repos/gitlab/cracklet/cracklet/badge.png and b/_repos/gitlab/cracklet/cracklet/badge.png differ diff --git a/_repos/gitlab/fduchate/predihood/README.md b/_repos/gitlab/fduchate/predihood/README.md index 93dc283e..17949ce1 100644 --- a/_repos/gitlab/fduchate/predihood/README.md +++ b/_repos/gitlab/fduchate/predihood/README.md @@ -8,78 +8,70 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.146| -|pypi|[matplotlib](https://matplotlib.org)|0.128| -|pypi|[area](https://github.com/scisco/area)|0.099| -|pypi|[StringDist](https://github.com/obulkin/string-dist)|0.099| -|pypi|[scipy](https://pypi.org/project/scipy)|0.031| -|pypi|[pandas](https://pandas.pydata.org)|0.03| -|pypi|[pytest](https://pypi.org/project/pytest)|0.026| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.019| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.016| -|pypi|[pytz](https://pypi.org/project/pytz)|0.016| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.016| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.014| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.014| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.014| -|pypi|[idna](https://pypi.org/project/idna)|0.014| -|pypi|[chardet](https://pypi.org/project/chardet)|0.014| -|pypi|[certifi](https://pypi.org/project/certifi)|0.014| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.014| -|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.014| -|pypi|[asgiref](https://pypi.org/project/asgiref)|0.014| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.014| -|pypi|[click](https://pypi.org/project/click)|0.014| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.014| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.014| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.014| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.106| +|pypi|[matplotlib](https://matplotlib.org)|0.094| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.081| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.076| +|pypi|[area](https://github.com/scisco/area)|0.071| +|pypi|[StringDist](https://github.com/obulkin/string-dist)|0.071| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.071| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.07| +|pypi|[Babel](https://pypi.org/project/Babel)|0.035| +|pypi|[scipy](https://pypi.org/project/scipy)|0.023| +|pypi|[click](https://pypi.org/project/click)|0.02| +|pypi|[pandas](https://pypi.org/project/pandas)|0.018| +|pypi|[numpy](https://pypi.org/project/numpy)|0.018| +|pypi|[pytest](https://pypi.org/project/pytest)|0.011| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.011| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.011| +|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.011| |setup.py|gitlab/fduchate/predihood|0.01| +|pypi|[packaging](https://pypi.org/project/packaging)|0.008| |pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008| |pypi|[sphinx](https://pypi.org/project/sphinx)|0.008| -|pypi|[seaborn](https://seaborn.pydata.org)|0.006| -|pypi|[mypy](http://www.mypy-lang.org/)|0.005| -|pypi|[black](https://pypi.org/project/black)|0.005| -|pypi|[flake8](https://pypi.org/project/flake8)|0.005| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.005| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.005| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.005| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.005| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.005| -|pypi|[scikit-image](https://pypi.org/project/scikit-image)|0.005| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.005| -|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.005| -|pypi|[joblib](https://pypi.org/project/joblib)|0.005| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.003| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.003| -|pypi|[tomli](https://pypi.org/project/tomli)|0.003| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.003| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.003| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.003| -|pypi|[filelock](https://pypi.org/project/filelock)|0.003| -|pypi|[build](https://pypi.org/project/build)|0.003| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.003| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.003| -|pypi|[pip](https://pypi.org/project/pip)|0.003| -|pypi|[wheel](https://pypi.org/project/wheel)|0.003| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.003| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.003| -|pypi|[mock](https://pypi.org/project/mock)|0.003| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.003| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.003| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.003| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.003| -|pypi|[furo](https://pypi.org/project/furo)|0.003| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.003| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.003| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.003| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.003| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.003| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.003| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.003| -|pypi|[requests](https://requests.readthedocs.io)|0.001| +|pypi|[xattr](https://pypi.org/project/xattr)|0.005| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.005| +|pypi|[munkres](https://pypi.org/project/munkres)|0.005| +|pypi|[brotli](https://pypi.org/project/brotli)|0.005| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.005| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.005| +|pypi|[sympy](https://pypi.org/project/sympy)|0.005| +|pypi|[lz4](https://pypi.org/project/lz4)|0.005| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.005| +|pypi|[lxml](https://pypi.org/project/lxml)|0.005| +|pypi|[fs](https://pypi.org/project/fs)|0.005| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.004| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.004| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.004| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.004| +|pypi|[coverage](https://pypi.org/project/coverage)|0.004| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.004| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.004| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.004| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.004| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.004| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.004| +|pypi|[olefile](https://pypi.org/project/olefile)|0.004| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.004| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.004| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.004| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.004| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.004| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.004| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.004| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.004| +|pypi|[ipython](https://pypi.org/project/ipython)|0.004| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.004| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.004| +|pypi|[zipp](https://pypi.org/project/zipp)|0.004| +|pypi|[mypy](https://pypi.org/project/mypy)|0.002| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.002| |pypi|[Flask](https://palletsprojects.com/p/flask)|0.001| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.001| -|pypi|[scikit-learn](http://scikit-learn.org)|0.001| +|pypi|[seaborn](https://seaborn.pydata.org)|0.001| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.001| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.001| +|pypi|[pillow](https://python-pillow.org)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/gitlab/fduchate/predihood/badge.png b/_repos/gitlab/fduchate/predihood/badge.png index fdd19372..36be1d0b 100644 Binary files a/_repos/gitlab/fduchate/predihood/badge.png and b/_repos/gitlab/fduchate/predihood/badge.png differ diff --git a/_repos/gitlab/fduchate/predihood/data.json b/_repos/gitlab/fduchate/predihood/data.json index f77ac268..83577c2a 100644 --- a/_repos/gitlab/fduchate/predihood/data.json +++ b/_repos/gitlab/fduchate/predihood/data.json @@ -6,293 +6,265 @@ } }, "pypi": { - "scikit-learn": { - "credit": 0.0009899999999999909, - "url": "http://scikit-learn.org" - }, - "matplotlib": { - "credit": 0.12816964285714286, - "url": "https://matplotlib.org" - }, - "numpy": { - "credit": 0.14604480000000003, - "url": "https://www.numpy.org" - }, - "pandas": { - "credit": 0.030159642857142878, - "url": "https://pandas.pydata.org" - }, - "requests": { - "credit": 0.0009900000000000048, - "url": "https://requests.readthedocs.io" + "area": { + "credit": 0.07071428571428572, + "url": "https://github.com/scisco/area" }, "Flask": { - "credit": 0.0009900000000000048, + "credit": 0.0007071428571428645, "url": "https://palletsprojects.com/p/flask" }, - "setuptools": { - "credit": 0.0009900000000000048, - "url": "https://github.com/pypa/setuptools" - }, - "area": { - "credit": 0.099, - "url": "https://github.com/scisco/area" + "matplotlib": { + "credit": 0.09360123626373627, + "url": "https://matplotlib.org" }, "seaborn": { - "credit": 0.005657142857142862, + "credit": 0.0007071428571428645, "url": "https://seaborn.pydata.org" }, "StringDist": { - "credit": 0.099, + "credit": 0.07071428571428572, "url": "https://github.com/obulkin/string-dist" }, - "pyamg": { - "credit": 4.667142857142821e-05, - "url": "https://github.com/pyamg/pyamg" - }, - "mypy": { - "credit": 0.0046671428571428576, - "url": "http://www.mypy-lang.org/" + "cycler": { + "credit": 0.07071428571428572, + "url": "https://github.com/matplotlib/cycler" }, - "black": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/black" + "fonttools": { + "credit": 0.0007071428571428645, + "url": "http://github.com/fonttools/fonttools" }, - "flake8": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/flake8" - }, - "pytest-cov": { - "credit": 0.007828755760368664, - "url": "https://pypi.org/project/pytest-cov" - }, - "pytest": { - "credit": 0.02570391290322581, - "url": "https://pypi.org/project/pytest" + "importlib-metadata": { + "credit": 0.01070816326530613, + "url": "https://github.com/python/importlib_metadata" }, - "sphinxext-opengraph": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinxext-opengraph" + "itsdangerous": { + "credit": 0.08071530612244898, + "url": "https://palletsprojects.com/p/itsdangerous/" }, - "sphinx-prompt": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinx-prompt" + "Jinja2": { + "credit": 0.01070816326530613, + "url": "https://palletsprojects.com/p/jinja/" }, - "Pillow": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/Pillow" + "kiwisolver": { + "credit": 0.0007071428571428645, + "url": "https://github.com/nucleic/kiwi" }, - "numpydoc": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/numpydoc" + "pillow": { + "credit": 0.0007071428571428645, + "url": "https://python-pillow.org" }, - "sphinx-gallery": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/sphinx-gallery" + "Werkzeug": { + "credit": 0.01070816326530613, + "url": "https://palletsprojects.com/p/werkzeug/" }, - "sphinx": { - "credit": 0.007828755760368664, - "url": "https://pypi.org/project/sphinx" + "MarkupSafe": { + "credit": 0.10571785714285714, + "url": "https://palletsprojects.com/p/markupsafe/" }, - "scikit-image": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/scikit-image" + "python-dotenv": { + "credit": 0.00010001020408163287, + "url": "https://github.com/theskumar/python-dotenv" }, - "memory-profiler": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/memory-profiler" + "asgiref": { + "credit": 0.00010001020408163287, + "url": "https://github.com/django/asgiref/" }, - "threadpoolctl": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/threadpoolctl" + "click": { + "credit": 0.019902030612244895, + "url": "https://pypi.org/project/click" }, - "joblib": { - "credit": 0.0046671428571428576, - "url": "https://pypi.org/project/joblib" + "pandas": { + "credit": 0.017501785714285713, + "url": "https://pypi.org/project/pandas" }, "scipy": { - "credit": 0.030709800000000002, + "credit": 0.022886950549450547, "url": "https://pypi.org/project/scipy" }, - "pytest-xdist": { - "credit": 0.019496612903225807, - "url": "https://pypi.org/project/pytest-xdist" + "numpy": { + "credit": 0.017501785714285713, + "url": "https://pypi.org/project/numpy" }, - "hypothesis": { - "credit": 0.016335, - "url": "https://pypi.org/project/hypothesis" + "xattr": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/xattr" }, - "pytz": { - "credit": 0.016335, - "url": "https://pypi.org/project/pytz" + "unicodedata2": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/unicodedata2" }, - "python-dateutil": { - "credit": 0.016335, - "url": "https://pypi.org/project/python-dateutil" + "munkres": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/munkres" }, - "win-inet-pton": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/win-inet-pton" + "brotli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotli" }, - "PySocks": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/PySocks" + "brotlicffi": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/brotlicffi" }, - "charset-normalizer": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/charset-normalizer" + "skia-pathops": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/skia-pathops" }, - "idna": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/idna" + "sympy": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/sympy" }, - "chardet": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/chardet" + "lz4": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/lz4" }, - "certifi": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/certifi" + "zopfli": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/zopfli" }, - "urllib3": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/urllib3" + "lxml": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/lxml" }, - "python-dotenv": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/python-dotenv" + "fs": { + "credit": 0.0053851648351648344, + "url": "https://pypi.org/project/fs" }, - "asgiref": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/asgiref" + "importlib-resources": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/importlib-resources" }, - "importlib-metadata": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/importlib-metadata" + "pytest-mypy": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-mypy" }, - "click": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/click" + "pytest-black": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-black" }, - "itsdangerous": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/itsdangerous" + "pytest-perf": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-perf" }, - "Jinja2": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/Jinja2" + "flufl.flake8": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/flufl.flake8" }, - "Werkzeug": { - "credit": 0.014001428571428571, - "url": "https://pypi.org/project/Werkzeug" + "pyfakefs": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pyfakefs" }, - "pytest-mypy": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pytest-mypy" + "packaging": { + "credit": 0.008264732142857143, + "url": "https://pypi.org/project/packaging" }, - "pytest-black": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pytest-black" + "pytest-enabler": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-enabler" }, - "tomli": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/tomli" + "pytest-cov": { + "credit": 0.008264732142857143, + "url": "https://pypi.org/project/pytest-cov" }, - "tomli-w": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/tomli-w" + "pytest-flake8": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-flake8" }, - "ini2toml": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/ini2toml" + "pytest-checkdocs": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/pytest-checkdocs" }, - "pip-run": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pip-run" + "pytest": { + "credit": 0.01073998469387755, + "url": "https://pypi.org/project/pytest" }, - "filelock": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/filelock" + "ipython": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/ipython" }, - "build": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/build" + "rst.linker": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/rst.linker" }, - "jaraco.path": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/jaraco.path" + "jaraco.packaging": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/jaraco.packaging" }, - "jaraco.envs": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/jaraco.envs" + "sphinx": { + "credit": 0.008264732142857143, + "url": "https://pypi.org/project/sphinx" }, - "pip": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pip" + "typing-extensions": { + "credit": 0.07637168112244898, + "url": "https://pypi.org/project/typing-extensions" }, - "wheel": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/wheel" + "zipp": { + "credit": 0.003889285714285714, + "url": "https://pypi.org/project/zipp" }, - "virtualenv": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/virtualenv" + "Babel": { + "credit": 0.035003571428571426, + "url": "https://pypi.org/project/Babel" }, - "flake8-2020": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/flake8-2020" + "pytest-timeout": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pytest-timeout" }, - "mock": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/mock" + "pyroma": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/pyroma" }, - "pytest-perf": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pytest-perf" + "markdown2": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/markdown2" }, - "pytest-enabler": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pytest-enabler" + "defusedxml": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/defusedxml" }, - "pytest-flake8": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pytest-flake8" + "coverage": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/coverage" }, - "pytest-checkdocs": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pytest-checkdocs" + "check-manifest": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/check-manifest" }, - "furo": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/furo" + "sphinxext-opengraph": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinxext-opengraph" }, - "sphinxcontrib-towncrier": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" + "sphinx-rtd-theme": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "sphinx-inline-tabs": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/sphinx-inline-tabs" + "sphinx-removed-in": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-removed-in" }, - "sphinx-favicon": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/sphinx-favicon" + "sphinx-issues": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-issues" }, - "pygments-github-lexers": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/pygments-github-lexers" + "sphinx-copybutton": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/sphinx-copybutton" }, - "jaraco.tidelift": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/jaraco.tidelift" + "olefile": { + "credit": 0.004375446428571428, + "url": "https://pypi.org/project/olefile" }, - "rst.linker": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/rst.linker" + "watchdog": { + "credit": 0.07000714285714285, + "url": "https://pypi.org/project/watchdog" }, - "jaraco.packaging": { - "credit": 0.0031616129032258065, - "url": "https://pypi.org/project/jaraco.packaging" + "mypy": { + "credit": 0.002475252551020408, + "url": "https://pypi.org/project/mypy" + }, + "pytest-asyncio": { + "credit": 0.002475252551020408, + "url": "https://pypi.org/project/pytest-asyncio" } } } \ No newline at end of file diff --git a/_repos/gitlab/gims-developers/gims/README.md b/_repos/gitlab/gims-developers/gims/README.md index dcabb9ed..e9307598 100644 --- a/_repos/gitlab/gims-developers/gims/README.md +++ b/_repos/gitlab/gims-developers/gims/README.md @@ -8,72 +8,94 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[sphinx](https://www.sphinx-doc.org/)|0.158| -|pypi|[numpy](https://pypi.org/project/numpy)|0.156| -|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.115| -|pypi|[packaging](https://pypi.org/project/packaging)|0.077| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.033| -|pypi|[click](https://palletsprojects.com/p/click/)|0.02| -|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.02| -|pypi|[watchdog](https://pypi.org/project/watchdog)|0.02| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.018| -|pypi|[six](https://pypi.org/project/six)|0.018| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.018| -|pypi|[hunter](https://pypi.org/project/hunter)|0.018| -|pypi|[fields](https://pypi.org/project/fields)|0.018| -|pypi|[coverage](https://pypi.org/project/coverage)|0.018| -|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.016| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.016| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.016| -|pypi|[pillow](https://pypi.org/project/pillow)|0.016| -|pypi|[scipy](https://pypi.org/project/scipy)|0.016| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.016| -|pypi|[colorama](https://pypi.org/project/colorama)|0.016| -|pypi|[mypy](https://pypi.org/project/mypy)|0.011| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.076| +|pypi|[mypy](https://pypi.org/project/mypy)|0.06| +|pypi|[flake8](https://pypi.org/project/flake8)|0.054| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.051| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.042| +|pypi|[matplotlib](https://matplotlib.org)|0.04| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.04| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.039| +|pypi|[numpy](https://pypi.org/project/numpy)|0.038| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.036| +|pypi|[alabaster](https://alabaster.readthedocs.io)|0.035| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.035| +|pypi|[snowballstemmer](https://github.com/snowballstem/snowball)|0.035| +|pypi|[imagesize](https://github.com/shibukawa/imagesize_py)|0.035| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.034| +|pypi|[pytz](https://pypi.org/project/pytz)|0.034| +|pypi|[tomli](https://pypi.org/project/tomli)|0.034| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.034| +|pypi|[packaging](https://pypi.org/project/packaging)|0.022| +|pypi|[Babel](https://pypi.org/project/Babel)|0.017| |setup.py|gitlab/gims-developers/gims|0.01| -|pypi|[Babel](https://pypi.org/project/Babel)|0.01| -|pypi|[MarkupSafe](https://pypi.org/project/MarkupSafe)|0.01| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.006| -|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.006| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.006| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.006| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.006| -|pypi|[isort](https://pypi.org/project/isort)|0.006| -|pypi|[flake8](https://pypi.org/project/flake8)|0.006| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.006| -|pypi|[requests](https://pypi.org/project/requests)|0.006| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.006| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.006| -|pypi|[babel](https://pypi.org/project/babel)|0.006| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.006| -|pypi|[docutils](https://pypi.org/project/docutils)|0.006| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.006| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.006| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.006| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.006| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.006| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.006| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.006| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.005| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.003| -|pypi|[flask](https://palletsprojects.com/p/flask)|0.001| -|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|0.001| -|pypi|[spglib](http://spglib.github.io/spglib/)|0.001| -|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|0.001| -|pypi|[pytest-remotedata](https://github.com/astropy/pytest-remotedata)|0.001| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.001| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.001| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.001| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.001| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.001| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.001| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.001| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.001| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.001| -|pypi|[ipython](https://pypi.org/project/ipython)|0.001| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.001| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.001| -|pypi|[zipp](https://pypi.org/project/zipp)|0.001| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.008| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.007| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.007| +|pypi|[importlib-metadata](https://github.com/python/importlib_metadata)|0.007| +|pypi|[Jinja2](https://palletsprojects.com/p/jinja/)|0.007| +|pypi|[scipy](https://pypi.org/project/scipy)|0.006| +|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| +|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.005| +|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.005| +|pypi|[asgiref](https://pypi.org/project/asgiref)|0.005| +|pypi|[click](https://pypi.org/project/click)|0.005| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.004| +|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.004| +|pypi|[six](https://pypi.org/project/six)|0.004| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.004| +|pypi|[hunter](https://pypi.org/project/hunter)|0.004| +|pypi|[fields](https://pypi.org/project/fields)|0.004| +|pypi|[pillow](https://python-pillow.org)|0.004| +|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.004| +|pypi|[xattr](https://pypi.org/project/xattr)|0.003| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.003| +|pypi|[munkres](https://pypi.org/project/munkres)|0.003| +|pypi|[brotli](https://pypi.org/project/brotli)|0.003| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.003| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.003| +|pypi|[sympy](https://pypi.org/project/sympy)|0.003| +|pypi|[lz4](https://pypi.org/project/lz4)|0.003| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.003| +|pypi|[lxml](https://pypi.org/project/lxml)|0.003| +|pypi|[fs](https://pypi.org/project/fs)|0.003| +|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.002| +|pypi|[pyroma](https://pypi.org/project/pyroma)|0.002| +|pypi|[markdown2](https://pypi.org/project/markdown2)|0.002| +|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.002| +|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.002| +|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.002| +|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.002| +|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.002| +|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.002| +|pypi|[olefile](https://pypi.org/project/olefile)|0.002| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.002| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.002| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.002| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.002| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.002| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.002| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.002| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.002| +|pypi|[ipython](https://pypi.org/project/ipython)|0.002| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.002| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.002| +|pypi|[zipp](https://pypi.org/project/zipp)|0.002| +|pypi|[babel](https://babel.pocoo.org/)|0.002| +|pypi|[sphinxcontrib-htmlhelp](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-serializinghtml](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-applehelp](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-devhelp](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-jsmath](http://sphinx-doc.org/)|0.002| +|pypi|[sphinxcontrib-qthelp](http://sphinx-doc.org/)|0.002| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.001| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.001| +|pypi|[isort](https://pypi.org/project/isort)|0.001| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.001| +|pypi|[colorama](https://pypi.org/project/colorama)|0.001| +|pypi|[requests](https://pypi.org/project/requests)|0.001| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.001| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/gitlab/gims-developers/gims/badge.png b/_repos/gitlab/gims-developers/gims/badge.png index 51605eae..87abe670 100644 Binary files a/_repos/gitlab/gims-developers/gims/badge.png and b/_repos/gitlab/gims-developers/gims/badge.png differ diff --git a/_repos/gitlab/gims-developers/gims/data.json b/_repos/gitlab/gims-developers/gims/data.json index 969b9a38..c8c362df 100644 --- a/_repos/gitlab/gims-developers/gims/data.json +++ b/_repos/gitlab/gims-developers/gims/data.json @@ -6,277 +6,381 @@ } }, "pypi": { + "ase": { + "credit": 0.000341379310344829, + "url": "https://wiki.fysik.dtu.dk/ase" + }, "flask": { - "credit": 0.001414285714285729, + "credit": 0.000341379310344829, "url": "https://palletsprojects.com/p/flask" }, - "ase": { - "credit": 0.001414285714285729, - "url": "https://wiki.fysik.dtu.dk/ase" + "pytest-cov": { + "credit": 0.004331250000000002, + "url": "https://github.com/pytest-dev/pytest-cov" + }, + "pytest-remotedata": { + "credit": 0.000341379310344829, + "url": "https://github.com/astropy/pytest-remotedata" }, "spglib": { - "credit": 0.001414285714285729, + "credit": 0.000341379310344829, "url": "http://spglib.github.io/spglib/" }, "sphinx": { - "credit": 0.15808582653061223, + "credit": 0.04188297413793104, "url": "https://www.sphinx-doc.org/" }, "sphinx_rtd_theme": { - "credit": 0.001414285714285729, + "credit": 0.000341379310344829, "url": "https://github.com/rtfd/sphinx_rtd_theme/" }, - "pytest-cov": { - "credit": 0.002514397959183688, - "url": "https://github.com/pytest-dev/pytest-cov" + "alabaster": { + "credit": 0.035489793103448276, + "url": "https://alabaster.readthedocs.io" }, - "pytest-remotedata": { - "credit": 0.001414285714285729, - "url": "https://github.com/astropy/pytest-remotedata" + "babel": { + "credit": 0.0016932413793103462, + "url": "https://babel.pocoo.org/" }, - "python-dotenv": { - "credit": 0.00020002040816326574, - "url": "https://github.com/theskumar/python-dotenv" + "coverage": { + "credit": 0.0066782327586206915, + "url": "https://github.com/nedbat/coveragepy" }, - "asgiref": { - "credit": 0.00020002040816326574, - "url": "https://github.com/django/asgiref/" + "docutils": { + "credit": 0.035489793103448276, + "url": "http://docutils.sourceforge.net/" }, "importlib-metadata": { - "credit": 0.015701602040816325, + "credit": 0.006521320197044336, "url": "https://github.com/python/importlib_metadata" }, - "click": { - "credit": 0.02000204081632653, - "url": "https://palletsprojects.com/p/click/" - }, "itsdangerous": { - "credit": 0.02000204081632653, + "credit": 0.03896600985221675, "url": "https://palletsprojects.com/p/itsdangerous/" }, "Jinja2": { - "credit": 0.005800591836734694, + "credit": 0.006521320197044336, "url": "https://palletsprojects.com/p/jinja/" }, + "matplotlib": { + "credit": 0.040492838196286476, + "url": "https://matplotlib.org" + }, + "snowballstemmer": { + "credit": 0.035489793103448276, + "url": "https://github.com/snowballstem/snowball" + }, + "sphinxcontrib-htmlhelp": { + "credit": 0.0016932413793103462, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-serializinghtml": { + "credit": 0.0016932413793103462, + "url": "http://sphinx-doc.org/" + }, "Werkzeug": { - "credit": 0.00020002040816326574, + "credit": 0.005169458128078819, "url": "https://palletsprojects.com/p/werkzeug/" }, + "imagesize": { + "credit": 0.035489793103448276, + "url": "https://github.com/shibukawa/imagesize_py" + }, + "sphinxcontrib-applehelp": { + "credit": 0.0016932413793103462, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-devhelp": { + "credit": 0.0016932413793103462, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-jsmath": { + "credit": 0.0016932413793103462, + "url": "http://sphinx-doc.org/" + }, + "sphinxcontrib-qthelp": { + "credit": 0.0016932413793103462, + "url": "http://sphinx-doc.org/" + }, + "cycler": { + "credit": 0.03413793103448276, + "url": "https://github.com/matplotlib/cycler" + }, + "fonttools": { + "credit": 0.000341379310344829, + "url": "http://github.com/fonttools/fonttools" + }, + "kiwisolver": { + "credit": 0.000341379310344829, + "url": "https://github.com/nucleic/kiwi" + }, + "MarkupSafe": { + "credit": 0.05103620689655172, + "url": "https://palletsprojects.com/p/markupsafe/" + }, + "pillow": { + "credit": 0.004096551724137932, + "url": "https://python-pillow.org" + }, "pytest": { - "credit": 0.11471726020408163, + "credit": 0.0758450948275862, "url": "https://docs.pytest.org/en/latest/" }, "pytest-xdist": { - "credit": 0.03305892857142857, + "credit": 0.007979741379310346, "url": "https://pypi.org/project/pytest-xdist" }, "pytest-mock": { - "credit": 0.015557142857142856, + "credit": 0.0037551724137931033, "url": "https://pypi.org/project/pytest-mock" }, "sphinx-rtd-theme": { - "credit": 0.015557142857142856, + "credit": 0.0058674568965517235, "url": "https://pypi.org/project/sphinx-rtd-theme" }, - "pillow": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/pillow" - }, "scipy": { - "credit": 0.015557142857142856, + "credit": 0.006354907161803714, "url": "https://pypi.org/project/scipy" }, "numpy": { - "credit": 0.15557142857142855, + "credit": 0.037551724137931036, "url": "https://pypi.org/project/numpy" }, - "matplotlib": { - "credit": 0.015557142857142856, - "url": "https://pypi.org/project/matplotlib" + "python-dotenv": { + "credit": 0.00482807881773399, + "url": "https://pypi.org/project/python-dotenv" + }, + "asgiref": { + "credit": 0.00482807881773399, + "url": "https://pypi.org/project/asgiref" + }, + "click": { + "credit": 0.00482807881773399, + "url": "https://pypi.org/project/click" + }, + "virtualenv": { + "credit": 0.004224568965517241, + "url": "https://pypi.org/project/virtualenv" + }, + "six": { + "credit": 0.004224568965517241, + "url": "https://pypi.org/project/six" + }, + "process-tests": { + "credit": 0.004224568965517241, + "url": "https://pypi.org/project/process-tests" + }, + "hunter": { + "credit": 0.004224568965517241, + "url": "https://pypi.org/project/hunter" + }, + "fields": { + "credit": 0.004224568965517241, + "url": "https://pypi.org/project/fields" + }, + "packaging": { + "credit": 0.022240008620689655, + "url": "https://pypi.org/project/packaging" }, "types-requests": { - "credit": 0.005600571428571428, + "credit": 0.0013518620689655172, "url": "https://pypi.org/project/types-requests" }, "types-typed-ast": { - "credit": 0.005600571428571428, + "credit": 0.0013518620689655172, "url": "https://pypi.org/project/types-typed-ast" }, "docutils-stubs": { - "credit": 0.005600571428571428, + "credit": 0.040217896551724135, "url": "https://pypi.org/project/docutils-stubs" }, "mypy": { - "credit": 0.010551076530612245, + "credit": 0.0604958275862069, "url": "https://pypi.org/project/mypy" }, "isort": { - "credit": 0.005600571428571428, + "credit": 0.0013518620689655172, "url": "https://pypi.org/project/isort" }, "flake8": { - "credit": 0.005600571428571428, + "credit": 0.05373651724137931, "url": "https://pypi.org/project/flake8" }, "sphinxcontrib-websupport": { - "credit": 0.005600571428571428, + "credit": 0.0013518620689655172, "url": "https://pypi.org/project/sphinxcontrib-websupport" }, "colorama": { - "credit": 0.015501581632653059, + "credit": 0.0013518620689655172, "url": "https://pypi.org/project/colorama" }, - "packaging": { - "credit": 0.07670782653061224, - "url": "https://pypi.org/project/packaging" - }, "requests": { - "credit": 0.005600571428571428, + "credit": 0.0013518620689655172, "url": "https://pypi.org/project/requests" }, - "imagesize": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/imagesize" - }, - "alabaster": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/alabaster" - }, - "babel": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/babel" - }, - "snowballstemmer": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/snowballstemmer" - }, - "docutils": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/docutils" - }, "Pygments": { - "credit": 0.005600571428571428, + "credit": 0.0013518620689655172, "url": "https://pypi.org/project/Pygments" }, - "sphinxcontrib-qthelp": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/sphinxcontrib-qthelp" - }, - "sphinxcontrib-serializinghtml": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/sphinxcontrib-serializinghtml" - }, - "sphinxcontrib-htmlhelp": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/sphinxcontrib-htmlhelp" - }, - "sphinxcontrib-jsmath": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/sphinxcontrib-jsmath" - }, - "sphinxcontrib-devhelp": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/sphinxcontrib-devhelp" - }, - "sphinxcontrib-applehelp": { - "credit": 0.005600571428571428, - "url": "https://pypi.org/project/sphinxcontrib-applehelp" - }, - "virtualenv": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/virtualenv" + "pytz": { + "credit": 0.03379655172413793, + "url": "https://pypi.org/project/pytz" }, - "six": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.017501785714285713, - "url": "https://pypi.org/project/coverage" - }, - "pytest-asyncio": { - "credit": 0.004950505102040816, - "url": "https://pypi.org/project/pytest-asyncio" - }, - "typing-extensions": { - "credit": 0.006050617346938775, - "url": "https://pypi.org/project/typing-extensions" + "tomli": { + "credit": 0.03379655172413793, + "url": "https://pypi.org/project/tomli" }, "importlib-resources": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/importlib-resources" }, "pytest-mypy": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/pytest-mypy" }, "pytest-black": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/pytest-black" }, "pytest-perf": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/pytest-perf" }, "flufl.flake8": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/flufl.flake8" }, "pyfakefs": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/pyfakefs" }, "pytest-enabler": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/pytest-enabler" }, "pytest-flake8": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/pytest-flake8" }, "pytest-checkdocs": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/pytest-checkdocs" }, "ipython": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/ipython" }, "rst.linker": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/rst.linker" }, "jaraco.packaging": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/jaraco.packaging" }, + "typing-extensions": { + "credit": 0.03567413793103448, + "url": "https://pypi.org/project/typing-extensions" + }, "zipp": { - "credit": 0.001100112244897959, + "credit": 0.0018775862068965516, "url": "https://pypi.org/project/zipp" }, "Babel": { - "credit": 0.009901010204081632, + "credit": 0.016898275862068966, "url": "https://pypi.org/project/Babel" }, - "MarkupSafe": { - "credit": 0.009901010204081632, - "url": "https://pypi.org/project/MarkupSafe" + "html5lib": { + "credit": 0.006759310344827586, + "url": "https://pypi.org/project/html5lib" }, "watchdog": { - "credit": 0.019802020408163264, + "credit": 0.03379655172413793, "url": "https://pypi.org/project/watchdog" + }, + "xattr": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/xattr" + }, + "unicodedata2": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/unicodedata2" + }, + "munkres": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/munkres" + }, + "brotli": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/brotli" + }, + "brotlicffi": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/brotlicffi" + }, + "skia-pathops": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/skia-pathops" + }, + "sympy": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/sympy" + }, + "lz4": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/lz4" + }, + "zopfli": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/zopfli" + }, + "lxml": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/lxml" + }, + "fs": { + "credit": 0.0025997347480106103, + "url": "https://pypi.org/project/fs" + }, + "pytest-timeout": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/pytest-timeout" + }, + "pyroma": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/pyroma" + }, + "markdown2": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/markdown2" + }, + "defusedxml": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/defusedxml" + }, + "check-manifest": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/check-manifest" + }, + "sphinxext-opengraph": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinxext-opengraph" + }, + "sphinx-removed-in": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinx-removed-in" + }, + "sphinx-issues": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinx-issues" + }, + "sphinx-copybutton": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/sphinx-copybutton" + }, + "olefile": { + "credit": 0.0021122844827586207, + "url": "https://pypi.org/project/olefile" } } } \ No newline at end of file diff --git a/_repos/gitlab/jason-rumengan/pyarma/README.md b/_repos/gitlab/jason-rumengan/pyarma/README.md index 3ab106da..2b49cb8d 100644 --- a/_repos/gitlab/jason-rumengan/pyarma/README.md +++ b/_repos/gitlab/jason-rumengan/pyarma/README.md @@ -8,68 +8,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[pytest](https://pypi.org/project/pytest)|0.129| -|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.127| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.046| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.04| -|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.04| -|pypi|[flake8](https://pypi.org/project/flake8)|0.04| -|pypi|[coverage](https://pypi.org/project/coverage)|0.04| -|pypi|[codecov](https://pypi.org/project/codecov)|0.04| -|pypi|[mock](https://pypi.org/project/mock)|0.032| -|pypi|[wmi](https://pypi.org/project/wmi)|0.027| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.027| -|pypi|[enum34](https://pypi.org/project/enum34)|0.027| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.027| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.027| -|pypi|[wheel](https://github.com/pypa/wheel)|0.027| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.022| -|pypi|[path.py](https://pypi.org/project/path.py)|0.02| -|pypi|[scikit-build](https://github.com/scikit-build/scikit-build)|0.015| -|pypi|[build](https://pypi.org/project/build)|0.012| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.012| |setup.py|gitlab/jason-rumengan/pyarma|0.01| -|pypi|[filelock](https://pypi.org/project/filelock)|0.007| -|pypi|[pathlib2](https://pypi.org/project/pathlib2)|0.006| -|pypi|[xdoctest](https://pypi.org/project/xdoctest)|0.006| -|pypi|[ubelt](https://pypi.org/project/ubelt)|0.006| -|pypi|[six](https://pypi.org/project/six)|0.006| -|pypi|[requests](https://pypi.org/project/requests)|0.006| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.006| -|pypi|[cython](https://pypi.org/project/cython)|0.006| -|pypi|[sphinxcontrib-moderncmakedomain](https://pypi.org/project/sphinxcontrib-moderncmakedomain)|0.006| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.006| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.006| -|pypi|[pygments](https://pypi.org/project/pygments)|0.006| -|pypi|[packaging](https://pypi.org/project/packaging)|0.006| -|pypi|[distro](https://pypi.org/project/distro)|0.006| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.005| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.005| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.005| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.005| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.005| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.005| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.005| -|pypi|[pip](https://pypi.org/project/pip)|0.005| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.005| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.005| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.005| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.005| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.005| -|pypi|[furo](https://pypi.org/project/furo)|0.005| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.005| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.005| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.005| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.005| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.005| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.005| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.005| -|pypi|[cmake](https://cmake.org/)|0.002| -|pypi|[ninja](http://ninja-build.org/)|0.002| -|pypi|[psutil](https://github.com/giampaolo/psutil)|0.002| -|pypi|[mypy](https://pypi.org/project/mypy)|0.001| -|pypi|[attrs](https://pypi.org/project/attrs)|0.001| +|pypi|[pyarma](https://pyarma.sourceforge.io)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/gitlab/jason-rumengan/pyarma/badge.png b/_repos/gitlab/jason-rumengan/pyarma/badge.png index 8c5996cf..a569f049 100644 Binary files a/_repos/gitlab/jason-rumengan/pyarma/badge.png and b/_repos/gitlab/jason-rumengan/pyarma/badge.png differ diff --git a/_repos/gitlab/jason-rumengan/pyarma/data.json b/_repos/gitlab/jason-rumengan/pyarma/data.json index f1dc0689..2f1a7a4a 100644 --- a/_repos/gitlab/jason-rumengan/pyarma/data.json +++ b/_repos/gitlab/jason-rumengan/pyarma/data.json @@ -6,253 +6,9 @@ } }, "pypi": { - "setuptools": { - "credit": 0.02154519230769232, - "url": "https://github.com/pypa/setuptools" - }, - "wheel": { - "credit": 0.026814547146401996, - "url": "https://github.com/pypa/wheel" - }, - "scikit-build": { - "credit": 0.015262500000000012, - "url": "https://github.com/scikit-build/scikit-build" - }, - "cmake": { - "credit": 0.0016500000000000126, - "url": "https://cmake.org/" - }, - "ninja": { - "credit": 0.0016500000000000126, - "url": "http://ninja-build.org/" - }, - "psutil": { - "credit": 0.0016500000000000126, - "url": "https://github.com/giampaolo/psutil" - }, - "pytest-mypy": { - "credit": 5.269354838709651e-05, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-cov": { - "credit": 0.12725829714640197, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-black": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pytest-black" - }, - "tomli": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/tomli" - }, - "tomli-w": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/tomli-w" - }, - "ini2toml": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/ini2toml" - }, - "pip-run": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pip-run" - }, - "filelock": { - "credit": 0.0065735201612903225, - "url": "https://pypi.org/project/filelock" - }, - "build": { - "credit": 0.011552047146401985, - "url": "https://pypi.org/project/build" - }, - "jaraco.path": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/jaraco.path" - }, - "pytest-xdist": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pytest-xdist" - }, - "jaraco.envs": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/jaraco.envs" - }, - "pip": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pip" - }, - "virtualenv": { - "credit": 0.04558329714640198, - "url": "https://pypi.org/project/virtualenv" - }, - "flake8-2020": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/flake8-2020" - }, - "mock": { - "credit": 0.032494354838709674, - "url": "https://pypi.org/project/mock" - }, - "pytest-perf": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pytest-perf" - }, - "pytest-enabler": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-flake8": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "pytest": { - "credit": 0.12856246246898262, - "url": "https://pypi.org/project/pytest" - }, - "furo": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/furo" - }, - "sphinxcontrib-towncrier": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" - }, - "sphinx-inline-tabs": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/sphinx-inline-tabs" - }, - "sphinx-favicon": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/sphinx-favicon" - }, - "pygments-github-lexers": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/pygments-github-lexers" - }, - "jaraco.tidelift": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.005269354838709678, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.011552047146401985, - "url": "https://pypi.org/project/sphinx" - }, - "pathlib2": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/pathlib2" - }, - "xdoctest": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/xdoctest" - }, - "ubelt": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/ubelt" - }, - "six": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/six" - }, - "requests": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/requests" - }, - "pytest-virtualenv": { - "credit": 0.04031394230769231, - "url": "https://pypi.org/project/pytest-virtualenv" - }, - "pytest-runner": { - "credit": 0.04031394230769231, - "url": "https://pypi.org/project/pytest-runner" - }, - "pytest-mock": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/pytest-mock" - }, - "path.py": { - "credit": 0.019895192307692308, - "url": "https://pypi.org/project/path.py" - }, - "flake8": { - "credit": 0.04031394230769231, - "url": "https://pypi.org/project/flake8" - }, - "cython": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/cython" - }, - "coverage": { - "credit": 0.04031394230769231, - "url": "https://pypi.org/project/coverage" - }, - "codecov": { - "credit": 0.04031394230769231, - "url": "https://pypi.org/project/codecov" - }, - "sphinxcontrib-moderncmakedomain": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/sphinxcontrib-moderncmakedomain" - }, - "sphinx-rtd-theme": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/sphinx-rtd-theme" - }, - "sphinx-issues": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/sphinx-issues" - }, - "pygments": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/pygments" - }, - "packaging": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/packaging" - }, - "distro": { - "credit": 0.006282692307692308, - "url": "https://pypi.org/project/distro" - }, - "wmi": { - "credit": 0.027225, - "url": "https://pypi.org/project/wmi" - }, - "pywin32": { - "credit": 0.027225, - "url": "https://pypi.org/project/pywin32" - }, - "enum34": { - "credit": 0.027225, - "url": "https://pypi.org/project/enum34" - }, - "unittest2": { - "credit": 0.027225, - "url": "https://pypi.org/project/unittest2" - }, - "ipaddress": { - "credit": 0.027225, - "url": "https://pypi.org/project/ipaddress" - }, - "mypy": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/mypy" - }, - "attrs": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/attrs" + "pyarma": { + "credit": 0.0099, + "url": "https://pyarma.sourceforge.io" } } } \ No newline at end of file diff --git a/_repos/gitlab/octopus-code/octopus/README.md b/_repos/gitlab/octopus-code/octopus/README.md index ba1c6746..de0ff03f 100644 --- a/_repos/gitlab/octopus-code/octopus/README.md +++ b/_repos/gitlab/octopus-code/octopus/README.md @@ -8,45 +8,9 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.66| -|pypi|[pytest](https://pypi.org/project/pytest)|0.014| -|pypi|[filelock](https://pypi.org/project/filelock)|0.013| -|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.012| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.012| -|pypi|[pytest-black](https://github.com/shopkeep/pytest-black)|0.011| -|pypi|[tomli](https://pypi.org/project/tomli)|0.011| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.011| -|pypi|[ini2toml](https://github.com/abravalheri/ini2toml/)|0.011| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.011| -|pypi|[build](https://pypi.org/project/build)|0.011| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.011| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.011| -|pypi|[pip](https://pypi.org/project/pip)|0.011| -|pypi|[wheel](https://pypi.org/project/wheel)|0.011| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.011| -|pypi|[mock](https://pypi.org/project/mock)|0.011| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.011| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.011| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.011| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.011| -|pypi|[furo](https://pypi.org/project/furo)|0.011| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.011| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.011| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.011| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.011| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.011| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.011| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.011| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.011| |setup.py|gitlab/octopus-code/octopus|0.01| -|pypi|[setuptools](https://github.com/pypa/setuptools)|0.003| -|pypi|[mypy](https://pypi.org/project/mypy)|0.003| -|pypi|[attrs](https://pypi.org/project/attrs)|0.003| -|pypi|[six](https://pypi.org/project/six)|0.001| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.001| -|pypi|[hunter](https://pypi.org/project/hunter)|0.001| -|pypi|[fields](https://pypi.org/project/fields)|0.001| -|pypi|[coverage](https://pypi.org/project/coverage)|0.001| +|pypi|[spglib](http://spglib.github.io/spglib/)|0.01| +|pypi|[numpy](https://www.numpy.org)|0.01| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/gitlab/octopus-code/octopus/badge.png b/_repos/gitlab/octopus-code/octopus/badge.png index 2903e585..a7882505 100644 Binary files a/_repos/gitlab/octopus-code/octopus/badge.png and b/_repos/gitlab/octopus-code/octopus/badge.png differ diff --git a/_repos/gitlab/octopus-code/octopus/data.json b/_repos/gitlab/octopus-code/octopus/data.json index 76af95c4..615fb20f 100644 --- a/_repos/gitlab/octopus-code/octopus/data.json +++ b/_repos/gitlab/octopus-code/octopus/data.json @@ -6,165 +6,13 @@ } }, "pypi": { + "spglib": { + "credit": 0.0099, + "url": "http://spglib.github.io/spglib/" + }, "numpy": { - "credit": 0.66, + "credit": 0.009801, "url": "https://www.numpy.org" - }, - "setuptools": { - "credit": 0.003300000000000025, - "url": "https://github.com/pypa/setuptools" - }, - "pytest-mypy": { - "credit": 0.00010538709677419301, - "url": "https://github.com/dbader/pytest-mypy" - }, - "pytest-cov": { - "credit": 0.00010538709677419301, - "url": "https://github.com/pytest-dev/pytest-cov" - }, - "pytest-black": { - "credit": 0.010538709677419355, - "url": "https://github.com/shopkeep/pytest-black" - }, - "tomli": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/tomli" - }, - "tomli-w": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/tomli-w" - }, - "ini2toml": { - "credit": 0.010538709677419355, - "url": "https://github.com/abravalheri/ini2toml/" - }, - "pip-run": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pip-run" - }, - "filelock": { - "credit": 0.013147040322580645, - "url": "https://pypi.org/project/filelock" - }, - "build": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/build" - }, - "jaraco.path": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.path" - }, - "pytest-xdist": { - "credit": 0.011842875000000001, - "url": "https://pypi.org/project/pytest-xdist" - }, - "jaraco.envs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.envs" - }, - "pip": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pip" - }, - "wheel": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/wheel" - }, - "virtualenv": { - "credit": 0.011842875000000001, - "url": "https://pypi.org/project/virtualenv" - }, - "flake8-2020": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/flake8-2020" - }, - "mock": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/mock" - }, - "pytest-perf": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-perf" - }, - "pytest-enabler": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-enabler" - }, - "pytest-flake8": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-flake8" - }, - "pytest-checkdocs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pytest-checkdocs" - }, - "pytest": { - "credit": 0.01445120564516129, - "url": "https://pypi.org/project/pytest" - }, - "furo": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/furo" - }, - "sphinxcontrib-towncrier": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinxcontrib-towncrier" - }, - "sphinx-inline-tabs": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx-inline-tabs" - }, - "sphinx-favicon": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx-favicon" - }, - "pygments-github-lexers": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/pygments-github-lexers" - }, - "jaraco.tidelift": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.tidelift" - }, - "rst.linker": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/rst.linker" - }, - "jaraco.packaging": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/jaraco.packaging" - }, - "sphinx": { - "credit": 0.010538709677419355, - "url": "https://pypi.org/project/sphinx" - }, - "mypy": { - "credit": 0.0026083306451612906, - "url": "https://pypi.org/project/mypy" - }, - "attrs": { - "credit": 0.0026083306451612906, - "url": "https://pypi.org/project/attrs" - }, - "six": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/six" - }, - "process-tests": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/process-tests" - }, - "hunter": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/hunter" - }, - "fields": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/fields" - }, - "coverage": { - "credit": 0.0013041653225806453, - "url": "https://pypi.org/project/coverage" } } } \ No newline at end of file diff --git a/_repos/gitlab/picos-api/picos/README.md b/_repos/gitlab/picos-api/picos/README.md index 4a894cac..c361e8a1 100644 --- a/_repos/gitlab/picos-api/picos/README.md +++ b/_repos/gitlab/picos-api/picos/README.md @@ -9,8 +9,8 @@ exclude_from_search: true |Manager|Name|Credit| |-------|----|------| |setup.py|gitlab/picos-api/picos|0.01| +|pypi|[PICOS](https://pypi.org/project/PICOS)|0.005| |pypi|[cvxopt](http://cvxopt.org)|0.005| -|pypi|[numpy](https://www.numpy.org)|0.005| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/_repos/gitlab/picos-api/picos/badge.png b/_repos/gitlab/picos-api/picos/badge.png index 64c4eef8..e4dbd597 100644 Binary files a/_repos/gitlab/picos-api/picos/badge.png and b/_repos/gitlab/picos-api/picos/badge.png differ diff --git a/_repos/gitlab/picos-api/picos/data.json b/_repos/gitlab/picos-api/picos/data.json index fb2968db..fe6ad1c5 100644 --- a/_repos/gitlab/picos-api/picos/data.json +++ b/_repos/gitlab/picos-api/picos/data.json @@ -6,13 +6,13 @@ } }, "pypi": { - "cvxopt": { + "PICOS": { "credit": 0.00495, - "url": "http://cvxopt.org" + "url": "https://pypi.org/project/PICOS" }, - "numpy": { + "cvxopt": { "credit": 0.00495, - "url": "https://www.numpy.org" + "url": "http://cvxopt.org" } } } \ No newline at end of file diff --git a/docs/all-repos.md b/docs/all-repos.md index cb2531e9..81c4e1fe 100644 --- a/docs/all-repos.md +++ b/docs/all-repos.md @@ -2,5159 +2,5586 @@ |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.05777276092877925| -|cran|R|0.03533006904725826| -|cran|jsonlite|0.02879856430804844| -|cran|[testthat](https://testthat.r-lib.org)|0.024700835546651145| -|cran|httr|0.021154696928265777| -|cran|knitr|0.017386677936369877| -|cran|rmarkdown|0.01639302903109129| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.015281456659348339| -|cran|utils|0.014368883534828231| -|cran|methods|0.013946721882875374| -|cran|covr|0.012883966935941637| -|pypi|[pytest](https://pypi.org/project/pytest)|0.008399578587235066| -|cran|[tidyr](https://tidyr.tidyverse.org)|0.007511597760965775| -|cran|[magrittr](https://magrittr.tidyverse.org)|0.0065909630367401145| -|cran|[rlang](https://rlang.r-lib.org)|0.0061523657566324415| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.00550768394938294| -|cran|stats|0.0054872911729297895| -|cran|withr|0.005218314148500931| -|pypi|[six](https://pypi.org/project/six)|0.004835400500538387| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.004770630339835103| -|cran|yaml|0.00470901210249988| -|cran|[tibble](https://tibble.tidyverse.org/)|0.0046539916612070775| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.004606914717616353| -|cran|tools|0.0044227943014975325| -|pypi|[pyyaml](https://pyyaml.org/)|0.004375524244180643| -|cran|curl|0.004212596202834122| -|pypi|[h5py](http://www.h5py.org)|0.004180644538806693| -|pypi|[colorama](https://pypi.org/project/colorama)|0.004096243250007074| -|cran|Rcpp|0.004019271636367624| -|pypi|[biopython](https://biopython.org/)|0.003825454663904328| -|pypi|[pytz](https://pypi.org/project/pytz)|0.0038173719175205113| -|cran|vctrs|0.0037142928829996427| -|cran|R6|0.003667131872228372| -|cran|grDevices|0.00346932185352625| -|cran|graphics|0.003260806974008083| -|cran|crayon|0.0032569098637255994| -|pypi|[docutils](https://pypi.org/project/docutils)|0.0031935085681930684| -|cran|ggplot2|0.0031340809344300737| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.0031017075941401225| -|cran|spelling|0.0029778040319842955| -|cran|[dplyr](https://dplyr.tidyverse.org)|0.002879102263329457| -|cran|pryr|0.0028604987367301074| -|cran|glue|0.0027441782081080684| -|pypi|[numba](https://numba.pydata.org)|0.002658432613303744| -|pypi|[requests](https://pypi.org/project/requests)|0.002612132306701284| -|cran|digest|0.0024897002221839926| -|cran|roxygen2|0.002484675311517972| -|cran|htmltools|0.0024576748007048895| -|pypi|[joblib](https://joblib.readthedocs.io)|0.002180326501552901| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.00215672257652793| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002139932535067916| -|pypi|[lxml](https://pypi.org/project/lxml)|0.0021285423543913723| -|cran|tinytest|0.00204739633626539| -|cran|rstudioapi|0.0020377719203584165| -|pypi|[scipy](https://www.scipy.org)|0.0020353354895301956| -|cran|mockery|0.0020295306553659276| -|pypi|[flake8](https://pypi.org/project/flake8)|0.0020285166385252246| -|pypi|[packaging](https://github.com/pypa/packaging)|0.001995781565124874| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.001935052799707555| -|pypi|[certifi](https://pypi.org/project/certifi)|0.00192847806003327| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.0019134484738302629| -|pypi|[pandas](https://pypi.org/project/pandas)|0.00189418507646699| -|cran|stringi|0.0018792865971571442| -|cran|MASS|0.0018740563092225968| -|cran|xml2|0.0018652575182091546| -|pypi|[idna](https://pypi.org/project/idna)|0.0018218607751848486| -|cran|cli|0.00181805467529622| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.0017968201854886906| -|cran|pillar|0.0017909545332665878| -|cran|[shiny](https://shiny.rstudio.com/)|0.0017696688352009022| -|cran|bit64|0.0017602415438596462| -|cran|lifecycle|0.0017348598352865787| -|cran|callr|0.0016835612563628937| -|cran|[purrr](http://purrr.tidyverse.org)|0.0016784147404825783| -|pypi|[mock](https://pypi.org/project/mock)|0.0016245994743111054| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.0016043292532208298| -|cran|lattice|0.001528648987564493| -|cran|tidyselect|0.0015250171163935485| -|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.0014826071644628812| -|cran|processx|0.0014629403427837192| -|cran|DBI|0.0014410242661488202| -|cran|rbenchmark|0.0014212236287276033| -|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.0014143032917865131| -|cran|bitops|0.0013995216427452122| -|cran|markdown|0.0013920523505496463| -|cran|sp|0.0013823500639142043| -|cran|zoo|0.0013785080926663712| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.0013753669953375052| -|cran|parallel|0.0013548254294957348| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.001354591113892932| -|cran|pracma|0.0013302424681573826| -|cran|htmlwidgets|0.001328703947314803| -|pypi|[chardet](https://pypi.org/project/chardet)|0.0013264339874787547| -|pypi|[mypy](https://pypi.org/project/mypy)|0.0012967165851270838| -|cran|RSQLite|0.0012904587727909384| -|cran|grid|0.0012695738954177013| -|cran|hms|0.0012684631206731326| -|cran|[stringr](http://stringr.tidyverse.org)|0.0012384626065441457| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.0012150183168725148| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.0012083065293401114| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.0011198969092342864| -|pypi|[wheel](https://pypi.org/project/wheel)|0.0011154705312621399| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001104632617424174| -|cran|R.utils|0.001092062524157772| -|pypi|[click](https://pypi.org/project/click)|0.0010779600183615018| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.0010678781299155687| -|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.0010552394165299264| -|cran|mime|0.0010515546348688015| -|cran|microbenchmark|0.0010457274576255286| -|cran|nycflights13|0.0010363281818280318| -|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.0010074118168970764| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.000983328033094653| -|cran|webmockr|0.0009697700026580884| -|cran|ellipsis|0.0009662255247796665| -|cran|unix|0.0009652389688257852| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.0009539644750817741| -|cran|bench|0.0009427423193022542| -|cran|xts|0.0009372221793349775| -|cran|Matrix|0.0009313694089573009| -|pypi|[attrs](https://www.attrs.org/)|0.000926436527750089| -|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.000924703978906999| -|cran|nanotime|0.000919082772397013| -|pypi|[cython](http://cython.org/)|0.0009140227141366075| -|cran|broom|0.0009108660728628793| -|pypi|[nose](https://pypi.org/project/nose)|0.0009094078380532392| -|cran|rgl|0.0008992960710982815| -|cran|httpcode|0.0008972858823321059| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.0008945975413342185| -|cran|generics|0.0008942500042131119| -|cran|bit|0.0008873137566238423| -|cran|evaluate|0.0008831113789207016| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.0008823248919902035| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.0008823248919902035| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.0008794397256745245| -|cran|maptools|0.0008712231134505579| -|cran|scales|0.0008705085591019529| -|pypi|[pybind11-global](https://github.com/pybind/pybind11)|0.000869738255033557| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.0008576742240038596| -|pypi|[ipywidgets](http://ipython.org)|0.0008505606075298682| -|pypi|[twine](https://pypi.org/project/twine)|0.0008495512776882432| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.000846453420987166| -|cran|fs|0.0008434565968477982| -|cran|RColorBrewer|0.0008415193889540235| -|cran|rgeos|0.0008357278392135957| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.000835152840920098| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.0008290316382473019| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.0008290316382473019| -|cran|sf|0.0008239979363907693| -|cran|tcltk|0.0008191718292752264| -|cran|fauxpas|0.000787101920412059| -|cran|urltools|0.0007854232864548289| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.000781747141936602| -|cran|ncdf4|0.0007786038260800137| -|cran|plyr|0.0007721282130303474| -|cran|pkgload|0.000765958893552795| -|pypi|[Babel](http://babel.pocoo.org/)|0.0007535313903245689| -|cran|blob|0.0007382465193532396| -|cran|httpuv|0.0007295668522611416| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.0007201561360113606| -|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.0007172464046021092| -|cran|[rcrossref](https://github.com/ropensci/rcrossref)|0.0007151845637583891| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.0007150004320307109| -|pypi|[py](https://pypi.org/project/py)|0.0007130047011748988| -|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.0007009217558990556| -|cran|[data.table](https://r-datatable.com)|0.0006961433590055966| -|cran|usethis|0.0006925307674534126| -|pypi|[black](https://pypi.org/project/black)|0.0006924821823447922| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.0006779191582520679| -|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.0006760484001453374| -|cran|[numDeriv](http://optimizer.r-forge.r-project.org/)|0.0006755678249809401| -|cran|pkgconfig|0.0006754061049656539| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.0006675050480658141| -|pypi|[future](https://python-future.org)|0.0006615739625685539| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.0006605423635537497| -|cran|maps|0.0006576988252327968| -|cran|[lubridate](https://lubridate.tidyverse.org)|0.0006524215438850761| -|cran|dbplyr|0.0006522380239938767| -|cran|XML|0.0006521870376721014| -|cran|png|0.0006419287613486073| -|cran|brio|0.0006411145695851919| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.0006391166094239714| -|pypi|[ipython](https://pypi.org/project/ipython)|0.0006373491646451627| -|cran|[igraph](https://igraph.org)|0.0006179733829369578| -|npm|core-js|0.0006133821165049088| -|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.0006104009597216739| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.0006101657548267367| -|pypi|[py-make](https://pypi.org/project/py-make)|0.0006101657548267367| -|cran|[rgdal](http://rgdal.r-forge.r-project.org)|0.0006008290668166192| -|cran|[RCurl](http://www.omegahat.net/RCurl)|0.0006001762894602047| -|cran|RPostgreSQL|0.0005974789484667003| -|cran|waldo|0.000595536078941603| -|pypi|[ujson](https://pypi.org/project/ujson)|0.0005920237874835961| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.0005864441286678035| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.0005814951328780803| -|cran|simplermarkdown|0.0005807159855250664| -|cran|nlme|0.0005797017885599392| -|pypi|[decorator](https://pypi.org/project/decorator)|0.0005796382671775322| -|cran|mockr|0.0005794770417031327| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.0005785382583755284| -|cran|xfun|0.0005774590380088829| -|pypi|[enum34](https://pypi.org/project/enum34)|0.0005724116066613644| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.0005707544812745533| -|cran|rprojroot|0.0005610763178946831| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.0005580422518087392| -|cran|foreach|0.0005574511685055245| -|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.0005542700420384984| -|pypi|[apyori](https://github.com/ymoch/apyori)|0.0005536912751677852| -|pypi|[http](https://github.com/franckcuny/http)|0.0005536912751677852| -|pypi|[llist](https://github.com/ajakubek/python-llist)|0.0005536912751677852| -|npm||0.0005528838413299876| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.0005512602520697536| -|pypi|[isal](https://github.com/pycompression/python-isal)|0.0005481543624161073| -|cran|pkgbuild|0.0005459226233918479| -|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.0005408313529062852| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.0005404916638861274| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.0005396227226415738| -|cran|DiagrammeR|0.0005262988128677493| -|npm|[angular](http://angularjs.org)|0.0005241607409182912| -|pypi|[pygraphviz](http://pygraphviz.github.io)|0.0005237448694697488| -|pypi|[keras](https://keras.io/)|0.0005141076413786989| -|cran|crul|0.0005139454104610558| -|cran|Lahman|0.0005102978417699357| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.0005072421300207649| -|cran|pkgKitten|0.0005041807812161426| -|cran|formattable|0.0005005072767106925| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.0005003257525277464| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.0004993700047295304| -|pypi|[docopt](https://pypi.org/project/docopt)|0.0004984656633009748| -|cran|rappdirs|0.0004979599721146637| -|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.0004935669697682071| -|pypi|[bmipy](http://csdms.colorado.edu)|0.0004921700223713646| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.0004918193042611235| -|cran|inline|0.00049047692215574| -|npm|fs|0.00048736938752295364| -|npm|[express](http://expressjs.com/)|0.0004854105783059223| -|cran|ragg|0.00048447818542231514| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.0004828567112075004| -|cran|[webutils](https://github.com/jeroen/webutils)|0.0004814347923935762| -|cran|RMySQL|0.0004808597148713003| -|cran|lobstr|0.0004808597148713003| -|pypi|[pycparser](https://pypi.org/project/pycparser)|0.00047778961409395966| -|pypi|[commonmark](https://pypi.org/project/commonmark)|0.0004775325398489933| -|pypi|[psutil](https://pypi.org/project/psutil)|0.000476804431299652| -|pypi|[pulp](https://github.com/coin-or/pulp)|0.0004706375838926174| -|cran|fansi|0.0004679766841061359| -|cran|survival|0.00046377452407825103| -|cran|abind|0.00045468770937886387| -|cran|bslib|0.0004471446705996979| -|cran|chron|0.00044566079471251933| -|npm|[nuxt](https://github.com/nuxt/nuxt.js#readme)|0.0004429530201342282| -|cran|datasets|0.0004417247853305143| -|pypi|[pyfaidx](http://mattshirley.com)|0.0004394375199744327| -|cran|devtools|0.0004386008137089213| -|cran|winch|0.00043615816410589166| -|npm|[papaparse](http://papaparse.com)|0.00043615052732502393| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.0004348999145275404| -|pypi|[hunter](https://pypi.org/project/hunter)|0.0004348999145275404| -|pypi|[fields](https://pypi.org/project/fields)|0.0004348999145275404| -|pypi|[pyproj](https://pypi.org/project/pyproj)|0.00042905571296624937| -|pypi|[PyQt5-sip](https://pypi.org/project/PyQt5-sip)|0.00042824162548860535| -|cran|doParallel|0.00042680284296969437| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.00042646091464438907| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.0004257116393738053| -|cran|iterators|0.0004247057832181703| -|pypi|[seaborn](https://seaborn.pydata.org)|0.00042450137825877644| -|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.0004237364678272083| -|cran|ps|0.00042024214481972835| -|pypi|[pybedtools](https://github.com/daler/pybedtools)|0.00041966283157558325| -|pypi|[isort](https://pypi.org/project/isort)|0.0004181276841482904| -|pypi|[typing](https://docs.python.org/3/library/typing.html)|0.0004166526845637583| -|npm|[lodash](https://lodash.com/)|0.0004158133508173084| -|npm|[serve-static](https://github.com/expressjs/serve-static#readme)|0.000413758389261745| -|cran|SnowballC|0.00041044667748359024| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.0004104272191853122| -|pypi|[threadpoolctl](https://github.com/joblib/threadpoolctl)|0.00040458779468374387| -|cran|itertools|0.0004011999520613613| -|pypi|[python-magic](http://github.com/ahupp/python-magic)|0.00039988814317673375| -|pypi|[pillow](https://pypi.org/project/pillow)|0.0003967325126196687| -|cran|gtable|0.0003890123142987885| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.0003875874540846411| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.0003875874540846411| -|cran|ape|0.0003874785543638321| -|cran|timeDate|0.000384266632161941| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.00038159123620619694| -|pypi|[et-xmlfile](https://foss.heptapod.net/openpyxl/et_xmlfile)|0.0003804298126370274| -|cran|[readr](https://readr.tidyverse.org)|0.00038018827019402134| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.0003787204370713132| -|cran|tis|0.0003774572612002502| -|pypi|[dill](https://pypi.org/project/dill)|0.00037588254418959114| -|pypi|[llvmlite](http://llvmlite.readthedocs.io)|0.00037370347773032337| -|cran|vdiffr|0.00037223126691740083| -|pypi|[Cython](http://cython.org/)|0.0003718959731543624| -|pypi|[execnet](https://pypi.org/project/execnet)|0.00036957558650827687| -|pypi|[tenacity](https://pypi.org/project/tenacity)|0.0003694142355292857| -|npm|[finalhandler](https://github.com/pillarjs/finalhandler#readme)|0.0003691275167785235| -|pypi|[conan](https://conan.io)|0.0003691275167785235| -|pypi|[readthedocs-sphinx-search](https://github.com/readthedocs/readthedocs-sphinx-search)|0.0003691275167785235| -|pypi|[ruamel.YAML](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.0003691275167785235| -|pypi|[jmetalpy](https://github.com/jMetal/jMetalPy)|0.0003691275167785235| -|pypi|[pyMSA](https://github.com/benhid/pyMSA)|0.0003691275167785235| -|pypi|[rdflib-jsonld](https://github.com/RDFLib/rdflib-jsonld)|0.0003691275167785235| -|cran|[raster](https://rspatial.org/raster)|0.00036790812930434367| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.00036780694355349335| -|cran|[sys](https://github.com/jeroen/sys)|0.0003661023177888863| -|pypi|[pint](https://pypi.org/project/pint)|0.0003614813039309683| -|cran|assertthat|0.00036095877096687734| -|npm|[axios](https://axios-http.com)|0.00035740918291253857| -|cran|munsell|0.0003533423614865891| -|pypi|[babel](https://pypi.org/project/babel)|0.0003518654363318807| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.00035064359162510994| -|pypi|[Biopython](https://biopython.org/)|0.000345364932885906| -|pypi|[shiboken2](https://www.pyside.org)|0.0003442409395973154| -|cran|hexbin|0.0003434199090874799| -|cran|terra|0.0003427239769501481| -|cran|mvtnorm|0.0003414878099627521| -|cran|mapproj|0.0003412877435701779| -|cran|rpart|0.0003412412282486144| -|pypi|[pexpect](https://pypi.org/project/pexpect)|0.00034069124105178217| -|cran|[DT](https://github.com/rstudio/DT)|0.0003395290003106146| -|pypi|[typing_extensions](https://typing.readthedocs.io/)|0.00033930414394726493| -|cran|vroom|0.00033918834659520515| -|cran|[mgcv](NA)|0.00033828215139618744| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.00033544833464501717| -|pypi|[argparse](https://github.com/ThomasWaldmann/argparse/)|0.000335245040655653| -|cran|[lwgeom](https://github.com/r-spatial/lwgeom/)|0.000333955271806614| -|pypi|[scikit-image](https://scikit-image.org)|0.0003336244188412618| -|cran|clipr|0.00033172517863060315| -|pypi|[more_itertools](https://github.com/more-itertools/more-itertools)|0.0003313758389261745| -|pypi|[futures](https://pypi.org/project/futures)|0.00033135940847716934| -|cran|gstat|0.0003274310157449384| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.0003245015851975735| -|cran|patchwork|0.00032400678749781723| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.00032360229932752304| -|pypi|[dask](https://pypi.org/project/dask)|0.00032358333939925177| -|pypi|[intervaltree](https://github.com/chaimleib/intervaltree)|0.0003211409395973154| -|npm|[node-fetch](https://github.com/node-fetch/node-fetch)|0.00032101924920716865| -|cran|whoami|0.0003198908642654914| -|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.0003194372741352607| -|pypi|[PyQt5-Qt5](https://pypi.org/project/PyQt5-Qt5)|0.0003192989121616638| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.00031897736111774456| -|cran|sass|0.00031804442454589813| -|pypi|[tartiflette](https://tartiflette.io)|0.00031639501438159153| -|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.00031639501438159153| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.00031415503370436687| -|pypi|[codecov](https://github.com/codecov/codecov-python)|0.000311242683979163| -|pypi|[quantities](http://python-quantities.readthedocs.io/)|0.0003111052852348993| -|pypi|[appdirs](https://pypi.org/project/appdirs)|0.0003087163507633306| -|pypi|[nlppln](https://github.com/nlppln/nlppln)|0.00030760626398210287| -|cran|graph|0.0003073254794042697| -|pypi|[statsmodels](https://www.statsmodels.org/)|0.0003054183151798596| -|pypi|[jupyter](http://jupyter.org)|0.0003044354234272439| -|pypi|[semver](https://github.com/python-semver/python-semver)|0.00030415279211839613| -|cran|cachem|0.0003040501175478525| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.00030317877791751234| -|pypi|[redis](https://pypi.org/project/redis)|0.00030011748675907936| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.00029822846803783455| -|pypi|[python-levenshtein](http://github.com/ztane/python-Levenshtein)|0.00029756951102588683| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.0002965239755025653| -|npm|[d3-dispatch](https://d3js.org/d3-dispatch/)|0.0002950383509108341| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.00029380926373416663| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.0002922961901140167| -|npm|[three](https://threejs.org/)|0.0002878640939597315| -|pypi|[rtree](https://pypi.org/project/rtree)|0.00028731518153916685| -|cran|tzdb|0.0002854483888581654| -|cran|desc|0.0002850476729165221| -|cran|future|0.00028400615581542133| -|pypi|[sphinxcontrib-moderncmakedomain](https://github.com/scikit-build/moderncmakedomain)|0.0002838732576148683| -|pypi|[pydot](https://pypi.org/project/pydot)|0.00028372266660923535| -|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.0002828891988653006| -|pypi|[tornado](https://pypi.org/project/tornado)|0.00028268650329161296| -|pypi|[pycosat](https://github.com/ContinuumIO/pycosat)|0.0002814215985356925| -|pypi|[mappy](https://github.com/lh3/minimap2)|0.0002812400127836369| -|pypi|[pyhocon](http://github.com/chimpler/pyhocon/)|0.0002812400127836369| -|pypi|[Django](https://pypi.org/project/Django)|0.0002806242742637474| -|npm|file-type|0.00027918817759421785| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.00027795781339513516| -|cran|[insight](https://easystats.github.io/insight/)|0.00027746882241930687| -|npm|[quasar](https://quasar.dev)|0.0002768456375838926| -|npm|[midi-parser-js](https://github.com/colxi/midi-parser-js#readme)|0.0002768456375838926| -|npm|[plotly.js-dist-min](https://github.com/plotly/plotly.js#readme)|0.0002768456375838926| -|npm|[yargs](https://yargs.js.org/)|0.0002768456375838926| -|pypi|[shortuuid](https://github.com/skorokithakis/shortuuid/)|0.0002768456375838926| -|pypi|[ruamel_yaml_conda](https://pypi.org/project/ruamel_yaml_conda)|0.0002768456375838926| -|pypi|[menuinst](https://github.com/ContinuumIO/menuinst)|0.0002768456375838926| -|pypi|[lazyarray](http://github.com/NeuralEnsemble/lazyarray/)|0.0002768456375838926| -|pypi|[cherrypy](https://www.cherrypy.org)|0.0002768456375838926| -|pypi|[django-tastypie](https://github.com/django-tastypie/django-tastypie)|0.0002768456375838926| -|pypi|[South](http://south.aeracode.org/)|0.0002768456375838926| -|pypi|[pyxdg](http://freedesktop.org/wiki/Software/pyxdg)|0.0002768456375838926| -|pypi|[earthengine-api](http://code.google.com/p/earthengine-api/)|0.0002768456375838926| -|pypi|[openbabel](http://openbabel.org/)|0.0002768456375838926| -|pypi|[bitarray](https://github.com/ilanschnell/bitarray)|0.0002768456375838926| -|cran|Hmisc|0.00027592370562568453| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.0002750315881386112| -|cran|forcats|0.0002743385447109134| -|cran|parameters|0.00027381945507739435| -|pypi|[umap-learn](https://pypi.org/project/umap-learn)|0.0002735117231761527| -|cran|RUnit|0.0002733949683352677| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.00027317510566403927| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.00027008556972975327| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.00027008556972975327| -|cran|askpass|0.00026809497447142084| -|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.0002666479828895936| -|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.0002666479828895936| -|cran|SparseM|0.00026534750858842786| -|cran|R.methodsS3|0.0002626877976964874| -|rubygems|rake|0.0002612412122583962| -|pypi|[tzdata](https://github.com/python/tzdata)|0.0002600855826635081| -|cran|deldir|0.00025815588273280063| -|pypi|[bump2version](https://pypi.org/project/bump2version)|0.00025528507397998593| -|pypi|[cycler](https://github.com/matplotlib/cycler)|0.000250441253377495| +|cran|R|0.03459483212294504| +|pypi|[numpy](https://www.numpy.org)|0.03433503389896354| +|cran|[jsonlite](https://arxiv.org/abs/1403.2805 (paper))|0.028199251359688197| +|cran|[testthat](https://testthat.r-lib.org)|0.024186798443270662| +|cran|[httr](https://httr.r-lib.org/)|0.020714456795037903| +|cran|[knitr](https://yihui.org/knitr/)|0.01702485221808837| +|cran|[rmarkdown](https://github.com/rstudio/rmarkdown)|0.016051881658045594| +|pypi|[matplotlib](https://matplotlib.org)|0.014927141170386085| +|cran|utils|0.014069859671562381| +|cran|methods|0.013656483420909757| +|cran|[covr](https://covr.r-lib.org)|0.012615844951513489| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.009975448288340467| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.007907778054217511| +|cran|[tidyr](https://tidyr.tidyverse.org)|0.007355277544691568| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.006605534932474608| +|cran|[magrittr](https://magrittr.tidyverse.org)|0.006453801703007305| +|cran|[rlang](https://rlang.r-lib.org)|0.006024331858082589| +|cran|stats|0.005373097818838152| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.005163570417434633| +|cran|[withr](https://withr.r-lib.org)|0.005109718344753375| +|pypi|[six](https://pypi.org/project/six)|0.005088112536986267| +|cran|[yaml](https://github.com/vubiostat/r-yaml/)|0.004611015136511384| +|cran|[tibble](https://tibble.tidyverse.org/)|0.004557139698925646| +|cran|tools|0.00433075367528893| +|cran|[curl](https://github.com/jeroen/curl (devel) https://curl.se/libcurl/ +(upstream))|0.004124929907265835| +|pypi|[biopython](https://biopython.org/)|0.004053039927086237| +|pypi|[h5py](http://www.h5py.org)|0.0039924377163693195| +|cran|[Rcpp](http://www.rcpp.org)|0.003935628524548365| +|cran|[vctrs](https://vctrs.r-lib.org/)|0.0036369965360368906| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.003605360116434573| +|cran|[R6](https://r6.r-lib.org)|0.003590816970177616| +|cran|grDevices|0.0033971234797945987| +|cran|graphics|0.0031929479022598296| +|cran|[crayon](https://github.com/r-lib/crayon#readme)|0.00318913189284851| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.003123330437733351| +|cran|[ggplot2](https://ggplot2.tidyverse.org)|0.0030688590968022803| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002996679591096132| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.0029804931957098353| +|pypi|[lxml](https://pypi.org/project/lxml)|0.00297719496186923| +|cran|[spelling](https://github.com/ropensci/spelling#readme)|0.0029158343971456297| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.002874249236735988| +|cran|[dplyr](https://dplyr.tidyverse.org)|0.002819186663106828| +|cran|[pryr](https://github.com/hadley/pryr)|0.0028009702854728544| +|cran|[glue](https://github.com/tidyverse/glue)|0.0026870704469316663| +|pypi|[numba](https://numba.pydata.org)|0.002592841877361804| +|pypi|[requests](https://pypi.org/project/requests)|0.0024464921106993782| +|cran|[digest](https://github.com/eddelbuettel/digest)|0.002437888278896484| +|cran|[roxygen2](https://roxygen2.r-lib.org/)|0.0024329679392081807| +|pypi|[pytz](https://pypi.org/project/pytz)|0.00243056943790324| +|cran|[htmltools](https://github.com/rstudio/htmltools)|0.0024065293229246117| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.0023665400845621497| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.0020282067065196586| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.0020095230085622686| +|cran|[tinytest](https://github.com/markvanderloo/tinytest)|0.002004788964535879| +|pypi|[scipy](https://www.scipy.org)|0.0019985565482753486| +|cran|[rstudioapi](https://github.com/rstudio/rstudioapi)|0.0019953648376784504| +|cran|[mockery](https://github.com/r-lib/mockery)|0.001987295077652944| +|pypi|[contextlib2](http://contextlib2.readthedocs.org)|0.0019740591929706132| +|pypi|[packaging](https://pypi.org/project/packaging)|0.0019431336991752688| +|cran|[stringi](https://stringi.gagolewski.com/ https://icu.unicode.org/)|0.0018401776756390867| +|cran|[MASS](http://www.stats.ox.ac.uk/pub/MASS4/)|0.0018350562326889391| +|cran|[xml2](https://xml2.r-lib.org/)|0.0018264405490459833| +|cran|[cli](https://cli.r-lib.org)|0.001780220021593451| +|cran|[pillar](https://pillar.r-lib.org/)|0.0017536838474702416| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.0017491067121146373| +|cran|[shiny](https://shiny.rstudio.com/)|0.0017328411157388917| +|cran|[bit64](https://github.com/truecluster/bit64)|0.0017236100111834868| +|pypi|[flake8](https://pypi.org/project/flake8)|0.00170725682323388| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.001701601468879362| +|cran|[lifecycle](https://lifecycle.r-lib.org/)|0.0016987565090319841| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.0016610681458322926| +|cran|[callr](https://callr.r-lib.org)|0.0016485254799435123| +|cran|[purrr](http://purrr.tidyverse.org)|0.0016434860657080221| +|pypi|[tomli](https://pypi.org/project/tomli)|0.0016257850092868842| +|pypi|[pandas](https://pandas.pydata.org)|0.0015964186009441942| +|cran|[lattice](http://lattice.r-forge.r-project.org/)|0.0014968370152055382| +|cran|[tidyselect](https://tidyselect.r-lib.org)|0.0014932807251432992| +|cran|[processx](https://processx.r-lib.org)|0.001432495801148572| +|cran|[DBI](https://dbi.r-dbi.org)|0.0014110358093505399| +|cran|[rbenchmark](http://rbenchmark.googlecode.com)|0.0013916472333871596| +|pypi|[mypy](https://pypi.org/project/mypy)|0.001386410358590583| +|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.0013860499139414803| +|pypi|[mock](https://pypi.org/project/mock)|0.0013758679272941334| +|pypi|[idna](https://github.com/kjd/idna)|0.0013722420272384128| +|cran|[bitops](https://github.com/mmaechler/R-bitops)|0.0013703968769049509| +|cran|[markdown](https://github.com/rstudio/markdown)|0.0013630830245250647| +|pypi|[certifi](https://pypi.org/project/certifi)|0.0013557745777998105| +|cran|[sp](https://github.com/edzer/sp/ https://edzer.github.io/sp/)|0.0013535826474691114| +|cran|[zoo](http://zoo.R-Forge.R-project.org/)|0.0013498206296207406| +|pypi|[Sphinx](https://www.sphinx-doc.org/)|0.0013475386411156566| +|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.001329632394806558| +|cran|parallel|0.0013266308148621984| +|cran|[pracma](NA)|0.0013025594376042716| +|cran|[htmlwidgets](https://github.com/ramnathv/htmlwidgets)|0.0013010529341724356| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.0012755314630039723| +|cran|[RSQLite](https://rsqlite.r-dbi.org)|0.001263603661418508| +|pypi|[future](https://pypi.org/project/future)|0.0012596786494052182| +|pypi|[click](https://pypi.org/project/click)|0.0012475231161994547| +|cran|grid|0.0012431534090946617| +|cran|[hms](https://hms.tidyverse.org/)|0.0012420657501443385| +|pypi|[Babel](https://pypi.org/project/Babel)|0.001215691431796665| +|cran|[stringr](http://stringr.tidyverse.org)|0.0012126895621582309| +|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.0011912143488102443| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.0011649850025011361| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.0011333704585880183| +|pypi|[defusedxml](https://github.com/tiran/defusedxml)|0.0010732230703202734| +|cran|[R.utils](https://github.com/HenrikBengtsson/R.utils)|0.0010693361408510929| +|pypi|[pygments](https://pypi.org/project/pygments)|0.0010673443322513263| +|pypi|[chardet](https://pypi.org/project/chardet)|0.0010383126653483712| +|cran|[mime](https://github.com/yihui/mime)|0.0010296712415911373| +|pypi|[isal](https://github.com/pycompression/python-isal)|0.001025114909638554| +|cran|[microbenchmark](https://github.com/joshuaulrich/microbenchmark/)|0.0010239653309060486| +|cran|[nycflights13](https://github.com/hadley/nycflights13)|0.0010147616588765179| +|pypi|[wheel](https://pypi.org/project/wheel)|0.0009681764600550026| +|pypi|[docopt](https://pypi.org/project/docopt)|0.0009573461366382111| +|pypi|[joblib](https://joblib.readthedocs.io)|0.0009568826020326367| +|cran|[webmockr](https://github.com/ropensci/webmockr (devel) +https://books.ropensci.org/http-testing/ (user manual) +https://docs.ropensci.org/webmockr/ (documentation))|0.0009495885896783475| +|cran|ellipsis|0.000946117874209225| +|cran|[unix](https://github.com/jeroen/unix)|0.0009451518489926089| +|cran|bench|0.000923123366326633| +|cran|[xts](https://github.com/joshuaulrich/xts)|0.0009177181033137677| +|cran|[Matrix](http://Matrix.R-forge.R-project.org/)|0.0009119871321005778| +|cran|[nanotime](https://github.com/eddelbuettel/nanotime)|0.0008999561867721025| +|cran|[broom](https://broom.tidymodels.org/)|0.0008919104809851197| +|cran|[rgl](https://github.com/dmurdoch/rgl)|0.0008805812569133232| +|cran|[httpcode](https://github.com/sckott/httpcode)|0.000878612901210189| +|cran|[generics](https://generics.r-lib.org)|0.0008756402012776802| +|cran|[bit](https://github.com/truecluster/bit)|0.0008688483005714295| +|cran|evaluate|0.000864733376511619| +|pypi|[nose](https://pypi.org/project/nose)|0.0008568863946821556| +|pypi|[smmap](https://pypi.org/project/smmap)|0.0008531900334658528| +|cran|[maptools](http://maptools.r-forge.r-project.org/)|0.0008530925119658258| +|cran|[scales](https://scales.r-lib.org)|0.000852392827861058| +|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.0008386559520540929| +|cran|[fs](https://fs.r-lib.org)|0.0008259038308673948| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.0008252971675909484| +|cran|RColorBrewer|0.0008240069372671377| +|cran|[rgeos](https://r-forge.r-project.org/projects/rgeos/ https://libgeos.org +http://rgeos.r-forge.r-project.org/index.html)|0.0008183359126582197| +|cran|[sf](https://r-spatial.github.io/sf/)|0.0008068501151515312| +|pypi|[attrs](https://pypi.org/project/attrs)|0.0008031259150515656| +|cran|tcltk|0.0008021244418094772| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.000801119488848297| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.000800794187174928| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.0007999503925123647| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.0007869074201137029| +|cran|[fauxpas](https://docs.ropensci.org/fauxpas)|0.0007707219242589057| +|cran|[urltools](https://github.com/Ironholds/urltools/)|0.0007690782235384633| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.0007644574513828009| +|cran|[ncdf4](http://cirrus.ucsd.edu/~pierce/ncdf/)|0.0007624006796446137| +|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.0007590408386793929| +|cran|[plyr](http://had.co.nz/plyr)|0.000756059827436069| +|pypi|[cffi](http://cffi.readthedocs.org)|0.0007523718700279258| +|cran|[pkgload](https://github.com/r-lib/pkgload)|0.0007500188946727266| +|pypi|[wrapt](https://pypi.org/project/wrapt)|0.0007464547014487439| +|cran|[blob](https://blob.tidyverse.org)|0.000722883229246218| +|cran|[httpuv](https://github.com/rstudio/httpuv)|0.0007143841904944806| +|pypi|[pillow](https://python-pillow.org)|0.0007082898750348318| +|cran|[rcrossref](https://github.com/ropensci/rcrossref)|0.0007003012048192771| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.0006874024824985347| +|pypi|[pywin32](https://pypi.org/project/pywin32)|0.0006828569569169535| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.0006823512424975742| +|cran|[data.table](https://r-datatable.com)|0.0006816562573395442| +|cran|[usethis](https://usethis.r-lib.org)|0.0006781188456772734| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.0006676271248038155| +|cran|[numDeriv](http://optimizer.r-forge.r-project.org/)|0.0006615089107699457| +|cran|pkgconfig|0.0006613505562314294| +|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.0006561550773210914| +|pypi|[enum34](https://pypi.org/project/enum34)|0.000650072511570503| +|pypi|[ipython](https://pypi.org/project/ipython)|0.0006480233169906701| +|cran|[maps](NA)|0.0006440117741052799| +|pypi|[brotli](https://pypi.org/project/brotli)|0.0006408575100120244| +|cran|[lubridate](https://lubridate.tidyverse.org)|0.0006388443156990783| +|cran|[dbplyr](https://dbplyr.tidyverse.org/)|0.0006386646149512879| +|cran|[XML](http://www.omegahat.net/RSXML/)|0.0006386146896811155| +|pypi|[twine](https://pypi.org/project/twine)|0.000638464203166059| +|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.0006324779881070101| +|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.0006291951270158665| +|cran|[png](http://www.rforge.net/png/)|0.0006285698933687352| +|cran|[brio](https://brio.r-lib.org)|0.0006277726453550514| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.0006267790053583557| +|pypi|[semver](https://github.com/python-semver/python-semver)|0.0006245165718162186| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.0006238071761345054| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.0006208286422394833| +|pypi|[sphinxext-opengraph](https://github.com/wpilibsuite/sphinxext-opengraph)|0.00061293306857163| +|pypi|[msgpack](https://msgpack.org/)|0.000608285249185799| +|npm|[core-js](https://github.com/zloirock/core-js#readme)|0.0006059147586586949| +|cran|[igraph](https://igraph.org)|0.0006051130387137356| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.0005967276358337615| +|pypi|[ujson](https://pypi.org/project/ujson)|0.0005926731153208985| +|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.000591890743507558| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.0005900121717688252| +|cran|[rgdal](http://rgdal.r-forge.r-project.org)|0.0005883255046375217| +|cran|[RCurl](http://www.omegahat.net/RCurl)|0.0005876863119139356| +|cran|RPostgreSQL|0.0005850451039750607| +|cran|[waldo](https://github.com/r-lib/waldo)|0.0005831426665649431| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.0005822260068689227| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.0005822260068689227| +|pypi|[keras](https://pypi.org/project/keras)|0.000578077126250281| +|pypi|[statsmodels](https://pypi.org/project/statsmodels)|0.0005757174908433794| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.0005724222081952403| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.0005709056535037952| +|cran|[simplermarkdown](https://github.com/djvanderlaan/simplermarkdown)|0.0005686309869215876| +|cran|[nlme](https://svn.r-project.org/R-packages/trunk/nlme/)|0.0005676378959173998| +|cran|mockr|0.0005674178261583798| +|cran|[xfun](https://github.com/yihui/xfun)|0.0005654418181598482| +|npm|[nuxt](https://github.com/nuxt/nuxt.js#readme)|0.0005596385542168675| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.0005588979202748989| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.0005508144707133262| +|cran|[rprojroot](https://rprojroot.r-lib.org/)|0.0005494000308848267| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.00054615121690258| +|cran|[foreach](https://github.com/RevolutionAnalytics/foreach)|0.0005458503227206338| +|pypi|[openphi](https://gitlab.com/BioimageInformaticsGroup/openphi)|0.0005421686746987952| +|pypi|[apyori](https://github.com/ymoch/apyori)|0.0005421686746987952| +|pypi|[http](https://github.com/franckcuny/http)|0.0005421686746987952| +|pypi|[llist](https://github.com/ajakubek/python-llist)|0.0005403614457831326| +|pypi|[check-manifest](https://github.com/mgedmin/check-manifest)|0.0005372447594087619| +|pypi|[markdown2](https://github.com/trentm/python-markdown2)|0.0005361528878014535| +|pypi|[olefile](https://www.decalage.info/python/olefileio)|0.0005361528878014535| +|cran|pkgbuild|0.0005345616925655117| +|pypi|[sphinx-copybutton](https://github.com/executablebooks/sphinx-copybutton)|0.0005299915716575908| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.0005264157587362016| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.000525506886207626| +|pypi|[black](https://pypi.org/project/black)|0.0005238315283381097| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.0005234145191879192| +|npm|[angular](http://angularjs.org)|0.0005197587101653367| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.000519068102324283| +|cran|[DiagrammeR](https://github.com/rich-iannone/DiagrammeR)|0.0005153462636404906| +|pypi|[SQLAlchemy](https://www.sqlalchemy.org)|0.0005104093907090021| +|pypi|[py](https://pypi.org/project/py)|0.000508908223164955| +|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.0005039298608444769| +|cran|[crul](https://docs.ropensci.org/crul/ (website) +https://github.com/ropensci/crul (devel) +https://books.ropensci.org/http-testing/ (user manual))|0.0005032499418972444| +|pypi|[psutil](https://pypi.org/project/psutil)|0.0005017764539983165| +|cran|Lahman|0.0004996782809883057| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.0004995317499309193| +|pypi|[tornado](http://www.tornadoweb.org/)|0.0004939191301162527| +|cran|[pkgKitten](https://github.com/eddelbuettel/pkgkitten)|0.000493688519613616| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.0004926265504378866| +|pypi|[sphinx-issues](https://github.com/sloria/sphinx-issues)|0.0004917624041242013| +|cran|formattable|0.0004900914626279948| +|cran|[rappdirs](https://rappdirs.r-lib.org)|0.0004875971687519269| +|pypi|[munkres](https://pypi.org/project/munkres)|0.00048616148660063087| +|pypi|[pyroma](https://github.com/regebro/pyroma)|0.0004859732584259239| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.00048576092928461227| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.0004827130644229694| +|cran|[inline](https://github.com/eddelbuettel/inline)|0.0004802698449148208| +|pypi|[PyQt5-sip](https://pypi.org/project/PyQt5-sip)|0.00047854385596685377| +|npm|[fs](https://github.com/npm/security-holder#readme)|0.00047722697967745957| +|npm|[express](http://expressjs.com/)|0.00047717263910788005| +|npm|[lodash](https://lodash.com/)|0.0004753510570591012| +|cran|[ragg](https://ragg.r-lib.org)|0.0004743959449808873| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.00047156332354667576| +|cran|[webutils](https://github.com/jeroen/webutils)|0.0004714158865277734| +|cran|RMySQL|0.0004708527766647788| +|cran|lobstr|0.0004708527766647788| +|pypi|[sphinx-removed-in](https://github.com/MrSenko/sphinx-removed-in)|0.00046973044804241737| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.00046879152153420317| +|pypi|[commonmark](https://pypi.org/project/commonmark)|0.00045975792896862174| +|cran|fansi|0.0004582378484018461| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.00045632039534226145| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.00045632039534226145| +|cran|[survival](https://github.com/therneau/survival)|0.0004541231374873564| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.00045238431627529687| +|pypi|[bmipy](http://csdms.colorado.edu)|0.00045180722891566266| +|pypi|[pulp](https://github.com/coin-or/pulp)|0.0004518072289156626| +|pypi|[pyasn1](https://pypi.org/project/pyasn1)|0.000447487035488207| +|cran|[abind](NA)|0.00044522542407963235| +|pypi|[sympy](https://pypi.org/project/sympy)|0.00044471923956674626| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.0004404602109796653| +|cran|[bslib](https://rstudio.github.io/bslib/)|0.0004378393598205147| +|pypi|[toml](https://pypi.org/project/toml)|0.00043761500460807415| +|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.00043755046706991533| +|cran|chron|0.0004363863641544278| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.00043620031424988905| +|pypi|[pysqlite3](https://github.com/coleifer/pysqlite3)|0.0004330120481927711| +|cran|datasets|0.00043253226515386594| +|cran|[devtools](https://devtools.r-lib.org/)|0.0004294733049898964| +|cran|[winch](https://r-prof.github.io/winch/)|0.0004270814881825485| +|npm|[papaparse](http://papaparse.com)|0.0004270740103270224| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.00042679931100491204| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.00042679931100491204| +|cran|[doParallel](https://github.com/RevolutionAnalytics/doparallel)|0.0004179208560951882| +|cran|iterators|0.00041586743723663123| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.00041283031506921425| +|cran|[ps](https://github.com/r-lib/ps#readme)|0.00041149668945108077| +|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.0004112912555437086| +|npm|[serve-static](https://github.com/expressjs/serve-static#readme)|0.0004070115690032859| +|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.00040696296686746996| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.0004061248487153894| +|npm|nestjs|0.0004043291811313049| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.000403216193252284| +|cran|[SnowballC](https://r-forge.r-project.org/projects/r-temis/)|0.0004019050708327817| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.00039785231970105184| +|pypi|[typing](https://pypi.org/project/typing)|0.0003960445539024231| +|cran|itertools|0.00039285077452667807| +|pypi|[et-xmlfile](https://pypi.org/project/et-xmlfile)|0.00039225071812548553| +|pypi|[python-magic](http://github.com/ahupp/python-magic)|0.000391566265060241| +|pypi|[isort](https://pypi.org/project/isort)|0.00039146263957103223| +|pypi|[python-levenshtein](http://github.com/ztane/python-Levenshtein)|0.00039113597246127365| +|npm|[axios](https://axios-http.com)|0.0003867285121113996| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.00038649192506106137| +|pypi|[babel](https://pypi.org/project/babel)|0.0003854164072449969| +|pypi|[pyfaidx](http://mattshirley.com)|0.0003838209982788296| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.00038268495576706683| +|npm|[react-dom](https://reactjs.org/)|0.0003824039160564474| +|npm|[react](https://reactjs.org/)|0.0003824039160564474| +|cran|gtable|0.00038091676777997493| +|cran|[ape](http://ape-package.ird.fr/)|0.00037941492617882353| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.00037856498026064557| +|npm|[node-fetch](https://github.com/node-fetch/node-fetch)|0.0003773788392534563| +|cran|timeDate|0.00037626984573140796| +|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.0003739541494308567| +|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.0003731474454316688| +|pypi|[py-make](https://pypi.org/project/py-make)|0.0003731474454316688| +|cran|[readr](https://readr.tidyverse.org)|0.00037227635657552594| +|pypi|[PyQt5-Qt5](https://pypi.org/project/PyQt5-Qt5)|0.0003718682965864752| +|cran|tis|0.00036960218128480164| +|pypi|[llvmlite](https://pypi.org/project/llvmlite)|0.0003659265159812805| +|cran|vdiffr|0.0003644849426332493| +|pypi|[ruamel.yaml.clib](https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree)|0.00036290211709287393| +|pypi|[conan](https://conan.io)|0.00036144578313253013| +|pypi|[readthedocs-sphinx-search](https://github.com/readthedocs/readthedocs-sphinx-search)|0.00036144578313253013| +|pypi|[ruamel.YAML](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.00036144578313253013| +|pypi|[udatetime](https://github.com/freach/udatetime)|0.00036144578313253013| +|npm|[finalhandler](https://github.com/pillarjs/finalhandler#readme)|0.00036144578313253013| +|cran|[raster](https://rspatial.org/raster)|0.0003602517717394123| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.00035944485061267285| +|cran|[sys](https://github.com/jeroen/sys)|0.00035848354009119875| +|pypi|[multidict](https://pypi.org/project/multidict)|0.0003540979491259669| +|pypi|[pint](https://github.com/hgrecco/pint)|0.0003539586919104992| +|cran|assertthat|0.00035344703312638364| +|pypi|[locket](https://pypi.org/project/locket)|0.0003525691346487214| +|pypi|[types-setuptools](https://github.com/python/typeshed)|0.0003516203821201967| +|pypi|[futures](https://pypi.org/project/futures)|0.0003495726283393894| +|pypi|[pybedtools](https://github.com/daler/pybedtools)|0.0003476764199655766| +|pypi|[networkx](https://pypi.org/project/networkx)|0.00034715757196684065| +|cran|munsell|0.00034598912504820464| +|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.0003443322296563426| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.00034419414952032893| +|pypi|[codecov](https://pypi.org/project/codecov)|0.00034256332984919895| +|pypi|[pyproj](https://github.com/pyproj4/pyproj)|0.0003390131102316537| +|pypi|[typing_extensions](https://pypi.org/project/typing_extensions)|0.0003373205027103714| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.00033707732239264624| +|pypi|[shiboken2](https://www.pyside.org)|0.00033707710843373494| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.0003370151533057934| +|cran|[hexbin](https://github.com/edzer/hexbin)|0.00033627316399146467| +|cran|[terra](https://rspatial.org/terra/)|0.00033559171456016694| +|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.0003350184305862606| +|cran|[mvtnorm](http://mvtnorm.R-forge.R-project.org)|0.0003343812728441407| +|cran|mapproj|0.0003341853699361873| +|cran|[rpart](https://github.com/bethatkinson/rpart)|0.0003341398226224113| +|pypi|[dask](https://pypi.org/project/dask)|0.00033274066961726007| +|pypi|[pexpect](https://pypi.org/project/pexpect)|0.0003325002614798056| +|cran|[DT](https://github.com/rstudio/DT)|0.0003324632270292328| +|cran|[vroom](https://vroom.r-lib.org)|0.0003321296624930047| +|cran|[mgcv](NA)|0.000331242325682576| +|pypi|[mappy](https://github.com/lh3/minimap2)|0.0003296041308089501| +|cran|[lwgeom](https://github.com/r-spatial/lwgeom/)|0.00032700549068468007| +|pypi|[gitdb](https://pypi.org/project/gitdb)|0.0003252384215235783| +|cran|[clipr](https://github.com/mdlincoln/clipr)|0.00032482180689568356| +|pypi|[more_itertools](https://github.com/more-itertools/more-itertools)|0.00032447973713033954| +|pypi|[argparse](https://pypi.org/project/argparse)|0.0003221190698645483| +|cran|[gstat](https://github.com/r-spatial/gstat/)|0.00032061700775024634| +|npm|[d3](https://d3js.org)|0.00031949379149250057| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.00031744876952075453| +|pypi|[hunter](https://pypi.org/project/hunter)|0.00031744876952075453| +|pypi|[fields](https://pypi.org/project/fields)|0.00031744876952075453| +|cran|[patchwork](https://patchwork.data-imaginist.com)|0.0003172640394556942| +|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.0003156449288964685| +|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.00031523563484708064| +|pypi|[intervaltree](https://github.com/chaimleib/intervaltree)|0.0003139156626506024| +|cran|[whoami](https://github.com/r-lib/whoami#readme)|0.0003132337707046541| +|cran|[sass](https://github.com/rstudio/sass)|0.0003114257563461479| +|pypi|[entrypoints](https://github.com/takluyver/entrypoints)|0.0003061361126353894| +|pypi|[quantities](http://python-quantities.readthedocs.io/)|0.00030463102409638556| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.00030412235341611076| +|pypi|[pydot](https://pypi.org/project/pydot)|0.00030193148822005024| +|pypi|[pytest-timeout](https://github.com/pytest-dev/pytest-timeout)|0.00030188312250042416| +|pypi|[nlppln](https://github.com/nlppln/nlppln)|0.0003012048192771084| +|cran|graph|0.000300929877970884| +|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.0002998865077645738| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.0002996697086565557| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.00029886169618719517| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.00029886169618719517| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.0002988616961871951| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.0002988616961871951| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.0002988616961871951| +|pypi|[rdflib-jsonld](https://github.com/RDFLib/rdflib-jsonld)|0.0002979216867469879| +|cran|cachem|0.0002977226780808108| +|pypi|[scikit-image](https://scikit-image.org)|0.0002953022763800905| +|pypi|[tzdata](https://pypi.org/project/tzdata)|0.0002947500421807956| +|pypi|[async-generator](https://github.com/python-trio/async_generator)|0.00029362759729793515| +|pypi|[sqlparse](https://pypi.org/project/sqlparse)|0.00028943053814082685| +|npm|[d3-dispatch](https://d3js.org/d3-dispatch/)|0.00028889845094664374| +|npm|[mocha](https://mochajs.org/)|0.00028854750485385637| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.00028583416836748906| +|pypi|[jupyter](https://pypi.org/project/jupyter)|0.00028413975789256477| +|npm|[three](https://threejs.org/)|0.00028322891566265063| +|pypi|[greenlet](https://pypi.org/project/greenlet)|0.00028121157968105567| +|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.00027990574253886384| +|cran|tzdb|0.0002795080609410732| +|pypi|[rtree](https://github.com/Toblerity/rtree)|0.00027929901423877324| +|cran|[desc](https://github.com/r-lib/desc#readme)|0.00027911568410445866| +|npm|[ajv](https://ajv.js.org)|0.000278930849448213| +|cran|[future](https://future.futureverse.org)|0.00027809584151039073| +|pypi|[pycosat](https://pypi.org/project/pycosat)|0.000275565070198148| +|pypi|[pyhocon](http://github.com/chimpler/pyhocon/)|0.0002753872633390706| +|pypi|[astropy](https://pypi.org/project/astropy)|0.0002750918303615278| +|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.00027467753366406804| +|pypi|[Django](https://pypi.org/project/Django)|0.00027341508613446853| +|npm|[file-type](https://github.com/sindresorhus/file-type#readme)|0.0002733781278962002| +|pypi|[redis](https://pypi.org/project/redis)|0.00027275415915418874| +|pypi|[umap-learn](http://github.com/lmcinnes/umap)|0.00027229269498300164| +|cran|[insight](https://easystats.github.io/insight/)|0.00027169455338757974| +|pypi|[sphinxcontrib-moderncmakedomain](https://github.com/scikit-build/moderncmakedomain)|0.0002710843373493976| +|pypi|[dymos](https://github.com/OpenMDAO/dymos)|0.0002710843373493976| +|pypi|[openmdao](http://openmdao.org)|0.0002710843373493976| +|pypi|[pyDOE2](https://github.com/clicumu/pyDOE2)|0.0002710843373493976| +|pypi|[Cactus](http://github.com/koenbok/Cactus)|0.0002710843373493976| +|pypi|[cigar](https://github.com/brentp/cigar)|0.0002710843373493976| +|pypi|[django-tastypie](https://github.com/django-tastypie/django-tastypie)|0.0002710843373493976| +|pypi|[South](http://south.aeracode.org/)|0.0002710843373493976| +|pypi|[sphinx_bootstrap_theme](https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html)|0.0002710843373493976| +|pypi|[cherrypy](https://www.cherrypy.org)|0.0002710843373493976| +|pypi|[ruamel_yaml_conda](https://pypi.org/project/ruamel_yaml_conda)|0.0002710843373493976| +|pypi|[menuinst](https://github.com/ContinuumIO/menuinst)|0.0002710843373493976| +|pypi|[PyNN](http://neuralensemble.org/PyNN/)|0.0002710843373493976| +|pypi|[lazyarray](http://github.com/NeuralEnsemble/lazyarray/)|0.0002710843373493976| +|npm|[midi-parser-js](https://github.com/colxi/midi-parser-js#readme)|0.0002710843373493976| +|npm|[yargs](https://yargs.js.org/)|0.0002710843373493976| +|npm|[plotly.js-dist-min](https://github.com/plotly/plotly.js#readme)|0.0002710843373493976| +|npm|[docusaurus](https://github.com/facebook/docusaurus)|0.0002710843373493976| +|npm|[quasar](https://quasar.dev)|0.0002710843373493976| +|cran|[Hmisc](https://hbiostat.org/R/Hmisc/)|0.0002701815912698378| +|cran|[forcats](https://forcats.tidyverse.org)|0.0002686294183697225| +|cran|[parameters](https://easystats.github.io/parameters/)|0.00026812113125869723| +|pypi|[Flask](https://palletsprojects.com/p/flask)|0.00026806674609633556| +|cran|RUnit|0.00026770547830419424| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.0002655952030197885| +|pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.0002646750192369238| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.00026427816187691287| +|pypi|[fs](https://pypi.org/project/fs)|0.0002641045390301291| +|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.0002635506732813607| +|cran|[askpass](https://github.com/jeroen/askpass#readme)|0.00026251578004101903| +|pypi|[bump2version](https://pypi.org/project/bump2version)|0.00026056547930853853| +|npm|[vows](https://github.com/cloudhead/vows)|0.0002603519127463744| +|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.0002602409638554217| +|cran|[SparseM](http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html)|0.00025982549033740906| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.0002595164773231884| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.00025832426604619814| +|cran|[R.methodsS3](https://github.com/HenrikBengtsson/R.methodsS3)|0.00025722112939831305| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.00025663835689503594| +|pypi|[Markdown](https://pypi.org/project/Markdown)|0.00025387832321019615| +|cran|[deldir](https://www.stat.auckland.ac.nz/~rolf/)|0.00025278352591798876| +|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.00025023127354824624| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.00024952823099439803| +|pypi|[decorator](https://pypi.org/project/decorator)|0.00024823438579295336| +|pypi|[oauthlib](https://pypi.org/project/oauthlib)|0.0002480934092226953| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.0002474486395554112| |cran|[magick](https://docs.ropensci.org/magick/ (website) -https://github.com/ropensci/magick (devel))|0.00024894580437966675| -|pypi|[sqlparse](https://github.com/andialbrecht/sqlparse)|0.00024817871644188536| -|cran|fields|0.0002479339570968096| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.00024731818007016956| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.0002457262509000701| -|cran|R.oo|0.00024526412397884604| -|cran|gridExtra|0.0002449821483591109| -|cran|base64enc|0.000244042097179113| -|cran|[outsider.base](https://docs.ropensci.org/outsider.base)|0.00024331993509845858| -|pypi|[freesasa](http://freesasa.github.io/)|0.00024284705051218648| -|pypi|[pip](https://pypi.org/project/pip)|0.00024258337059406167| -|cran|interp|0.00024239455427847774| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.00024217240995824414| -|cran|googleCloudStorageR|0.0002412667579471512| -|pypi|[furo](https://pypi.org/project/furo)|0.00024087125499354953| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.00024069062806199906| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.0002387562702328291| -|npm|mocha|0.00023874770140721574| -|cran|lme4|0.00023852033022217349| -|cran|fastmatch|0.0002371445754742854| -|cran|lintr|0.00023711847944911417| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.00023679994905220387| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.00023679994905220387| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.00023679994905220387| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.00023679994905220387| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.00023679994905220387| -|cran|googleAuthR|0.00023634040935342697| -|cran|promises|0.00023632204819679334| -|pypi|[networkx](https://networkx.org/)|0.0002361996257695595| -|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.00023504056551534627| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.0002349781261468131| -|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.0002348993288590604| -|cran|nnet|0.000234635977971278| -|pypi|[pep517](https://pypi.org/project/pep517)|0.00023395544679907893| -|npm|[react](https://reactjs.org/)|0.00023233356144403253| -|npm|react-dom|0.00023233356144403253| -|cran|aws.s3|0.00023128837441016673| -|cran|Cairo|0.0002309561857800544| -|cran|quantreg|0.00023048098832884948| -|cran|triebeard|0.00023046707214765101| -|cran|svglite|0.00023045538252815795| -|pypi|[django](https://www.djangoproject.com/)|0.00022992033432691882| -|cran|backports|0.00022949679730592613| -|pypi|[smmap](https://pypi.org/project/smmap)|0.00022931924954240388| -|cran|tinytex|0.00022830118467653292| -|pypi|[python](http://www.python.org/2.5)|0.0002274089165867689| -|cran|codetools|0.00022698404396421617| -|rubygems|rspec|0.00022583423819540094| -|cran|ggplot2movies|0.00022391510796975292| -|pypi|[editdistance](https://www.github.com/roy-ht/editdistance)|0.00022371364653243848| -|pypi|[toml](https://pypi.org/project/toml)|0.00022174493602184237| -|npm|[remark-directive](https://github.com/remarkjs/remark-directive#readme)|0.0002214765100671141| -|pypi|[chemparse](https://pypi.org/project/chemparse)|0.0002214765100671141| -|pypi|[pysqlite3](https://github.com/coleifer/pysqlite3)|0.0002214765100671141| -|pypi|[cigar](https://github.com/brentp/cigar)|0.0002214765100671141| -|pypi|[pymbar](http://github.com/choderalab/pymbar)|0.0002214765100671141| -|pypi|[udatetime](https://github.com/freach/udatetime)|0.0002214765100671141| -|pypi|[jq](http://github.com/mwilliamson/jq.py)|0.0002214765100671141| -|pypi|[segments](https://github.com/cldf/segments)|0.0002214765100671141| -|pypi|[dlinfo](https://code.grasp-open.com/grasp-tools/python-dlinfo)|0.0002214765100671141| -|cran|tuneR|0.0002214765100671141| -|pypi|[music21](https://github.com/cuthbertLab/music21)|0.0002204697986577181| -|pypi|[pysoundfile](https://github.com/bastibe/PySoundFile)|0.0002204697986577181| -|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.00022038276813244402| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.00022033381743453572| -|cran|multcomp|0.00021838241711211818| -|pypi|[wmi](https://pypi.org/project/wmi)|0.00021785970032114555| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.00021785970032114555| -|pypi|[msgpack](https://pypi.org/project/msgpack)|0.00021779963431874425| -|cran|jquerylib|0.00021752873111117118| -|cran|expm|0.00021662936257503377| -|pypi|[Flask](https://pypi.org/project/Flask)|0.00021546910874326323| -|cran|isoband|0.00021516252665844678| -|cran|rasterVis|0.00021457636463178794| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.00021340404004369516| -|rubygems|[liquid](http://www.liquidmarkup.org)|0.00021309443162751676| -|pypi|[plotly](https://plotly.com/python/)|0.00021299764315415285| -|cran|rjson|0.00021225578582491337| -|cran|stats4|0.00021176825891397393| -|pypi|[pretty_midi](https://github.com/craffel/pretty-midi)|0.00021140939597315435| -|cran|testit|0.00020986079533027587| -|cran|downlit|0.00020980189025650685| -|cran|prettyunits|0.0002089287165753457| -|cran|profvis|0.00020813490662747105| -|pypi|[watchdog](https://pypi.org/project/watchdog)|0.00020782632516093684| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.00020490377231690153| -|cran|pdftools|0.0002042247045238722| -|npm|[ajv](https://ajv.js.org)|0.00020356296881168573| -|pypi|[torchsummary](https://github.com/sksq96/pytorch-summary)|0.0002030201342281879| -|pypi|[rich](https://pypi.org/project/rich)|0.00020271999552134352| -|cran|spatstat.linnet|0.00020073992832618504| -|pypi|[astropy](http://astropy.org)|0.00020039224897806327| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.00019875387530751476| -|rubygems|jekyll|0.00019866381157118896| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.00019859470374488695| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.00019859470374488695| -|cran|memoise|0.00019836528804566318| -|cran|future.apply|0.00019770338042820066| -|cran|performance|0.00019713837019653908| -|pypi|[sphinx-autoapi](http://github.com/readthedocs/sphinx-autoapi)|0.00019630992329817834| -|cran|qs|0.00019569321154356138| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.00019535141801925492| -|npm|[body-parser](https://github.com/expressjs/body-parser#readme)|0.00019435600316210634| -|pypi|[tqdm](https://tqdm.github.io)|0.00019353831809636123| -|pypi|[orjson](https://pypi.org/project/orjson)|0.0001932408881978299| -|pypi|[glob2](https://pypi.org/project/glob2)|0.00019201729478575115| -|npm|[pg](https://github.com/brianc/node-postgres)|0.00019175455417066154| -|npm|[cytoscape](http://js.cytoscape.org)|0.00019175455417066154| -|pypi|[backports.zoneinfo](https://github.com/pganssle/zoneinfo)|0.0001912040322452266| -|pypi|[tox](https://pypi.org/project/tox)|0.00019111349634329602| -|cran|asciicast|0.00019077174459679073| -|pypi|[gym](https://pypi.org/project/gym)|0.00019058354143905104| -|cran|dygraphs|0.00018909905646051598| -|npm|[react-select](https://github.com/JedWatson/react-select)|0.0001881826556125806| -|cran|[exactextractr](https://isciences.gitlab.io/exactextractr/)|0.0001878505904419729| -|cran|uuid|0.00018728919054616014| -|cran|spatstat.utils|0.0001856656833597421| -|cran|DBItest|0.00018558828111781624| -|cran|[sfheaders](https://dcooley.github.io/sfheaders/)|0.0001846831003683706| -|npm|jshint|0.00018463474445018068| -|pypi|[wsgiref](http://cheeseshop.python.org/pypi/wsgiref)|0.00018456375838926174| -|pypi|[pycairo](https://pycairo.readthedocs.io)|0.00018456375838926174| -|pypi|[pygobject](https://pygobject.readthedocs.io)|0.00018456375838926174| -|pypi|[PyCap](https://github.com/redcap-tools/PyCap)|0.00018456375838926174| -|pypi|[sh](https://github.com/amoffat/sh)|0.00018456375838926174| -|pypi|[pydub](http://pydub.com)|0.00018456375838926174| -|pypi|[gofish](https://github.com/richteague/gofish)|0.00018456375838926174| -|cran|[taxa](https://docs.ropensci.org/taxa/)|0.00018456375838926174| -|cran|[vegdata](http://germansl.infinitenature.org)|0.00018456375838926174| -|rubygems|[faraday](https://lostisland.github.io/faraday)|0.00018456375838926174| -|cran|tidyverse|0.00018366567429232885| -|npm|d3|0.00018346673400903982| -|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.0001830531137223513| -|cran|spatstat.geom|0.0001821875533712425| -|cran|mapview|0.00018199783919221397| -|npm|[dotenv](https://github.com/motdotla/dotenv#readme)|0.0001818672099712368| -|cran|praise|0.00018133627390624216| -|cran|viridisLite|0.00018085619794622752| -|cran|webp|0.00018054808691200526| -|cran|diffviewer|0.00017941900113061543| -|cran|commonmark|0.00017861351143154516| -|cran|jpeg|0.00017843567154660682| -|rubygems|bundler|0.00017799995027283444| -|pypi|[webencodings](https://pypi.org/project/webencodings)|0.0001773280893585335| -|cran|spatstat|0.00017696096105646421| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.00017695648597935827| -|pypi|[gdal](http://www.gdal.org)|0.00017686975671140937| -|pypi|[jmespath](https://github.com/jmespath/jmespath.py)|0.00017645975928874417| -|cran|reshape2|0.000175932767461021| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.00017560044657489229| -|cran|splines|0.00017226373839443484| -|npm|requirejs|0.00017177359134154435| -|pypi|[texext](https://pypi.org/project/texext)|0.0001717090451430688| -|cran|getPass|0.0001712917854619771| -|pypi|[pygame](https://www.pygame.org)|0.00017089325663151165| -|cran|V8|0.00016956711409395973| -|cran|nleqslv|0.00016953863193043938| -|pypi|[zipp](https://github.com/jaraco/zipp)|0.00016924113652734888| -|cran|later|0.00016762024845269247| -|cran|whisker|0.0001673400627115333| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.00016656601792881286| -|cran|[openssl](https://github.com/jeroen/openssl)|0.0001664837003397051| -|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.00016610738255033557| -|npm|[react-images](https://jossmac.github.io/react-images/)|0.00016565538967264757| -|pypi|[build](https://pypi.org/project/build)|0.00016523859355181757| -|cran|tesseract|0.00016458712165341857| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.00016458288199121786| -|cran|gh|0.00016432939431513909| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.00016384148413624606| -|pypi|[django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms)|0.00016303131991051453| -|cran|WikidataR|0.0001624140792093812| -|cran|dichromat|0.00016236451822816908| -|cran|KernSmooth|0.00016195901693305098| -|cran|xtable|0.00016081498132297162| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.00016073082632889947| -|cran|showtext|0.00016034756020861786| -|pypi|[prospector](https://pypi.org/project/prospector)|0.00016031516363859753| -|npm|[pako](https://github.com/nodeca/pako#readme)|0.00015977948226270373| -|cran|RPostgres|0.0001596699471435967| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.0001588793753273525| -|npm|[choices.js](https://github.com/jshjohnson/Choices#readme)|0.00015819750719079577| -|npm|[filepond](https://pqina.nl/filepond/)|0.00015819750719079577| -|npm|[vue](https://github.com/vuejs/core/tree/main/packages/vue#readme)|0.00015819750719079577| -|npm|[vue-router](https://github.com/vuejs/router#readme)|0.00015819750719079577| -|npm|[cytoscape-cola](https://github.com/cytoscape/cytoscape.js-cola)|0.00015819750719079577| -|npm|[modernizr](https://github.com/Modernizr/Modernizr)|0.00015819750719079577| -|pypi|[fluids](https://github.com/CalebBell/fluids)|0.00015819750719079577| -|pypi|[mamba](http://nestorsalceda.github.io/mamba)|0.00015819750719079577| -|pypi|[pywgsim](https://github.com/ialbert/pywgsim)|0.00015819750719079577| -|pypi|[limitedinteraction](https://felixchenier.uqam.ca/limitedinteraction/)|0.00015819750719079577| -|pypi|[ultranest](https://github.com/JohannesBuchner/ultranest)|0.00015819750719079577| -|pypi|[bcbio_gff](https://github.com/chapmanb/bcbb/tree/master/gff)|0.00015819750719079577| -|pypi|[qtawesome](https://github.com/spyder-ide/qtawesome)|0.00015819750719079577| -|pypi|[drug2ways](https://github.com/drug2ways/drug2ways)|0.00015819750719079577| -|pypi|[matplotlib_venn](https://github.com/konstantint/matplotlib-venn)|0.00015819750719079577| -|pypi|[mdtraj](http://mdtraj.org)|0.00015819750719079577| -|pypi|[openmm](https://github.com/rmcgibbo/openmm-cmd)|0.00015819750719079577| -|pypi|[universal-divergence](https://github.com/slaypni/universal-divergence)|0.00015819750719079577| -|cran|[shinyjs](https://deanattali.com/shinyjs/)|0.0001579156797014923| -|cran|spatstat.random|0.00015657024762274856| -|cran|selectr|0.00015613163386159833| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.00015573997193482451| -|cran|rvest|0.00015488584999543583| -|cran|rprintf|0.00015468377601975496| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.00015441163791964457| -|pypi|[soupsieve](https://facelessuser.github.io/soupsieve/)|0.00015403212716326756| -|pypi|[bcrypt](https://github.com/pyca/bcrypt/)|0.00015341962960649803| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.0001528566744368398| -|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.00015226510067114092| -|npm|[rc-slider](http://github.com/react-component/slider/)|0.00015218415165430354| -|cran|WRS2|0.0001519881624341943| -|cran|combinat|0.0001511903893451165| -|cran|cluster|0.0001508959360170009| -|pypi|[pybtex](https://pybtex.org/)|0.00015084208061579463| -|pypi|[bz2file](https://github.com/nvawda/bz2file)|0.0001507424496644295| -|pypi|[boto](https://github.com/boto/boto/)|0.0001507424496644295| -|pypi|[torch-geometric](https://github.com/pyg-team/pytorch_geometric)|0.00015056517131755562| -|cran|igraphdata|0.00015025215570223956| -|pypi|[whoosh](http://bitbucket.org/mchaput/whoosh)|0.00014916774060402683| -|cran|sfsmisc|0.0001470676535129438| -|npm|[moment](https://momentjs.com)|0.00014552332954994077| -|cran|fastmap|0.00014543392486505297| -|cran|labeling|0.0001452074548591181| -|pypi|[jellyfish](http://github.com/jamesturk/jellyfish)|0.00014496644295302014| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.00014467141016471626| -|pypi|[chevron](https://github.com/noahmorrison/chevron)|0.00014438625636108856| -|cran|gifski|0.00014387350781909446| -|pypi|[pathlib2](https://pypi.org/project/pathlib2)|0.00014383044531783432| -|cran|[readxl](https://readxl.tidyverse.org)|0.00014378697089484268| -|cran|[phangorn](https://github.com/KlausVigo/phangorn)|0.0001437396746809393| -|pypi|[cartopy](https://scitools.org.uk/cartopy/docs/latest/)|0.00014334451901565993| -|pypi|[siphon](https://pypi.org/project/siphon)|0.00014331705417066154| -|pypi|[nrel-pysam](https://pypi.org/project/nrel-pysam)|0.00014331705417066154| -|cran|units|0.00014292385021213769| -|cran|crosstalk|0.0001417004918914554| -|pypi|[psycopg2](https://pypi.org/project/psycopg2)|0.0001411771945993635| -|pypi|[xlsxwriter](https://github.com/jmcnamara/XlsxWriter)|0.00014062000639181846| -|cran|[reticulate](https://rstudio.github.io/reticulate/)|0.0001402890729560472| -|npm|[d3-array](https://d3js.org/d3-array/)|0.0001402684563758389| -|npm|[d3-scale](https://d3js.org/d3-scale/)|0.0001402684563758389| -|cran|lazyeval|0.00014000903777523297| -|npm|react-redux|0.00013987990109501944| -|cran|rsconnect|0.0001387777864653966| -|npm|[d3-brush](https://d3js.org/d3-brush/)|0.0001384228187919463| -|npm|[d3-fetch](https://d3js.org/d3-fetch/)|0.0001384228187919463| -|npm|[d3-format](https://d3js.org/d3-format/)|0.0001384228187919463| -|npm|[fflate](https://101arrowz.github.io/fflate)|0.0001384228187919463| -|npm|[ajv-formats](https://github.com/ajv-validator/ajv-formats#readme)|0.0001384228187919463| -|npm|[js-yaml](https://github.com/nodeca/js-yaml#readme)|0.0001384228187919463| -|pypi|[gemmi](https://project-gemmi.github.io/)|0.0001384228187919463| -|pypi|[protfasta](https://pypi.org/project/protfasta)|0.0001384228187919463| -|pypi|[alphaPredict](https://pypi.org/project/alphaPredict)|0.0001384228187919463| -|pypi|[ee_extra](https://github.com/r-earthengine/ee_extra)|0.0001384228187919463| -|npm|mkdirp|0.0001383939388091717| -|cran|R.rsp|0.00013815391691279018| -|cran|listenv|0.00013765108807462892| -|pypi|[grapheme](https://github.com/alvinlindstam/grapheme)|0.00013703859060402684| -|pypi|[about-time](https://github.com/rsalmei/about-time)|0.00013703859060402684| -|cran|rstan|0.00013674625709860608| -|cran|rJava|0.00013657559166372306| -|pypi|[requests-oauthlib](https://pypi.org/project/requests-oauthlib)|0.000136434364014062| -|pypi|[yapf](https://pypi.org/project/yapf)|0.0001361650652382342| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.00013613345016046102| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.0001348689546882847| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.0001348689546882847| -|pypi|[lockfile](https://pypi.org/project/lockfile)|0.00013479529896207393| -|pypi|[brotli](https://pypi.org/project/brotli)|0.00013451348589847177| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.00013439700591470185| -|cran|rstanarm|0.00013432406048054587| -|pypi|[sos](https://github.com/vatlab/SoS)|0.0001342555634051572| -|pypi|[flaky](https://pypi.org/project/flaky)|0.00013226044375040088| -|cran|visNetwork|0.00013219949888038565| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.00013206182681929594| -|cran|randomForest|0.00013037376432671008| -|pypi|[dnspython](https://pypi.org/project/dnspython)|0.0001302192893096836| -|cran|styler|0.0001295769740226627| -|pypi|[notebook](https://pypi.org/project/notebook)|0.00012948671858379327| -|pypi|[sos-notebook](https://github.com/vatlab/SOS)|0.0001294471918050159| -|cran|hunspell|0.00012919119104907675| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.00012915149878911817| -|pypi|[pandoc](https://pypi.org/project/pandoc)|0.00012901059443911792| -|pypi|[gunicorn](https://gunicorn.org)|0.00012860449854133234| -|cran|boot|0.00012817672748099176| -|cran|tufte|0.00012813084669623852| -|cran|katex|0.00012813084669623852| -|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.00012796007656924917| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.0001276913797547658| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.00012691236424324754| -|cran|[viridis](https://sjmgarnier.github.io/viridis/)|0.00012672478007283243| -|cran|formatR|0.0001265368757684473| -|cran|sodium|0.00012649308857362924| -|cran|qpdf|0.00012642086456629632| -|cran|progress|0.00012606843463039375| -|pypi|[backoff](https://github.com/litl/backoff)|0.00012596476510067113| -|pypi|[ratelimit](https://github.com/tomasbasham/ratelimit)|0.00012596476510067113| -|pypi|[voluptuous](https://github.com/alecthomas/voluptuous)|0.00012596476510067113| -|cran|webshot|0.00012576474972083906| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.00012571967672941908| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.00012571967672941908| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.00012571967672941908| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.00012571967672941908| -|pypi|[asgiref](https://github.com/django/asgiref/)|0.0001256385391395518| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.00012382000952891402| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.0001235824862242264| -|npm|[babyparse](https://github.com/Rich-Harris/BabyParse#readme)|0.00012304250559284116| -|npm|[colormap](https://github.com/bpostlethwaite/colormap#readme)|0.00012304250559284116| -|pypi|[yamlreader](https://github.com/ImmobilienScout24/yamlreader)|0.00012304250559284116| -|pypi|[lda](https://pypi.org/project/lda)|0.00012304250559284116| -|pypi|[voevent-parse](https://github.com/timstaley/voevent-parse)|0.00012304250559284116| -|pypi|[cwl-runner](https://github.com/common-workflow-language/common-workflow-language)|0.00012304250559284116| -|pypi|[KafNafParserPy](https://github.com/cltl/KafNafParserPy)|0.00012304250559284116| -|pypi|[kaggle](https://github.com/Kaggle/kaggle-api)|0.00012304250559284116| -|cran|txtplot|0.00012304250559284116| -|pypi|[numpy-stl](https://github.com/WoLpH/numpy-stl/)|0.00012216739044611133| -|pypi|[s3transfer](https://github.com/boto/s3transfer)|0.00012189352579402589| -|cran|prettydoc|0.00012188067038513397| -|pypi|[nestle](http://github.com/kbarbary/nestle)|0.00012181208053691274| -|pypi|[photutils](https://github.com/astropy/photutils)|0.00012181208053691274| -|pypi|[markdown2](https://pypi.org/project/markdown2)|0.00012155454326634983| -|pypi|[olefile](https://pypi.org/project/olefile)|0.00012155454326634983| -|cran|see|0.00012118946000319947| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.00012111163860034594| -|cran|[effectsize](https://easystats.github.io/effectsize/)|0.00012095231188059523| -|cran|cowplot|0.00012095145491099329| -|cran|cellranger|0.00012061950563597305| -|rubygems|rubocop-jekyll|0.0001203881299436721| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.00011999767444305904| -|pypi|[wget](http://bitbucket.org/techtonik/python-wget/)|0.00011996644295302013| -|npm|[webpack](https://github.com/webpack/webpack)|0.00011978683631106029| -|cran|globals|0.00011937927599409204| -|cran|odbc|0.00011908008370725676| -|cran|jose|0.00011863471813798922| -|pypi|[sympy](https://pypi.org/project/sympy)|0.00011853477825199274| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.00011807769816754786| +https://github.com/ropensci/magick (devel))|0.00024376511403660693| +|cran|[fields](https://github.com/dnychka/fieldsRPackage)|0.0002427743238165913| +|pypi|[lz4](https://pypi.org/project/lz4)|0.0002426061738341034| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.0002409418420885164| +|cran|[R.oo](https://github.com/HenrikBengtsson/R.oo)|0.00024016005130020636| +|pypi|[pox](https://github.com/uqfoundation/pox)|0.00023998885814752223| +|cran|[gridExtra](https://github.com/baptiste/gridextra)|0.0002398839437382751| +|cran|[base64enc](http://www.rforge.net/base64enc)|0.00023896345550725856| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.00023874520744787903| +|cran|[outsider.base](https://docs.ropensci.org/outsider.base)|0.00023825632199126176| +|cran|interp|0.00023735019882251815| +|cran|[googleCloudStorageR](https://code.markedmondson.me/googleCloudStorageR/)|0.0002362458725134208| +|pypi|[xattr](https://pypi.org/project/xattr)|0.0002358324236455136| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.0002358324236455136| +|pypi|[texext](https://pypi.org/project/texext)|0.0002343292777211977| +|pypi|[tenacity](https://pypi.org/project/tenacity)|0.00023407609762189733| +|cran|[lme4](https://github.com/lme4/lme4/)|0.00023355659936322357| +|cran|[fastmatch](http://www.rforge.net/fastmatch)|0.00023220947477985878| +|cran|[lintr](https://github.com/jimhester/lintr)|0.00023218392182640526| +|cran|[googleAuthR](https://code.markedmondson.me/googleAuthR/)|0.00023142204376994934| +|cran|[promises](https://rstudio.github.io/promises)|0.0002314040647184373| +|pypi|[rsa](https://pypi.org/project/rsa)|0.00023008377068938784| +|cran|[nnet](http://www.stats.ox.ac.uk/pub/MASS4/)|0.00022975308248228104| +|pypi|[deap](https://www.github.com/deap)|0.00022949681077250177| +|pypi|[text-unidecode](https://github.com/kmike/text-unidecode/)|0.00022891566265060239| +|pypi|[shortuuid](https://pypi.org/project/shortuuid)|0.0002288397774411394| +|pypi|[inflection](https://github.com/jpvanhal/inflection)|0.00022875| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.0002268224421445151| +|cran|[aws.s3](https://github.com/cloudyr/aws.s3)|0.0002264751442745773| +|cran|[Cairo](http://www.rforge.net/Cairo/)|0.0002261498686608638| +|cran|quantreg|0.00022568456031324361| +|cran|triebeard|0.00022567093373493976| +|cran|svglite|0.00022565948738244597| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.00022550718770319758| +|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.00022539865343727854| +|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.00022539865343727854| +|cran|[backports](https://github.com/r-lib/backports)|0.0002247208508121555| +|cran|tinytex|0.00022355011949706512| +|pypi|[python](http://www.python.org/2.5)|0.00022267641996557658| +|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.00022261533229692967| +|cran|[codetools](https://gitlab.com/luke-tierney/codetools)|0.00022226038916101779| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.00022197961771168359| +|cran|ggplot2movies|0.00021925531930444583| +|pypi|[editdistance](https://www.github.com/roy-ht/editdistance)|0.00021905805038335157| +|pypi|[execnet](https://pypi.org/project/execnet)|0.000218852158133064| +|pypi|[zipp](https://pypi.org/project/zipp)|0.00021855879561180692| +|pypi|[chemparse](https://pypi.org/project/chemparse)|0.0002168674698795181| +|pypi|[jq](http://github.com/mwilliamson/jq.py)|0.0002168674698795181| +|cran|tuneR|0.0002168674698795181| +|npm|[remark-directive](https://github.com/remarkjs/remark-directive#readme)|0.0002168674698795181| +|pypi|[python-utils](https://pypi.org/project/python-utils)|0.00021618549078918618| +|pypi|[music21](https://github.com/cuthbertLab/music21)|0.00021588170865279298| +|pypi|[pysoundfile](https://github.com/bastibe/PySoundFile)|0.00021588170865279298| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.00021443732783680555| +|cran|multcomp|0.00021383776659171261| +|cran|jquerylib|0.00021300184623591138| +|cran|[expm](http://R-Forge.R-project.org/projects/expm/)|0.00021212119402199366| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.00021170791775440033| +|cran|isoband|0.00021068488371593796| +|cran|rasterVis|0.00021011092002280222| +|pypi|[libclang](https://pypi.org/project/libclang)|0.00020983849563921953| +|pypi|[gast](https://pypi.org/project/gast)|0.00020983849563921953| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.00020855466770276125| +|cran|[rjson](https://github.com/alexcb/rjson)|0.00020783863365550118| +|pypi|[pybind11-global](https://github.com/pybind/pybind11)|0.0002075421686746988| +|cran|stats4|0.0002073612524305505| +|pypi|[pretty_midi](https://github.com/craffel/pretty-midi)|0.00020700985761226725| +|cran|[testit](https://github.com/yihui/testit)|0.00020549348414596554| +|cran|[downlit](https://downlit.r-lib.org/)|0.00020543580491710529| +|cran|prettyunits|0.00020458080242974702| +|cran|profvis|0.00020380351207553016| +|pypi|[torchsummary](https://github.com/sksq96/pytorch-summary)|0.00020286144578313253| +|pypi|[Biopython](https://pypi.org/project/Biopython)|0.0002026355421686747| +|pypi|[tqdm](https://tqdm.github.io)|0.00020256339685995636| +|pypi|[gdal](https://pypi.org/project/gdal)|0.00020043175069037422| +|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.00020009557368777362| +|pypi|[soupsieve](https://pypi.org/project/soupsieve)|0.00020008578890038942| +|pypi|[munch](https://pypi.org/project/munch)|0.0002000053000063916| +|cran|[pdftools](https://docs.ropensci.org/pdftools/ (website) +https://github.com/ropensci/pdftools#readme (devel) +https://poppler.freedesktop.org (upstream))|0.0001999746832906262| +|cran|[spatstat.linnet](http://spatstat.org/)|0.00019656242707952832| +|npm|[js-yaml](https://github.com/nodeca/js-yaml#readme)|0.0001957831325301205| +|cran|[memoise](https://github.com/r-lib/memoise)|0.0001942372042856767| +|pypi|[pathlib2](https://pypi.org/project/pathlib2)|0.0001935944422852701| +|cran|[future.apply](https://future.apply.futureverse.org)|0.00019358907130647467| +|pypi|[pymbar](http://github.com/choderalab/pymbar)|0.00019324440619621343| +|cran|[performance](https://easystats.github.io/performance/)|0.00019303581922859358| +|pypi|[cython](http://cython.org/)|0.00019274658767142217| +|cran|[qs](https://github.com/traversc/qs)|0.0001916207350711324| +|pypi|[uritemplate](https://pypi.org/project/uritemplate)|0.0001912230677857693| +|npm|[body-parser](https://github.com/expressjs/body-parser#readme)|0.00019031135468447217| +|pypi|[pybtex](https://pypi.org/project/pybtex)|0.0001885864175279418| +|pypi|[glob2](https://pypi.org/project/glob2)|0.00018820481927710845| +|npm|[pg](https://github.com/brianc/node-postgres)|0.00018776404318572994| +|npm|[cytoscape](http://js.cytoscape.org)|0.00018776404318572994| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.00018757539167448044| +|pypi|[sphinx-autoapi](https://pypi.org/project/sphinx-autoapi)|0.0001875387263339071| +|cran|asciicast|0.00018680168638502835| +|pypi|[orjson](https://pypi.org/project/orjson)|0.0001865473165715535| +|cran|[dygraphs](https://github.com/rstudio/dygraphs)|0.00018516380774994675| +|rubygems|[liquid](http://www.liquidmarkup.org)|0.0001844503012048193| +|npm|[react-select](https://github.com/JedWatson/react-select)|0.00018426647767540752| +|cran|[exactextractr](https://isciences.gitlab.io/exactextractr/)|0.00018394132295194274| +|cran|[uuid](http://www.rforge.net/uuid)|0.00018339160607696293| +|pypi|[sh](https://pypi.org/project/sh)|0.0001833604689026376| +|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|0.00018241863558128617| +|pypi|[gym](https://pypi.org/project/gym)|0.00018238722331185206| +|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.00018209348771032125| +|cran|[spatstat.utils](http://spatstat.org/)|0.00018180188491085362| +|cran|[DBItest](https://dbitest.r-dbi.org)|0.0001817260934494279| +|cran|[sfheaders](https://dcooley.github.io/sfheaders/)|0.000180839749977353| +|npm|[jshint](http://jshint.com/)|0.00018079240037071362| +|pypi|[nnde](https://github.com/elwinter/nnde)|0.00018072289156626507| +|pypi|[clawpack](http://www.clawpack.org)|0.00018072289156626507| +|pypi|[wsgiref](http://cheeseshop.python.org/pypi/wsgiref)|0.00018072289156626507| +|pypi|[cellpylib](http://github.com/lantunes/cellpylib)|0.00018072289156626507| +|pypi|[PyCap](https://github.com/redcap-tools/PyCap)|0.00018072289156626507| +|pypi|[tartiflette](https://tartiflette.io)|0.00018072289156626507| +|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.00018072289156626507| +|pypi|[PyEscape](https://github.com/qaviton/escape)|0.00018072289156626507| +|cran|[taxa](https://docs.ropensci.org/taxa/)|0.00018072289156626507| +|cran|[vegdata](http://germansl.infinitenature.org)|0.00018072289156626507| +|rubygems|[faraday](https://lostisland.github.io/faraday)|0.00018072289156626507| +|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|0.00018012405064675368| +|cran|[tidyverse](http://tidyverse.tidyverse.org)|0.00017984349706171086| +|rubygems|rake|0.00017976237647188126| +|pypi|[django](https://pypi.org/project/django)|0.0001787037271924721| +|cran|[spatstat.geom](http://spatstat.org/)|0.00017839613659790873| +|cran|[mapview](https://github.com/r-spatial/mapview)|0.00017821037046860815| +|npm|[dotenv](https://github.com/motdotla/dotenv#readme)|0.00017808245970896575| +|cran|[praise](https://github.com/gaborcsardi/praise)|0.00017756257269680226| +|pypi|[jmespath](https://pypi.org/project/jmespath)|0.00017751091435283387| +|pypi|[bleach](https://pypi.org/project/bleach)|0.0001773851694418113| +|pypi|[earthengine-api](http://code.google.com/p/earthengine-api/)|0.00017724745134383688| +|cran|[viridisLite](https://github.com/sjmgarnier/viridisLite)|0.00017709248736465214| +|cran|[webp](https://github.com/jeroen/webp#readme +https://developers.google.com/speed/webp)|0.0001767907882796634| +|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.00017655414356323033| +|cran|diffviewer|0.00017568519935462232| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.00017541944259141248| +|cran|[commonmark](https://docs.ropensci.org/commonmark/ (docs) +https://github.com/r-lib/commonmark (devel) +https://github.github.com/gfm/ (spec))|0.0001748964723108449| +|cran|[jpeg](http://www.rforge.net/jpeg/)|0.00017472233336546163| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.00017366505705818002| +|cran|[spatstat](http://spatstat.org/)|0.00017327831235977977| +|cran|[reshape2](https://github.com/hadley/reshape)|0.00017227151600235797| +|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.00017192781287120315| +|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|0.00017176303635173324| +|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.00017084998251141| +|pypi|[tox](https://pypi.org/project/tox)|0.00016990184492878134| +|pypi|[wmi](https://pypi.org/project/wmi)|0.00016877187408562822| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.00016875207794097096| +|cran|splines|0.00016867884131941375| +|npm|[requirejs](http://github.com/jrburke/r.js)|0.00016819889447901496| +|cran|[getPass](https://github.com/wrathematics/getPass)|0.00016772711522782864| +|pypi|[pygame](https://www.pygame.org)|0.00016733687998748238| +|pypi|[tensorboard-data-server](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server)|0.00016731044469350633| +|pypi|[tensorboard-plugin-wit](https://whatif-tool.dev)|0.00016731044469350633| +|pypi|[prospector](https://pypi.org/project/prospector)|0.00016609489950649277| +|cran|[V8](https://github.com/jeroen/v8 (devel) https://v8.dev (upstream))|0.00016603833515881712| +|cran|[nleqslv](NA)|0.00016601044572378182| +|cran|later|0.00016413198479376463| +|cran|[whisker](http://github.com/edwindj/whisker)|0.00016385762986211478| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.00016351119197106505| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.00016351119197106505| +|cran|[openssl](https://github.com/jeroen/openssl)|0.000163019088832088| +|npm|[react-images](https://jossmac.github.io/react-images/)|0.00016220801573641505| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.00016166767474174435| +|cran|[tesseract](https://docs.ropensci.org/tesseract/ (website) +https://github.com/ropensci/tesseract (devel))|0.00016116197892459606| +|cran|[gh](https://gh.r-lib.org/)|0.00016090961502490073| +|pypi|[django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms)|0.00015963855421686747| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.00015936960283913744| +|cran|[WikidataR](https://github.com/TS404/WikidataR/issues)|0.00015903415861247185| +|cran|dichromat|0.00015898562902079205| +|cran|KernSmooth|0.0001585885664163719| +|cran|[xtable](http://xtable.r-forge.r-project.org/)|0.00015746833877627235| +|cran|[showtext](https://github.com/yixuan/showtext)|0.00015701064493593028| +|npm|[pako](https://github.com/nodeca/pako#readme)|0.00015645438898450947| +|cran|[RPostgres](https://rpostgres.r-dbi.org)|0.00015634713334761825| +|npm|[react-redux](https://github.com/reduxjs/react-redux)|0.0001563320952984872| +|pypi|[numexpr](https://pypi.org/project/numexpr)|0.00015611505033848953| +|pypi|[argon2-cffi](https://pypi.org/project/argon2-cffi)|0.0001557953461745254| +|pypi|[notebook](https://pypi.org/project/notebook)|0.00015499435454412923| +|pypi|[pywgsim](https://github.com/ialbert/pywgsim)|0.0001549053356282272| +|pypi|[mdtraj](http://mdtraj.org)|0.0001549053356282272| +|pypi|[openmm](https://github.com/rmcgibbo/openmm-cmd)|0.0001549053356282272| +|pypi|[mamba](http://nestorsalceda.github.io/mamba)|0.0001549053356282272| +|pypi|[universal-divergence](https://github.com/slaypni/universal-divergence)|0.0001549053356282272| +|pypi|[drug2ways](https://github.com/drug2ways/drug2ways)|0.0001549053356282272| +|pypi|[matplotlib_venn](https://github.com/konstantint/matplotlib-venn)|0.0001549053356282272| +|npm|[choices.js](https://github.com/jshjohnson/Choices#readme)|0.0001549053356282272| +|npm|[filepond](https://pqina.nl/filepond/)|0.0001549053356282272| +|npm|[cytoscape-cola](https://github.com/cytoscape/cytoscape.js-cola)|0.0001549053356282272| +|npm|[modernizr](https://github.com/Modernizr/Modernizr)|0.0001549053356282272| +|npm|[vue](https://github.com/vuejs/core/tree/main/packages/vue#readme)|0.0001549053356282272| +|npm|[vue-router](https://github.com/vuejs/router#readme)|0.0001549053356282272| +|cran|[shinyjs](https://deanattali.com/shinyjs/)|0.0001546293731140571| +|pypi|[unittest2](https://pypi.org/project/unittest2)|0.0001534362458584337| +|cran|[spatstat.random](http://spatstat.org/)|0.00015331194016948217| +|cran|selectr|0.00015288245418649385| +|pypi|[plotly](https://pypi.org/project/plotly)|0.0001527394749385988| +|pypi|[pip](https://pypi.org/project/pip)|0.0001522827219401618| +|pypi|[netcdf4](http://github.com/Unidata/netcdf4-python)|0.00015216734002356126| +|cran|[rvest](http://rvest.tidyverse.org/)|0.00015166259572389879| +|pypi|[freesasa](http://freesasa.github.io/)|0.00015149809765377297| +|cran|rprintf|0.00015146472701167682| +|pypi|[imageio](https://github.com/imageio/imageio)|0.00015143540467354522| +|pypi|[clickclick](https://codeberg.org/hjacobs/python-clickclick)|0.00015139414802065404| +|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.00015090200225956999| +|pypi|[rich](https://pypi.org/project/rich)|0.00015044921876338583| +|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.00015017250934586655| +|pypi|[gunicorn](https://pypi.org/project/gunicorn)|0.00014952845620972672| +|npm|[rc-slider](http://github.com/react-component/slider/)|0.00014901712111604312| +|cran|WRS2|0.00014882521053249695| +|cran|combinat|0.00014804403951208561| +|cran|[cluster](https://svn.r-project.org/R-packages/trunk/cluster/)|0.0001477557139093087| +|pypi|[torch-geometric](https://github.com/pyg-team/pytorch_geometric)|0.00014743183259353202| +|cran|igraphdata|0.0001471253309943069| +|npm|[moment](https://momentjs.com)|0.00014675481087834914| +|pypi|[xlsxwriter](https://github.com/jmcnamara/XlsxWriter)|0.00014408347676419966| +|cran|sfsmisc|0.00014400709993490888| +|npm|[tape](https://github.com/substack/tape)|0.00014284953607989173| +|cran|fastmap|0.00014240737002120196| +|cran|labeling|0.00014218561297267424| +|pypi|[pyxenon](https://pypi.org/project/pyxenon)|0.00014195180722891565| +|pypi|[jellyfish](http://github.com/jamesturk/jellyfish)|0.00014194961664841182| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.00014170441516354898| +|pypi|[cvxopt](http://cvxopt.org)|0.00014096385542168674| +|cran|[gifski](https://gif.ski/ (upstream))|0.00014087942605725136| +|cran|[readxl](https://readxl.tidyverse.org)|0.00014079469001094125| +|cran|[phangorn](https://github.com/KlausVigo/phangorn)|0.0001407483780555966| +|pypi|[lockfile](https://pypi.org/project/lockfile)|0.00014066136275484232| +|cran|[units](https://github.com/r-quantities/units/)|0.00013994953131396613| +|npm|[chai](http://chaijs.com)|0.0001392719139047955| +|pypi|[jax](https://pypi.org/project/jax)|0.00013877458362863217| +|cran|[crosstalk](https://rstudio.github.io/crosstalk/)|0.0001387516317097055| +|pypi|[nrel-pysam](https://nrel-pysam.readthedocs.io)|0.0001385918674698795| +|cran|[reticulate](https://rstudio.github.io/reticulate/)|0.00013736958512892245| +|npm|[d3-array](https://d3js.org/d3-array/)|0.00013734939759036145| +|npm|[d3-scale](https://d3js.org/d3-scale/)|0.00013734939759036145| +|pypi|[psycopg2](https://pypi.org/project/psycopg2)|0.00013717425032120433| +|cran|[lazyeval](NA)|0.00013709537762437922| +|pypi|[asgiref](https://pypi.org/project/asgiref)|0.0001364883799703055| +|cran|rsconnect|0.00013588974928813207| +|pypi|[pvrpm](https://github.com/FSEC-Photovoltaics/pvrpm-lcoe)|0.0001355421686746988| +|pypi|[NREL-PySAM-stubs](http://www.github.com/nrel/pysam)|0.0001355421686746988| +|pypi|[beamshapes](https://github.com/thejasvibr/bat_beamshapes.git)|0.0001355421686746988| +|pypi|[equadratures](https://github.com/Effective-Quadratures/equadratures)|0.0001355421686746988| +|pypi|[simframe](https://github.com/stammler/simframe)|0.0001355421686746988| +|pypi|[maxsmooth](https://github.com/htjb/maxsmooth)|0.0001355421686746988| +|pypi|[progressbar](http://code.google.com/p/python-progressbar)|0.0001355421686746988| +|pypi|[gemmi](https://project-gemmi.github.io/)|0.0001355421686746988| +|pypi|[epitopepredict](https://github.com/dmnfarrell/epitopepredict)|0.0001355421686746988| +|npm|[d3-brush](https://d3js.org/d3-brush/)|0.0001355421686746988| +|npm|[d3-fetch](https://d3js.org/d3-fetch/)|0.0001355421686746988| +|npm|[d3-format](https://d3js.org/d3-format/)|0.0001355421686746988| +|npm|[fflate](https://101arrowz.github.io/fflate)|0.0001355421686746988| +|npm|[ajv-formats](https://github.com/ajv-validator/ajv-formats#readme)|0.0001355421686746988| +|npm|[mkdirp](https://github.com/isaacs/node-mkdirp#readme)|0.00013551388969923277| +|pypi|[chevron](https://github.com/noahmorrison/chevron)|0.00013539156626506024| +|cran|[R.rsp](https://github.com/HenrikBengtsson/R.rsp)|0.00013527886278207494| +|npm|eslint|0.00013485577235418814| +|cran|[listenv](https://github.com/HenrikBengtsson/listenv)|0.0001347864980708853| +|npm|[webpack](https://github.com/webpack/webpack)|0.0001345880573696775| +|pypi|[bz2file](https://github.com/nvawda/bz2file)|0.0001341867469879518| +|pypi|[boto](https://github.com/boto/boto/)|0.0001341867469879518| +|pypi|[grapheme](https://github.com/alvinlindstam/grapheme)|0.00013391837349397591| +|pypi|[about-time](https://github.com/rsalmei/about-time)|0.00013391837349397591| +|cran|[rstan](https://mc-stan.org/rstan)|0.00013390049709326816| +|cran|[rJava](http://www.rforge.net/rJava/)|0.00013373338329394132| +|pypi|[cartopy](https://scitools.org.uk/cartopy/docs/latest/)|0.00013184165232358003| +|cran|rstanarm|0.00013152870763374376| +|pypi|[sos](https://github.com/vatlab/SoS)|0.0001314616360177552| +|pypi|[jupyter-client](https://jupyter.org)|0.00013128400274007234| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.00013077617191454896| +|cran|[visNetwork](http://datastorm-open.github.io/visNetwork/)|0.00012944835925417827| +|pypi|[wasabi](https://pypi.org/project/wasabi)|0.00012904409206204766| +|pypi|[voluptuous](https://pypi.org/project/voluptuous)|0.00012840413080895008| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.000128258159458051| +|pypi|[pandoc](https://pypi.org/project/pandoc)|0.00012820006850143047| +|rubygems|rspec|0.00012801697621194944| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.00012785232802716608| +|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.00012784117474608008| +|pypi|[yapf](https://pypi.org/project/yapf)|0.0001276787023871885| +|cran|[randomForest](https://www.stat.berkeley.edu/~breiman/RandomForests/)|0.0001276606191764281| +|pypi|[bcrypt](https://pypi.org/project/bcrypt)|0.00012735923000351508| +|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.00012712488076768442| +|cran|styler|0.00012688041048878473| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.00012681071461305548| +|pypi|[sos-notebook](https://github.com/vatlab/SOS)|0.00012675332910589725| +|cran|[hunspell](https://github.com/ropensci/hunspell#readme (devel) +https://hunspell.github.io (upstream))|0.00012650265585747493| +|pypi|[dlinfo](https://code.grasp-open.com/grasp-tools/python-dlinfo)|0.00012632530120481927| +|pypi|[segments](https://github.com/cldf/segments)|0.00012632530120481927| +|npm|[nyc](https://istanbul.js.org/)|0.00012552070576261087| +|cran|boot|0.00012550930379847384| +|cran|tufte|0.00012546437781647018| +|cran|katex|0.00012546437781647018| +|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.0001251078400779589| +|cran|[viridis](https://sjmgarnier.github.io/viridis/)|0.00012408757216332114| +|cran|[formatR](https://github.com/yihui/formatR)|0.00012390357824424084| +|cran|[sodium](https://github.com/jeroen/sodium#readme (devel) +https://download.libsodium.org/doc/ (upstream))|0.00012386070228348798| +|cran|[qpdf](https://github.com/ropensci/qpdf (devel))|0.0001237899812949276| +|pypi|[mistune](https://pypi.org/project/mistune)|0.00012365293316425805| +|cran|[progress](https://github.com/r-lib/progress#readme)|0.00012344488560741735| +|pypi|[ratelimit](https://pypi.org/project/ratelimit)|0.00012334337349397591| +|pypi|[backoff](https://pypi.org/project/backoff)|0.00012334337349397591| +|cran|webshot|0.00012314752053716336| +|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.00012239770214880806| +|pypi|[KafNafParserPy](https://github.com/cltl/KafNafParserPy)|0.00012048192771084337| +|pypi|[cwl-runner](https://github.com/common-workflow-language/common-workflow-language)|0.00012048192771084337| +|pypi|[voevent-parse](https://github.com/timstaley/voevent-parse)|0.00012048192771084337| +|pypi|[kaggle](https://github.com/Kaggle/kaggle-api)|0.00012048192771084337| +|pypi|[solcore](https://github.com/qpv-research-group/solcore5)|0.00012048192771084337| +|pypi|[tmm](http://pypi.python.org/pypi/tmm)|0.00012048192771084337| +|pypi|[yamlreader](https://github.com/ImmobilienScout24/yamlreader)|0.00012048192771084337| +|pypi|[lda](https://pypi.org/project/lda)|0.00012048192771084337| +|pypi|[pyxdg](http://freedesktop.org/wiki/Software/pyxdg)|0.00012048192771084337| +|pypi|[html2text](https://github.com/Alir3z4/html2text/)|0.00012048192771084337| +|pypi|[metapredict](https://github.com/idptools/metapredict.git)|0.00012048192771084337| +|pypi|[alphaPredict](https://pypi.org/project/alphaPredict)|0.00012048192771084337| +|pypi|[protfasta](https://pypi.org/project/protfasta)|0.00012048192771084337| +|pypi|[theano](http://deeplearning.net/software/theano/)|0.00012048192771084337| +|pypi|[pycairo](https://pycairo.readthedocs.io)|0.00012048192771084337| +|pypi|[pygobject](https://pygobject.readthedocs.io)|0.00012048192771084337| +|pypi|[genicam](https://www.emva.org)|0.00012048192771084337| +|cran|txtplot|0.00012048192771084337| +|npm|[babyparse](https://github.com/Rich-Harris/BabyParse#readme)|0.00012048192771084337| +|npm|[colormap](https://github.com/bpostlethwaite/colormap#readme)|0.00012048192771084337| +|npm|[apexcharts](https://apexcharts.com)|0.00012048192771084337| +|npm|[idb](https://github.com/jakearchibald/idb#readme)|0.00012048192771084337| +|npm|[lodash.debounce](https://lodash.com/)|0.00012048192771084337| +|npm|[nanoid](https://github.com/ai/nanoid#readme)|0.00012048192771084337| +|npm|vue-apexcharts|0.00012048192771084337| +|npm|[vuex-persist](https://github.com/championswimmer/vuex-persist#readme)|0.00012048192771084337| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.00012046412924424975| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.00011971861830470065| +|pypi|[s3transfer](https://pypi.org/project/s3transfer)|0.00011935685877312065| +|cran|prettydoc|0.00011934427089190555| +|pypi|[nestle](http://github.com/kbarbary/nestle)|0.00011927710843373494| +|pypi|[photutils](https://github.com/astropy/photutils)|0.00011927710843373494| +|cran|see|0.0001186674449538448| +|cran|[effectsize](https://easystats.github.io/effectsize/)|0.00011843523200575261| +|cran|[cowplot](https://wilkelab.org/cowplot/)|0.00011843439287012925| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.0001183552940869932| +|cran|cellranger|0.00011810935163040516| +|pypi|[wget](http://bitbucket.org/techtonik/python-wget/)|0.00011746987951807229| +|pypi|[tabulate](https://pypi.org/project/tabulate)|0.0001173756530753558| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.00011735002950187367| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.00011693871638870514| +|pypi|[absl-py](https://pypi.org/project/absl-py)|0.00011690758242592681| +|cran|[globals](https://github.com/HenrikBengtsson/globals)|0.00011689493180582504| +|cran|[odbc](https://github.com/r-dbi/odbc)|0.00011660196586449895| +|cran|[jose](https://datatracker.ietf.org/wg/jose/documents/ +https://www.w3.org/TR/WebCryptoAPI/#jose +https://github.com/r-lib/jose)|0.00011616586858199605| +|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.00011582016606457226| |cran|[psych](https://personality-project.org/r/psych/ -https://personality-project.org/r/psych-manual.pdf)|0.00011801270767033414| -|cran|flashClust|0.00011790127163546448| -|npm|eslint|0.00011778689949577505| -|npm|[vows](https://github.com/cloudhead/vows)|0.00011723308845995803| -|pypi|[shapely](https://pypi.org/project/shapely)|0.00011695643547451425| -|cran|e1071|0.00011693555166184772| -|cran|targets|0.00011634102411742353| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.00011627202121943254| -|pypi|[nlesc-CAT](https://github.com/nlesc-nano/CAT)|0.00011609539789069991| -|rubygems|minitest|0.00011591917545443082| -|cran|s2|0.00011581495939246348| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.00011507523978887671| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.00011449189367078043| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.00011388581280175865| -|pypi|[libcst](https://pypi.org/project/libcst)|0.0001136647096485729| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.0001136647096485729| -|cran|statnet.common|0.00011281742227092178| -|cran|bayestestR|0.00011246035371751032| -|pypi|[coloredlogs](https://pypi.org/project/coloredlogs)|0.00011242638957959063| -|cran|MatrixModels|0.00011223138608909254| -|pypi|[gitdb](https://github.com/gitpython-developers/gitdb)|0.00011177059182428308| -|npm|tape|0.0001116258405379655| -|npm|chai|0.0001113091689998836| -|npm|[auspice](https://www.npmjs.com/package/auspice)|0.00011073825503355705| -|npm|[heroku-ssl-redirect](https://github.com/paulomcnally/node-heroku-ssl-redirect)|0.00011073825503355705| -|npm|[react-file-drop](https://github.com/sarink/react-file-drop#readme)|0.00011073825503355705| -|pypi|[tmm](http://pypi.python.org/pypi/tmm)|0.00011073825503355705| -|pypi|[simpleitk](http://simpleitk.org/)|0.00011073825503355705| -|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.00011073825503355705| -|pypi|[pyroaring](https://github.com/Ezibenroc/PyRoaringBitMap)|0.00011073825503355705| -|pypi|[blosc](http://github.com/blosc/python-blosc)|0.00011073825503355705| -|pypi|[deap](https://www.github.com/deap)|0.00011073825503355705| -|pypi|[Cerberus](http://docs.python-cerberus.org)|0.00011073825503355705| -|pypi|[CoolProp](http://www.coolprop.org)|0.00011073825503355705| -|pypi|[ansicolors](http://github.com/jonathaneunice/colors/)|0.00011073825503355705| -|pypi|[libsvm](https://github.com/ocampor/libsvm)|0.00011073825503355705| -|pypi|[area](https://github.com/scisco/area)|0.00011073825503355705| -|pypi|[StringDist](https://github.com/obulkin/string-dist)|0.00011073825503355705| -|cran|gee|0.00011034941262134079| -|pypi|[keyring](https://pypi.org/project/keyring)|0.00011023145781626786| -|pypi|[igraph](https://igraph.org/python)|0.00010990494966442953| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.00010964455413037698| -|pypi|[pandoc-min](https://github.com/boisgera/pandoc)|0.00010963087248322147| -|pypi|[CommonMark](https://github.com/rtfd/CommonMark-py)|0.00010963087248322147| -|cran|gamm4|0.00010863418469520304| -|cran|survminer|0.00010861886259272341| -|cran|[ggrepel](http://github.com/slowkow/ggrepel)|0.00010816852274977837| -|pypi|[tzlocal](https://pypi.org/project/tzlocal)|0.00010807776845637583| -|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.00010716313720439848| -|pypi|[imageio](https://pypi.org/project/imageio)|0.00010663747909075867| -|cran|modelbased|0.0001065521056125083| -|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.0001064370837050414| -|pypi|[numexpr](https://pypi.org/project/numexpr)|0.00010636726807867747| -|cran|stars|0.00010617886956029931| -|cran|spdep|0.00010609819042569553| -|pypi|[distro](https://github.com/python-distro/distro)|0.0001059010620252231| -|pypi|[dash-renderer](https://pypi.org/project/dash-renderer)|0.00010570441127223182| -|pypi|[pybtex-docutils](https://github.com/mcmtroffaes/pybtex-docutils)|0.00010554981056505738| -|npm|rollup|0.0001055195931119931| -|pypi|[cwltool](https://github.com/common-workflow-language/cwltool)|0.00010520134228187922| -|cran|RMariaDB|0.00010518317735170239| -|cran|mapdata|0.0001049158191179886| -|cran|highr|0.00010460883484196329| -|cran|[checkmate](https://github.com/mllg/checkmate)|0.00010436255036784753| -|npm|[jquery](https://jquery.com)|0.00010408584703886716| -|pypi|[python-dotenv](https://github.com/theskumar/python-dotenv)|0.00010318331340020111| -|pypi|[python-utils](https://pypi.org/project/python-utils)|0.000103157812944486| -|npm|[nodemon](https://nodemon.io)|0.00010276845637583891| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.00010271644866000095| -|cran|tikzDevice|0.00010253307230105349| -|cran|palmerpenguins|0.00010247317725827156| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.00010223147373780214| -|cran|coda|0.00010192685724592611| -|npm|nyc|0.00010192264190297959| -|pypi|[gitpython](https://pypi.org/project/gitpython)|0.0001016730725847386| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.00010086809819786019| -|npm|[angular-animate](http://angularjs.org)|0.00010067114093959731| -|npm|[angular-sanitize](http://angularjs.org)|0.00010067114093959731| -|npm|[angular-touch](http://angularjs.org)|0.00010067114093959731| -|npm|[colorbrewer](http://colorbrewer2.org/)|0.00010067114093959731| -|npm|[dc](http://dc-js.github.io/dc.js/)|0.00010067114093959731| -|pypi|[pyscf](http://www.pyscf.org)|0.00010067114093959731| -|pypi|[filetype](https://github.com/h2non/filetype.py)|0.00010067114093959731| -|pypi|[Flask-RESTful](https://www.github.com/flask-restful/flask-restful/)|0.00010067114093959731| -|pypi|[functools32](https://github.com/MiCHiLU/python-functools32)|0.00010067114093959731| -|pypi|[edlib](https://github.com/Martinsos/edlib)|0.00010067114093959731| -|cran|JuliaCall|0.0001001703379802944| -|cran|vcr|9.917026272305514e-05| -|rubygems|rubocop|9.916562216830334e-05| -|cran|forecast|9.881021740578786e-05| -|pypi|[cffi](http://cffi.readthedocs.org)|9.874179768511693e-05| -|pypi|[pyrsistent](http://github.com/tobgu/pyrsistent/)|9.864730387603304e-05| -|pypi|[setuptools_scm_git_archive](https://github.com/Changaco/setuptools_scm_git_archive/)|9.781879194630872e-05| -|pypi|[tensorboard](https://pypi.org/project/tensorboard)|9.676258055655149e-05| -|pypi|[alembic](https://alembic.sqlalchemy.org)|9.563388274772995e-05| -|npm|[bootstrap](https://getbootstrap.com/)|9.538917863153738e-05| -|npm|[react-bootstrap](https://react-bootstrap.github.io/)|9.538917863153738e-05| -|pypi|[bleach](https://pypi.org/project/bleach)|9.49650069320846e-05| -|cran|class|9.488314251875246e-05| -|cran|[leaflet](https://rstudio.github.io/leaflet/)|9.454976194652797e-05| -|npm|react-router-bootstrap|9.428179608120181e-05| -|npm|react-router-dom|9.428179608120181e-05| -|cran|rnaturalearth|9.417374332283248e-05| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|9.407006854198436e-05| -|cran|poorman|9.400393869219698e-05| -|cran|here|9.381559109646304e-05| -|npm|babel-cli|9.361926237712431e-05| -|pypi|[pyroma](https://pypi.org/project/pyroma)|9.313267756666262e-05| -|pypi|[path](https://pypi.org/project/path)|9.24261313516072e-05| -|npm|[ProtVista](https://github.com/ebi-uniprot/ProtVista)|9.228187919463087e-05| -|npm|[downloadjs](http://danml.com/download.html)|9.228187919463087e-05| -|npm|[events](https://github.com/Gozala/events#readme)|9.228187919463087e-05| -|npm|[litemol](https://webchemdev.ncbr.muni.cz/LiteMol/)|9.228187919463087e-05| -|npm|[semantic-ui-button](http://www.semantic-ui.com)|9.228187919463087e-05| -|npm|[semantic-ui-dropdown](http://www.semantic-ui.com)|9.228187919463087e-05| -|npm|[semantic-ui-label](http://www.semantic-ui.com)|9.228187919463087e-05| -|npm|[semantic-ui-transition](http://www.semantic-ui.com)|9.228187919463087e-05| -|pypi|[gpytorch](https://gpytorch.ai)|9.228187919463087e-05| -|pypi|[cached_property](https://github.com/pydanny/cached-property)|9.228187919463087e-05| -|pypi|[bidict](https://bidict.readthedocs.io)|9.228187919463087e-05| -|cran|classInt|9.220946604896775e-05| -|pypi|[reno](https://pypi.org/project/reno)|9.216824065196548e-05| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|9.20648561437998e-05| -|pypi|[cachetools](https://pypi.org/project/cachetools)|9.196242705674764e-05| -|pypi|[pympler](https://pypi.org/project/pympler)|9.158199863174945e-05| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|9.137274204984006e-05| -|pypi|[libclang](https://pypi.org/project/libclang)|9.137274204984006e-05| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|9.137274204984006e-05| -|pypi|[gast](https://pypi.org/project/gast)|9.137274204984006e-05| -|pypi|[astunparse](https://pypi.org/project/astunparse)|9.137274204984006e-05| -|cran|colorspace|9.10006608880982e-05| -|pypi|[pretend](https://pypi.org/project/pretend)|9.084953787152443e-05| -|cran|Seurat|9.073870395726246e-05| -|cran|network|9.073076977474572e-05| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|9.07085271299387e-05| -|cran|shape|9.068108733882635e-05| -|cran|[kableExtra](http://haozhu233.github.io/kableExtra/)|9.054432691479983e-05| -|pypi|[pyglet](https://pypi.org/project/pyglet)|8.987989870119946e-05| -|cran|spatstat.data|8.955932309281037e-05| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|8.940528835844724e-05| -|npm|[winston](https://github.com/winstonjs/winston#readme)|8.873257614868353e-05| -|cran|slam|8.859823830926277e-05| -|rubygems|[activerecord-jdbc-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|8.814765100671138e-05| -|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|8.763749209185319e-05| -|pypi|[pooch](https://pypi.org/project/pooch)|8.763083601019138e-05| -|cran|tmap|8.718110669676464e-05| -|cran|pool|8.718110669676464e-05| -|cran|polyclip|8.69748727047336e-05| -|pypi|[gmsh](https://gmsh.info)|8.663639952625345e-05| -|pypi|[boto3](https://pypi.org/project/boto3)|8.57982724121163e-05| -|cran|taxize|8.551014701182491e-05| -|pypi|[yt](https://github.com/yt-project/yt)|8.518327310273619e-05| -|pypi|[sphinx-math-dollar](https://github.com/sympy/sphinx-math-dollar/)|8.518327310273619e-05| -|pypi|[pypi-publisher](https://github.com/wdm0006/ppp)|8.518327310273619e-05| -|pypi|[hdmedians](http://github.com/daleroberts/hdmedians)|8.518327310273619e-05| -|pypi|[textwrapper](https://github.com/tusharsadhwani/textwrapper)|8.518327310273619e-05| -|npm|tap|8.481980040775967e-05| -|pypi|[pickleshare](https://pypi.org/project/pickleshare)|8.4518572902926e-05| -|pypi|[jedi](https://pypi.org/project/jedi)|8.4518572902926e-05| -|npm|ava|8.438975035032081e-05| -|cran|gapminder|8.425372747796316e-05| -|pypi|[Six](https://pypi.org/project/Six)|8.409186241610738e-05| -|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|8.407561988279178e-05| -|pypi|[backcall](https://pypi.org/project/backcall)|8.407561988279178e-05| -|cran|animation|8.405532223102254e-05| -|pypi|[email-validator](https://github.com/JoshData/python-email-validator)|8.382193791946308e-05| -|cran|[spatstat.core](http://spatstat.org/)|8.369380957080819e-05| -|cran|gplots|8.325853191315927e-05| -|npm|esm|8.292645690988063e-05| -|pypi|[locket](https://pypi.org/project/locket)|8.288372701124378e-05| -|pypi|[retrying](https://pypi.org/project/retrying)|8.187877411649929e-05| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|8.160131656445012e-05| -|cran|tseries|8.152339175192137e-05| -|npm|[prop-types](https://facebook.github.io/react/)|8.12313198246176e-05| -|npm|webpack-cli|8.103227868328538e-05| -|cran|argon2|8.095065316395015e-05| -|pypi|[types-toml](https://pypi.org/project/types-toml)|8.065431532650612e-05| -|cran|dendextend|8.042954995445165e-05| -|pypi|[pyjsparser](https://pypi.org/project/pyjsparser)|8.039597315436241e-05| -|cran|ade4|8.019876329535652e-05| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|8.009956020499716e-05| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|8.009956020499716e-05| -|cran|shinydisconnect|8.000786887520816e-05| -|npm|[coveralls](https://github.com/nickmerwin/node-coveralls#readme)|7.985844774207411e-05| -|cran|irlba|7.98013153531373e-05| -|pypi|[dash](https://plotly.com/dash)|7.973472130130556e-05| -|cran|rex|7.953146150558868e-05| -|pypi|[webcolors](https://pypi.org/project/webcolors)|7.943218526440003e-05| -|cran|datawizard|7.936599403963283e-05| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|7.917628775826286e-05| -|npm|[concurrently](https://github.com/open-cli-tools/concurrently#readme)|7.909875359539788e-05| -|npm|[cors-anywhere](https://github.com/Rob--W/cors-anywhere#readme)|7.909875359539788e-05| -|npm|[dotenv-webpack](https://github.com/mrsteele/dotenv-webpack#readme)|7.909875359539788e-05| -|npm|net|7.909875359539788e-05| -|pypi|[ipdb](https://github.com/gotcha/ipdb)|7.909875359539788e-05| -|pypi|[thermo](https://github.com/CalebBell/thermo)|7.909875359539788e-05| -|pypi|[colorpalette](https://github.com/yoelcortes/colorpalette)|7.909875359539788e-05| -|pypi|[free_properties](https://github.com/yoelcortes/free_properties)|7.909875359539788e-05| -|pypi|[flexsolve](https://github.com/yoelcortes/flexsolve)|7.909875359539788e-05| -|pypi|[oaiharvest](http://github.com/bloomonkey/oai-harvest)|7.909875359539788e-05| -|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|7.909875359539788e-05| -|cran|poibin|7.909875359539788e-05| -|cran|fANCOVA|7.909875359539788e-05| -|cran|gert|7.905699665770379e-05| -|pypi|[dicttoxml](https://github.com/quandyfactory/dicttoxml)|7.878963202962276e-05| -|pypi|[jax](https://pypi.org/project/jax)|7.843575223713646e-05| -|npm|supertest|7.835368804852865e-05| -|npm|[bcrypt](https://github.com/kelektiv/node.bcrypt.js#readme)|7.834731543624161e-05| -|npm|spc|7.83077660594439e-05| -|npm|process|7.83077660594439e-05| -|npm|util|7.83077660594439e-05| -|pypi|[imageio-ffmpeg](https://github.com/imageio/imageio-ffmpeg)|7.820617844453217e-05| -|pypi|[traittypes](https://pypi.org/project/traittypes)|7.79239044611133e-05| -|cran|[mmand](https://github.com/jonclayden/mmand)|7.719560139492038e-05| -|cran|[RNifti](https://github.com/jonclayden/RNifti)|7.719560139492038e-05| -|cran|lavaan|7.719014034188011e-05| -|cran|shinytest|7.715566053332647e-05| -|cran|conflicted|7.704405816176596e-05| -|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|7.696152265759171e-05| -|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|7.696152265759171e-05| -|pypi|[asdf](https://pypi.org/project/asdf)|7.696152265759171e-05| -|pypi|[jplephem](https://pypi.org/project/jplephem)|7.696152265759171e-05| -|pypi|[async-generator](https://pypi.org/project/async-generator)|7.610209731543624e-05| -|cran|zeallot|7.585570469798657e-05| -|pypi|[pylint](https://pypi.org/project/pylint)|7.567002225150972e-05| -|pypi|[fsspec](http://github.com/fsspec/filesystem_spec)|7.55989358532483e-05| -|rubygems|rouge|7.524941275167784e-05| -|cran|pingr|7.507385674693677e-05| -|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|7.502217918899471e-05| -|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|7.495786656265245e-05| -|cran|[circlize](https://github.com/jokergoo/circlize)|7.453573757574111e-05| -|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|7.451882348429672e-05| -|cran|pbkrtest|7.426828757323172e-05| -|pypi|[pyDOE](https://github.com/tisimst/pyDOE)|7.38255033557047e-05| -|pypi|[SciencePlots](https://github.com/garrettj403/SciencePlots/)|7.38255033557047e-05| -|pypi|[bdata](https://github.com/dfujim/bdata)|7.38255033557047e-05| -|pypi|[testpath](https://pypi.org/project/testpath)|7.367912137704382e-05| -|cran|[caret](https://github.com/topepo/caret/)|7.366139034343734e-05| -|cran|reactlog|7.341314463788317e-05| -|cran|sourcetools|7.341314463788317e-05| -|cran|fontawesome|7.341314463788317e-05| -|cran|pbdMPI|7.308724832214765e-05| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|7.287012476469295e-05| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|7.286107716366225e-05| -|pypi|[backports.functools-lru-cache](https://pypi.org/project/backports.functools-lru-cache)|7.235637583892617e-05| -|cran|sna|7.228761800280259e-05| -|npm|xo|7.20026827199646e-05| -|cran|RcppTOML|7.195012787723785e-05| -|cran|janitor|7.166281890637783e-05| -|pypi|[netifaces](https://github.com/al45tair/netifaces)|7.142617449664428e-05| -|npm|rxjs|7.084792868636917e-05| -|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|7.07952053518529e-05| -|pypi|[bokeh](https://pypi.org/project/bokeh)|7.076495645065044e-05| -|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|7.072229364595136e-05| -|npm|uglify-js|7.068387506848377e-05| -|cran|car|7.05659786815834e-05| -|cran|RhpcBLASctl|7.046795503552629e-05| -|cran|gtools|7.043239609821169e-05| -|pypi|[psycopg2-binary](https://pypi.org/project/psycopg2-binary)|7.019863060131517e-05| -|pypi|[autocommand](https://pypi.org/project/autocommand)|7.006315140762286e-05| -|pypi|[qtconsole](https://pypi.org/project/qtconsole)|6.999332562916752e-05| -|pypi|[deprecated](https://pypi.org/project/deprecated)|6.996708173404263e-05| -|pypi|[tifffile](https://pypi.org/project/tifffile)|6.941906926393429e-05| -|npm|[express-handlebars](https://github.com/express-handlebars/express-handlebars)|6.921140939597315e-05| -|npm|[express-session](https://github.com/expressjs/session#readme)|6.921140939597315e-05| -|npm|[helmet](https://helmetjs.github.io/)|6.921140939597315e-05| -|npm|[mongoose](https://mongoosejs.com)|6.921140939597315e-05| -|npm|[node-cmd](https://github.com/RIAEvangelist/node-cmd)|6.921140939597315e-05| -|npm|[passport](https://www.passportjs.org/)|6.921140939597315e-05| -|npm|[passport-local-mongoose](https://github.com/saintedlama/passport-local-mongoose#readme)|6.921140939597315e-05| -|pypi|[sphinx-fortran](http://sphinx-fortran.readthedocs.org)|6.921140939597315e-05| -|pypi|[dogpile.cache](https://github.com/sqlalchemy/dogpile.cache)|6.921140939597315e-05| -|pypi|[julia](http://julialang.org)|6.921140939597315e-05| -|cran|paletteer|6.921140939597315e-05| -|cran|statsExpressions|6.921140939597315e-05| -|cran|geoaxe|6.921140939597315e-05| -|cran|spbabel|6.921140939597315e-05| -|cran|colorRamps|6.921140939597315e-05| -|cran|[Rdpack](https://geobosh.github.io/Rdpack/ (website))|6.891469888442463e-05| -|pypi|[argon2-cffi](https://argon2-cffi.readthedocs.io/)|6.884219889962102e-05| -|pypi|[dash-table-experiments](https://pypi.org/project/dash-table-experiments)|6.866059928140465e-05| -|npm|babel-preset-env|6.831274120386409e-05| -|cran|latticeExtra|6.820353351226912e-05| -|rubygems|[mysql2](https://github.com/brianmario/mysql2)|6.801362827009998e-05| -|rubygems|jekyll-seo-tag|6.77237101510067e-05| -|pypi|[types-backports](https://pypi.org/project/types-backports)|6.722504194630871e-05| -|pypi|[PyLD](https://github.com/digitalbazaar/pyld)|6.715576132550335e-05| -|cran|timeSeries|6.679695463490941e-05| -|cran|fts|6.679695463490941e-05| -|pypi|[async-timeout](https://github.com/aio-libs/async-timeout)|6.674065168612148e-05| -|cran|pbapply|6.627513039250623e-05| -|cran|[zip](https://github.com/r-lib/zip#readme)|6.622909944765511e-05| -|npm|[istanbul](https://github.com/gotwarlost/istanbul#readme)|6.619597241540495e-05| -|npm|[babel-preset-minify](https://github.com/babel/minify#readme)|6.563543964035632e-05| -|cran|miniUI|6.559862072199762e-05| -|pypi|[coveralls](https://pypi.org/project/coveralls)|6.556730626890552e-05| -|cran|lpSolve|6.549376797698945e-05| -|npm|[d3-dsv](https://d3js.org/d3-dsv/)|6.514015001973943e-05| -|npm|[diff2html](https://diff2html.xyz/)|6.514015001973943e-05| -|npm|[difflib-ts](https://github.com/mailmangroup/difflib-ts#readme)|6.514015001973943e-05| -|npm|[react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form#readme)|6.514015001973943e-05| -|npm|react-schemaorg|6.514015001973943e-05| -|pypi|[BoltzTraP2](https://www.boltztrap.org)|6.514015001973943e-05| -|cran|nortest|6.514015001973943e-05| -|cran|openair|6.514015001973943e-05| -|cran|brew|6.512600837483205e-05| -|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|6.450966062188162e-05| -|pypi|[ffmpeg](https://github.com/jiashaokun/ffmpeg)|6.42897091722595e-05| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|6.415659250700045e-05| -|cran|[plotly](https://plotly-r.com)|6.391662811940254e-05| -|cran|fstcore|6.348425400103252e-05| -|cran|parallelly|6.345453221673434e-05| -|cran|lars|6.344936942252378e-05| -|cran|IRdisplay|6.340665099283007e-05| -|npm|sax|6.289146925833238e-05| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|6.286612476689178e-05| -|pypi|[anyjson](http://bitbucket.org/runeh/anyjson/)|6.279410630255343e-05| -|rubygems|html-proofer|6.255811661073824e-05| -|pypi|[kombu](https://kombu.readthedocs.io)|6.255602922303338e-05| -|pypi|[markdown](https://pypi.org/project/markdown)|6.238180667207515e-05| -|cran|emmeans|6.236423493582664e-05| -|cran|ggforce|6.218964240821916e-05| -|rubygems|rubocop-github|6.20708682885906e-05| -|cran|rsvg|6.177242110667948e-05| -|cran|futile.logger|6.172597997639945e-05| -|cran|graphql|6.16599122354156e-05| -|cran|TTR|6.159815436241611e-05| -|pypi|[svn](https://github.com/dsoprea/PySvn)|6.152125279642058e-05| -|pypi|[binaryornot](https://github.com/audreyr/binaryornot)|6.152125279642058e-05| -|pypi|[Pint](https://github.com/hgrecco/pint)|6.152125279642058e-05| -|pypi|[pyclipper](https://github.com/greginvm/pyclipper)|6.152125279642058e-05| -|pypi|[quantiphy](https://quantiphy.readthedocs.io)|6.152125279642058e-05| -|pypi|[Theano](http://deeplearning.net/software/theano/)|6.152125279642058e-05| -|pypi|[cdsapi](https://github.com/ecmwf/cdsapi)|6.152125279642058e-05| -|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|6.14565849778218e-05| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|6.14565849778218e-05| -|rubygems|activesupport|6.143430694425422e-05| -|pypi|[patsy](https://pypi.org/project/patsy)|6.140333820813196e-05| +https://personality-project.org/r/psych-manual.pdf)|0.00011555680247237536| +|cran|flashClust|0.00011544768547875711| +|npm|[esm](https://github.com/standard-things/esm#readme)|0.00011474740139916023| +|cran|e1071|0.00011450206263493085| +|cran|[targets](https://docs.ropensci.org/targets/)|0.00011391990751476081| +|pypi|[nlesc-CAT](https://github.com/nlesc-nano/CAT)|0.00011367939289626036| +|cran|[s2](https://r-spatial.github.io/s2/)|0.00011340479046753817| +|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.00011283015711728818| +|pypi|[dash-renderer](https://pypi.org/project/dash-renderer)|0.00011280656159496033| +|pypi|[fluids](https://github.com/CalebBell/fluids)|0.00011251760287904865| +|npm|react-router-dom|0.00011168291032329228| +|pypi|[pbr](https://pypi.org/project/pbr)|0.00011145768072289155| +|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.00011122848101625793| +|cran|statnet.common|0.00011046963363658716| +|cran|[bayestestR](https://easystats.github.io/bayestestR/)|0.00011011999586358622| +|pypi|[pep517](https://pypi.org/project/pep517)|0.00011000933565100276| +|cran|MatrixModels|0.00010989579316938526| +|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.00010946813951828316| +|pypi|[fastprogress](https://github.com/fastai/fastprogress)|0.00010946670695320466| +|npm|[fs-extra](https://github.com/jprichardson/node-fs-extra)|0.00010917867900172117| +|pypi|[email-validator](https://pypi.org/project/email-validator)|0.00010882397722759168| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.00010874122848111948| +|pypi|[disksurf](https://github.com/richteague/disksurf)|0.00010843373493975904| +|pypi|[gofish](https://github.com/richteague/gofish)|0.00010843373493975904| +|pypi|[simpleitk](http://simpleitk.org/)|0.00010843373493975904| +|pypi|[Cerberus](http://docs.python-cerberus.org)|0.00010843373493975904| +|pypi|[CoolProp](http://www.coolprop.org)|0.00010843373493975904| +|pypi|[snipgenie](https://github.com/dmnfarrell/snipgenie)|0.00010843373493975904| +|pypi|[bcbio_gff](https://github.com/chapmanb/bcbb/tree/master/gff)|0.00010843373493975904| +|pypi|[sisyphe](https://sisyphe.readthedocs.io)|0.00010843373493975904| +|pypi|[pykeops](http://www.kernel-operations.io/)|0.00010843373493975904| +|pypi|[keopscore](http://www.kernel-operations.io/)|0.00010843373493975904| +|pypi|[ansicolors](http://github.com/jonathaneunice/colors/)|0.00010843373493975904| +|npm|[auspice](https://www.npmjs.com/package/auspice)|0.00010843373493975904| +|npm|[heroku-ssl-redirect](https://github.com/paulomcnally/node-heroku-ssl-redirect)|0.00010843373493975904| +|npm|[react-file-drop](https://github.com/sarink/react-file-drop#readme)|0.00010843373493975904| +|pypi|[Unidecode](https://pypi.org/project/Unidecode)|0.00010843373493975903| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.00010816635291468834| +|cran|gee|0.00010805298453831179| +|pypi|[igraph](https://igraph.org/python)|0.00010761777108433734| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.00010750013664760912| +|pypi|[pandoc-min](https://github.com/boisgera/pandoc)|0.00010734939759036145| +|pypi|[CommonMark](https://github.com/rtfd/CommonMark-py)|0.00010734939759036145| +|npm|[rxjs](https://rxjs.dev)|0.0001068536366697835| +|pypi|[shapely](https://github.com/shapely/shapely)|0.0001068045650784742| +|pypi|[cftime](https://pypi.org/project/cftime)|0.00010659449428921172| +|cran|gamm4|0.00010637345138829301| +|cran|[survminer](http://www.sthda.com/english/rpkgs/survminer/)|0.0001063584481466536| +|pypi|[backports.functools-lru-cache](https://pypi.org/project/backports.functools-lru-cache)|0.00010627590361445783| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.00010621760418839992| +|npm|rollup|0.00010612287808249586| +|cran|[ggrepel](http://github.com/slowkow/ggrepel)|0.00010591748010766908| +|pypi|[websocket-client](https://github.com/websocket-client/websocket-client.git)|0.00010513369787615319| +|npm|[mongoose](https://mongoosejs.com)|0.00010452828262201348| +|npm|[passport](https://www.passportjs.org/)|0.00010452828262201348| +|cran|modelbased|0.00010433470144313518| +|npm|[prop-types](https://facebook.github.io/react/)|0.00010413207627326819| +|cran|[stars](https://r-spatial.github.io/stars/)|0.00010396923262530951| +|cran|[spdep](https://github.com/r-spatial/spdep/)|0.00010389023246502937| +|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.00010332421024163106| +|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.00010314338891955964| +|rubygems|[minitest](https://github.com/seattlerb/minitest)|0.0001030514537034624| +|pypi|[cwltool](https://github.com/common-workflow-language/cwltool)|0.0001030120481927711| +|cran|[RMariaDB](https://rmariadb.r-dbi.org)|0.00010299426128414236| +|npm|[nodemon](https://nodemon.io)|0.00010292358244165474| +|npm|[semver](https://github.com/npm/node-semver#readme)|0.00010282075552295657| +|cran|mapdata|0.00010273246691290449| +|cran|highr|0.00010243187113769464| +|pypi|[freezegun](https://pypi.org/project/freezegun)|0.00010237212020767529| +|cran|[checkmate](https://github.com/mllg/checkmate)|0.0001021907119702691| +|npm|[jquery](https://jquery.com)|0.00010191976698000794| +|pypi|[nptyping](https://pypi.org/project/nptyping)|0.00010147562741917898| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.00010133459020625362| +|cran|tikzDevice|0.00010039930628383552| +|cran|palmerpenguins|0.00010034065768772701| +|cran|coda|9.98057068760766e-05| +|pypi|[brotlipy](https://pypi.org/project/brotlipy)|9.948095949843667e-05| +|pypi|[cymem](https://pypi.org/project/cymem)|9.922481495361393e-05| +|pypi|[murmurhash](https://pypi.org/project/murmurhash)|9.922481495361393e-05| +|pypi|[websockets](https://pypi.org/project/websockets)|9.871122664530301e-05| +|pypi|[edlib](https://github.com/Martinsos/edlib)|9.85761226725082e-05| +|pypi|[bxa](https://github.com/JohannesBuchner/BXA/)|9.85761226725082e-05| +|pypi|[ultranest](https://github.com/JohannesBuchner/ultranest)|9.85761226725082e-05| +|pypi|[panoptes-ui](https://github.com/panoptes-organization/panoptes)|9.85761226725082e-05| +|pypi|[Flask-RESTful](https://www.github.com/flask-restful/flask-restful/)|9.85761226725082e-05| +|pypi|[functools32](https://github.com/MiCHiLU/python-functools32)|9.85761226725082e-05| +|pypi|[filetype](https://github.com/h2non/filetype.py)|9.85761226725082e-05| +|npm|[angular-animate](http://angularjs.org)|9.85761226725082e-05| +|npm|[angular-sanitize](http://angularjs.org)|9.85761226725082e-05| +|npm|[angular-touch](http://angularjs.org)|9.85761226725082e-05| +|npm|[colorbrewer](http://colorbrewer2.org/)|9.85761226725082e-05| +|npm|[dc](http://dc-js.github.io/dc.js/)|9.85761226725082e-05| +|rubygems|bundler|9.823495732199935e-05| +|pypi|[gitpython](https://github.com/gitpython-developers/GitPython)|9.820980405137033e-05| +|cran|JuliaCall|9.808574168059499e-05| +|pypi|[pyOpenSSL](https://pyopenssl.org/)|9.755594994623384e-05| +|cran|[vcr](https://github.com/ropensci/vcr/ (devel) +https://books.ropensci.org/http-testing/ (user manual))|9.7106478504284e-05| +|pypi|[distro](https://github.com/python-distro/distro)|9.681583476764199e-05| +|cran|[forecast](https://pkg.robjhyndman.com/forecast/)|9.675392591541552e-05| +|pypi|[dnspython](https://pypi.org/project/dnspython)|9.611876075731496e-05| +|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|9.608050954119436e-05| +|pypi|[tinycss2](https://pypi.org/project/tinycss2)|9.596877007815212e-05| +|pypi|[pylint](https://pypi.org/project/pylint)|9.564998438878588e-05| +|pypi|[pyamg](https://pypi.org/project/pyamg)|9.54566832134151e-05| +|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|9.506247621991591e-05| +|npm|[uglify-js](https://github.com/mishoo/UglifyJS#readme)|9.493203374723383e-05| +|npm|[babel-cli](https://babeljs.io/)|9.44701993563483e-05| +|pypi|[libsvm](https://github.com/ocampor/libsvm)|9.425091671031955e-05| +|pypi|[webcolors](https://pypi.org/project/webcolors)|9.419906490847272e-05| +|npm|[bootstrap](https://getbootstrap.com/)|9.340408071916147e-05| +|npm|[react-bootstrap](https://react-bootstrap.github.io/)|9.340408071916147e-05| +|pypi|[build](https://pypi.org/project/build)|9.32268324338652e-05| +|pypi|[tzlocal](https://pypi.org/project/tzlocal)|9.300616394148021e-05| +|cran|class|9.290857547838413e-05| +|pypi|[pyzmq](https://pypi.org/project/pyzmq)|9.290603936777794e-05| +|pypi|[blinker](https://pypi.org/project/blinker)|9.265009618305152e-05| +|cran|[leaflet](https://rstudio.github.io/leaflet/)|9.25821327274874e-05| +|npm|react-router-bootstrap|9.231974336976388e-05| +|pypi|[furo](https://pypi.org/project/furo)|9.222237659761461e-05| +|cran|[rnaturalearth](https://github.com/ropenscilabs/rnaturalearth)|9.22139392449203e-05| +|pypi|[wsaccel](https://pypi.org/project/wsaccel)|9.209811531841652e-05| +|cran|poorman|9.204766833606146e-05| +|cran|[here](https://here.r-lib.org/)|9.186324035075354e-05| +|pypi|[markdown](https://pypi.org/project/markdown)|9.151315728920269e-05| +|pypi|[timeout-decorator](https://pypi.org/project/timeout-decorator)|9.132153614457831e-05| +|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|9.081894272981869e-05| +|pypi|[scikit-bio](http://scikit-bio.org)|9.036144578313253e-05| +|pypi|[hdmedians](http://github.com/daleroberts/hdmedians)|9.036144578313253e-05| +|pypi|[gpytorch](https://gpytorch.ai)|9.036144578313253e-05| +|npm|[ProtVista](https://github.com/ebi-uniprot/ProtVista)|9.036144578313253e-05| +|npm|[downloadjs](http://danml.com/download.html)|9.036144578313253e-05| +|npm|[events](https://github.com/Gozala/events#readme)|9.036144578313253e-05| +|npm|[litemol](https://webchemdev.ncbr.muni.cz/LiteMol/)|9.036144578313253e-05| +|npm|[semantic-ui-button](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-dropdown](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-label](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-transition](http://www.semantic-ui.com)|9.036144578313253e-05| +|cran|[classInt](https://r-spatial.github.io/classInt/)|9.029053959230796e-05| +|pypi|[berkeleydb](https://pypi.org/project/berkeleydb)|8.995481927710843e-05| +|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|8.958252860646646e-05| +|pypi|[terminado](https://pypi.org/project/terminado)|8.958252860646646e-05| +|pypi|[retrying](https://pypi.org/project/retrying)|8.947674821355301e-05| +|pypi|[terminaltables](https://github.com/matthewdeanmartin/terminaltables)|8.94578313253012e-05| +|pypi|[dash](https://plotly.com/dash)|8.93235607657325e-05| +|pypi|[oset](https://gitorious.com/sleipnir/python-oset)|8.922939837787268e-05| +|cran|[colorspace](https://colorspace.R-Forge.R-project.org/)|8.910689028911262e-05| +|cran|[Seurat](https://satijalab.org/seurat)|8.885038481685941e-05| +|cran|[network](http://statnet.org/)|8.884261574876522e-05| +|cran|shape|8.879396722991323e-05| +|npm|[xlsx](https://sheetjs.com/)|8.877615726062143e-05| +|cran|[kableExtra](http://haozhu233.github.io/kableExtra/)|8.86600528607131e-05| +|pypi|[invoke](https://pypi.org/project/invoke)|8.836108050965129e-05| +|pypi|[coloredlogs](https://coloredlogs.readthedocs.io)|8.801575334385276e-05| +|pypi|[pybtex-docutils](https://pypi.org/project/pybtex-docutils)|8.771749984869575e-05| +|cran|spatstat.data|8.769554747532581e-05| +|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|8.761343580087189e-05| +|npm|[coveralls](https://github.com/nickmerwin/node-coveralls#readme)|8.75494416343128e-05| +|npm|[winston](https://github.com/winstonjs/winston#readme)|8.688600556070436e-05| +|cran|[slam](NA)|8.675446336087725e-05| +|pypi|[theano-pymc](http://deeplearning.net/software/theano/)|8.667900441892963e-05| +|rubygems|[activerecord-jdbc-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|8.631325301204817e-05| +|pypi|[pyglet](https://pypi.org/project/pyglet)|8.59724612736661e-05| +|pypi|[limitedinteraction](https://felixchenier.uqam.ca/limitedinteraction/)|8.59724612736661e-05| +|pypi|[qtconsole](https://pypi.org/project/qtconsole)|8.587237147694355e-05| +|pypi|[patsy](https://pypi.org/project/patsy)|8.53980282787203e-05| +|cran|[tmap](https://github.com/mtennekes/tmap)|8.53668229867553e-05| +|cran|pool|8.53668229867553e-05| +|cran|polyclip|8.516488083026489e-05| +|pypi|[aiosignal](https://github.com/aio-libs/aiosignal)|8.51175964806073e-05| +|pypi|[tensorflow](https://pypi.org/project/tensorflow)|8.504314852694429e-05| +|pypi|[dash-table](https://pypi.org/project/dash-table)|8.485364267892334e-05| +|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|8.485364267892334e-05| +|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|8.485364267892334e-05| +|pypi|[gmsh](https://gmsh.info)|8.48334514528703e-05| +|pypi|[pooch](https://pypi.org/project/pooch)|8.462039089852167e-05| +|pypi|[flaky](https://pypi.org/project/flaky)|8.419634086845127e-05| +|pypi|[oaiharvest](http://github.com/bloomonkey/oai-harvest)|8.384251290877796e-05| +|cran|[taxize](https://docs.ropensci.org/taxize/ (website))|8.373063683304652e-05| +|pypi|[contextvars](https://pypi.org/project/contextvars)|8.361160401976572e-05| +|pypi|[yt](https://github.com/yt-project/yt)|8.341056533827618e-05| +|pypi|[21cmFAST](https://github.com/21cmFAST/21cmFAST)|8.341056533827618e-05| +|pypi|[bidict](https://bidict.readthedocs.io)|8.341056533827618e-05| +|pypi|[cached-property](https://github.com/pydanny/cached-property)|8.341056533827618e-05| +|pypi|[sphinx-math-dollar](https://github.com/sympy/sphinx-math-dollar/)|8.341056533827618e-05| +|pypi|[keyring](https://pypi.org/project/keyring)|8.339942331920394e-05| +|npm|[tap](http://www.node-tap.org/)|8.305465669719293e-05| +|pypi|[whoosh](https://pypi.org/project/whoosh)|8.281047108433734e-05| +|npm|[ava](https://avajs.dev)|8.263355620283331e-05| +|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|8.255090255718619e-05| +|pypi|[trio](https://pypi.org/project/trio)|8.251464620602642e-05| +|cran|[gapminder](https://github.com/jennybc/gapminder)|8.250036403647214e-05| +|pypi|[bokeh](https://pypi.org/project/bokeh)|8.234493016791757e-05| +|cran|animation|8.230608770485669e-05| +|cran|[spatstat.core](http://spatstat.org/)|8.19520983092032e-05| +|pypi|[coveralls](https://pypi.org/project/coveralls)|8.165442089478441e-05| +|cran|[gplots](https://github.com/talgalili/gplots)|8.152587900368497e-05| +|pypi|[qtpy](https://pypi.org/project/qtpy)|8.109164627676152e-05| +|npm|[uuid](https://github.com/uuidjs/uuid#readme)|8.082758698231184e-05| +|pypi|[boto3](https://github.com/boto/boto3)|8.079076509333158e-05| +|pypi|[typed-ast](https://pypi.org/project/typed-ast)|8.06793792727888e-05| +|pypi|[tomli-w](https://pypi.org/project/tomli-w)|7.999720320487907e-05| +|cran|tseries|7.982684800242904e-05| +|npm|[tslib](https://www.typescriptlang.org/)|7.939513464549202e-05| +|npm|[webpack-cli](https://github.com/webpack/webpack-cli/tree/master/packages/webpack-cli)|7.93459552495697e-05| +|cran|[argon2](https://github.com/wrathematics/argon2)|7.926602839931153e-05| +|pypi|[nbclient](https://pypi.org/project/nbclient)|7.91135344981651e-05| +|cran|[dendextend](http://talgalili.github.io/dendextend/)|7.875576961585957e-05| +|pypi|[alembic](https://pypi.org/project/alembic)|7.86144578313253e-05| +|npm|[supertest](https://github.com/visionmedia/supertest#readme)|7.858681228410144e-05| +|cran|ade4|7.852978574594603e-05| +|npm|[swagger-ui-express](https://github.com/scottie1984/swagger-ui-express)|7.846248095380217e-05| +|cran|shinydisconnect|7.83428639369508e-05| +|npm|[zone.js](https://github.com/angular/angular#readme)|7.831844326458376e-05| +|cran|[irlba](NA)|7.814060890000519e-05| +|cran|[rex](https://github.com/kevinushey/rex)|7.787637084994117e-05| +|pypi|[pickleshare](https://pypi.org/project/pickleshare)|7.772253385102416e-05| +|pypi|[jedi](https://pypi.org/project/jedi)|7.772253385102416e-05| +|cran|[datawizard](https://easystats.github.io/datawizard/)|7.771434684713227e-05| +|pypi|[torch](https://pytorch.org/)|7.770335112539593e-05| +|pypi|[area](https://github.com/scisco/area)|7.74526678141136e-05| +|pypi|[StringDist](https://github.com/obulkin/string-dist)|7.74526678141136e-05| +|pypi|[py-grama](https://github.com/zdelrosario/py_grama)|7.74526678141136e-05| +|pypi|[thermo](https://github.com/CalebBell/thermo)|7.74526678141136e-05| +|pypi|[colorpalette](https://github.com/yoelcortes/colorpalette)|7.74526678141136e-05| +|pypi|[free_properties](https://github.com/yoelcortes/free_properties)|7.74526678141136e-05| +|pypi|[flexsolve](https://github.com/yoelcortes/flexsolve)|7.74526678141136e-05| +|pypi|[Sequoya](https://github.com/benhid/Sequoya)|7.74526678141136e-05| +|pypi|[jmetalpy](https://github.com/jMetal/jMetalPy)|7.74526678141136e-05| +|pypi|[pyMSA](https://github.com/benhid/pyMSA)|7.74526678141136e-05| +|pypi|[pyoai](http://www.infrae.com/download/oaipmh)|7.74526678141136e-05| +|cran|poibin|7.74526678141136e-05| +|cran|fANCOVA|7.74526678141136e-05| +|npm|[concurrently](https://github.com/open-cli-tools/concurrently#readme)|7.74526678141136e-05| +|npm|[cors-anywhere](https://github.com/Rob--W/cors-anywhere#readme)|7.74526678141136e-05| +|npm|[dotenv-webpack](https://github.com/mrsteele/dotenv-webpack#readme)|7.74526678141136e-05| +|npm|net|7.74526678141136e-05| +|npm|[typescript](https://www.typescriptlang.org/)|7.741717855330557e-05| +|cran|[gert](https://docs.ropensci.org/gert/)|7.741177985978884e-05| +|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|7.728879891126511e-05| +|pypi|[backcall](https://pypi.org/project/backcall)|7.728879891126511e-05| +|pypi|[dicttoxml](https://pypi.org/project/dicttoxml)|7.714997922725385e-05| +|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|7.679888022079867e-05| +|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|7.671734258766596e-05| +|npm|[bcrypt](https://github.com/kelektiv/node.bcrypt.js#readme)|7.671686746987951e-05| +|npm|process|7.667814113597246e-05| +|npm|util|7.667814113597246e-05| +|npm|spc|7.667814113597246e-05| +|pypi|[debugpy](https://pypi.org/project/debugpy)|7.657848633849347e-05| +|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|7.657848633849347e-05| +|npm|[debug](https://github.com/debug-js/debug#readme)|7.657352985933303e-05| +|pypi|[dash-table-experiments](https://pypi.org/project/dash-table-experiments)|7.653365040131356e-05| +|pypi|[testpath](https://pypi.org/project/testpath)|7.650172918055462e-05| +|pypi|[distributed](https://distributed.dask.org)|7.644976552110939e-05| +|pypi|[rfc3986](https://pypi.org/project/rfc3986)|7.616882038638084e-05| +|pypi|[uncertainties](https://pypi.org/project/uncertainties)|7.57979589392744e-05| +|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|7.571188451074769e-05| +|cran|[mmand](https://github.com/jonclayden/mmand)|7.558912119064493e-05| +|cran|[RNifti](https://github.com/jonclayden/RNifti)|7.558912119064493e-05| +|cran|[lavaan](https://lavaan.ugent.be)|7.55837737849297e-05| +|cran|[shinytest](https://github.com/rstudio/shinytest)|7.55500115189418e-05| +|cran|conflicted|7.544073165018484e-05| +|pypi|[localconfig](https://github.com/maxzheng/localconfig)|7.522590361445783e-05| +|pypi|[cron-descriptor](https://github.com/Salamek/cron-descriptor)|7.522590361445783e-05| +|pypi|[python-crontab](https://gitlab.com/doctormo/python-crontab/)|7.522590361445783e-05| +|pypi|[pythutils](https://github.com/JolleJolles)|7.522590361445783e-05| +|npm|[mathjs](https://mathjs.org)|7.515060240963855e-05| +|npm|husky|7.502417829260794e-05| +|pypi|[cupy](https://pypi.org/project/cupy)|7.46864124016605e-05| +|pypi|[netifaces](https://github.com/al45tair/netifaces)|7.466313253012049e-05| +|pypi|[python-socks](https://pypi.org/project/python-socks)|7.438546471600689e-05| +|cran|[zeallot](https://github.com/nteetor/zeallot)|7.427710843373494e-05| +|npm|expect.js|7.417545180722892e-05| +|pypi|[typer](https://pypi.org/project/typer)|7.413796558130117e-05| +|npm|[commander](https://github.com/tj/commander.js#readme)|7.40323795180723e-05| +|npm|eslint-plugin-import|7.353473842648069e-05| +|npm|[semantic-release](https://github.com/semantic-release/semantic-release#readme)|7.351439656932816e-05| +|cran|[pingr](https://github.com/r-lib/pingr#readme)|7.35115311410312e-05| +|cran|[circlize](https://github.com/jokergoo/circlize)|7.298461050680455e-05| +|pypi|[sgp4](https://pypi.org/project/sgp4)|7.293564925506809e-05| +|pypi|[skyfield](https://pypi.org/project/skyfield)|7.293564925506809e-05| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|7.293564925506809e-05| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|7.293564925506809e-05| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|7.293564925506809e-05| +|pypi|[asdf](https://pypi.org/project/asdf)|7.293564925506809e-05| +|pypi|[jplephem](https://pypi.org/project/jplephem)|7.293564925506809e-05| +|pypi|[qtawesome](https://github.com/spyder-ide/qtawesome)|7.280550774526678e-05| +|cran|pbkrtest|7.272272627652701e-05| +|pypi|[SciencePlots](https://github.com/garrettj403/SciencePlots/)|7.228915662650602e-05| +|pypi|[scikit-video](http://scikit-video.org/)|7.228915662650602e-05| +|pypi|[h11](https://github.com/python-hyper/h11)|7.228915662650602e-05| +|pypi|[blosc](http://github.com/blosc/python-blosc)|7.228915662650602e-05| +|pypi|[pyroaring](https://github.com/Ezibenroc/PyRoaringBitMap)|7.228915662650602e-05| +|cran|[caret](https://github.com/topepo/caret/)|7.212845889050712e-05| +|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|7.206442942402239e-05| +|pypi|[plac](https://pypi.org/project/plac)|7.202591357164195e-05| +|cran|reactlog|7.1885379305879e-05| +|cran|sourcetools|7.1885379305879e-05| +|cran|fontawesome|7.1885379305879e-05| +|cran|pbdMPI|7.156626506024095e-05| +|npm|[istanbul](https://github.com/gotwarlost/istanbul#readme)|7.137208742923167e-05| +|pypi|[Theano](http://deeplearning.net/software/theano/)|7.108433734939759e-05| +|pypi|[paramiko](https://paramiko.org)|7.103508651145939e-05| +|cran|[sna](http://statnet.org)|7.07832754594803e-05| +|npm|[xo](https://github.com/xojs/xo#readme)|7.050426982655898e-05| +|cran|RcppTOML|7.04528086771639e-05| +|pypi|[pyrsistent](https://pypi.org/project/pyrsistent)|7.042960486743736e-05| +|pypi|[pyfiglet](https://github.com/pwaller/pyfiglet)|7.033925174381738e-05| +|cran|[janitor](https://github.com/sfirke/janitor)|7.017147875389024e-05| +|pypi|[markupsafe](https://pypi.org/project/markupsafe)|6.976030884099779e-05| +|pypi|[srsly](https://pypi.org/project/srsly)|6.940553784518021e-05| +|npm|babel-preset-env|6.918490843974291e-05| +|cran|[car](https://r-forge.r-project.org/projects/car/)|6.909746433881224e-05| +|cran|RhpcBLASctl|6.90014806152908e-05| +|cran|[gtools](https://github.com/r-gregmisc/gtools)|6.896666167776697e-05| +|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|6.88614292835078e-05| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|6.879668923292209e-05| +|pypi|[psycopg2-binary](https://pypi.org/project/psycopg2-binary)|6.873776096120017e-05| +|pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|6.845801582445934e-05| +|pypi|[deprecated](https://pypi.org/project/deprecated)|6.824846123624935e-05| +|pypi|[Six](https://pypi.org/project/Six)|6.796471600688467e-05| +|pypi|[bfit](https://github.com/dfujim/bfit)|6.77710843373494e-05| +|pypi|[bdata](https://github.com/dfujim/bdata)|6.77710843373494e-05| +|pypi|[mud-py](https://github.com/dfujim/mudpy)|6.77710843373494e-05| +|pypi|[julia](http://julialang.org)|6.77710843373494e-05| +|pypi|[sphinx-fortran](http://sphinx-fortran.readthedocs.org)|6.77710843373494e-05| +|pypi|[objsize](https://github.com/liran-funaro/objsize)|6.77710843373494e-05| +|cran|geoaxe|6.77710843373494e-05| +|cran|spbabel|6.77710843373494e-05| +|cran|colorRamps|6.77710843373494e-05| +|cran|paletteer|6.77710843373494e-05| +|cran|statsExpressions|6.77710843373494e-05| +|npm|[express-handlebars](https://github.com/express-handlebars/express-handlebars)|6.77710843373494e-05| +|npm|[express-session](https://github.com/expressjs/session#readme)|6.77710843373494e-05| +|npm|[helmet](https://helmetjs.github.io/)|6.77710843373494e-05| +|npm|[node-cmd](https://github.com/RIAEvangelist/node-cmd)|6.77710843373494e-05| +|npm|[passport-local-mongoose](https://github.com/saintedlama/passport-local-mongoose#readme)|6.77710843373494e-05| +|cran|[Rdpack](https://geobosh.github.io/Rdpack/ (website))|6.748054852428875e-05| +|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|6.729514332860793e-05| +|pypi|[miniball](https://github.com/marmakoide/miniball)|6.70933734939759e-05| +|cran|latticeExtra|6.678418286962606e-05| +|pypi|[randomgen](https://github.com/bashtage/randomgen)|6.665485471296952e-05| +|rubygems|[mysql2](https://github.com/brianmario/mysql2)|6.65982296533071e-05| +|pypi|[libcst](https://pypi.org/project/libcst)|6.622286359724613e-05| +|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|6.622286359724613e-05| +|pypi|[PyLD](https://github.com/digitalbazaar/pyld)|6.575821536144577e-05| +|pypi|[tblib](https://pypi.org/project/tblib)|6.558173226468698e-05| +|pypi|[rdflib](https://github.com/RDFLib/rdflib)|6.552710843373498e-05| +|cran|timeSeries|6.540687562279192e-05| +|cran|fts|6.540687562279192e-05| +|cran|[pbapply](https://github.com/psolymos/pbapply)|6.489591081150118e-05| +|cran|[zip](https://github.com/r-lib/zip#readme)|6.48508377943085e-05| +|pypi|[hiredis](https://pypi.org/project/hiredis)|6.43361660929432e-05| +|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|6.428475664329213e-05| +|npm|[babel-preset-minify](https://github.com/babel/minify#readme)|6.426953235320761e-05| +|cran|miniUI|6.423347965549382e-05| +|pypi|[google-pasta](https://pypi.org/project/google-pasta)|6.41967268835245e-05| +|cran|lpSolve|6.413080895008606e-05| +|npm|sax|6.387645595419487e-05| +|cran|nortest|6.378454996456414e-05| +|cran|openair|6.378454996456414e-05| +|npm|[d3-dsv](https://d3js.org/d3-dsv/)|6.378454996456414e-05| +|npm|[diff2html](https://diff2html.xyz/)|6.378454996456414e-05| +|npm|[difflib-ts](https://github.com/mailmangroup/difflib-ts#readme)|6.378454996456414e-05| +|npm|[react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form#readme)|6.378454996456414e-05| +|npm|react-schemaorg|6.378454996456414e-05| +|cran|brew|6.37707026145672e-05| +|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|6.3519016040151e-05| +|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|6.3519016040151e-05| +|pypi|[astunparse](https://pypi.org/project/astunparse)|6.3519016040151e-05| +|pypi|[pkginfo](https://pypi.org/project/pkginfo)|6.315677219360976e-05| +|pypi|[spacy-legacy](https://spacy.io)|6.300098066685345e-05| +|pypi|[ffmpeg](https://github.com/jiashaokun/ffmpeg)|6.295180722891566e-05| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|6.28165128553404e-05| +|pypi|[autopep8](https://github.com/hhatto/autopep8)|6.278062464833389e-05| +|pypi|[types-backports](https://pypi.org/project/types-backports)|6.277635542168675e-05| +|cran|[plotly](https://plotly-r.com)|6.25864901848257e-05| +|npm|[sinon](https://sinonjs.org/)|6.246059901768941e-05| +|pypi|[pyasn1-modules](https://pypi.org/project/pyasn1-modules)|6.244732765944571e-05| +|pypi|[pretend](https://pypi.org/project/pretend)|6.234416330869697e-05| +|cran|fstcore|6.21631139944393e-05| +|npm|[colors](https://github.com/Marak/colors.js)|6.21342512908778e-05| +|cran|parallelly|6.213401073577272e-05| +|cran|lars|6.212895538196743e-05| +|cran|[IRdisplay](https://github.com/IRkernel/IRdisplay)|6.20871259447865e-05| +|pypi|[click-plugins](https://pypi.org/project/click-plugins)|6.156107431693461e-05| +|pypi|[mccabe](https://pypi.org/project/mccabe)|6.1532714455126e-05| +|pypi|[anyjson](http://bitbucket.org/runeh/anyjson/)|6.14873286248442e-05| +|pypi|[kombu](https://pypi.org/project/kombu)|6.125420605190783e-05| +|npm|[date-fns](https://github.com/date-fns/date-fns#readme)|6.10684496226665e-05| +|cran|[emmeans](https://github.com/rvlenth/emmeans)|6.106640310255095e-05| +|cran|[ggforce](https://ggforce.data-imaginist.com)|6.089544393532084e-05| +|pypi|[isodate](https://github.com/gweis/isodate/)|6.0724397590361455e-05| +|npm|[plotly.js](https://github.com/plotly/plotly.js#readme)|6.060814687320711e-05| +|cran|rsvg|6.048690522384607e-05| +|cran|[futile.logger](NA)|6.0441430557394424e-05| +|cran|[graphql](http://graphql.org (upstream) https://github.com/ropensci/graphql +(devel))|6.0376737720111215e-05| +|cran|[TTR](https://github.com/joshuaulrich/TTR)|6.0316265060240964e-05| +|pypi|[pyclipper](https://github.com/greginvm/pyclipper)|6.0240963855421684e-05| +|pypi|[quantiphy](https://quantiphy.readthedocs.io)|6.0240963855421684e-05| +|pypi|[Pint](https://github.com/hgrecco/pint)|6.0240963855421684e-05| +|npm|[ajv-errors](https://github.com/epoberezkin/ajv-errors#readme)|6.0240963855421684e-05| +|npm|[heta-parser](https://github.com/hetalang/heta-parser#readme)|6.0240963855421684e-05| +|npm|[inquirer](https://github.com/SBoudrias/Inquirer.js#readme)|6.0240963855421684e-05| +|npm|[markdown-it](https://github.com/markdown-it/markdown-it#readme)|6.0240963855421684e-05| +|npm|[mathjs-mathml](https://github.com/insysbio/mathjs-mathml#readme)|6.0240963855421684e-05| +|npm|[random-id](https://github.com/KingCosmic/random-id#readme)|6.0240963855421684e-05| +|npm|npm-run-all|6.017416920428968e-05| +|npm|jest|6.01630266561216e-05| +|rubygems|[activesupport](https://rubyonrails.org)|6.015582739119745e-05| +|pypi|[pydub](http://pydub.com)|6.015490533562822e-05| +|rubygems|[rubocop](https://rubocop.org/)|6.007757458210644e-05| |cran|[credentials](https://docs.ropensci.org/credentials/ (website) -https://github.com/r-lib/credentials)|6.129945515893505e-05| -|pypi|[pyreadline3](https://pypi.python.org/pypi/pyreadline3/)|6.090604026845637e-05| -|pypi|[pyreadline](http://ipython.org/pyreadline.html)|6.090604026845637e-05| -|pypi|[monotonic](https://github.com/atdt/monotonic)|6.090604026845637e-05| -|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|6.0731487040349855e-05| -|cran|spatial|6.06289539652936e-05| -|cran|BayesFactor|6.058663162352542e-05| -|cran|stopwords|6.055361468147838e-05| -|cran|rnaturalearthdata|6.0398996976178175e-05| -|pypi|[entrypoints](https://pypi.org/project/entrypoints)|6.033445074097833e-05| -|npm|eslint-plugin-import|5.998269596945643e-05| -|cran|VGAM|5.972412183925466e-05| -|cran|av|5.966413509738676e-05| -|cran|brms|5.942186653879134e-05| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|5.931540563519724e-05| -|pypi|[fastparquet](https://pypi.org/project/fastparquet)|5.9309280590562786e-05| -|pypi|[arviz](http://github.com/arviz-devs/arviz)|5.920398382378249e-05| -|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|5.911520682098342e-05| -|pypi|[Brotli](https://github.com/google/brotli)|5.898677664617261e-05| -|npm|[sinon](https://sinonjs.org/)|5.865602702710328e-05| -|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|5.8349325171472824e-05| -|pypi|[rfc3987](https://pypi.org/project/rfc3987)|5.8349325171472824e-05| -|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|5.8349325171472824e-05| -|pypi|[octave_kernel](http://github.com/Calysto/octave_kernel)|5.828329212292476e-05| -|pypi|[sos-python](https://github.com/vatlab/SOS)|5.828329212292476e-05| -|pypi|[sos-ruby](https://github.com/vatlab/SOS)|5.828329212292476e-05| -|pypi|[dash_core_components](https://pypi.org/project/dash_core_components)|5.828329212292476e-05| -|pypi|[dash_html_components](https://github.com/plotly/dash-html-components)|5.828329212292476e-05| -|pypi|[dash_dangerously_set_inner_html](https://pypi.org/project/dash_dangerously_set_inner_html)|5.828329212292476e-05| -|pypi|[BioPython](https://biopython.org/)|5.828329212292476e-05| -|pypi|[python-louvain](https://github.com/taynaud/python-louvain)|5.828329212292476e-05| -|pypi|[torch-sparse](https://github.com/rusty1s/pytorch_sparse)|5.828329212292476e-05| -|pypi|[torch-scatter](https://github.com/rusty1s/pytorch_scatter)|5.828329212292476e-05| -|pypi|[torch-cluster](https://github.com/rusty1s/pytorch_cluster)|5.828329212292476e-05| -|pypi|[torch-spline-conv](https://github.com/rusty1s/pytorch_spline_conv)|5.828329212292476e-05| -|cran|dunn.test|5.828329212292476e-05| -|rubygems|w3c_validators|5.803584312080536e-05| -|cran|plotrix|5.800508443014452e-05| -|cran|egg|5.7787571907957814e-05| -|pypi|[invoke](https://pypi.org/project/invoke)|5.771064837008628e-05| -|pypi|[objgraph](https://mg.pov.lt/objgraph/)|5.758957503713928e-05| -|pypi|[tabulate](https://pypi.org/project/tabulate)|5.7436242176785126e-05| -|cran|gam|5.739488532379359e-05| -|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|5.736014201821667e-05| -|cran|wk|5.7179069880812185e-05| -|pypi|[vine](https://pypi.org/project/vine)|5.6807142969851256e-05| -|cran|hoardr|5.676797228958706e-05| -|pypi|[mistune](https://github.com/lepture/mistune)|5.675174248989266e-05| -|pypi|[pyasn1](https://pypi.org/project/pyasn1)|5.656643255659644e-05| -|cran|config|5.6547883724312755e-05| -|pypi|[qtpy](https://pypi.org/project/qtpy)|5.6321419755305335e-05| -|cran|[git2r](https://docs.ropensci.org/git2r/ (website))|5.631646353958964e-05| -|pypi|[keystoneauth1](https://pypi.org/project/keystoneauth1)|5.568552253116012e-05| -|pypi|[path.py](https://pypi.org/project/path.py)|5.547560660815694e-05| -|pypi|[datrie](https://github.com/kmike/datrie)|5.536912751677853e-05| -|pypi|[toposort](https://pypi.org/project/toposort)|5.536912751677853e-05| -|pypi|[connection_pool](https://github.com/zhouyl/ConnectionPool)|5.536912751677853e-05| -|cran|[genalg](https://github.com/egonw/genalg)|5.536912751677853e-05| -|cran|segmented|5.535110675726374e-05| -|pypi|[isodate](https://github.com/gweis/isodate/)|5.532913870246085e-05| -|pypi|[click-plugins](https://pypi.org/project/click-plugins)|5.4964660800608775e-05| -|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|5.4744135085447266e-05| -|pypi|[asv](https://pypi.org/project/asv)|5.473944468339736e-05| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|5.473944468339736e-05| -|pypi|[kaleido](https://pypi.org/project/kaleido)|5.473944468339736e-05| -|cran|[semver](https://github.com/johndharrison/semver)|5.4657238734419984e-05| -|pypi|[awscrt](https://github.com/awslabs/aws-crt-python)|5.4566233494718303e-05| -|npm|[typescript](https://www.typescriptlang.org/)|5.446774783795137e-05| -|cran|lsa|5.437609425153195e-05| -|pypi|[simplejson](https://pypi.org/project/simplejson)|5.4034336049856173e-05| -|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|5.3935587810272534e-05| -|cran|RJSONIO|5.385218323261159e-05| -|npm|standard|5.385053521974271e-05| -|pypi|[berkeleydb](https://pypi.org/project/berkeleydb)|5.3800335570469795e-05| -|npm|[mqtt](https://github.com/mqttjs/MQTT.js#readme)|5.375419463087248e-05| -|npm|regenerator-runtime|5.357899783014583e-05| -|pypi|[tblib](https://github.com/ionelmc/python-tblib)|5.35130955453942e-05| -|cran|mclust|5.327354715106194e-05| -|npm|[debug](https://github.com/debug-js/debug#readme)|5.3112030209545595e-05| -|pypi|[celery](http://celeryproject.org)|5.289207834645392e-05| -|pypi|[billiard](https://pypi.org/project/billiard)|5.265879767940923e-05| -|npm|eslint-plugin-standard|5.254489637878898e-05| -|npm|eslint-plugin-promise|5.254489637878898e-05| -|npm|eslint-plugin-node|5.254489637878898e-05| -|npm|eslint-config-standard|5.254489637878898e-05| -|pypi|[waitress](https://pypi.org/project/waitress)|5.247590516577224e-05| -|npm|coffee-script|5.2427642617449655e-05| -|cran|rbibutils|5.2352301054650044e-05| -|cran|remotes|5.2220551254592624e-05| -|pypi|[pooch>=1.1.1](https://pypi.org/project/pooch>=1.1.1)|5.22051773729626e-05| -|pypi|[pandas>=0.25.1](https://pypi.org/project/pandas>=0.25.1)|5.22051773729626e-05| -|pypi|[numpy>=1.13.3](https://pypi.org/project/numpy>=1.13.3)|5.22051773729626e-05| -|rubygems|[coderay](http://coderay.rubychan.de)|5.1832424496644285e-05| -|pypi|[mccabe](https://pypi.org/project/mccabe)|5.161771739391678e-05| -|pypi|[hiredis](https://pypi.org/project/hiredis)|5.13823137153674e-05| -|pypi|[flake8-polyfill](https://pypi.org/project/flake8-polyfill)|5.132505162622612e-05| -|pypi|[markupsafe](https://palletsprojects.com/p/markupsafe/)|5.131895508143034e-05| -|pypi|[tf-estimator-nightly](https://pypi.org/project/tf-estimator-nightly)|5.099515477331872e-05| -|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|5.07241865812467e-05| -|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|5.07241865812467e-05| -|pypi|[dash-table](https://pypi.org/project/dash-table)|5.07241865812467e-05| -|cran|matlab|5.07151546021093e-05| -|cran|[foreign](https://svn.r-project.org/R-packages/trunk/foreign/)|5.06957674082919e-05| -|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|5.0622307071383014e-05| -|pypi|[appnope](https://pypi.org/project/appnope)|5.0622307071383014e-05| -|cran|mnormt|5.054104583274756e-05| -|rubygems|activerecord|5.0489864402136685e-05| -|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|5.038326817534598e-05| -|pypi|[nglview](https://github.com/arose/nglview)|5.0335570469798656e-05| -|pypi|[pyperclip](https://github.com/asweigart/pyperclip)|5.0335570469798656e-05| -|cran|plotROC|5.0335570469798656e-05| -|npm|[async](https://caolan.github.io/async/)|5.02647860738255e-05| -|npm|rimraf|5.010707756652208e-05| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|4.984594357941924e-05| -|pypi|[Unidecode](https://pypi.org/project/Unidecode)|4.983221476510067e-05| -|pypi|[text-unidecode](https://pypi.org/project/text-unidecode)|4.983221476510067e-05| -|pypi|[uncertainties](https://pypi.org/project/uncertainties)|4.969834277759143e-05| -|npm|[tsd](https://github.com/SamVerschueren/tsd#readme)|4.969531307618555e-05| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|4.95860385959326e-05| -|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|4.9574362997181796e-05| -|npm|expect.js|4.9486157718120804e-05| -|cran|SuppDists|4.9486157718120804e-05| -|pypi|[autopep8](https://github.com/hhatto/autopep8)|4.936268782436214e-05| -|cran|GGally|4.934145387022022e-05| -|cran|[glmnet](https://glmnet.stanford.edu)|4.916950918209313e-05| -|cran|qlcMatrix|4.915377881529034e-05| -|npm|[browserify](https://github.com/browserify/browserify#readme)|4.911917450632135e-05| -|cran|[ggseqlogo](https://github.com/omarwagih/ggseqlogo)|4.888532243945141e-05| -|cran|RcppRoll|4.88391814998541e-05| -|cran|blavaan|4.8747501956800506e-05| -|pypi|[stack-data](https://pypi.org/project/stack-data)|4.8703994155272276e-05| -|npm|npm-run-all|4.855345158197507e-05| -|pypi|[websocket-client](https://pypi.org/project/websocket-client)|4.818160327436384e-05| -|cran|spex|4.814706740589437e-05| -|cran|[seqminer](http://zhanxw.github.io/seqminer/)|4.814706740589437e-05| -|cran|SeuratObject|4.814706740589437e-05| -|pypi|[elasticsearch](https://pypi.org/project/elasticsearch)|4.808283672760935e-05| -|npm|fs-extra|4.8074464685202935e-05| -|pypi|[python-lsp-server](https://pypi.org/project/python-lsp-server)|4.783892617449664e-05| -|pypi|[scikit-build](https://pypi.org/project/scikit-build)|4.7525167785234914e-05| -|pypi|[Flask-Compress](https://pypi.org/project/Flask-Compress)|4.7421119149307064e-05| -|cran|[ggpubr](https://rpkgs.datanovia.com/ggpubr/)|4.733107209815973e-05| -|cran|tm|4.683505136559964e-05| -|pypi|[testfixtures](https://github.com/Simplistix/testfixtures)|4.6799121472341494e-05| -|cran|mediation|4.67494807409996e-05| -|pypi|[pyflakes](https://pypi.org/project/pyflakes)|4.674523417244027e-05| -|pypi|[parso](https://github.com/davidhalter/parso)|4.66551609842091e-05| -|pypi|[stestr](http://stestr.readthedocs.io/en/latest/)|4.660530201342282e-05| -|pypi|[pyobjc](https://pypi.org/project/pyobjc)|4.654551434709477e-05| -|pypi|[cookiecutter](https://github.com/cookiecutter/cookiecutter)|4.6198615771812074e-05| -|npm|[jasmine](http://jasmine.github.io/)|4.6140939597315434e-05| -|npm|[lru-cache](https://github.com/isaacs/node-lru-cache#readme)|4.6140939597315434e-05| -|npm|[proj4](https://github.com/proj4js/proj4js#readme)|4.6140939597315434e-05| -|npm|[sift](https://github.com/crcn/sift.js#readme)|4.6140939597315434e-05| -|npm|[socket.io](https://github.com/socketio/socket.io#readme)|4.6140939597315434e-05| -|npm|[underscore](https://underscorejs.org)|4.6140939597315434e-05| -|pypi|[trackpy](https://github.com/soft-matter/trackpy)|4.6140939597315434e-05| -|cran|[statmod](NA)|4.6028342659714216e-05| -|pypi|[django-extensions](https://pypi.org/project/django-extensions)|4.599218386721932e-05| -|pypi|[djangorestframework](https://pypi.org/project/djangorestframework)|4.599218386721932e-05| -|cran|futile.options|4.5940556088207096e-05| -|cran|lambda.r|4.5940556088207096e-05| -|pypi|[shiboken6](https://pypi.org/project/shiboken6)|4.567953020134228e-05| -|pypi|[colorlover](https://pypi.org/project/colorlover)|4.5590129482746935e-05| -|pypi|[dash-tabulator](https://pypi.org/project/dash-tabulator)|4.5590129482746935e-05| -|pypi|[django-bootstrap4](https://pypi.org/project/django-bootstrap4)|4.5590129482746935e-05| -|pypi|[django-cache-memoize](https://pypi.org/project/django-cache-memoize)|4.5590129482746935e-05| -|pypi|[django-cookie-law](https://pypi.org/project/django-cookie-law)|4.5590129482746935e-05| -|pypi|[django-cors-headers](https://pypi.org/project/django-cors-headers)|4.5590129482746935e-05| -|pypi|[django-currentuser](https://pypi.org/project/django-currentuser)|4.5590129482746935e-05| -|pypi|[django-oauth-toolkit](https://pypi.org/project/django-oauth-toolkit)|4.5590129482746935e-05| -|pypi|[django-plotly-dash](https://pypi.org/project/django-plotly-dash)|4.5590129482746935e-05| -|pypi|[dpd-static-support](https://pypi.org/project/dpd-static-support)|4.5590129482746935e-05| -|rubygems|[pg](https://github.com/ged/ruby-pg)|4.541398438570058e-05| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|4.526998262761936e-05| -|npm|[uuid](https://github.com/uuidjs/uuid#readme)|4.500700769681476e-05| -|rubygems|[will_paginate](https://github.com/mislav/will_paginate)|4.4973291329954794e-05| -|npm|[xmlbuilder](http://github.com/oozcitak/xmlbuilder-js)|4.4883760325245225e-05| -|cran|arrow|4.48597706555903e-05| -|pypi|[python-keystoneclient](https://pypi.org/project/python-keystoneclient)|4.473473953339726e-05| -|pypi|[recommonmark](https://github.com/rtfd/recommonmark)|4.4618480844519094e-05| -|cran|logspline|4.4599855790348205e-05| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|4.434844159914868e-05| -|pypi|[diff-match-patch](https://github.com/diff-match-patch-python/diff-match-patch)|4.429530201342281e-05| -|rubygems|[fastercsv](http://fastercsv.rubyforge.org)|4.429530201342281e-05| -|rubygems|[builder](http://onestepback.org)|4.429530201342281e-05| -|rubygems|[jruby-openssl](https://github.com/jruby/jruby-openssl)|4.429530201342281e-05| -|rubygems|[activerecord-sqlserver-adapter](http://github.com/rails-sqlserver/activerecord-sqlserver-adapter)|4.429530201342281e-05| -|cran|DiceKriging|4.425271037687145e-05| -|pypi|[trio](https://pypi.org/project/trio)|4.4128033203472396e-05| -|pypi|[curio](https://pypi.org/project/curio)|4.4128033203472396e-05| -|npm|zap|4.4122273489932885e-05| -|npm|docco|4.4122273489932885e-05| -|npm|diff|4.4122273489932885e-05| -|cran|vegan|4.404331598411176e-05| -|pypi|[rfc3986](https://pypi.org/project/rfc3986)|4.399959787738662e-05| -|pypi|[fiona](https://pypi.org/project/fiona)|4.393166482479352e-05| -|rubygems|concurrent-ruby|4.3852348993288586e-05| -|rubygems|jdbc-mysql|4.3852348993288586e-05| -|rubygems|psych|4.3852348993288586e-05| -|rubygems|webrick|4.3852348993288586e-05| -|pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|4.378859925441349e-05| -|npm|[tslib](https://www.typescriptlang.org/)|4.3544111742098324e-05| -|npm|safe-buffer|4.3532841571002924e-05| -|pypi|[openstacksdk](https://pypi.org/project/openstacksdk)|4.350431447746884e-05| -|npm|[semver](https://github.com/npm/node-semver#readme)|4.3484731311475786e-05| -|cran|parallelMap|4.338262408732208e-05| -|cran|shinyAce|4.338074268984284e-05| -|pypi|[ptyprocess](https://pypi.org/project/ptyprocess)|4.334173133824262e-05| -|cran|gridGraphics|4.332219549154867e-05| -|pypi|[fastprogress](https://pypi.org/project/fastprogress)|4.3206849079332295e-05| -|npm|jest|4.3028878785155e-05| -|pypi|[types-urllib3](https://pypi.org/project/types-urllib3)|4.2979687248322144e-05| -|pypi|[zarr](https://pypi.org/project/zarr)|4.273568342144494e-05| -|npm|[cookie-parser](https://github.com/expressjs/cookie-parser#readme)|4.259163655136809e-05| -|npm|[date-fns](https://github.com/date-fns/date-fns#readme)|4.259163655136809e-05| -|npm|[deep-equal-in-any-order](https://github.com/oprogramador/deep-equal-in-any-order#readme)|4.259163655136809e-05| -|npm|[dice-coefficient](https://words.github.io/dice-coefficient/)|4.259163655136809e-05| -|npm|[elasticdump](https://github.com/elasticsearch-dump/elasticsearch-dump#readme)|4.259163655136809e-05| -|npm|[elasticsearch](https://www.elastic.co/guide/en/elasticsearch/client/elasticsearch-js/16.x/index.html)|4.259163655136809e-05| -|npm|[fibers](https://github.com/laverdet/node-fibers)|4.259163655136809e-05| -|npm|[saxes](https://github.com/lddubeau/saxes#readme)|4.259163655136809e-05| -|npm|[swagger-jsdoc](https://github.com/Surnet/swagger-jsdoc)|4.259163655136809e-05| -|npm|[swagger-ui-express](https://github.com/scottie1984/swagger-ui-express)|4.259163655136809e-05| -|pypi|[primesieve](https://github.com/kimwalisch/primesieve-python)|4.259163655136809e-05| -|cran|mlrMBO|4.259163655136809e-05| -|cran|emoa|4.259163655136809e-05| -|pypi|[multidict](https://github.com/aio-libs/multidict)|4.258737738771295e-05| -|pypi|[paramiko](https://pypi.org/project/paramiko)|4.250692082555382e-05| -|npm|[plotly.js](https://github.com/plotly/plotly.js#readme)|4.212155108128262e-05| -|pypi|[pkginfo](https://pypi.org/project/pkginfo)|4.1784832776715485e-05| -|npm|[zone.js](https://github.com/angular/angular#readme)|4.1706282624906785e-05| -|cran|gmp|4.136397063301623e-05| -|rubygems|commonmarker|4.12918940898507e-05| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|4.117090124640471e-05| -|pypi|[torch](https://pytorch.org/)|4.106715640987249e-05| -|rubygems|jekyll-commonmark|4.106589765100671e-05| -|npm|[angular-plotly](https://github.com/alonho/angular-plotly#readme)|4.1014168530947055e-05| -|npm|[angular-plotly.js](https://github.com/plotly/angular-plotly.js)|4.1014168530947055e-05| -|npm|[crypto-js](http://github.com/brix/crypto-js)|4.1014168530947055e-05| -|npm|[ng2-file-upload](https://github.com/valor-software/ng2-file-upload)|4.1014168530947055e-05| -|npm|[ngx-cookie-service](https://github.com/stevermeister/ngx-cookie-service#readme)|4.1014168530947055e-05| -|npm|[ngx-smart-loader](https://github.com/biig-io/ngx-smart-loader)|4.1014168530947055e-05| -|npm|ngx-smart-modal|4.1014168530947055e-05| -|npm|plotly|4.1014168530947055e-05| -|pypi|[dash_bootstrap_components](https://pypi.org/project/dash_bootstrap_components)|4.1014168530947055e-05| -|pypi|[django_admin_index](https://pypi.org/project/django_admin_index)|4.1014168530947055e-05| -|pypi|[django_plotly_dash](https://pypi.org/project/django_plotly_dash)|4.1014168530947055e-05| -|pypi|[myst-nb](https://pypi.org/project/myst-nb)|4.074940376318312e-05| -|pypi|[PyQt5](https://pypi.org/project/PyQt5)|4.073005752636625e-05| -|npm|babel-preset-es2015|4.0720449780325137e-05| -|cran|mlbench|4.065597169614951e-05| -|pypi|[aenum](https://github.com/ethanfurman/aenum)|4.060402684563758e-05| -|pypi|[cligj](https://pypi.org/project/cligj)|4.049146830518474e-05| -|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|4.048466475354985e-05| -|cran|webfakes|4.032854912267481e-05| -|pypi|[wslink](https://pypi.org/project/wslink)|4.023523400882783e-05| -|pypi|[uwsgi](https://pypi.org/project/uwsgi)|4.020543844723823e-05| -|pypi|[pyxenon](https://pypi.org/project/pyxenon)|4.0197986577181205e-05| -|npm|[rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve#readme)|4.0130985280018045e-05| -|pypi|[unyt](https://github.com/yt-project/unyt)|4.0050335570469806e-05| -|cran|proj4|3.9858255640924415e-05| -|cran|RandomFieldsUtils|3.960001423066032e-05| -|cran|biglm|3.9586820168252185e-05| -|cran|jqr|3.947668127653748e-05| -|cran|websocket|3.942360977948226e-05| -|cran|base64url|3.936899884350976e-05| -|pypi|[pydantic](https://github.com/samuelcolvin/pydantic)|3.919452641099434e-05| -|npm|[type-fest](https://github.com/sindresorhus/type-fest#readme)|3.915388302972195e-05| -|npm|[is-stream](https://github.com/sindresorhus/is-stream#readme)|3.915388302972195e-05| -|pypi|[pytest-qt](http://github.com/pytest-dev/pytest-qt)|3.915388302972195e-05| -|rubygems|pry|3.899722865446514e-05| -|pypi|[nbsphinx](https://nbsphinx.readthedocs.io/)|3.885038148517378e-05| -|cran|utf8|3.874837415597914e-05| -|cran|[ggridges](https://wilkelab.org/ggridges/)|3.8466055756324214e-05| -|pypi|[Celery](http://celeryproject.org)|3.818560518398519e-05| -|pypi|[DAWG](https://pypi.org/project/DAWG)|3.818560518398519e-05| -|pypi|[django-nose](https://pypi.org/project/django-nose)|3.818560518398519e-05| -|pypi|[MySQL-python](https://pypi.org/project/MySQL-python)|3.818560518398519e-05| -|npm|rollup-plugin-commonjs|3.805464299813885e-05| -|cran|attempt|3.7873854593055875e-05| -|cran|carrier|3.779669715072399e-05| -|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|3.774700690808077e-05| -|npm|cross-env|3.7581034737075e-05| -|cran|extrafont|3.742600193352889e-05| -|cran|rms|3.7418833660206466e-05| -|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|3.737333671956967e-05| -|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|3.737333671956967e-05| -|cran|fftwtools|3.713662414746042e-05| -|cran|quadprog|3.702199966651382e-05| -|cran|strucchange|3.6889056744209536e-05| -|cran|leaflet.providers|3.6780035581604866e-05| -|pypi|[tensorflow](https://www.tensorflow.org/)|3.67139070561111e-05| -|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|3.660339692032908e-05| -|rubygems|rack|3.658947527917856e-05| -|pypi|[pytest-pep8](https://bitbucket.org/pytest-dev/pytest-pep8)|3.655782137325761e-05| -|cran|robotstxt|3.6543624161073824e-05| -|pypi|[pynacl](https://pypi.org/project/pynacl)|3.639353427612655e-05| -|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|3.630250304270085e-05| -|cran|ggdist|3.607511615900878e-05| -|cran|bridgesampling|3.607511615900878e-05| -|cran|bayesQR|3.607511615900878e-05| -|cran|Rgraphviz|3.597225575554788e-05| -|cran|RandomFields|3.594083710781235e-05| -|pypi|[service-identity](https://pypi.org/project/service-identity)|3.5899067375577444e-05| -|cran|mice|3.58768821855733e-05| -|pypi|[oset](https://gitorious.com/sleipnir/python-oset)|3.5722017752760336e-05| -|pypi|[pyenchant](https://pyenchant.github.io/pyenchant/)|3.5722017752760336e-05| -|cran|[extraDistr](https://github.com/twolodzko/extraDistr)|3.548509672325304e-05| -|npm|minimist|3.5334300127128015e-05| -|cran|mondate|3.5307081672301564e-05| -|cran|DAAG|3.5307081672301564e-05| -|pypi|[meshio](https://github.com/nschloe/meshio)|3.504620890106672e-05| -|npm|eslint-plugin-markdown|3.493401522973671e-05| -|pypi|[rdflib](https://pypi.org/project/rdflib)|3.489793064876964e-05| -|npm|inherits|3.489138289828501e-05| -|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|3.463612729552326e-05| -|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|3.463612729552326e-05| -|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|3.463612729552326e-05| -|cran|gganimate|3.452776916135581e-05| -|cran|[shinythemes](http://rstudio.github.io/shinythemes/)|3.4526728388282206e-05| -|pypi|[zstandard](https://pypi.org/project/zstandard)|3.443692773250239e-05| -|pypi|[python-snappy](https://pypi.org/project/python-snappy)|3.4294132778336415e-05| -|pypi|[stfio](https://pypi.org/project/stfio)|3.425964765100671e-05| -|pypi|[klusta](https://klusta.cortexlab.net)|3.425964765100671e-05| -|pypi|[igor](http://blog.tremily.us/posts/igor/)|3.425964765100671e-05| -|pypi|[tablib](https://pypi.org/project/tablib)|3.425964765100671e-05| -|cran|cba|3.425964765100671e-05| -|cran|[golem](https://github.com/ThinkR-open/golem)|3.4239096557026204e-05| -|cran|seriation|3.404662984632367e-05| -|npm|[canvg](https://github.com/canvg/canvg)|3.355704697986577e-05| -|npm|[googleapis](https://github.com/googleapis/google-api-nodejs-client#readme)|3.355704697986577e-05| -|npm|[http](https://github.com/npm/security-holder#readme)|3.355704697986577e-05| -|npm|[jspdf](https://github.com/mrrio/jspdf)|3.355704697986577e-05| -|npm|[multiparty](https://github.com/pillarjs/multiparty#readme)|3.355704697986577e-05| -|npm|[node-xlsx](https://github.com/mgcrea/node-xlsx#readme)|3.355704697986577e-05| -|npm|[pg-hstore](https://github.com/scarney81/pg-hstore)|3.355704697986577e-05| -|npm|[pug](https://pugjs.org)|3.355704697986577e-05| -|npm|[sequelize](https://sequelize.org/)|3.355704697986577e-05| -|npm|[stylus](https://github.com/stylus/stylus)|3.355704697986577e-05| -|cran|shinyBS|3.3262189103829446e-05| -|pypi|[websockets](https://pypi.org/project/websockets)|3.32202923705026e-05| -|rubygems|html-pipeline|3.3101345278044105e-05| -|cran|lmtest|3.2681463467910786e-05| -|pypi|[pep8-naming](https://github.com/PyCQA/pep8-naming)|3.262264388044841e-05| -|cran|tableHTML|3.2570075009869716e-05| -|cran|shiny.i18n|3.2570075009869716e-05| -|cran|popbio|3.2570075009869716e-05| -|npm|babel-runtime|3.250958772770853e-05| -|pypi|[uri-template](https://pypi.org/project/uri-template)|3.250776237185633e-05| -|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|3.250776237185633e-05| -|pypi|[isoduration](https://pypi.org/project/isoduration)|3.250776237185633e-05| -|pypi|[fqdn](https://pypi.org/project/fqdn)|3.250776237185633e-05| -|cran|[gitcreds](https://github.com/r-lib/gitcreds)|3.2495737439882616e-05| -|cran|dfoptim|3.2479479795273815e-05| -|pypi|[geographiclib](https://pypi.org/project/geographiclib)|3.245276845637584e-05| -|rubygems|actionview|3.238818526571702e-05| -|cran|nloptr|3.236693088129509e-05| -|cran|ini|3.2341934307891566e-05| -|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|3.2323671853873346e-05| -|pypi|[plac](https://pypi.org/project/plac)|3.1983679072605244e-05| -|npm|[font-awesome](http://fontawesome.io/)|3.191010243730131e-05| -|pypi|[google-auth](https://pypi.org/project/google-auth)|3.1881531712214434e-05| -|npm|object-assign|3.1881443603775256e-05| -|cran|[RcppArmadillo](https://github.com/RcppCore/RcppArmadillo)|3.183724832214765e-05| -|rubygems|kramdown|3.1726908587620086e-05| -|pypi|[multiprocess](https://pypi.org/project/multiprocess)|3.1717496962140976e-05| -|npm|[ts-node](https://typestrong.org/ts-node)|3.1639501438159156e-05| -|pypi|[srsly](https://pypi.org/project/srsly)|3.155625364637107e-05| -|cran|caTools|3.1510408215945145e-05| -|npm|react-router|3.148418607178762e-05| -|npm|react-test-renderer|3.148418607178762e-05| -|npm|[unist-util-remove-position](https://github.com/syntax-tree/unist-util-remove-position#readme)|3.1323106423777565e-05| -|npm|[unist-builder](https://github.com/syntax-tree/unist-builder#readme)|3.1323106423777565e-05| -|npm|[remark](https://remark.js.org)|3.1323106423777565e-05| -|npm|[unist-util-visit-parents](https://github.com/syntax-tree/unist-util-visit-parents#readme)|3.1323106423777565e-05| -|npm|[unist-util-find-after](https://github.com/syntax-tree/unist-util-find-after#readme)|3.1323106423777565e-05| -|pypi|[pykerberos](https://pypi.org/project/pykerberos)|3.1323106423777565e-05| -|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|3.1323106423777565e-05| -|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|3.1323106423777565e-05| -|pypi|[PySide](http://www.pyside.org)|3.1323106423777565e-05| -|pypi|[PyQt4](http://www.riverbankcomputing.com/software/pyqt/)|3.1323106423777565e-05| -|npm|strip-ansi|3.12441509027506e-05| -|cran|janeaustenr|3.121152640063171e-05| -|npm|whatwg-fetch|3.1075171149349884e-05| -|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|3.1057006751637624e-05| -|cran|vcd|3.104343583070812e-05| -|pypi|[typer](https://pypi.org/project/typer)|3.086961411691257e-05| -|rubygems|[rdoc](https://ruby.github.io/rdoc)|3.0761797857925526e-05| -|cran|wordcloud2|3.0662175492292944e-05| -|cran|spacyr|3.0591442953020135e-05| -|pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|3.057953561376922e-05| -|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|3.057031203033614e-05| -|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|3.057031203033614e-05| -|npm|chalk|3.0389132679401133e-05| -|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|3.037043240043864e-05| -|cran|reshape|3.0181940044045157e-05| -|cran|SGP|3.016299137104506e-05| -|pypi|[catalogue](https://pypi.org/project/catalogue)|3.007151269208394e-05| -|pypi|[wasabi](https://pypi.org/project/wasabi)|3.007151269208394e-05| -|pypi|[blis](https://pypi.org/project/blis)|3.007151269208394e-05| -|pypi|[thinc](https://pypi.org/project/thinc)|3.007151269208394e-05| -|pypi|[preshed](https://pypi.org/project/preshed)|3.007151269208394e-05| -|pypi|[cymem](https://pypi.org/project/cymem)|3.007151269208394e-05| -|pypi|[murmurhash](https://pypi.org/project/murmurhash)|3.007151269208394e-05| -|pypi|[cftime](https://pypi.org/project/cftime)|3.0033948853160257e-05| -|pypi|[cupy](https://pypi.org/project/cupy)|2.995131904913004e-05| -|npm|[inline-style-prefixer](https://github.com/rofrischmann/inline-style-prefixer#readme)|2.98993288590604e-05| -|npm|[keycode](https://github.com/timoxley/keycode)|2.98993288590604e-05| -|npm|[react-event-listener](https://github.com/oliviertassinari/react-event-listener)|2.98993288590604e-05| -|npm|react-transition-group|2.98993288590604e-05| -|npm|simple-assign|2.98993288590604e-05| -|npm|warning|2.98993288590604e-05| -|npm|lodash.merge|2.98993288590604e-05| -|npm|lodash.throttle|2.98993288590604e-05| -|npm|recompose|2.98993288590604e-05| -|rubygems|railties|2.9868819339816465e-05| -|pypi|[PyQtWebEngine-Qt5](https://pypi.org/project/PyQtWebEngine-Qt5)|2.984395973154362e-05| -|cran|polynom|2.9701178341924764e-05| -|cran|conditionz|2.970027814946322e-05| -|cran|furrr|2.963175232867925e-05| -|cran|tkrplot|2.9614216211276318e-05| -|cran|Formula|2.957709261147165e-05| -|rubygems|gemoji|2.9332784036433365e-05| -|cran|tripack|2.9323504446418675e-05| -|pypi|[natsort](https://github.com/SethMMorton/natsort)|2.925502481830314e-05| -|cran|pscl|2.9209363881559102e-05| -|pypi|[rasterio](https://github.com/mapbox/rasterio)|2.919565421551223e-05| -|npm|highcharts-exporting|2.914164606146238e-05| -|npm|highcharts-no-data-to-display|2.914164606146238e-05| -|npm|[history](https://github.com/remix-run/history#readme)|2.914164606146238e-05| -|npm|[jsdocx](https://github.com/zuck/jsdocx#readme)|2.914164606146238e-05| -|npm|[ramda](https://ramdajs.com/)|2.914164606146238e-05| -|npm|[rc-tooltip](http://github.com/react-component/tooltip)|2.914164606146238e-05| -|npm|[react-bootstrap-table](https://github.com/AllenFang/react-bootstrap-table#readme)|2.914164606146238e-05| -|npm|react-fontawesome|2.914164606146238e-05| -|npm|react-highcharts|2.914164606146238e-05| -|npm|react-js-pagination|2.914164606146238e-05| -|npm|react-router-redux|2.914164606146238e-05| -|npm|react-s-alert|2.914164606146238e-05| -|npm|react-table|2.914164606146238e-05| -|npm|redux|2.914164606146238e-05| -|npm|redux-form|2.914164606146238e-05| -|npm|redux-observable|2.914164606146238e-05| -|npm|redux-persist|2.914164606146238e-05| -|npm|reselect|2.914164606146238e-05| -|npm|rx-dom|2.914164606146238e-05| -|npm|xlsx|2.914164606146238e-05| -|pypi|[tinycss2](https://pypi.org/project/tinycss2)|2.9115711304481507e-05| -|cran|Rmpfr|2.8916570789389582e-05| -|pypi|[livereload](https://pypi.org/project/livereload)|2.8884689597315435e-05| -|npm|immutable|2.8850229600847754e-05| -|cran|pkgdown|2.8778159270424982e-05| -|cran|kernlab|2.877359961980218e-05| -|npm|ms|2.854197987397513e-05| -|npm|husky|2.852321336381739e-05| -|npm|lint-staged|2.852321336381739e-05| -|pypi|[arrow](https://pypi.org/project/arrow)|2.837931447746884e-05| -|cran|jsonify|2.8295781399808244e-05| -|pypi|[cairocffi](https://pypi.org/project/cairocffi)|2.8205033557046978e-05| -|cran|gt|2.792595322401282e-05| -|pypi|[jupyter-bokeh](https://pypi.org/project/jupyter-bokeh)|2.7885906040268454e-05| -|pypi|[spacy](https://pypi.org/project/spacy)|2.7882652162699747e-05| -|pypi|[smart-open](https://pypi.org/project/smart-open)|2.786678489533214e-05| -|pypi|[nltk](https://pypi.org/project/nltk)|2.7750009826529266e-05| -|pypi|[pyzmq](https://pypi.org/project/pyzmq)|2.7744794009572617e-05| +https://github.com/r-lib/credentials)|6.002378194095064e-05| +|pypi|[pyscf](http://www.pyscf.org)|5.989537095751427e-05| +|pypi|[language-data](https://pypi.org/project/language-data)|5.963855421686747e-05| +|cran|spatial|5.9367234222313774e-05| +|cran|[BayesFactor](https://richarddmorey.github.io/BayesFactor/)|5.932579263026475e-05| +|cran|stopwords|5.92934627877784e-05| +|cran|rnaturalearthdata|5.9142062756520586e-05| +|pypi|[pyjsparser](https://pypi.org/project/pyjsparser)|5.904216867469879e-05| +|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|5.883804544726168e-05| +|pypi|[traittypes](https://pypi.org/project/traittypes)|5.878408194375727e-05| +|pypi|[geographiclib](https://pypi.org/project/geographiclib)|5.8769664371772805e-05| +|cran|[VGAM](https://www.stat.auckland.ac.nz/~yee/VGAM/)|5.848123211861299e-05| +|cran|av|5.842249373172372e-05| +|cran|brms|5.818526690654923e-05| +|pypi|[fastparquet](https://pypi.org/project/fastparquet)|5.8075023929861045e-05| +|pypi|[curio](https://pypi.org/project/curio)|5.7936332953014384e-05| +|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|5.7301807228915655e-05| +|pypi|[octave_kernel](http://github.com/Calysto/octave_kernel)|5.7070386810399494e-05| +|pypi|[sos-python](https://github.com/vatlab/SOS)|5.7070386810399494e-05| +|pypi|[sos-ruby](https://github.com/vatlab/SOS)|5.7070386810399494e-05| +|pypi|[dash_core_components](https://pypi.org/project/dash_core_components)|5.7070386810399494e-05| +|pypi|[dash_html_components](https://github.com/plotly/dash-html-components)|5.7070386810399494e-05| +|pypi|[dash_dangerously_set_inner_html](https://pypi.org/project/dash_dangerously_set_inner_html)|5.7070386810399494e-05| +|pypi|[BioPython](https://biopython.org/)|5.7070386810399494e-05| +|pypi|[python-louvain](https://github.com/taynaud/python-louvain)|5.7070386810399494e-05| +|pypi|[torch-sparse](https://github.com/rusty1s/pytorch_sparse)|5.7070386810399494e-05| +|pypi|[torch-scatter](https://github.com/rusty1s/pytorch_scatter)|5.7070386810399494e-05| +|pypi|[torch-cluster](https://github.com/rusty1s/pytorch_cluster)|5.7070386810399494e-05| +|pypi|[torch-spline-conv](https://github.com/rusty1s/pytorch_spline_conv)|5.7070386810399494e-05| +|cran|dunn.test|5.7070386810399494e-05| +|cran|plotrix|5.679796876292355e-05| +|pypi|[pyflakes](https://pypi.org/project/pyflakes)|5.676163011777659e-05| +|cran|egg|5.6584982788296036e-05| +|pypi|[pyreadline3](https://pypi.org/project/pyreadline3)|5.6385542168674705e-05| +|pypi|[pyreadline](https://pypi.org/project/pyreadline)|5.6385542168674705e-05| +|pypi|[monotonic](https://pypi.org/project/monotonic)|5.6385542168674705e-05| +|cran|gam|5.6200468214098e-05| +|npm|validator|5.612036523819248e-05| +|cran|[wk](https://paleolimbot.github.io/wk/)|5.5989144001583887e-05| +|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|5.576547569588712e-05| +|pypi|[Flask-Compress](https://pypi.org/project/Flask-Compress)|5.573617478456084e-05| +|pypi|[vine](https://pypi.org/project/vine)|5.562495708110298e-05| +|cran|[hoardr](https://github.com/ropensci/hoardr)|5.5586601562859624e-05| +|cran|[config](https://github.com/rstudio/config)|5.537109315392728e-05| +|pypi|[natsort](https://github.com/SethMMorton/natsort)|5.527654400327435e-05| +|cran|[git2r](https://docs.ropensci.org/git2r/ (website))|5.514448894238023e-05| +|pypi|[google-api-core](https://github.com/googleapis/python-api-core)|5.4679326188828995e-05| +|pypi|[nbsphinx](https://nbsphinx.readthedocs.io/)|5.453463639876933e-05| +|pypi|[nanopack](https://github.com/wdecoster/nanopack)|5.421686746987952e-05| +|pypi|[NanoComp](https://github.com/wdecoster/NanoComp)|5.421686746987952e-05| +|pypi|[NanoFilt](https://github.com/wdecoster/nanofilt)|5.421686746987952e-05| +|pypi|[nanoget](https://github.com/wdecoster/nanoget)|5.421686746987952e-05| +|pypi|[NanoLyse](https://github.com/wdecoster/nanolyse)|5.421686746987952e-05| +|pypi|[nanomath](https://github.com/wdecoster/nanomath)|5.421686746987952e-05| +|pypi|[NanoPlot](https://github.com/wdecoster/NanoPlot)|5.421686746987952e-05| +|pypi|[nanoQC](https://github.com/wdecoster/nanoQC)|5.421686746987952e-05| +|pypi|[NanoStat](https://github.com/wdecoster/nanostat)|5.421686746987952e-05| +|pypi|[Python-Deprecated](https://github.com/vrcmarcos/python-deprecated)|5.421686746987952e-05| +|cran|[genalg](https://github.com/egonw/genalg)|5.421686746987952e-05| +|cran|segmented|5.4199221731647075e-05| +|pypi|[dash-bootstrap-components](https://pypi.org/project/dash-bootstrap-components)|5.414973854185245e-05| +|npm|eslint-plugin-standard|5.405066905730577e-05| +|npm|eslint-plugin-promise|5.405066905730577e-05| +|npm|eslint-plugin-node|5.405066905730577e-05| +|npm|eslint-config-standard|5.405066905730577e-05| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|5.3590415719114345e-05| +|cran|[semver](https://github.com/johndharrison/semver)|5.351979345955253e-05| +|pypi|[awscrt](https://pypi.org/project/awscrt)|5.3430682085737306e-05| +|cran|lsa|5.3244499738082764e-05| +|cran|RJSONIO|5.273149157716841e-05| +|npm|[standard](https://standardjs.com)|5.272987786029572e-05| +|npm|[mqtt](https://github.com/mqttjs/MQTT.js#readme)|5.26355421686747e-05| +|npm|[regenerator-runtime](https://github.com/hackwaly/regenerator-runtime)|5.24639913035601e-05| +|cran|mclust|5.216489721034981e-05| +|pypi|[arviz](https://pypi.org/project/arviz)|5.214963312549519e-05| +|pypi|[surfinpy](https://github.com/symmy596/SurfinPy)|5.163511187607573e-05| +|pypi|[billiard](https://pypi.org/project/billiard)|5.156294099166687e-05| +|pypi|[flake8-polyfill](https://pypi.org/project/flake8-polyfill)|5.140216535904892e-05| +|npm|coffee-script|5.1336596385542165e-05| +|npm|cross-env|5.1293798821660266e-05| +|cran|[rbibutils](https://geobosh.github.io/rbibutils/ (website))|5.1262822719449226e-05| +|cran|[remotes](https://remotes.r-lib.org)|5.1133814700554035e-05| +|pypi|[pooch>=1.1.1](https://pypi.org/project/pooch>=1.1.1)|5.1118760757314967e-05| +|pypi|[pandas>=0.25.1](https://pypi.org/project/pandas>=0.25.1)|5.1118760757314967e-05| +|pypi|[numpy>=1.13.3](https://pypi.org/project/numpy>=1.13.3)|5.1118760757314967e-05| +|pypi|[xarray](https://github.com/pydata/xarray)|5.0927742379589106e-05| +|pypi|[pynacl](https://pypi.org/project/pynacl)|5.06234993545611e-05| +|pypi|[celery](http://celeryproject.org)|4.987098418457102e-05| +|pypi|[spglib](http://spglib.github.io/spglib/)|4.9860741509718455e-05| +|cran|[matlab](http://cran.r-project.org/package=matlab)|4.965974612736661e-05| +|cran|[foreign](https://svn.r-project.org/R-packages/trunk/foreign/)|4.96407623910328e-05| +|pypi|[zarr](https://pypi.org/project/zarr)|4.962593769254373e-05| +|pypi|[ppft](https://github.com/uqfoundation/ppft)|4.95367783350597e-05| +|pypi|[covdefaults](https://pypi.org/project/covdefaults)|4.953207631217221e-05| +|cran|[mnormt](http://azzalini.stat.unipd.it/SW/Pkg-mnormt)|4.948926065112412e-05| +|rubygems|activerecord|4.943914433243176e-05| +|cran|plotROC|4.92880613362541e-05| +|npm|[async](https://caolan.github.io/async/)|4.921875e-05| +|npm|[rimraf](https://github.com/isaacs/rimraf#readme)|4.906432348791976e-05| +|pypi|[ray](https://pypi.org/project/ray)|4.902138372768181e-05| +|pypi|[pyDOE](https://github.com/tisimst/pyDOE)|4.8908132530120484e-05| +|pypi|[numpy-stl](https://pypi.org/project/numpy-stl)|4.883504606661942e-05| +|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|4.879518072289156e-05| +|npm|[tsd](https://github.com/SamVerschueren/tsd#readme)|4.86611280285979e-05| +|cran|SuppDists|4.845632530120482e-05| +|cran|[GGally](https://ggobi.github.io/ggally/)|4.831463281487062e-05| +|cran|[glmnet](https://glmnet.stanford.edu)|4.814626638421825e-05| +|cran|qlcMatrix|4.81308633744464e-05| +|npm|[browserify](https://github.com/browserify/browserify#readme)|4.809697919896088e-05| +|pypi|[types-urllib3](https://pypi.org/project/types-urllib3)|4.792459319475705e-05| +|npm|react-highcharts|4.789836035872815e-05| +|npm|redux|4.789836035872815e-05| +|cran|[ggseqlogo](https://github.com/omarwagih/ggseqlogo)|4.7867993713986376e-05| +|cran|RcppRoll|4.782281299109482e-05| +|cran|blavaan|4.7733041346527546e-05| +|pypi|[jupyter-console](https://pypi.org/project/jupyter-console)|4.7699829401726076e-05| +|npm|immutable|4.761300842467615e-05| +|pypi|[rfc3987](https://pypi.org/project/rfc3987)|4.755386341283501e-05| +|npm|[jasmine](http://jasmine.github.io/)|4.747451343836886e-05| +|pypi|[trio-websocket~=0.9](https://pypi.org/project/trio-websocket~=0.9)|4.7472289156626515e-05| +|pypi|[trio~=0.17](https://pypi.org/project/trio~=0.17)|4.7472289156626515e-05| +|pypi|[urllib3[secure,](https://pypi.org/project/urllib3[secure,)|4.7472289156626515e-05| +|pypi|[requests-mock](https://requests-mock.readthedocs.io/)|4.742078313253012e-05| +|pypi|[cligj](https://pypi.org/project/cligj)|4.7389076407943256e-05| +|cran|[seqminer](http://zhanxw.github.io/seqminer/)|4.714510214772132e-05| +|cran|SeuratObject|4.714510214772132e-05| +|cran|spex|4.714510214772132e-05| +|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|4.7110673262375884e-05| +|pypi|[elasticsearch](https://pypi.org/project/elasticsearch)|4.708220814291649e-05| +|pypi|[python-lsp-server](https://pypi.org/project/python-lsp-server)|4.68433734939759e-05| +|npm|[proj4](https://github.com/proj4js/proj4js#readme)|4.653614457831325e-05| +|cran|[ggpubr](https://rpkgs.datanovia.com/ggpubr/)|4.634608812240394e-05| +|pypi|[waitress](https://pypi.org/project/waitress)|4.59553215339686e-05| +|pypi|[pymongo](https://pypi.org/project/pymongo)|4.590458470869192e-05| +|cran|[tm](http://tm.r-forge.r-project.org/)|4.5860389836633174e-05| +|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|4.5831296275550204e-05| +|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|4.5831296275550204e-05| +|cran|mediation|4.577659998078164e-05| +|pypi|[parso](https://pypi.org/project/parso)|4.568424306668449e-05| +|pypi|[pyobjc](https://github.com/ronaldoussoren/pyobjc)|4.557687823253311e-05| +|pypi|[pip-run](https://github.com/jaraco/pip-run)|4.5417062075846805e-05| +|pypi|[docker](https://github.com/docker/docker-py)|4.532193766802751e-05| +|pypi|[cookiecutter](https://pypi.org/project/cookiecutter)|4.5237198795180716e-05| +|pypi|[snakemake](https://snakemake.readthedocs.io)|4.5180722891566266e-05| +|pypi|[connection_pool](https://github.com/zhouyl/ConnectionPool)|4.5180722891566266e-05| +|pypi|[datrie](https://github.com/kmike/datrie)|4.5180722891566266e-05| +|pypi|[toposort](https://pypi.org/project/toposort)|4.5180722891566266e-05| +|pypi|[trackpy](https://github.com/soft-matter/trackpy)|4.5180722891566266e-05| +|npm|[lru-cache](https://github.com/isaacs/node-lru-cache#readme)|4.5180722891566266e-05| +|npm|[sift](https://github.com/crcn/sift.js#readme)|4.5180722891566266e-05| +|npm|[socket.io](https://github.com/socketio/socket.io#readme)|4.5180722891566266e-05| +|npm|[underscore](https://underscorejs.org)|4.5180722891566266e-05| +|cran|[statmod](NA)|4.5070469154199905e-05| +|pypi|[anyio](https://pypi.org/project/anyio)|4.50509479092842e-05| +|pypi|[simplejson](https://pypi.org/project/simplejson)|4.504702483403e-05| +|pypi|[django-extensions](http://github.com/django-extensions/django-extensions)|4.503506284479087e-05| +|pypi|[djangorestframework](https://www.django-rest-framework.org/)|4.503506284479087e-05| +|pypi|[cdsapi](https://github.com/ecmwf/cdsapi)|4.5025023169601474e-05| +|cran|futile.options|4.498450946643717e-05| +|cran|lambda.r|4.498450946643717e-05| +|pypi|[shiboken6](https://pypi.org/project/shiboken6)|4.47289156626506e-05| +|pypi|[colorlover](https://pypi.org/project/colorlover)|4.4641375419031496e-05| +|pypi|[dash-tabulator](https://pypi.org/project/dash-tabulator)|4.4641375419031496e-05| +|pypi|[django-bootstrap4](https://pypi.org/project/django-bootstrap4)|4.4641375419031496e-05| +|pypi|[django-cache-memoize](https://pypi.org/project/django-cache-memoize)|4.4641375419031496e-05| +|pypi|[django-cookie-law](https://pypi.org/project/django-cookie-law)|4.4641375419031496e-05| +|pypi|[django-cors-headers](https://pypi.org/project/django-cors-headers)|4.4641375419031496e-05| +|pypi|[django-currentuser](https://pypi.org/project/django-currentuser)|4.4641375419031496e-05| +|pypi|[django-oauth-toolkit](https://pypi.org/project/django-oauth-toolkit)|4.4641375419031496e-05| +|pypi|[django-plotly-dash](https://pypi.org/project/django-plotly-dash)|4.4641375419031496e-05| +|pypi|[dpd-static-support](https://pypi.org/project/dpd-static-support)|4.4641375419031496e-05| +|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|4.453166676077288e-05| +|pypi|[appnope](https://pypi.org/project/appnope)|4.453166676077288e-05| +|rubygems|[pg](https://github.com/ged/ruby-pg)|4.446889599213179e-05| +|pypi|[yarl](https://pypi.org/project/yarl)|4.4364862935049356e-05| +|rubygems|jekyll|4.419642857142857e-05| +|rubygems|[will_paginate](https://github.com/mislav/will_paginate)|4.403737398573887e-05| +|npm|[xmlbuilder](http://github.com/oozcitak/xmlbuilder-js)|4.394970616732665e-05| +|cran|arrow|4.392621573504681e-05| +|cran|logspline|4.3671709831951026e-05| +|pypi|[dogpile.cache](https://pypi.org/project/dogpile.cache)|4.34497074010327e-05| +|pypi|[diff-match-patch](https://github.com/diff-match-patch-python/diff-match-patch)|4.337349397590361e-05| +|pypi|[primesieve](https://github.com/kimwalisch/primesieve-python)|4.337349397590361e-05| +|rubygems|[coderay](http://coderay.rubychan.de)|4.337349397590361e-05| +|rubygems|[fastercsv](http://fastercsv.rubyforge.org)|4.337349397590361e-05| +|rubygems|[builder](http://onestepback.org)|4.337349397590361e-05| +|rubygems|[jruby-openssl](https://github.com/jruby/jruby-openssl)|4.337349397590361e-05| +|rubygems|[activerecord-sqlserver-adapter](http://github.com/rails-sqlserver/activerecord-sqlserver-adapter)|4.337349397590361e-05| +|cran|DiceKriging|4.3331788693234476e-05| +|npm|zap|4.320406626506024e-05| +|npm|docco|4.320406626506024e-05| +|npm|diff|4.320406626506024e-05| +|pypi|[types-docutils](https://pypi.org/project/types-docutils)|4.314140383761205e-05| +|cran|[vegan](https://github.com/vegandevs/vegan)|4.31267519055815e-05| +|pypi|[asv](https://pypi.org/project/asv)|4.3096180548215574e-05| +|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|4.3096180548215574e-05| +|pypi|[kaleido](https://pypi.org/project/kaleido)|4.3096180548215574e-05| +|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|4.306808906714391e-05| +|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|4.304218910460929e-05| +|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|4.302115410746513e-05| +|rubygems|concurrent-ruby|4.2939759036144576e-05| +|rubygems|jdbc-mysql|4.2939759036144576e-05| +|rubygems|psych|4.2939759036144576e-05| +|rubygems|webrick|4.2939759036144576e-05| +|npm|[babel-preset-es2015](https://babeljs.io/)|4.2672238281278796e-05| +|pypi|[stack-data](https://pypi.org/project/stack-data)|4.2653274923967855e-05| +|npm|safe-buffer|4.262690072779477e-05| +|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|4.259720203038314e-05| +|cran|[parallelMap](https://parallelmap.mlr-org.com)|4.247980934727924e-05| +|cran|[shinyAce](http://trestletech.github.io/shinyAce/)|4.2477967102650044e-05| +|pypi|[ptyprocess](https://pypi.org/project/ptyprocess)|4.243976759735915e-05| +|cran|[gridGraphics](https://github.com/pmur002/gridgraphics)|4.242063830169169e-05| +|pypi|[GitPython](https://pypi.org/project/GitPython)|4.22302277966034e-05| +|pypi|[Brotli](https://pypi.org/project/Brotli)|4.2223076887980065e-05| +|pypi|[monty](https://github.com/materialsvirtuallab/monty)|4.215160883296683e-05| +|pypi|[recommonmark](https://pypi.org/project/recommonmark)|4.179888551584828e-05| +|pypi|[eemont](https://github.com/davemlz/eemont)|4.170528266913809e-05| +|pypi|[ee_extra](https://github.com/r-earthengine/ee_extra)|4.170528266913809e-05| +|pypi|[httplib2shim](https://github.com/GoogleCloudPlatform/httplib2shim)|4.170528266913809e-05| +|cran|mlrMBO|4.170528266913809e-05| +|cran|emoa|4.170528266913809e-05| +|npm|[cookie-parser](https://github.com/expressjs/cookie-parser#readme)|4.170528266913809e-05| +|npm|[deep-equal-in-any-order](https://github.com/oprogramador/deep-equal-in-any-order#readme)|4.170528266913809e-05| +|npm|[dice-coefficient](https://words.github.io/dice-coefficient/)|4.170528266913809e-05| +|npm|[elasticdump](https://github.com/elasticsearch-dump/elasticsearch-dump#readme)|4.170528266913809e-05| +|npm|[elasticsearch](https://www.elastic.co/guide/en/elasticsearch/client/elasticsearch-js/16.x/index.html)|4.170528266913809e-05| +|npm|[fibers](https://github.com/laverdet/node-fibers)|4.170528266913809e-05| +|npm|[saxes](https://github.com/lddubeau/saxes#readme)|4.170528266913809e-05| +|npm|[swagger-jsdoc](https://github.com/Surnet/swagger-jsdoc)|4.170528266913809e-05| +|pypi|[openpyxl](https://pypi.org/project/openpyxl)|4.1530285345532756e-05| +|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|4.1429334957696785e-05| +|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|4.1429334957696785e-05| +|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|4.1429334957696785e-05| +|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|4.1429334957696785e-05| +|pypi|[js2py](https://github.com/PiotrDabkowski/Js2Py)|4.115060240963856e-05| +|pypi|[myst-nb](https://pypi.org/project/myst-nb)|4.1036746987951805e-05| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|4.0869940752019055e-05| +|pypi|[rasterio](https://pypi.org/project/rasterio)|4.0700059888905446e-05| +|cran|gmp|4.050316511053287e-05| +|rubygems|rubocop-jekyll|4.0469018932874354e-05| +|pypi|[path](https://pypi.org/project/path)|4.0381734109007285e-05| +|pypi|[dash_bootstrap_components](https://pypi.org/project/dash_bootstrap_components)|4.0160642570281125e-05| +|pypi|[django_admin_index](https://pypi.org/project/django_admin_index)|4.0160642570281125e-05| +|pypi|[django_plotly_dash](https://pypi.org/project/django_plotly_dash)|4.0160642570281125e-05| +|npm|[angular-plotly](https://github.com/alonho/angular-plotly#readme)|4.0160642570281125e-05| +|npm|[angular-plotly.js](https://github.com/plotly/angular-plotly.js)|4.0160642570281125e-05| +|npm|[crypto-js](http://github.com/brix/crypto-js)|4.0160642570281125e-05| +|npm|[ng2-file-upload](https://github.com/valor-software/ng2-file-upload)|4.0160642570281125e-05| +|npm|[ngx-cookie-service](https://github.com/stevermeister/ngx-cookie-service#readme)|4.0160642570281125e-05| +|npm|[ngx-smart-loader](https://github.com/biig-io/ngx-smart-loader)|4.0160642570281125e-05| +|npm|ngx-smart-modal|4.0160642570281125e-05| +|npm|plotly|4.0160642570281125e-05| +|cran|mlbench|3.980989999601058e-05| +|pypi|[aenum](https://github.com/ethanfurman/aenum)|3.9759036144578314e-05| +|npm|[cache-manager](https://github.com/BryanDonovan/node-cache-manager#readme)|3.95564003078808e-05| +|rubygems|rouge|3.9510542168674694e-05| +|cran|webfakes|3.9489291254842585e-05| +|pypi|[uwsgi](https://pypi.org/project/uwsgi)|3.9368742575937555e-05| +|pypi|[pypblib](https://pypi.org/project/pypblib)|3.9361445783132526e-05| +|pypi|[py-aiger-cnf](https://pypi.org/project/py-aiger-cnf)|3.9361445783132526e-05| +|npm|[rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve#readme)|3.929583881745469e-05| +|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|3.9199659381825015e-05| +|cran|proj4|3.902878482254811e-05| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|3.90243175612712e-05| +|cran|RandomFieldsUtils|3.8775917548970777e-05| +|cran|biglm|3.876299806179348e-05| +|cran|[jqr](https://docs.ropensci.org/jqr/ (docs))|3.865515121711337e-05| +|npm|[form-data](https://github.com/form-data/form-data#readme)|3.864994785437149e-05| +|cran|websocket|3.860318416523235e-05| +|cran|[base64url](https://github.com/mllg/base64url)|3.8549709710950415e-05| +|npm|[type-fest](https://github.com/sindresorhus/type-fest#readme)|3.833907056798623e-05| +|npm|[is-stream](https://github.com/sindresorhus/is-stream#readme)|3.833907056798623e-05| +|npm|lint-staged|3.826698000794386e-05| +|pypi|[pymatgen](https://pypi.org/project/pymatgen)|3.8091206044878315e-05| +|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|3.803542323324139e-05| +|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|3.803542323324139e-05| +|npm|retry|3.799966816418215e-05| +|cran|[utf8](https://ptrckprry.com/r-utf8/)|3.794200054265647e-05| +|pypi|[service-identity](https://pypi.org/project/service-identity)|3.786283267663333e-05| +|pypi|[testfixtures](https://pypi.org/project/testfixtures)|3.780548903689292e-05| +|cran|[ggridges](https://wilkelab.org/ggridges/)|3.7665557334232035e-05| +|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|3.7491785323110616e-05| +|pypi|[Celery](http://celeryproject.org)|3.739094308267553e-05| +|pypi|[DAWG](https://pypi.org/project/DAWG)|3.739094308267553e-05| +|pypi|[django-nose](https://pypi.org/project/django-nose)|3.739094308267553e-05| +|pypi|[MySQL-python](https://pypi.org/project/MySQL-python)|3.739094308267553e-05| +|npm|rollup-plugin-commonjs|3.7262706287334204e-05| +|cran|[attempt](https://github.com/ColinFay/attempt)|3.708568018202842e-05| +|npm|babel-runtime|3.706110154905335e-05| +|cran|carrier|3.701012842579108e-05| +|pypi|[dominate](https://github.com/Knio/dominate/)|3.6978683966635774e-05| +|pypi|[visitor](http://github.com/mbr/visitor)|3.6978683966635774e-05| +|npm|[bull-board](https://github.com/felixmosh/bull-board#readme)|3.675719828466408e-05| +|npm|[auth0](https://github.com/auth0/node-auth0)|3.675719828466408e-05| +|npm|[aws-sdk](https://github.com/aws/aws-sdk-js)|3.675719828466408e-05| +|npm|[bullmq](https://github.com/taskforcesh/bullmq#readme)|3.675719828466408e-05| +|npm|[class-transformer](https://github.com/typestack/class-transformer#readme)|3.675719828466408e-05| +|npm|[class-validator](https://github.com/typestack/class-validator#readme)|3.675719828466408e-05| +|npm|[compare-versions](https://github.com/omichelsen/compare-versions#readme)|3.675719828466408e-05| +|npm|[err-code](https://github.com/IndigoUnited/js-err-code#readme)|3.675719828466408e-05| +|npm|hammerjs|3.675719828466408e-05| +|npm|http-status-codes|3.675719828466408e-05| +|npm|is-url|3.675719828466408e-05| +|npm|json5|3.675719828466408e-05| +|npm|jwks-rsa|3.675719828466408e-05| +|npm|nats|3.675719828466408e-05| +|npm|nestjs-s3|3.675719828466408e-05| +|npm|ngx-material-file-input|3.675719828466408e-05| +|npm|passport-jwt|3.675719828466408e-05| +|npm|reflect-metadata|3.675719828466408e-05| +|npm|sharp|3.675719828466408e-05| +|npm|ssh2|3.675719828466408e-05| +|npm|stackdriver-errors-js|3.675719828466408e-05| +|npm|tiny-version-compare|3.675719828466408e-05| +|npm|unzipper|3.675719828466408e-05| +|npm|yaml|3.675719828466408e-05| +|cran|extrafont|3.664714756689467e-05| +|cran|rms|3.664012846903021e-05| +|npm|prettier|3.652819156596169e-05| +|pypi|[keystoneauth1](https://pypi.org/project/keystoneauth1)|3.6379518072289155e-05| +|cran|fftwtools|3.636379188152203e-05| +|cran|quadprog|3.625155279503105e-05| +|cran|strucchange|3.612137648337712e-05| +|cran|leaflet.providers|3.601462410728888e-05| +|pypi|[ipdb](https://pypi.org/project/ipdb)|3.6009381484304426e-05| +|rubygems|[commonmarker](https://github.com/gjtorikian/commonmarker)|3.600442586673223e-05| +|npm|minimist|3.5968227672149896e-05| +|rubygems|rack|3.582802946285393e-05| +|pypi|[capturer](https://pypi.org/project/capturer)|3.578313253012048e-05| +|cran|robotstxt|3.5783132530120477e-05| +|rubygems|jekyll-commonmark|3.5783132530120477e-05| +|pypi|[httplib2](https://github.com/httplib2/httplib2)|3.542505449751335e-05| +|cran|ggdist|3.532437442075996e-05| +|cran|bridgesampling|3.532437442075996e-05| +|cran|bayesQR|3.532437442075996e-05| +|pypi|[pyfftw](https://pypi.org/project/pyfftw)|3.5321757618710134e-05| +|cran|Rgraphviz|3.5223654595246224e-05| +|cran|[RandomFields](http://ms.math.uni-mannheim.de/de/publications/software/randomfields)|3.5192889785743964e-05| +|cran|mice|3.5130265798359834e-05| +|cran|[extraDistr](https://github.com/twolodzko/extraDistr)|3.4746633593196296e-05| +|pypi|[partd](https://pypi.org/project/partd)|3.457636356438401e-05| +|cran|mondate|3.457232312709484e-05| +|cran|DAAG|3.457232312709484e-05| +|npm|[inline-style-prefixer](https://github.com/rofrischmann/inline-style-prefixer#readme)|3.4505163511187604e-05| +|npm|[keycode](https://github.com/timoxley/keycode)|3.4505163511187604e-05| +|npm|[react-event-listener](https://github.com/oliviertassinari/react-event-listener)|3.4505163511187604e-05| +|npm|react-transition-group|3.4505163511187604e-05| +|npm|simple-assign|3.4505163511187604e-05| +|npm|warning|3.4505163511187604e-05| +|npm|lodash.merge|3.4505163511187604e-05| +|npm|lodash.throttle|3.4505163511187604e-05| +|npm|recompose|3.4505163511187604e-05| +|pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|3.433317272160642e-05| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|3.43133403095841e-05| +|npm|eslint-plugin-markdown|3.42070203892493e-05| +|npm|inherits|3.416527525856167e-05| +|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|3.409511455432721e-05| +|pypi|[PyQt5](https://www.riverbankcomputing.com/software/pyqt/)|3.394729168775945e-05| +|pypi|[pyenchant](https://pyenchant.github.io/pyenchant/)|3.38855421686747e-05| +|cran|gganimate|3.380922851068138e-05| +|cran|[shinythemes](http://rstudio.github.io/shinythemes/)|3.3808209396631205e-05| +|pypi|[tensorflow-gpu](https://www.tensorflow.org/)|3.36444221061919e-05| +|pypi|[tablib](https://pypi.org/project/tablib)|3.354668674698795e-05| +|pypi|[stfio](https://pypi.org/project/stfio)|3.354668674698795e-05| +|pypi|[klusta](https://klusta.cortexlab.net)|3.354668674698795e-05| +|pypi|[igor](http://blog.tremily.us/posts/igor/)|3.354668674698795e-05| +|cran|cba|3.354668674698795e-05| +|npm|[bundt](https://github.com/lukeed/bundt#readme)|3.354668674698795e-05| +|cran|[golem](https://github.com/ThinkR-open/golem)|3.35265633318526e-05| +|npm|chalk|3.34468547265987e-05| +|pypi|[mlflow](https://pypi.org/project/mlflow)|3.3378323210196154e-05| +|cran|[seriation](https://github.com/mhahsler/seriation)|3.3338101952479037e-05| +|pypi|[sniffio](https://pypi.org/project/sniffio)|3.310352839931153e-05| +|pypi|[mcfly](https://github.com/NLeSC/mcfly)|3.285870755750274e-05| +|npm|[canvg](https://github.com/canvg/canvg)|3.285870755750274e-05| +|npm|[googleapis](https://github.com/googleapis/google-api-nodejs-client#readme)|3.285870755750274e-05| +|npm|[http](https://github.com/npm/security-holder#readme)|3.285870755750274e-05| +|npm|[jspdf](https://github.com/mrrio/jspdf)|3.285870755750274e-05| +|npm|[multiparty](https://github.com/pillarjs/multiparty#readme)|3.285870755750274e-05| +|npm|[node-xlsx](https://github.com/mgcrea/node-xlsx#readme)|3.285870755750274e-05| +|npm|[pg-hstore](https://github.com/scarney81/pg-hstore)|3.285870755750274e-05| +|npm|[pug](https://pugjs.org)|3.285870755750274e-05| +|npm|[sequelize](https://sequelize.org/)|3.285870755750274e-05| +|npm|[stylus](https://github.com/stylus/stylus)|3.285870755750274e-05| +|npm|del-cli|3.275393883225208e-05| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|3.257353140051201e-05| +|cran|[shinyBS](https://ebailey78.github.io/shinyBS)|3.2569985825655564e-05| +|pypi|[fiona](http://github.com/Toblerity/Fiona)|3.226004993947943e-05| +|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|3.2063329850012295e-05| +|pypi|[uri-template](https://pypi.org/project/uri-template)|3.2063329850012295e-05| +|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|3.2063329850012295e-05| +|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|3.2063329850012295e-05| +|pypi|[isoduration](https://pypi.org/project/isoduration)|3.2063329850012295e-05| +|pypi|[fqdn](https://pypi.org/project/fqdn)|3.2063329850012295e-05| +|pypi|[sigtools](https://sigtools.readthedocs.io/)|3.2033132530120474e-05| +|pypi|[vtk](https://vtk.org)|3.202338918746753e-05| +|cran|lmtest|3.200134538917004e-05| +|pypi|[Mako](https://pypi.org/project/Mako)|3.19764299227607e-05| +|pypi|[DiffCapAnalyzer](https://github.com/nicolet5/DiffCapAnalyzer)|3.189227498228207e-05| +|pypi|[asteval](https://pypi.org/project/asteval)|3.189227498228207e-05| +|pypi|[lmfit](https://pypi.org/project/lmfit)|3.189227498228207e-05| +|pypi|[PeakUtils](https://pypi.org/project/PeakUtils)|3.189227498228207e-05| +|pypi|[ua-parser](https://pypi.org/project/ua-parser)|3.189227498228207e-05| +|pypi|[wincertstore](https://pypi.org/project/wincertstore)|3.189227498228207e-05| +|pypi|[ifermi](https://github.com/fermisurfaces/IFermi)|3.189227498228207e-05| +|pypi|[BoltzTraP2](https://pypi.org/project/BoltzTraP2)|3.189227498228207e-05| +|pypi|[meshcut](https://pypi.org/project/meshcut)|3.189227498228207e-05| +|pypi|[trimesh](https://pypi.org/project/trimesh)|3.189227498228207e-05| +|cran|tableHTML|3.189227498228207e-05| +|cran|shiny.i18n|3.189227498228207e-05| +|cran|popbio|3.189227498228207e-05| +|npm|eslint-config-prettier|3.183288982327666e-05| +|cran|[gitcreds](https://github.com/r-lib/gitcreds)|3.181948441539437e-05| +|cran|dfoptim|3.180356510073909e-05| +|cran|nloptr|3.169335838759892e-05| +|cran|[ini](https://github.com/dvdscripter/ini)|3.166888200575582e-05| +|pypi|[databricks-cli](https://pypi.org/project/databricks-cli)|3.158916658369013e-05| +|pypi|[prometheus-flask-exporter](https://pypi.org/project/prometheus-flask-exporter)|3.158916658369013e-05| +|pypi|[querystring-parser](https://pypi.org/project/querystring-parser)|3.158916658369013e-05| +|pypi|[od](https://pypi.org/project/od)|3.131024096385542e-05| +|pypi|[pip-api](https://pypi.org/project/pip-api)|3.1282473253012045e-05| +|pypi|[requirementslib](https://pypi.org/project/requirementslib)|3.1282473253012045e-05| +|pypi|[pipreqs](https://pypi.org/project/pipreqs)|3.1282473253012045e-05| +|npm|[font-awesome](http://fontawesome.io/)|3.124603677869372e-05| +|npm|object-assign|3.121797435024653e-05| +|cran|[RcppArmadillo](https://github.com/RcppCore/RcppArmadillo)|3.117469879518073e-05| +|pypi|[ordereddict](https://pypi.org/project/ordereddict)|3.1106924115560384e-05| +|npm|[ts-node](https://typestrong.org/ts-node)|3.0981067125645436e-05| +|cran|caTools|3.0854660399841135e-05| +|npm|react-test-renderer|3.0828983952002345e-05| +|npm|react-router|3.0828983952002345e-05| +|pypi|[h2](https://pypi.org/project/h2)|3.082616179001721e-05| +|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|3.07098265812349e-05| +|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|3.07098265812349e-05| +|pypi|[mkdocs](https://pypi.org/project/mkdocs)|3.070669231548041e-05| +|pypi|[PySide](http://www.pyside.org)|3.067125645438898e-05| +|pypi|[PyQt4](http://www.riverbankcomputing.com/software/pyqt/)|3.067125645438898e-05| +|npm|[unist-util-remove-position](https://github.com/syntax-tree/unist-util-remove-position#readme)|3.067125645438898e-05| +|npm|[unist-builder](https://github.com/syntax-tree/unist-builder#readme)|3.067125645438898e-05| +|npm|[remark](https://remark.js.org)|3.067125645438898e-05| +|npm|[unist-util-visit-parents](https://github.com/syntax-tree/unist-util-visit-parents#readme)|3.067125645438898e-05| +|npm|[unist-util-find-after](https://github.com/syntax-tree/unist-util-find-after#readme)|3.067125645438898e-05| +|pypi|[wslink](https://pypi.org/project/wslink)|3.059738955823293e-05| +|npm|[strip-ansi](https://github.com/chalk/strip-ansi#readme)|3.0593944038399824e-05| +|cran|janeaustenr|3.0561998468964675e-05| +|pypi|[pybind11](https://github.com/pybind/pybind11)|3.0543975903614466e-05| +|npm|whatwg-fetch|3.0428480840655857e-05| +|cran|vcd|3.0397405950331937e-05| +|pypi|[pypi-publisher](https://pypi.org/project/pypi-publisher)|3.030583873957368e-05| +|pypi|[opencv-python](https://github.com/skvark/opencv-python)|3.0248261509281232e-05| +|cran|[wordcloud2](https://github.com/lchiffon/wordcloud2)|3.002407983582683e-05| +|cran|spacyr|2.9954819277108433e-05| +|npm|[rollup-plugin-babel](https://github.com/rollup/rollup-plugin-babel)|2.9840922325795588e-05| +|rubygems|pry|2.9659226702729284e-05| +|cran|[reshape](http://had.co.nz/reshape)|2.9553838334475766e-05| +|cran|SGP|2.9535283993115317e-05| +|pypi|[nltk](https://www.nltk.org/)|2.9297338406398014e-05| +|rubygems|[railties](https://rubyonrails.org)|2.9247233833292352e-05| +|pypi|[PyQtWebEngine-Qt5](https://pypi.org/project/PyQtWebEngine-Qt5)|2.9222891566265056e-05| +|pypi|[flask-compress](https://pypi.org/project/flask-compress)|2.91174678943625e-05| +|cran|polynom|2.908308153086609e-05| +|cran|[conditionz](https://github.com/ropenscilabs/conditionz)|2.9082200071873067e-05| +|cran|[furrr](https://github.com/DavisVaughan/furrr)|2.9015100308695783e-05| +|cran|tkrplot|2.8997929126923362e-05| +|cran|Formula|2.8961578088341353e-05| +|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|2.8922555015982292e-05| +|rubygems|[rdoc](https://ruby.github.io/rdoc)|2.889158382802346e-05| +|cran|tripack|2.8713267223546874e-05| +|cran|pscl|2.8601501982600045e-05| +|npm|highcharts-exporting|2.8535193405199747e-05| +|npm|highcharts-no-data-to-display|2.8535193405199747e-05| +|npm|[history](https://github.com/remix-run/history#readme)|2.8535193405199747e-05| +|npm|[jsdocx](https://github.com/zuck/jsdocx#readme)|2.8535193405199747e-05| +|npm|[ramda](https://ramdajs.com/)|2.8535193405199747e-05| +|npm|[rc-tooltip](http://github.com/react-component/tooltip)|2.8535193405199747e-05| +|npm|[react-bootstrap-table](https://github.com/AllenFang/react-bootstrap-table#readme)|2.8535193405199747e-05| +|npm|react-fontawesome|2.8535193405199747e-05| +|npm|react-js-pagination|2.8535193405199747e-05| +|npm|react-router-redux|2.8535193405199747e-05| +|npm|react-s-alert|2.8535193405199747e-05| +|npm|react-table|2.8535193405199747e-05| +|npm|redux-form|2.8535193405199747e-05| +|npm|redux-observable|2.8535193405199747e-05| +|npm|redux-persist|2.8535193405199747e-05| +|npm|reselect|2.8535193405199747e-05| +|npm|rx-dom|2.8535193405199747e-05| +|pypi|[itk](https://itk.org/)|2.8435515750615156e-05| +|cran|[Rmpfr](https://rmpfr.r-forge.r-project.org/)|2.8314802065404477e-05| +|pypi|[livereload](https://pypi.org/project/livereload)|2.8283584337349395e-05| +|cran|[pkgdown](https://pkgdown.r-lib.org)|2.8179270961401895e-05| +|cran|kernlab|2.8174806199455808e-05| +|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|2.814910277715637e-05| +|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|2.814910277715637e-05| +|pypi|[cfgrib](https://pypi.org/project/cfgrib)|2.814910277715637e-05| +|pypi|[pydap](https://pypi.org/project/pydap)|2.814910277715637e-05| +|pypi|[numbagg](https://pypi.org/project/numbagg)|2.814910277715637e-05| +|pypi|[jeepney](https://pypi.org/project/jeepney)|2.8079798262818714e-05| +|pypi|[SecretStorage](https://pypi.org/project/SecretStorage)|2.8079798262818714e-05| +|rubygems|actionview|2.8024034915170884e-05| +|pypi|[pytest-subtests](https://pypi.org/project/pytest-subtests)|2.79605421686747e-05| +|npm|ms|2.7948006579774114e-05| +|pypi|[minio](https://github.com/minio/minio-py)|2.7938782155649627e-05| +|pypi|[reno](https://pypi.org/project/reno)|2.792788296041308e-05| +|pypi|[tableone](https://pypi.org/project/tableone)|2.7803521779425393e-05| +|pypi|[EUKulele](https://github.com/AlexanderLabWHOI/EUKulele)|2.7803521779425393e-05| +|pypi|[python-coveralls](http://github.com/z4r/python-coveralls)|2.7803521779425393e-05| +|pypi|[recipy](http://www.recipy.org)|2.7803521779425393e-05| +|pypi|[tinydb](https://github.com/msiemens/tinydb)|2.7803521779425393e-05| +|pypi|[binaryornot](https://github.com/audreyr/binaryornot)|2.7803521779425393e-05| +|pypi|[svn](https://github.com/dsoprea/PySvn)|2.7803521779425393e-05| +|pypi|[scandir](https://pypi.org/project/scandir)|2.7757118446312724e-05| +|pypi|[backports.os](https://pypi.org/project/backports.os)|2.7757118446312724e-05| +|cran|jsonify|2.770693162259427e-05| +|pypi|[cairocffi](https://github.com/Kozea/cairocffi)|2.7618072289156624e-05| +|pypi|[george](https://github.com/dfm/george)|2.7447289156626516e-05| +|cran|gt|2.7344799761519666e-05| +|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|2.7320214769926923e-05| +|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|2.7320214769926923e-05| +|pypi|[types-toml](https://pypi.org/project/types-toml)|2.7236102109608225e-05| |cran|[beautier](https://docs.ropensci.org/beautier/ (website) -https://github.com/ropensci/beautier/)|2.771988696573649e-05| -|cran|heatmaply|2.7619657364888724e-05| -|npm|[rollup-plugin-babel](https://github.com/rollup/rollup-plugin-babel)|2.761643247903188e-05| -|pypi|[plams](https://www.scm.com/doc/plams/)|2.7543863854266552e-05| -|cran|seqinr|2.7533262610559267e-05| -|cran|gridBase|2.752833824228533e-05| -|cran|plm|2.7448464632252143e-05| -|pypi|[ppft](https://pypi.org/project/ppft)|2.7407718120805368e-05| -|pypi|[pox](https://pypi.org/project/pox)|2.7407718120805368e-05| -|pypi|[fasttext](https://github.com/facebookresearch/fastText)|2.7407718120805368e-05| -|pypi|[hijri-converter](https://github.com/mhalshehri/hijri-converter)|2.7407718120805368e-05| -|cran|BeyondBenford|2.7407718120805368e-05| -|cran|BenfordTests|2.7407718120805368e-05| -|cran|benford.analysis|2.7407718120805368e-05| -|cran|MUS|2.7407718120805368e-05| -|cran|manipulateWidget|2.7407718120805368e-05| -|cran|AsioHeaders|2.7407718120805368e-05| -|cran|filelock|2.7407718120805368e-05| -|pypi|[blinker](https://pypi.org/project/blinker)|2.7407718120805365e-05| -|cran|proxy|2.7337972581170533e-05| -|pypi|[pbr](https://pypi.org/project/pbr)|2.7255453020134226e-05| -|npm|should|2.7160373789346247e-05| -|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|2.7159743528283795e-05| -|cran|dynamicTreeCut|2.711630166019074e-05| -|npm|readable-stream|2.7106534405192124e-05| -|cran|optimx|2.709503275704796e-05| -|cran|minqa|2.709503275704796e-05| -|cran|pls|2.7092533801631868e-05| -|pypi|[cupy-cuda92](https://pypi.org/project/cupy-cuda92)|2.6980292694571192e-05| -|pypi|[cupy-cuda91](https://pypi.org/project/cupy-cuda91)|2.6980292694571192e-05| -|pypi|[cupy-cuda90](https://pypi.org/project/cupy-cuda90)|2.6980292694571192e-05| -|pypi|[cupy-cuda80](https://pypi.org/project/cupy-cuda80)|2.6980292694571192e-05| -|pypi|[cupy-cuda112](https://pypi.org/project/cupy-cuda112)|2.6980292694571192e-05| -|pypi|[cupy-cuda111](https://pypi.org/project/cupy-cuda111)|2.6980292694571192e-05| -|pypi|[cupy-cuda110](https://pypi.org/project/cupy-cuda110)|2.6980292694571192e-05| -|pypi|[cupy-cuda102](https://pypi.org/project/cupy-cuda102)|2.6980292694571192e-05| -|pypi|[cupy-cuda101](https://pypi.org/project/cupy-cuda101)|2.6980292694571192e-05| -|pypi|[cupy-cuda100](https://pypi.org/project/cupy-cuda100)|2.6980292694571192e-05| -|cran|[ordinal](https://github.com/runehaubo/ordinal)|2.6734038180809014e-05| -|pypi|[flask](https://palletsprojects.com/p/flask)|2.6619599037071605e-05| -|cran|gbRd|2.6510738255033554e-05| -|cran|quanteda|2.6387746992120757e-05| -|cran|GPArotation|2.6293013434428195e-05| -|cran|rsm|2.614634544378939e-05| -|cran|tables|2.6133302669286605e-05| -|cran|rcmdcheck|2.600521956442274e-05| -|pypi|[google-api-core](https://pypi.org/project/google-api-core)|2.589949428112299e-05| -|pypi|[cached-property](https://pypi.org/project/cached-property)|2.584156279961649e-05| -|pypi|[minio](https://pypi.org/project/minio)|2.5838926174496646e-05| -|cran|R.devices|2.582337008628956e-05| -|pypi|[m2r](https://github.com/miyakogi/m2r)|2.569473573825503e-05| -|pypi|[pyfiglet](https://pypi.org/project/pyfiglet)|2.5671140939597313e-05| -|pypi|[pythainlp](https://github.com/PyThaiNLP/pythainlp)|2.549555174028406e-05| -|pypi|[spacy-ray](https://pypi.org/project/spacy-ray)|2.549555174028406e-05| -|pypi|[spacy-lookups-data](https://pypi.org/project/spacy-lookups-data)|2.549555174028406e-05| -|pypi|[natto-py](https://pypi.org/project/natto-py)|2.549555174028406e-05| -|pypi|[sudachidict-core](https://pypi.org/project/sudachidict-core)|2.549555174028406e-05| -|pypi|[sudachipy](https://pypi.org/project/sudachipy)|2.549555174028406e-05| -|pypi|[cupy-cuda115](https://pypi.org/project/cupy-cuda115)|2.549555174028406e-05| -|pypi|[cupy-cuda114](https://pypi.org/project/cupy-cuda114)|2.549555174028406e-05| -|pypi|[cupy-cuda113](https://pypi.org/project/cupy-cuda113)|2.549555174028406e-05| -|pypi|[thinc-apple-ops](https://pypi.org/project/thinc-apple-ops)|2.549555174028406e-05| -|pypi|[langcodes](https://pypi.org/project/langcodes)|2.549555174028406e-05| -|pypi|[pathy](https://pypi.org/project/pathy)|2.549555174028406e-05| -|pypi|[spacy-loggers](https://pypi.org/project/spacy-loggers)|2.549555174028406e-05| -|pypi|[spacy-legacy](https://pypi.org/project/spacy-legacy)|2.549555174028406e-05| -|rubygems|rake-compiler|2.543215612587317e-05| -|rubygems|nokogiri|2.5337839006260966e-05| -|pypi|[spglib](http://spglib.github.io/spglib/)|2.533282475830321e-05| -|pypi|[dash-bootstrap-components](https://pypi.org/project/dash-bootstrap-components)|2.5202482081676716e-05| -|cran|bezier|2.5155375634423393e-05| -|cran|ComplexHeatmap|2.5155375634423393e-05| -|cran|GlobalOptions|2.5155375634423393e-05| -|pypi|[openpyxl](https://openpyxl.readthedocs.io)|2.5137867043729555e-05| -|cran|Cubist|2.5134839650145772e-05| -|pypi|[xarray](https://pypi.org/project/xarray)|2.5129713785515722e-05| -|pypi|[Nano-Utils](https://pypi.org/project/Nano-Utils)|2.4968839884947278e-05| -|rubygems|addressable|2.4931936701667023e-05| -|pypi|[cssselect2](https://pypi.org/project/cssselect2)|2.4916107382550334e-05| -|pypi|[distributed](https://pypi.org/project/distributed)|2.491044984686808e-05| -|cran|adehabitatMA|2.4847656538092776e-05| -|pypi|[pyasn1-modules](https://pypi.org/project/pyasn1-modules)|2.4731133294581394e-05| -|pypi|[nptyping](https://pypi.org/project/nptyping)|2.470735512390294e-05| -|npm|[actions](https://github.com/fundon/actions)|2.4678811121764142e-05| -|pypi|[coreapi](https://github.com/core-api/python-client)|2.460850111856823e-05| -|pypi|[django-chosen](https://github.com/theatlantic/django-chosen)|2.460850111856823e-05| -|pypi|[django-form-utils](http://bitbucket.org/carljm/django-form-utils/)|2.460850111856823e-05| -|pypi|[django-gravatar2](https://github.com/twaddington/django-gravatar)|2.460850111856823e-05| -|pypi|[django-hstore](https://github.com/djangonauts/django-hstore)|2.460850111856823e-05| -|pypi|[django-ratelimit](https://github.com/jsocol/django-ratelimit)|2.460850111856823e-05| -|pypi|[django-rest-swagger](https://github.com/marcgibbons/django-rest-swagger)|2.460850111856823e-05| -|pypi|[django-taggit](https://github.com/jazzband/django-taggit)|2.460850111856823e-05| -|pypi|[django-taggit-templatetags](http://github.com/feuervogel/django-taggit-templatetags)|2.460850111856823e-05| -|pypi|[oauth2client](https://pypi.org/project/oauth2client)|2.460850111856823e-05| -|pypi|[python3-saml](https://pypi.org/project/python3-saml)|2.460850111856823e-05| -|pypi|[python-social-auth](https://pypi.org/project/python-social-auth)|2.460850111856823e-05| -|pypi|[rq-scheduler](https://pypi.org/project/rq-scheduler)|2.460850111856823e-05| -|pypi|[social-auth-app-django](https://pypi.org/project/social-auth-app-django)|2.460850111856823e-05| -|pypi|[social-auth-core](https://pypi.org/project/social-auth-core)|2.460850111856823e-05| -|pypi|[sregistry](https://pypi.org/project/sregistry)|2.460850111856823e-05| -|cran|tweedie|2.4573228799720923e-05| -|pypi|[george](https://github.com/dfm/george)|2.4500838926174493e-05| -|pypi|[platformdirs](https://pypi.org/project/platformdirs)|2.448963679735568e-05| -|cran|[rhandsontable](http://jrowen.github.io/rhandsontable/)|2.4482585367652493e-05| -|cran|cleanNLP|2.436241610738255e-05| -|cran|udpipe|2.436241610738255e-05| -|pypi|[PyJWT](https://pypi.org/project/PyJWT)|2.435064935064935e-05| -|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|2.435064935064935e-05| -|pypi|[terminado](https://pypi.org/project/terminado)|2.435064935064935e-05| -|rubygems|shoulda-matchers|2.4163539241199835e-05| -|npm|prettier|2.4092970260671383e-05| -|pypi|[pymongo](https://pypi.org/project/pymongo)|2.402591896344682e-05| -|cran|gpclib|2.3999498536609982e-05| -|cran|PBSmapping|2.3999498536609982e-05| -|pypi|[pycares](https://pypi.org/project/pycares)|2.3853750276569066e-05| -|pypi|[scanpy](https://scanpy.readthedocs.io)|2.3853274704929438e-05| -|pypi|[inflection](https://pypi.org/project/inflection)|2.379351353344642e-05| -|npm|after|2.3656738605354373e-05| -|cran|rootSolve|2.3605819333861352e-05| -|cran|triangle|2.358724832214765e-05| -|cran|evd|2.358724832214765e-05| -|pypi|[uritemplate](https://pypi.org/project/uritemplate)|2.355761414122318e-05| -|cran|beepr|2.3550613109956105e-05| -|npm|vary|2.3474203020134225e-05| -|npm|gulp|2.3469825959382745e-05| -|pypi|[towncrier](https://pypi.org/project/towncrier)|2.3390665740408108e-05| -|npm|through2|2.3264413857954125e-05| -|cran|wikitaxa|2.3113785782769487e-05| -|cran|natserv|2.3113785782769487e-05| -|cran|worrms|2.3113785782769487e-05| -|cran|rotl|2.3113785782769487e-05| -|cran|rredlist|2.3113785782769487e-05| -|cran|bold|2.3113785782769487e-05| -|cran|ritis|2.311378578276948e-05| -|pypi|[asteval](http://github.com/newville/asteval)|2.3070469798657717e-05| -|pypi|[lmfit](https://pypi.org/project/lmfit)|2.3070469798657717e-05| -|pypi|[PeakUtils](https://pypi.org/project/PeakUtils)|2.3070469798657717e-05| -|pypi|[ua-parser](https://pypi.org/project/ua-parser)|2.3070469798657717e-05| -|pypi|[wincertstore](https://pypi.org/project/wincertstore)|2.3070469798657717e-05| -|rubygems|jekyll-sass-converter|2.3030096476510064e-05| -|rubygems|simplecov|2.2972830593167273e-05| -|npm|del-cli|2.289300464636035e-05| -|pypi|[autodocsumm](https://github.com/Chilipp/autodocsumm)|2.2839765100671142e-05| -|npm|matcha|2.283976510067114e-05| -|npm|quick-lru|2.283976510067114e-05| -|npm|map-obj|2.283976510067114e-05| -|npm|lodash.kebabcase|2.283976510067114e-05| -|pypi|[PyQt6-Qt6](https://pypi.org/project/PyQt6-Qt6)|2.283976510067114e-05| -|pypi|[PyQt6-sip](https://pypi.org/project/PyQt6-sip)|2.283976510067114e-05| -|pypi|[zmq](https://github.com/zeromq/pyzmq)|2.283976510067114e-05| -|pypi|[pyjwt](https://pypi.org/project/pyjwt)|2.283976510067114e-05| -|pypi|[galaxy-tool-util](https://github.com/galaxyproject/galaxy)|2.283976510067114e-05| -|pypi|[bagit](https://pypi.org/project/bagit)|2.283976510067114e-05| -|pypi|[prov](https://pypi.org/project/prov)|2.283976510067114e-05| -|pypi|[schema-salad](https://pypi.org/project/schema-salad)|2.283976510067114e-05| -|pypi|[shellescape](https://pypi.org/project/shellescape)|2.283976510067114e-05| -|pypi|[prompt_toolkit](https://pypi.org/project/prompt_toolkit)|2.283976510067114e-05| -|pypi|[Flask-SQLAlchemy](https://pypi.org/project/Flask-SQLAlchemy)|2.283976510067114e-05| -|pypi|[od](https://pypi.org/project/od)|2.283976510067114e-05| -|pypi|[sigtools](https://pypi.org/project/sigtools)|2.283976510067114e-05| -|pypi|[APScheduler](https://pypi.org/project/APScheduler)|2.283976510067114e-05| -|cran|yamlme|2.283976510067114e-05| -|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|2.2835785674213186e-05| -|cran|adehabitatLT|2.2806807286673055e-05| -|cran|doFuture|2.2759625574002115e-05| -|cran|pbmcapply|2.2759625574002115e-05| -|cran|RANN|2.2674452104099444e-05| -|npm|minimatch|2.26483304759738e-05| -|cran|paradox|2.2601097618459742e-05| -|rubygems|[chartkick](https://chartkick.com)|2.2599643884399396e-05| -|rubygems|[memory_profiler](https://github.com/SamSaffron/memory_profiler)|2.2599643884399396e-05| -|rubygems|[e2mmap](https://github.com/ruby/e2mmap)|2.2599643884399396e-05| -|rubygems|[stripe](https://stripe.com/docs/api?lang=ruby)|2.2599643884399396e-05| -|pypi|[distlib](https://pypi.org/project/distlib)|2.2558791803563396e-05| -|npm|rollup-plugin-json|2.250077044240515e-05| -|npm|package-json-versionify|2.250077044240515e-05| -|cran|plotfunctions|2.23736474455554e-05| -|rubygems|nio4r|2.23736474455554e-05| -|rubygems|sassc-rails|2.23736474455554e-05| -|rubygems|tzinfo|2.23736474455554e-05| -|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|2.237125709860609e-05| -|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|2.237125709860609e-05| -|pypi|[cfgrib](https://pypi.org/project/cfgrib)|2.237125709860609e-05| -|pypi|[pydap](https://pypi.org/project/pydap)|2.237125709860609e-05| -|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|2.237125709860609e-05| -|pypi|[numbagg](https://pypi.org/project/numbagg)|2.237125709860609e-05| -|rubygems|[ruby-openid](https://github.com/openid/ruby-openid)|2.236912751677852e-05| -|cran|Biostrings|2.236104568760682e-05| -|cran|ROCR|2.235209086215798e-05| -|cran|semEff|2.232847308386442e-05| -|cran|rr2|2.232847308386442e-05| -|cran|HSAUR3|2.232847308386442e-05| -|cran|mlmRev|2.232847308386442e-05| -|cran|MEMSS|2.232847308386442e-05| -|cran|PKPDmodels|2.232847308386442e-05| -|pypi|[ordereddict](https://pypi.org/project/ordereddict)|2.2325577568404748e-05| -|pypi|[munch](https://pypi.org/project/munch)|2.2325577568404748e-05| -|cran|NLP|2.231396451062016e-05| -|npm|babel-preset-react|2.219034490409483e-05| -|cran|rcdk|2.2147651006711405e-05| -|cran|fingerprint|2.2147651006711405e-05| -|cran|enviPat|2.2147651006711405e-05| -|cran|flexdashboard|2.2147651006711405e-05| -|cran|keys|2.2147651006711405e-05| -|pypi|[wsaccel](https://pypi.org/project/wsaccel)|2.2051466922339405e-05| -|pypi|[python-socks](https://pypi.org/project/python-socks)|2.2051466922339405e-05| -|cran|assertive|2.2027878618773553e-05| -|pypi|[aiodns](https://pypi.org/project/aiodns)|2.1951202467117393e-05| -|cran|actuar|2.1926174496644297e-05| -|cran|skellam|2.1926174496644297e-05| -|cran|hoa|2.1926174496644297e-05| -|cran|LaplacesDemon|2.1926174496644297e-05| -|rubygems|jdbc-postgres|2.1926174496644293e-05| -|rubygems|jdbc-sqlite3|2.1926174496644293e-05| -|rubygems|shoulda-context|2.1926174496644293e-05| -|pypi|[monty](https://github.com/materialsvirtuallab/monty)|2.1905212102502602e-05| -|cran|matrixStats|2.190023877413287e-05| -|cran|[geiger](https://github.com/mwpennell/geiger-v2)|2.1765053774646715e-05| -|cran|fpc|2.1675903901432048e-05| -|rubygems|webmock|2.1657082946433606e-05| -|cran|MCMCglmm|2.1576033974580075e-05| -|pypi|[prefect](https://pypi.org/project/prefect)|2.1496249506514017e-05| -|cran|purrrlyr|2.1431599132058332e-05| -|pypi|[schema](https://github.com/keleshev/schema)|2.1242809204218655e-05| -|cran|Rcsdp|2.1184135318937505e-05| -|cran|psychTools|2.1184135318937505e-05| -|npm|depd|2.1175363803562206e-05| -|rubygems|kramdown-parser-gfm|2.1145815855704695e-05| -|rubygems|jekyll-theme-primer|2.1145815855704695e-05| -|rubygems|jekyll_test_plugin_malicious|2.1145815855704695e-05| -|cran|[phytools](https://github.com/liamrevell/phytools)|2.1120888339848077e-05| -|npm|xregexp|2.1082860092927207e-05| -|npm|bufferedstream|2.1082860092927207e-05| -|pypi|[mrcfile](https://pypi.org/project/mrcfile)|2.1082860092927207e-05| -|pypi|[deprecation](http://deprecation.readthedocs.io/)|2.1040268456375844e-05| -|cran|sessioninfo|2.1034865827732023e-05| -|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|2.103242262859006e-05| -|cran|[deSolve](http://desolve.r-forge.r-project.org/)|2.0953462644737815e-05| -|cran|gamlss|2.0780839058115702e-05| -|cran|[binman](https://docs.ropensci.org/binman/)|2.067114093959734e-05| -|pypi|[raven](https://pypi.org/project/raven)|2.0469420550146516e-05| -|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|2.0451607877400798e-05| -|pypi|[GitPython](https://github.com/gitpython-developers/GitPython)|2.0430537094337456e-05| -|pypi|[assertionlib](https://pypi.org/project/assertionlib)|2.0336289549376795e-05| +https://github.com/ropensci/beautier/)|2.714302184815818e-05| +|pypi|[tangle](https://github.com/fifman/tangle)|2.710843373493976e-05| +|cran|[heatmaply](https://talgalili.github.io/heatmaply/)|2.7044878076900904e-05| +|pypi|[zope.interface](https://pypi.org/project/zope.interface)|2.7027107289879215e-05| +|cran|[seqinr](http://seqinr.r-forge.r-project.org/)|2.6960281241883887e-05| +|cran|gridBase|2.695545935224872e-05| +|cran|plm|2.687724795315818e-05| +|pypi|[fasttext](https://github.com/facebookresearch/fastText)|2.6837349397590363e-05| +|pypi|[hijri-converter](https://github.com/mhalshehri/hijri-converter)|2.6837349397590363e-05| +|cran|BeyondBenford|2.6837349397590363e-05| +|cran|BenfordTests|2.6837349397590363e-05| +|cran|benford.analysis|2.6837349397590363e-05| +|cran|MUS|2.6837349397590363e-05| +|cran|filelock|2.6837349397590363e-05| +|cran|manipulateWidget|2.6837349397590363e-05| +|cran|AsioHeaders|2.6837349397590356e-05| +|cran|[proxy](NA)|2.6769055298539382e-05| +|npm|[should](https://github.com/shouldjs/should.js)|2.6595152428998408e-05| +|cran|dynamicTreeCut|2.6551997463538365e-05| +|npm|readable-stream|2.654243347014431e-05| +|cran|optimx|2.6531171177218922e-05| +|cran|minqa|2.6531171177218922e-05| +|cran|pls|2.652872422635147e-05| +|pypi|[meshio](https://github.com/nschloe/meshio)|2.6496756255792406e-05| +|npm|through2|2.647040497153449e-05| +|pypi|[smart-open](https://pypi.org/project/smart-open)|2.63493600369775e-05| +|cran|[ordinal](https://github.com/runehaubo/ordinal)|2.6177689083946618e-05| +|pypi|[setuptools-scm](https://pypi.org/project/setuptools-scm)|2.610757481356347e-05| +|pypi|[siphon](https://pypi.org/project/siphon)|2.6040719481700388e-05| +|cran|gbRd|2.595903614457831e-05| +|npm|[request](https://github.com/request/request#readme)|2.5926452705230862e-05| +|cran|[quanteda](https://quanteda.io)|2.5838604393160962e-05| +|pypi|[deprecation](http://deprecation.readthedocs.io/)|2.5816657936092202e-05| +|cran|[GPArotation](http://www.stat.ucla.edu/research/gpa)|2.574584228957153e-05| +|cran|rsm|2.560222653532061e-05| +|cran|tables|2.558945518766947e-05| +|rubygems|html-pipeline|2.5559380378657487e-05| +|rubygems|gemoji|2.5559380378657487e-05| +|pypi|[exceptiongroup](https://pypi.org/project/exceptiongroup)|2.5559380378657483e-05| +|cran|rcmdcheck|2.5464037558153262e-05| +|pypi|[pydantic](https://pypi.org/project/pydantic)|2.543967410632747e-05| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|2.5308676846007626e-05| +|cran|[R.devices](https://github.com/HenrikBengtsson/R.devices)|2.5285972461273677e-05| +|pypi|[sphinx_automodapi](https://pypi.org/project/sphinx_automodapi)|2.5217147660409076e-05| +|pypi|[ghp-import](https://pypi.org/project/ghp-import)|2.5082169336687408e-05| +|pypi|[plams](https://www.scm.com/doc/plams/)|2.47062208558721e-05| +|cran|bezier|2.4631879317825315e-05| +|cran|ComplexHeatmap|2.4631879317825315e-05| +|cran|GlobalOptions|2.4631879317825315e-05| +|cran|Cubist|2.461177069795216e-05| +|pypi|[wsproto](https://github.com/python-hyper/wsproto/)|2.4578313253012045e-05| +|pypi|[cssselect2](https://pypi.org/project/cssselect2)|2.439759036144578e-05| +|cran|adehabitatMA|2.433056401429895e-05| +|pypi|[ini2toml](https://github.com/abravalheri/ini2toml/)|2.4288060181171334e-05| +|pypi|[sphinx-panels](https://pypi.org/project/sphinx-panels)|2.4249775817956554e-05| +|pypi|[Nano-Utils](https://pypi.org/project/Nano-Utils)|2.419502184562426e-05| +|npm|[actions](https://github.com/fundon/actions)|2.4165232358003443e-05| +|pypi|[coreapi](https://github.com/core-api/python-client)|2.4096385542168674e-05| +|pypi|[django-chosen](https://github.com/theatlantic/django-chosen)|2.4096385542168674e-05| +|pypi|[django-form-utils](http://bitbucket.org/carljm/django-form-utils/)|2.4096385542168674e-05| +|pypi|[django-gravatar2](https://github.com/twaddington/django-gravatar)|2.4096385542168674e-05| +|pypi|[django-hstore](https://github.com/djangonauts/django-hstore)|2.4096385542168674e-05| +|pypi|[django-ratelimit](https://github.com/jsocol/django-ratelimit)|2.4096385542168674e-05| +|pypi|[django-rest-swagger](https://github.com/marcgibbons/django-rest-swagger)|2.4096385542168674e-05| +|pypi|[django-taggit](https://github.com/jazzband/django-taggit)|2.4096385542168674e-05| +|pypi|[django-taggit-templatetags](http://github.com/feuervogel/django-taggit-templatetags)|2.4096385542168674e-05| +|pypi|[oauth2client](https://pypi.org/project/oauth2client)|2.4096385542168674e-05| +|pypi|[python3-saml](https://pypi.org/project/python3-saml)|2.4096385542168674e-05| +|pypi|[python-social-auth](https://pypi.org/project/python-social-auth)|2.4096385542168674e-05| +|pypi|[rq-scheduler](https://pypi.org/project/rq-scheduler)|2.4096385542168674e-05| +|pypi|[social-auth-app-django](https://pypi.org/project/social-auth-app-django)|2.4096385542168674e-05| +|pypi|[social-auth-core](https://pypi.org/project/social-auth-core)|2.4096385542168674e-05| +|pypi|[sregistry](https://pypi.org/project/sregistry)|2.4096385542168674e-05| +|cran|[tweedie](http://www.r-project.org/package=tweedie)|2.4061847258434288e-05| +|cran|[rhandsontable](http://jrowen.github.io/rhandsontable/)|2.3973090162849215e-05| +|pypi|[datatable](https://pypi.org/project/datatable)|2.3855421686746988e-05| +|cran|cleanNLP|2.3855421686746988e-05| +|cran|udpipe|2.3855421686746988e-05| +|npm|webworker-threads|2.3855421686746988e-05| +|pypi|[PyJWT](https://pypi.org/project/PyJWT)|2.3843899802278773e-05| +|pypi|[python-multipart](https://pypi.org/project/python-multipart)|2.3680014174344434e-05| +|rubygems|rake-compiler|2.367285468404229e-05| +|rubygems|shoulda-matchers|2.3660683550528643e-05| +|cran|gpclib|2.350005661744723e-05| +|cran|PBSmapping|2.350005661744723e-05| +|pypi|[scanpy](https://scanpy.readthedocs.io)|2.335687577897801e-05| +|npm|[del](https://github.com/sindresorhus/del#readme)|2.3220518859707188e-05| +|npm|after|2.3164429696809212e-05| +|cran|rootSolve|2.311457008156851e-05| +|cran|triangle|2.3096385542168676e-05| +|cran|evd|2.3096385542168676e-05| +|cran|beepr|2.3060512727602142e-05| +|pypi|[OWSLib](https://pypi.org/project/OWSLib)|2.2991020686519667e-05| +|npm|vary|2.298569277108434e-05| +|npm|gulp|2.2981406799220343e-05| +|pypi|[rowan](https://github.com/glotzerlab/rowan)|2.2792383820998294e-05| +|cran|[wikitaxa](https://github.com/ropensci/wikitaxa)|2.2632776001967053e-05| +|cran|[natserv](https://docs.ropensci.org/natserv)|2.2632776001967053e-05| +|cran|[worrms](https://docs.ropensci.org/worrms)|2.2632776001967053e-05| +|cran|[rotl](https://docs.ropensci.org/rotl/)|2.2632776001967053e-05| +|cran|[rredlist](https://github.com/ropensci/rredlist (devel) +https://docs.ropensci.org/rredlist/ (docs))|2.2632776001967053e-05| +|cran|[bold](https://docs.ropensci.org/bold/ (documentation) +https://github.com/ropensci/bold (source))|2.2632776001967053e-05| +|cran|[ritis](https://github.com/ropensci/ritis (devel))|2.2632776001967047e-05| +|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|2.2609745433346285e-05| +|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|2.2609745433346285e-05| +|npm|babel-core|2.2479939934692714e-05| +|pypi|[prompt_toolkit](https://pypi.org/project/prompt_toolkit)|2.23644578313253e-05| +|pypi|[PyQt6-Qt6](https://pypi.org/project/PyQt6-Qt6)|2.23644578313253e-05| +|pypi|[PyQt6-sip](https://pypi.org/project/PyQt6-sip)|2.23644578313253e-05| +|pypi|[zmq](https://github.com/zeromq/pyzmq)|2.23644578313253e-05| +|pypi|[galaxy-tool-util](https://github.com/galaxyproject/galaxy)|2.23644578313253e-05| +|pypi|[bagit](https://pypi.org/project/bagit)|2.23644578313253e-05| +|pypi|[prov](https://pypi.org/project/prov)|2.23644578313253e-05| +|pypi|[schema-salad](https://pypi.org/project/schema-salad)|2.23644578313253e-05| +|pypi|[shellescape](https://pypi.org/project/shellescape)|2.23644578313253e-05| +|cran|yamlme|2.23644578313253e-05| +|npm|matcha|2.23644578313253e-05| +|npm|quick-lru|2.23644578313253e-05| +|npm|map-obj|2.23644578313253e-05| +|npm|lodash.kebabcase|2.23644578313253e-05| +|pypi|[stestr](https://pypi.org/project/stestr)|2.2352530120481924e-05| +|cran|adehabitatLT|2.2332185886402756e-05| +|cran|doFuture|2.2285986049461e-05| +|cran|pbmcapply|2.2285986049461e-05| +|pypi|[av](https://pypi.org/project/av)|2.2272865148205516e-05| +|cran|RANN|2.220258508331315e-05| +|pypi|[gcsfs](https://pypi.org/project/gcsfs)|2.2201051885560816e-05| +|npm|minimatch|2.217700705971586e-05| +|npm|ghsign|2.2140813253012047e-05| +|npm|git-config-path|2.2140813253012047e-05| +|npm|github-username|2.2140813253012047e-05| +|npm|parse-git-config|2.2140813253012047e-05| +|cran|paradox|2.21307571422815e-05| +|rubygems|[chartkick](https://chartkick.com)|2.2129333661175313e-05| +|rubygems|[memory_profiler](https://github.com/SamSaffron/memory_profiler)|2.2129333661175313e-05| +|rubygems|[e2mmap](https://github.com/ruby/e2mmap)|2.2129333661175313e-05| +|rubygems|[stripe](https://stripe.com/docs/api?lang=ruby)|2.2129333661175313e-05| +|pypi|[distlib](https://pypi.org/project/distlib)|2.2089331733171607e-05| +|npm|rollup-plugin-json|2.203251782640767e-05| +|npm|package-json-versionify|2.203251782640767e-05| +|pypi|[stevedore](https://pypi.org/project/stevedore)|2.2024130808950092e-05| +|pypi|[linkify-it-py](https://pypi.org/project/linkify-it-py)|2.1936211214716007e-05| +|cran|plotfunctions|2.1908040324563558e-05| +|rubygems|nio4r|2.1908040324563558e-05| +|rubygems|sassc-rails|2.1908040324563558e-05| +|rubygems|tzinfo|2.1908040324563558e-05| +|rubygems|[ruby-openid](https://github.com/openid/ruby-openid)|2.1903614457831323e-05| +|cran|Biostrings|2.18957008156851e-05| +|cran|[ROCR](http://rocr.bioinf.mpi-sb.mpg.de/)|2.1886932344763676e-05| +|cran|semEff|2.186380606459451e-05| +|cran|rr2|2.186380606459451e-05| +|cran|HSAUR3|2.186380606459451e-05| +|cran|mlmRev|2.186380606459451e-05| +|cran|MEMSS|2.186380606459451e-05| +|cran|PKPDmodels|2.186380606459451e-05| +|cran|NLP|2.1849599422228284e-05| +|pypi|[autocommand](https://pypi.org/project/autocommand)|2.1825536747779322e-05| +|npm|babel-preset-react|2.1728552403352444e-05| +|cran|rcdk|2.1686746987951806e-05| +|cran|fingerprint|2.1686746987951806e-05| +|cran|enviPat|2.1686746987951806e-05| +|cran|flexdashboard|2.1686746987951806e-05| +|cran|keys|2.1686746987951806e-05| +|pypi|[oslo.utils](https://pypi.org/project/oslo.utils)|2.163686746987952e-05| +|pypi|[oslo.config](https://pypi.org/project/oslo.config)|2.163686746987952e-05| +|cran|[assertive](https://bitbucket.org/richierocks/assertive)|2.1569467125064137e-05| +|npm|eslint-plugin-prettier|2.14955404256863e-05| +|pypi|[docker-registry-client](https://github.com/yodle/docker-registry-client)|2.146987951807229e-05| +|cran|actuar|2.146987951807229e-05| +|cran|skellam|2.146987951807229e-05| +|cran|hoa|2.146987951807229e-05| +|cran|LaplacesDemon|2.146987951807229e-05| +|rubygems|jdbc-postgres|2.1469879518072288e-05| +|rubygems|jdbc-sqlite3|2.1469879518072288e-05| +|rubygems|shoulda-context|2.1469879518072288e-05| +|cran|[matrixStats](https://github.com/HenrikBengtsson/matrixStats)|2.1444483531297684e-05| +|rubygems|nokogiri|2.1423927632793165e-05| +|pypi|[passlib](https://pypi.org/project/passlib)|2.142097802976612e-05| +|pypi|[torchvision](https://github.com/pytorch/vision)|2.1366467149005763e-05| +|cran|[geiger](https://github.com/mwpennell/geiger-v2)|2.1312111801242237e-05| +|rubygems|simplecov|2.126470898169939e-05| +|npm|acorn|2.123990467363961e-05| +|cran|fpc|2.122481718278231e-05| +|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|2.122383877053766e-05| +|pypi|[mrcfile](https://github.com/ccpem/mrcfile)|2.1133359004816678e-05| +|cran|MCMCglmm|2.1127025600519808e-05| +|pypi|[pymdown-extensions](https://github.com/facelessuser/pymdown-extensions)|2.1084337349397593e-05| +|pypi|[prefect](https://pypi.org/project/prefect)|2.1048901488306166e-05| +|pypi|[twisted](https://pypi.org/project/twisted)|2.1031084898600613e-05| +|pypi|[google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib)|2.099096509443782e-05| +|cran|purrrlyr|2.098559652142404e-05| +|pypi|[zstandard](https://pypi.org/project/zstandard)|2.0940587349397586e-05| +|npm|[deepmerge](https://github.com/TehShrike/deepmerge)|2.0912220309810687e-05| +|pypi|[platformdirs](https://pypi.org/project/platformdirs)|2.0893208141401658e-05| +|pypi|[rq](https://github.com/nvie/rq/)|2.0885542168674702e-05| +|pypi|[scanpydoc](https://github.com/theislab/scanpydoc/)|2.085972924374285e-05| +|pypi|[python-snappy](https://pypi.org/project/python-snappy)|2.08007640317367e-05| +|cran|Rcsdp|2.074328255764527e-05| +|cran|psychTools|2.074328255764527e-05| +|npm|depd|2.0734693582020388e-05| +|cran|[phytools](https://github.com/liamrevell/phytools)|2.0681351780749374e-05| +|pypi|[spacy](https://pypi.org/project/spacy)|2.067687033989142e-05| +|npm|xregexp|2.0644114921223353e-05| +|npm|bufferedstream|2.0644114921223353e-05| +|cran|[sessioninfo](https://github.com/r-lib/sessioninfo#readme)|2.0597119441393675e-05| +|cran|[deSolve](http://desolve.r-forge.r-project.org/)|2.051741030054283e-05| +|pypi|[breathe](https://github.com/michaeljones/breathe)|2.045783132530128e-05| +|npm|[react-plotly.js](https://github.com/plotly/react-plotly.js#readme)|2.044750430292599e-05| +|cran|gamlss|2.0348379099622603e-05| +|pypi|[hacking](https://pypi.org/project/hacking)|2.0328227194492253e-05| +|cran|[binman](https://docs.ropensci.org/binman/)|2.0240963855421715e-05| +|pypi|[panel](https://pypi.org/project/panel)|2.007299664076052e-05| +|pypi|[raven](https://pypi.org/project/raven)|2.0043441371118274e-05| +|pypi|[autobahn](https://pypi.org/project/autobahn)|1.9971266411573092e-05| +|pypi|[constantly](https://pypi.org/project/constantly)|1.9971266411573092e-05| +|pypi|[hyperlink](https://pypi.org/project/hyperlink)|1.9971266411573092e-05| +|pypi|[incremental](https://pypi.org/project/incremental)|1.9971266411573092e-05| +|pypi|[txaio](https://pypi.org/project/txaio)|1.9971266411573092e-05| |cran|[beastier](https://docs.ropensci.org/beastier/ (website) -https://github.com/ropensci/beastier/)|2.0302013422818795e-05| -|pypi|[pyshp](https://pypi.org/project/pyshp)|2.030201342281879e-05| -|pypi|[visitor](http://github.com/mbr/visitor)|2.030201342281879e-05| -|pypi|[dominate](https://github.com/Knio/dominate/)|2.030201342281879e-05| -|cran|shapefiles|2.030201342281879e-05| -|cran|ggsignif|2.02422857244751e-05| -|cran|ggsci|2.02422857244751e-05| -|npm|on-headers|2.023277032321705e-05| -|pypi|[rsa](https://pypi.org/project/rsa)|2.0155172342781518e-05| -|pypi|[requests-mock](https://pypi.org/project/requests-mock)|2.0120745445829336e-05| -|pypi|[opencv-python](https://github.com/skvark/opencv-python)|2.0062919463087284e-05| -|cran|[survey](http://r-survey.r-forge.r-project.org/survey/)|2.0009479004443458e-05| -|cran|sandwich|2.0009479004443458e-05| -|cran|partykit|1.9994789278419276e-05| -|rubygems|test-unit|1.9957293521435417e-05| -|cran|spData|1.9932885906040267e-05| -|pypi|[jupyter-console](https://pypi.org/project/jupyter-console)|1.977468839884947e-05| -|pypi|[mwoauth](https://pypi.org/project/mwoauth)|1.977468839884947e-05| -|pypi|[wikidataintegrator](https://pypi.org/project/wikidataintegrator)|1.977468839884947e-05| -|pypi|[dash-extensions](https://pypi.org/project/dash-extensions)|1.977468839884947e-05| -|pypi|[Flask-Caching](https://pypi.org/project/Flask-Caching)|1.977468839884947e-05| -|pypi|[ipaddr](https://pypi.org/project/ipaddr)|1.977468839884947e-05| -|pypi|[progress](https://pypi.org/project/progress)|1.977468839884947e-05| -|pypi|[pytoml](https://pypi.org/project/pytoml)|1.977468839884947e-05| -|pypi|[pybind11](https://github.com/pybind/pybind11)|1.9748322147651038e-05| -|cran|seqLogo|1.9620273875526284e-05| -|cran|oskeyring|1.9576941514860975e-05| -|cran|ExplainPrediction|1.9576941514860975e-05| -|cran|rpart.plot|1.9576941514860975e-05| -|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|1.9573223197384268e-05| -|cran|rstatix|1.955017163051537e-05| -|pypi|[gssapi](https://pypi.org/project/gssapi)|1.9435008688878233e-05| -|cran|afex|1.934805594270457e-05| -|pypi|[folium](https://pypi.org/project/folium)|1.9344588926174497e-05| -|npm|eslint-plugin-prettier|1.929788022591587e-05| -|npm|eslint-config-prettier|1.929788022591587e-05| -|pypi|[sphinx-panels](https://pypi.org/project/sphinx-panels)|1.927010640352349e-05| -|pypi|[linkify-it-py](https://pypi.org/project/linkify-it-py)|1.927010640352349e-05| -|cran|tester|1.923348640056517e-05| -|cran|fastICA|1.918334225277066e-05| -|rubygems|[mocha](https://mocha.jamesmead.org)|1.908765922476373e-05| -|pypi|[affine](https://pypi.org/project/affine)|1.9017723467807364e-05| -|pypi|[gcsfs](https://pypi.org/project/gcsfs)|1.8991047496356367e-05| -|cran|docopt|1.898370086289549e-05| -|cran|tidygraph|1.897847042550242e-05| -|cran|[rentrez](http://github.com/ropensci/rentrez)|1.896832054969644e-05| -|rubygems|rubyzip|1.886984061661578e-05| -|cran|[snakecase](https://github.com/Tazinho/snakecase)|1.877464152386495e-05| -|npm|[ansi-regex](https://github.com/chalk/ansi-regex#readme)|1.8769195768399497e-05| -|npm|[balanced-match](https://github.com/juliangruber/balanced-match)|1.8769195768399497e-05| -|npm|[brace-expansion](https://github.com/juliangruber/brace-expansion)|1.8769195768399497e-05| -|npm|[cacatoo](https://github.com/bramvandijk88/cacatoo#readme)|1.8769195768399497e-05| -|npm|[code-point-at](https://github.com/sindresorhus/code-point-at#readme)|1.8769195768399497e-05| -|npm|[decompress-response](https://github.com/sindresorhus/decompress-response#readme)|1.8769195768399497e-05| -|npm|[detect-libc](https://github.com/lovell/detect-libc#readme)|1.8769195768399497e-05| -|npm|[esdoc](https://esdoc.org/)|1.8769195768399497e-05| -|npm|esdoc-standard-plugin|1.8769195768399497e-05| -|npm|fast-random|1.8769195768399497e-05| -|npm|flatted|1.8769195768399497e-05| -|npm|fs.realpath|1.8769195768399497e-05| -|npm|has-unicode|1.8769195768399497e-05| -|npm|iconv-lite|1.8769195768399497e-05| -|npm|ignore-walk|1.8769195768399497e-05| -|npm|ini|1.8769195768399497e-05| -|npm|is-fullwidth-code-point|1.8769195768399497e-05| -|npm|jsdocs|1.8769195768399497e-05| -|npm|mimic-response|1.8769195768399497e-05| -|npm|needle|1.8769195768399497e-05| -|npm|node|1.8769195768399497e-05| -|npm|nopt|1.8769195768399497e-05| -|npm|npm|1.8769195768399497e-05| -|npm|npm-bundled|1.8769195768399497e-05| -|npm|npm-normalize-package-bin|1.8769195768399497e-05| -|npm|npm-packlist|1.8769195768399497e-05| -|npm|number-is-nan|1.8769195768399497e-05| -|npm|odex|1.8769195768399497e-05| -|npm|os-homedir|1.8769195768399497e-05| -|npm|os-tmpdir|1.8769195768399497e-05| -|npm|osenv|1.8769195768399497e-05| -|npm|path-is-absolute|1.8769195768399497e-05| -|npm|rc|1.8769195768399497e-05| -|npm|safer-buffer|1.8769195768399497e-05| -|npm|set-blocking|1.8769195768399497e-05| -|npm|signal-exit|1.8769195768399497e-05| -|npm|simple-concat|1.8769195768399497e-05| -|npm|string-width|1.8769195768399497e-05| -|npm|strip-json-comments|1.8769195768399497e-05| -|cran|SASmixed|1.8735133029721952e-05| -|cran|[colourpicker](https://github.com/daattali/colourpicker)|1.872350759448958e-05| -|cran|antiword|1.8703508739582562e-05| -|npm|[rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser)|1.8610759656211477e-05| -|pypi|[pickydict](https://pypi.org/project/pickydict)|1.8584768018675248e-05| -|pypi|[pyteomics](https://pypi.org/project/pyteomics)|1.858476801867523e-05| -|npm|tslint|1.8571728187919464e-05| -|cran|BiocManager|1.8396344827975552e-05| -|pypi|[pip-tools](https://pypi.org/project/pip-tools)|1.829062267253495e-05| -|pypi|[grayskull](https://pypi.org/project/grayskull)|1.8271812080536912e-05| -|pypi|[pykwalify](https://pypi.org/project/pykwalify)|1.8271812080536912e-05| -|pypi|[pdbmender](https://pypi.org/project/pdbmender)|1.8271812080536912e-05| -|pypi|[delphi4py](https://pypi.org/project/delphi4py)|1.8271812080536912e-05| -|pypi|[docker](https://github.com/docker/docker-py)|1.8248154661498552e-05| -|cran|spam|1.822464494756175e-05| -|cran|acepack|1.821623651396542e-05| -|cran|htmlTable|1.821623651396542e-05| -|pypi|[ghp-import](https://pypi.org/project/ghp-import)|1.8165890736779996e-05| -|pypi|[snuggs](https://pypi.org/project/snuggs)|1.8165890736779996e-05| -|pypi|[breathe](https://github.com/michaeljones/breathe)|1.8124161073825577e-05| -|pypi|[scanpydoc](https://pypi.org/project/scanpydoc)|1.801911680708268e-05| -|cran|measurements|1.7945529721955894e-05| -|cran|NISTunits|1.7945529721955894e-05| -|pypi|[marshmallow](https://pypi.org/project/marshmallow)|1.791257190795783e-05| -|cran|gbm|1.7897614130835604e-05| -|npm|glob|1.7806315915627996e-05| -|cran|protolite|1.7797219558964525e-05| -|npm|babel-core|1.7756468617390166e-05| -|cran|geepack|1.766064567160788e-05| -|pypi|[descartes](http://bitbucket.org/sgillies/descartes/)|1.76075029731175e-05| -|cran|bigmemory|1.759947267497603e-05| -|pypi|[rdkit](https://pypi.org/project/rdkit)|1.7477385468339657e-05| -|npm|tsconfig-paths|1.7401725790987533e-05| -|npm|replace|1.7401725790987533e-05| -|npm|node-qunit-phantomjs|1.7401725790987533e-05| -|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|1.7348716719522087e-05| -|cran|[geosphere](NA)|1.7340623751641903e-05| -|cran|ks|1.7322627037392137e-05| -|pypi|[annoy](https://pypi.org/project/annoy)|1.7271040893742966e-05| -|pypi|[sphinxcontrib.programoutput](https://pypi.org/project/sphinxcontrib.programoutput)|1.7271040893742966e-05| -|pypi|[visdom](https://pypi.org/project/visdom)|1.7271040893742966e-05| -|pypi|[nmslib](https://pypi.org/project/nmslib)|1.7271040893742966e-05| -|pypi|[pyemd](https://pypi.org/project/pyemd)|1.7271040893742966e-05| -|pypi|[Morfessor](https://pypi.org/project/Morfessor)|1.7271040893742966e-05| -|pypi|[Pyro4](https://pypi.org/project/Pyro4)|1.7271040893742966e-05| -|cran|[origami](https://tlverse.org/origami/)|1.7252699153778834e-05| -|npm|codecov|1.7249552085935044e-05| -|rubygems|rubocop-performance|1.7216135783984516e-05| -|cran|RNetCDF|1.720956740589441e-05| -|cran|glmmTMB|1.7198430992053167e-05| -|cran|fixest|1.7198430992053167e-05| -|cran|cplm|1.7198430992053167e-05| -|cran|betareg|1.7198430992053167e-05| -|cran|AER|1.7198430992053167e-05| -|cran|signal|1.716298999349802e-05| -|npm|chai-passport-strategy|1.7129823825503355e-05| -|npm|passport-strategy|1.7129823825503355e-05| -|cran|[Ckmeans.1d.dp](NA)|1.7065842677894037e-05| -|cran|klaR|1.6931168920108788e-05| -|pypi|[panel](https://pypi.org/project/panel)|1.681776512666658e-05| -|pypi|[pathos](https://github.com/uqfoundation/pathos)|1.681208053691276e-05| -|pypi|[aiosignal](https://github.com/aio-libs/aiosignal)|1.680216006874349e-05| -|pypi|[types-dataclasses](https://pypi.org/project/types-dataclasses)|1.6793944926964074e-05| -|pypi|[hdf5plugin](https://pypi.org/project/hdf5plugin)|1.6757169005491153e-05| -|pypi|[psims](https://pypi.org/project/psims)|1.6757169005491153e-05| -|cran|[jsonld](https://docs.ropensci.org/jsonld)|1.6723736474455594e-05| -|rubygems|hoe|1.6668367346938774e-05| -|cran|doMC|1.6634467881112177e-05| -|pypi|[sphinxcontrib.mermaid](https://pypi.org/project/sphinxcontrib.mermaid)|1.6610738255033557e-05| -|pypi|[mdit-py-plugins](https://pypi.org/project/mdit-py-plugins)|1.6610738255033557e-05| -|pypi|[markdown-it-py](https://pypi.org/project/markdown-it-py)|1.6610738255033557e-05| -|cran|qvalue|1.6610738255033557e-05| -|cran|subprocess|1.6610738255033557e-05| -|cran|tensorA|1.6592484696511544e-05| -|npm|concat-stream|1.656510435872852e-05| -|pypi|[databases](https://pypi.org/project/databases)|1.6542887824791697e-05| -|cran|[EML](https://docs.ropensci.org/EML/)|1.6531639501438178e-05| -|npm|gulp-uglify|1.6493393950249175e-05| -|cran|scatterplot3d|1.6459222381686843e-05| -|pypi|[noodles](https://pypi.org/project/noodles)|1.643408437200383e-05| -|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|1.6344577887672222e-05| -|pypi|[pulumi](https://github.com/pulumi/pulumi)|1.628503750493487e-05| -|pypi|[AssertionLib](https://pypi.org/project/AssertionLib)|1.6215244487056573e-05| -|npm|murl|1.612218712988551e-05| -|npm|protein|1.612218712988551e-05| -|npm|network-address|1.612218712988551e-05| -|pypi|[kgt](https://pypi.org/project/kgt)|1.612218712988551e-05| -|pypi|[x21](https://pypi.org/project/x21)|1.612218712988551e-05| -|cran|[wesanderson](https://github.com/karthik/wesanderson)|1.607399671277907e-05| -|cran|coxme|1.5945648489736737e-05| -|cran|[downloader](https://github.com/wch/downloader)|1.5936066450328216e-05| -|pypi|[pytest-console-scripts](https://pypi.org/project/pytest-console-scripts)|1.578692633752683e-05| -|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|1.578692633752683e-05| -|cran|VennDiagram|1.5733516483516484e-05| -|pypi|[colorcet](https://pypi.org/project/colorcet)|1.5705925683417905e-05| -|pypi|[gurobipy](https://pypi.org/project/gurobipy)|1.570469798657718e-05| -|cran|loder|1.56743485984998e-05| -|cran|ore|1.56743485984998e-05| -|pypi|[mizani](https://pypi.org/project/mizani)|1.5661553211888782e-05| -|cran|nor1mix|1.5661553211888782e-05| -|cran|diptest|1.5661553211888782e-05| -|cran|changepoint|1.5661553211888782e-05| -|cran|linprog|1.5661553211888782e-05| -|cran|magic|1.5661553211888782e-05| -|cran|modeldata|1.5661553211888782e-05| -|cran|[fst](http://www.fstpackage.org)|1.561009331950362e-05| -|pypi|[cronutils](https://github.com/zagaran/cronutils)|1.5596937328670004e-05| -|pypi|[proto-plus](https://pypi.org/project/proto-plus)|1.5596937328670004e-05| -|pypi|[pycrypto](https://pypi.org/project/pycrypto)|1.5596937328670004e-05| -|pypi|[pycryptodomex](https://pypi.org/project/pycryptodomex)|1.5596937328670004e-05| -|pypi|[zstd](https://pypi.org/project/zstd)|1.5596937328670004e-05| -|cran|reprex|1.5523981335485255e-05| -|pypi|[tensorflow-estimator](https://pypi.org/project/tensorflow-estimator)|1.5503355704697986e-05| -|cran|lgr|1.5471257659760723e-05| -|cran|scico|1.538188261881934e-05| -|cran|rcartocolor|1.538188261881934e-05| -|npm|[tslint-config-prettier](https://github.com/prettier/tslint-config-prettier#readme)|1.5226510067114093e-05| -|npm|microbundle|1.5226510067114093e-05| -|npm|mathjs|1.5226510067114093e-05| -|npm|const-version|1.5226510067114093e-05| -|pypi|[bumpversion](https://pypi.org/project/bumpversion)|1.5226510067114093e-05| -|cran|RcppDE|1.5226510067114093e-05| -|cran|gdalUtils|1.5226510067114093e-05| -|cran|emld|1.5107861936721012e-05| -|cran|FNN|1.5025796979865772e-05| -|cran|BiocVersion|1.4955864948243822e-05| -|rubygems|coveralls|1.48857876296221e-05| -|cran|rstantools|1.4822010748443132e-05| -|cran|rhub|1.4814827476821185e-05| -|cran|gmailr|1.4814827476821185e-05| -|cran|foghorn|1.4814827476821185e-05| -|cran|rversions|1.4814827476821185e-05| -|pypi|[ephem](https://pypi.org/project/ephem)|1.4791466922339405e-05| -|cran|tm.lexicon.GeneralInquirer|1.478812043661037e-05| -|cran|Rpoppler|1.478812043661037e-05| -|cran|Rcampdf|1.478812043661037e-05| -|cran|filehash|1.478812043661037e-05| -|cran|[fuzzyjoin](https://github.com/dgrtwo/fuzzyjoin)|1.4608931337119259e-05| -|npm|[is-plain-object](https://github.com/jonschlinkert/is-plain-object)|1.458037212368169e-05| -|pypi|[click-repl](https://pypi.org/project/click-repl)|1.447319249542404e-05| -|pypi|[click-didyoumean](https://pypi.org/project/click-didyoumean)|1.447319249542404e-05| -|pypi|[IPython](https://ipython.org)|1.446874877984237e-05| -|cran|PolynomF|1.4425114800423877e-05| -|pypi|[selenium](https://www.selenium.dev)|1.4376892935295342e-05| -|cran|tokenizers|1.4370083447611593e-05| -|cran|lmerTest|1.436563974977609e-05| -|npm|jsmd|1.423777564717162e-05| -|npm|is-mergeable-object|1.423777564717162e-05| -|pypi|[pathspec](https://pypi.org/project/pathspec)|1.4173682022675311e-05| -|npm|gzip-size|1.411473314157878e-05| -|cran|bignum|1.4055240061951471e-05| -|cran|shinyWidgets|1.397240122530318e-05| -|cran|metafor|1.392513845356126e-05| -|cran|RSpectra|1.3921380632790028e-05| -|cran|future.callr|1.3899200185791646e-05| -|cran|solrium|1.3820969159475886e-05| -|cran|party|1.3806522504787483e-05| -|npm|accepts|1.3794112766428201e-05| -|cran|[haven](https://haven.tidyverse.org)|1.3709512693317786e-05| -|cran|FastRWeb|1.3703859060402684e-05| -|cran|quantmod|1.3703859060402684e-05| -|cran|truncreg|1.3661951234529893e-05| -|cran|panelr|1.3661951234529893e-05| -|cran|metaBMA|1.3661951234529893e-05| -|cran|lfe|1.3661951234529893e-05| -|cran|ivreg|1.3661951234529893e-05| -|cran|GLMMadaptive|1.3661951234529893e-05| -|cran|clubSandwich|1.3661951234529893e-05| -|cran|cgam|1.3661951234529893e-05| -|cran|blme|1.3661951234529893e-05| -|cran|bbmle|1.3661951234529893e-05| -|cran|aod|1.3661951234529893e-05| -|cran|geojsonlint|1.3644534995206136e-05| -|cran|PASWR|1.3624456080831918e-05| -|rubygems|byebug|1.3607293489876077e-05| -|pypi|[kopt](https://pypi.org/project/kopt)|1.3534675615212528e-05| -|cran|ggfittext|1.3534675615212528e-05| -|cran|taxadb|1.3525886864813038e-05| -|cran|assertive.code|1.3488419034162587e-05| -|cran|assertive.reflection|1.3488419034162587e-05| -|cran|assertive.data.us|1.3488419034162587e-05| -|cran|assertive.data.uk|1.3488419034162587e-05| -|cran|assertive.data|1.3488419034162587e-05| -|cran|assertive.models|1.3488419034162587e-05| -|cran|assertive.matrices|1.3488419034162587e-05| -|cran|assertive.sets|1.3488419034162587e-05| -|cran|assertive.files|1.3488419034162587e-05| -|cran|assertive.datetimes|1.3488419034162587e-05| -|cran|assertive.strings|1.3488419034162587e-05| -|cran|assertive.numbers|1.3488419034162587e-05| -|cran|assertive.types|1.3488419034162587e-05| -|cran|assertive.properties|1.3488419034162587e-05| -|cran|assertive.base|1.3488419034162587e-05| -|cran|gsl|1.3417467021522793e-05| -|pypi|[vtk](https://pypi.org/project/vtk)|1.3400457569110298e-05| -|npm|terser|1.3392531309923298e-05| -|pypi|[uvicorn](https://pypi.org/project/uvicorn)|1.329715918480706e-05| -|pypi|[starlette](https://pypi.org/project/starlette)|1.329715918480706e-05| -|pypi|[httplib2](https://pypi.org/project/httplib2)|1.3263635504300972e-05| -|npm|del|1.3156972839947052e-05| -|cran|Biobase|1.3084509525420193e-05| -|pypi|[librosa](https://librosa.org)|1.3077810402684565e-05| -|rubygems|thor|1.303264963703602e-05| -|rubygems|rake-compiler-dock|1.30023519894535e-05| -|pypi|[eventlet](https://pypi.org/project/eventlet)|1.299821907957814e-05| -|cran|[clisymbols](https://github.com/gaborcsardi/clisymbols)|1.2991184556079449e-05| -|rubygems|[github-pages](https://github.com/github/pages-gem)|1.2919463087248357e-05| -|pypi|[black>=20.8b1](https://pypi.org/project/black>=20.8b1)|1.2905109632817462e-05| -|pypi|[importlib_metadata>=0.7](https://pypi.org/project/importlib_metadata>=0.7)|1.2905109632817462e-05| -|pypi|[h5py>=3](https://pypi.org/project/h5py>=3)|1.2905109632817462e-05| -|pypi|[npx](https://pypi.org/project/npx)|1.2897749703908409e-05| -|pypi|[meshplex](https://pypi.org/project/meshplex)|1.2897749703908409e-05| -|pypi|[googleapis-common-protos](https://github.com/googleapis/python-api-common-protos)|1.2784418614595858e-05| -|cran|wordcloud|1.2771629468704595e-05| -|cran|clusterGeneration|1.2767570553170202e-05| -|cran|[mlr3misc](https://mlr3misc.mlr-org.com)|1.2745392920473153e-05| -|cran|bs4Dash|1.2739085133059142e-05| -|cran|rticles|1.2735364068891936e-05| -|cran|locfit|1.2725352927563067e-05| -|cran|nonnest2|1.267238579779173e-05| -|cran|mlogit|1.267238579779173e-05| -|cran|logger|1.2602146175971683e-05| -|cran|leaps|1.2599518769820781e-05| -|pypi|[botocore](https://pypi.org/project/botocore)|1.258454842899849e-05| -|cran|geometry|1.254506232023012e-05| -|pypi|[param](https://pypi.org/project/param)|1.2530208782868791e-05| -|pypi|[pyct](https://pypi.org/project/pyct)|1.2530208782868791e-05| -|cran|stm|1.2524445863718962e-05| -|cran|topicmodels|1.2524445863718962e-05| -|pypi|[hacking](https://docs.openstack.org/hacking/latest/)|1.2494439117929052e-05| -|pypi|[numkit](https://pypi.org/project/numkit)|1.2458053691275167e-05| -|cran|FMStable|1.2458053691275167e-05| -|cran|tree|1.2458053691275167e-05| -|cran|sparsesvd|1.2458053691275167e-05| -|pypi|[cmocean](https://pypi.org/project/cmocean)|1.244677943454098e-05| -|pypi|[numcodecs](https://pypi.org/project/numcodecs)|1.2436252097315436e-05| -|npm|rollup-plugin-replace|1.2389922411917785e-05| -|npm|babel-plugin-external-helpers|1.2389922411917785e-05| -|rubygems|timecop|1.230550609505547e-05| -|rubygems|actionmailer|1.2230927270236953e-05| -|cran|Bessel|1.222734899328859e-05| -|pypi|[pip-api](https://pypi.org/project/pip-api)|1.2213756241610739e-05| -|pypi|[requirementslib](https://pypi.org/project/requirementslib)|1.2213756241610739e-05| -|pypi|[pipreqs](https://pypi.org/project/pipreqs)|1.2213756241610739e-05| -|npm|csso|1.2181208053691275e-05| -|npm|google-closure-compiler|1.2181208053691275e-05| -|npm|commander|1.2181208053691275e-05| -|npm|uglify-es|1.2181208053691275e-05| -|npm|ora|1.2181208053691275e-05| -|npm|update-notifier|1.2181208053691275e-05| -|npm|crass|1.2181208053691275e-05| -|npm|sqwish|1.2181208053691275e-05| -|npm|clean-css|1.2181208053691275e-05| -|npm|html-minifier|1.2181208053691275e-05| -|npm|node-version|1.2181208053691275e-05| -|pypi|[datatable](https://pypi.org/project/datatable)|1.2181208053691275e-05| -|pypi|[stevedore](https://pypi.org/project/stevedore)|1.2181208053691275e-05| -|pypi|[oslo.utils](https://pypi.org/project/oslo.utils)|1.2181208053691275e-05| -|pypi|[oslo.serialization](https://pypi.org/project/oslo.serialization)|1.2181208053691275e-05| -|pypi|[oslo.i18n](https://pypi.org/project/oslo.i18n)|1.2181208053691275e-05| -|pypi|[oslo.config](https://pypi.org/project/oslo.config)|1.2181208053691275e-05| -|pypi|[debtcollector](https://pypi.org/project/debtcollector)|1.2181208053691275e-05| -|pypi|[emoji](https://pypi.org/project/emoji)|1.2181208053691275e-05| -|pypi|[pynumpress](https://pypi.org/project/pynumpress)|1.2181208053691275e-05| -|pypi|[user-agents](https://pypi.org/project/user-agents)|1.2181208053691274e-05| -|rubygems|json|1.2179876288962372e-05| -|npm|parseurl|1.2145746713437568e-05| -|cran|humaniformat|1.2138616417139911e-05| -|pypi|[dataclasses-json](https://github.com/lidatong/dataclasses-json)|1.2132352941176475e-05| -|npm|ascli|1.2059395973154362e-05| -|cran|dbscan|1.2033721819793664e-05| -|cran|tracerer|1.1948074885199575e-05| -|rubygems|rails-dom-testing|1.1932611970962882e-05| -|cran|stabledist|1.1904788332472895e-05| -|rubygems|actionpack|1.1839388439939734e-05| -|npm|execa|1.1810305885389779e-05| -|cran|spacetime|1.1748787204552085e-05| -|pypi|[aiohttp-remotes](https://pypi.org/project/aiohttp-remotes)|1.1746164908916588e-05| -|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|1.1746164908916588e-05| -|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|1.1746164908916588e-05| -|pypi|[clickclick](https://pypi.org/project/clickclick)|1.1746164908916588e-05| -|pypi|[sas7bdat](https://pypi.org/project/sas7bdat)|1.1540091840339102e-05| -|pypi|[sas-kernel](https://pypi.org/project/sas-kernel)|1.1540091840339102e-05| -|pypi|[saspy](https://pypi.org/project/saspy)|1.1540091840339102e-05| -|npm|bluebird|1.1523699664429529e-05| -|cran|[fdrtool](https://strimmerlab.github.io/software/fdrtool/)|1.149974186886939e-05| -|cran|move|1.1469319271332694e-05| -|npm|isexe|1.141988255033557e-05| -|npm|[jade](http://jade-lang.com)|1.141988255033557e-05| -|npm|superagent|1.141988255033557e-05| -|npm|connect-flash|1.141988255033557e-05| -|pypi|[portray](https://pypi.org/project/portray)|1.141988255033557e-05| -|pypi|[typing-inspect](https://pypi.org/project/typing-inspect)|1.141988255033557e-05| -|pypi|[marshmallow-enum](https://pypi.org/project/marshmallow-enum)|1.141988255033557e-05| -|cran|debugme|1.1397173670860951e-05| -|cran|sm|1.13411247396436e-05| -|cran|goftest|1.13411247396436e-05| -|cran|tensor|1.13411247396436e-05| -|cran|spatstat.sparse|1.13411247396436e-05| -|pypi|[nbclient](https://pypi.org/project/nbclient)|1.1282318352788151e-05| -|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|1.1282318352788151e-05| -|pypi|[sphinx-autobuild](https://pypi.org/project/sphinx-autobuild)|1.1247293464365616e-05| -|npm|compressible|1.1238614573346115e-05| -|npm|bytes|1.1238614573346115e-05| -|npm|[rollup-plugin-uglify](https://github.com/TrySound/rollup-plugin-uglify)|1.1226090604026845e-05| -|cran|[rdflib](https://github.com/ropensci/rdflib)|1.11868237227777e-05| -|package.json|github/nlesc-sherlock/Rig|1.1185682326621925e-05| -|package.json|github/vibbits/phyd3|1.1185682326621925e-05| -|package.json|github/mathjax/MathJax|1.1185682326621925e-05| -|package.json|github/tobiasrausch/alfred|1.1185682326621925e-05| -|package.json|github/research-software-directory/research-software-directory|1.1185682326621925e-05| -|package.json|github/eweitz/ideogram|1.1185682326621925e-05| -|package.json|github/bio-tools/biotoolsSum|1.1185682326621925e-05| -|package.json|github/fairdataihub/SPARClink|1.1185682326621925e-05| -|package.json|github/amkram/shusher|1.1185682326621925e-05| -|package.json|github/PopMedNet-Team/popmednet|1.1185682326621925e-05| -|package.json|github/tortellini-tools/action|1.1185682326621925e-05| -|package.json|github/citation-file-format/cff-initializer-javascript|1.1185682326621925e-05| -|package.json|github/CrowdTruth/CrowdTruth|1.1185682326621925e-05| -|package.json|github/EMResearch/EvoMaster|1.1185682326621925e-05| -|package.json|github/bramvandijk88/cacatoo|1.1185682326621925e-05| -|package.json|github/Yomguithereal/talisman|1.1185682326621925e-05| -|package.json|github/PathwayCommons/grounding-search|1.1185682326621925e-05| -|package.json|github/DorianDepriester/mtex2Gmsh|1.1185682326621925e-05| -|package.json|github/pmkruyen/dearscholar|1.1185682326621925e-05| -|package.json|github/davidhoksza/MolArt|1.1185682326621925e-05| -|package.json|github/MichaelSel/edoJS|1.1185682326621925e-05| -|package.json|github/phelelani/nf-rnaSeqMetagen|1.1185682326621925e-05| -|package.json|github/klevis-a/kinematics-vis|1.1185682326621925e-05| -|package.json|github/ci-for-research/self-hosted-runners|1.1185682326621925e-05| -|package.json|github/NLeSC/case-law-app|1.1185682326621925e-05| -|package.json|github/NLeSC/ExtJS-DateTime|1.1185682326621925e-05| -|package.json|github/NLeSC/nlesc-serverless-boilerplate|1.1185682326621925e-05| -|package.json|github/NLeSC/docker-couch-admin|1.1185682326621925e-05| -|package.json|github/NLeSC/UncertaintyVisualization|1.1185682326621925e-05| -|package.json|github/NLeSC/xenon-flow|1.1185682326621925e-05| -|package.json|github/NLeSC/DiVE|1.1185682326621925e-05| -|package.json|github/NLeSC/pattyvis|1.1185682326621925e-05| -|package.json|github/NLeSC/spot|1.1185682326621925e-05| -|package.json|github/eWaterCycle/setup-singularity|1.1185682326621925e-05| -|package.json|github/eWaterCycle/eWaterleaf|1.1185682326621925e-05| -|package.json|github/eWaterCycle/setup-grpc|1.1185682326621925e-05| -|package.json|github/eWaterCycle/Cesium-NcWMS|1.1185682326621925e-05| -|package.json|github/eucp-project/storyboards|1.1185682326621925e-05| -|package.json|github/AA-ALERT/frbcat-web|1.1185682326621925e-05| -|package.json|github/sonjageorgievska/CClusTera|1.1185682326621925e-05| -|package.json|github/TNOCS/csWeb|1.1185682326621925e-05| -|package.json|github/meta-logic/sequoia|1.1185682326621925e-05| -|package.json|github/cinemascience/cinema_snap|1.1185682326621925e-05| -|package.json|github/lumen-org/lumen|1.1185682326621925e-05| -|package.json|github/dondi/GRNsight|1.1185682326621925e-05| -|package.json|github/interactivereport/OmicsView0|1.1185682326621925e-05| -|package.json|github/ci-for-science/self-hosted-runners|1.1185682326621925e-05| -|package.json|github/ADAH-EviDENce/evidence|1.1185682326621925e-05| -|package.json|github/iomega/paired-data-form|1.1185682326621925e-05| -|package.json|github/iomega/zenodo-upload|1.1185682326621925e-05| -|package.json|github/wangjun1996/VisFeature|1.1185682326621925e-05| -|package.json|github/MolMeDB/MolMeDB|1.1185682326621925e-05| -|package.json|gitlab/metafundev/metafun|1.1185682326621925e-05| -|package.json|gitlab/magnumpi/magnumpi|1.1185682326621925e-05| -|package.json|gitlab/geekysquirrel/bigx|1.1185682326621925e-05| -|setup.py|github/dask/dask|1.1185682326621925e-05| -|setup.py|github/Magritte-code/Magritte|1.1185682326621925e-05| -|setup.py|github/cbalbin-FIU/Epitopedia|1.1185682326621925e-05| -|setup.py|github/ECSHackWeek/impedance.py|1.1185682326621925e-05| -|setup.py|github/slzarate/parliament2|1.1185682326621925e-05| -|setup.py|github/cas-bioinf/rboAnalyzer|1.1185682326621925e-05| -|setup.py|github/malonge/RagTag|1.1185682326621925e-05| -|setup.py|github/MDAnalysis/mdanalysis|1.1185682326621925e-05| -|setup.py|github/vsoch/gridtest|1.1185682326621925e-05| -|setup.py|github/Quantum-Dynamics-Hub/libra-code|1.1185682326621925e-05| -|setup.py|github/SandoghdarLab/PiSCAT|1.1185682326621925e-05| -|setup.py|github/tylunel/pvpumpingsystem|1.1185682326621925e-05| -|setup.py|github/cadop/seg1d|1.1185682326621925e-05| -|setup.py|github/twesterhout/lattice-symmetries|1.1185682326621925e-05| -|setup.py|github/UNSW-CEEM/nempy|1.1185682326621925e-05| -|setup.py|github/potassco/clingo|1.1185682326621925e-05| -|setup.py|github/NLESC-JCER/QMCTorch|1.1185682326621925e-05| -|setup.py|github/IMMM-SFA/mosartwmpy|1.1185682326621925e-05| -|setup.py|github/COVID-IWG/epimargin|1.1185682326621925e-05| -|setup.py|github/SCECcode/pycsep|1.1185682326621925e-05| -|setup.py|github/indralab/pybiopax|1.1185682326621925e-05| -|setup.py|github/qpv-research-group/solcore5|1.1185682326621925e-05| -|setup.py|github/mishioo/tesliper|1.1185682326621925e-05| -|setup.py|github/aiidateam/kiwipy|1.1185682326621925e-05| -|setup.py|github/amusecode/amuse|1.1185682326621925e-05| -|setup.py|github/rodluger/starry_process|1.1185682326621925e-05| -|setup.py|github/skovaka/UNCALLED|1.1185682326621925e-05| -|setup.py|github/glotzerlab/freud|1.1185682326621925e-05| -|setup.py|github/glotzerlab/coxeter|1.1185682326621925e-05| -|setup.py|github/TriPed-Robot/TriP|1.1185682326621925e-05| -|setup.py|github/odb9402/CNNPeaks|1.1185682326621925e-05| -|setup.py|github/AlexMikes/AutoFunc|1.1185682326621925e-05| -|setup.py|github/s-goldman/Dusty-Evolved-Star-Kit|1.1185682326621925e-05| -|setup.py|github/FreBio/komics|1.1185682326621925e-05| -|setup.py|github/Nico-Curti/rFBP|1.1185682326621925e-05| -|setup.py|github/brainets/frites|1.1185682326621925e-05| -|setup.py|github/0xCoto/Virgo|1.1185682326621925e-05| -|setup.py|github/recipy/recipy|1.1185682326621925e-05| -|setup.py|github/abrupt-climate/hyper-canny|1.1185682326621925e-05| -|setup.py|github/athulpg007/AMAT|1.1185682326621925e-05| -|setup.py|github/AlexanderLabWHOI/EUKulele|1.1185682326621925e-05| -|setup.py|github/NKI-CCB/PRECISE|1.1185682326621925e-05| -|setup.py|github/multiscale/muscle3|1.1185682326621925e-05| -|setup.py|github/ni1o1/transbigdata|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/ceiba-cli|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/insilico-server|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/ceiba|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/Moka|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/flamingo|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/swan|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/CAT|1.1185682326621925e-05| -|setup.py|github/HIPS/autograd|1.1185682326621925e-05| -|setup.py|github/sebhaan/geobo|1.1185682326621925e-05| -|setup.py|github/SouthGreenPlatform/PyRice|1.1185682326621925e-05| -|setup.py|github/ml-evs/matador|1.1185682326621925e-05| -|setup.py|github/conda/conda|1.1185682326621925e-05| -|setup.py|github/SCM-NV/qmflows-namd|1.1185682326621925e-05| -|setup.py|github/SCM-NV/qmflows|1.1185682326621925e-05| -|setup.py|github/SCM-NV/pyZacros|1.1185682326621925e-05| -|setup.py|github/RaRe-Technologies/gensim|1.1185682326621925e-05| -|setup.py|github/lantunes/cellpylib|1.1185682326621925e-05| -|setup.py|github/singularityhub/singularity-hpc|1.1185682326621925e-05| -|setup.py|github/singularityhub/singularity-compose|1.1185682326621925e-05| -|setup.py|github/DeltaRCM/pyDeltaRCM|1.1185682326621925e-05| -|setup.py|github/numba/numba|1.1185682326621925e-05| -|setup.py|github/clawpack/clawpack|1.1185682326621925e-05| -|setup.py|github/fruzsinaagocs/oscode|1.1185682326621925e-05| -|setup.py|github/rajeshrinet/pystokes|1.1185682326621925e-05| -|setup.py|github/era-urban/wrfpy|1.1185682326621925e-05| -|setup.py|github/NeuralEnsemble/PyNN|1.1185682326621925e-05| -|setup.py|github/Materials-Consortia/optimade-python-tools|1.1185682326621925e-05| -|setup.py|github/mzy2240/ESA|1.1185682326621925e-05| -|setup.py|github/Electrostatics/apbs|1.1185682326621925e-05| -|setup.py|github/fakedrtom/oncogemini|1.1185682326621925e-05| -|setup.py|github/panoptes-organization/panoptes|1.1185682326621925e-05| -|setup.py|github/circuitgraph/circuitgraph|1.1185682326621925e-05| -|setup.py|github/hiddenSymmetries/simsopt|1.1185682326621925e-05| -|setup.py|github/jiahecui/SenAOReFoc|1.1185682326621925e-05| -|setup.py|github/jollejolles/pirecorder|1.1185682326621925e-05| -|setup.py|github/adbar/htmldate|1.1185682326621925e-05| -|setup.py|github/nlesc/scriptcwl|1.1185682326621925e-05| -|setup.py|github/swiftsim/swiftsimio|1.1185682326621925e-05| -|setup.py|github/nlppln/nlppln|1.1185682326621925e-05| -|setup.py|github/zarr-developers/zarr-python|1.1185682326621925e-05| -|setup.py|github/KALMUS-Color-Toolkit/KALMUS|1.1185682326621925e-05| -|setup.py|github/elwinter/nnde|1.1185682326621925e-05| -|setup.py|github/davidebolo1993/VISOR|1.1185682326621925e-05| -|setup.py|github/davidebolo1993/TRiCoLOR|1.1185682326621925e-05| -|setup.py|github/KathrynJones1/catwoman|1.1185682326621925e-05| -|setup.py|github/medema-group/bigslice|1.1185682326621925e-05| -|setup.py|github/FlowModelingControl/flowtorch|1.1185682326621925e-05| -|setup.py|github/felixchenier/kineticstoolkit|1.1185682326621925e-05| -|setup.py|github/yatiml/yatiml|1.1185682326621925e-05| -|setup.py|github/dpalmasan/TRUNAJOD2.0|1.1185682326621925e-05| -|setup.py|github/fitbenchmarking/fitbenchmarking|1.1185682326621925e-05| -|setup.py|github/ketch/nodepy|1.1185682326621925e-05| -|setup.py|github/Theano/Theano|1.1185682326621925e-05| -|setup.py|github/jianhuupenn/SpaGCN|1.1185682326621925e-05| -|setup.py|github/opimwue/ddop|1.1185682326621925e-05| -|setup.py|github/ModellingWebLab/chaste-codegen|1.1185682326621925e-05| -|setup.py|github/SynthSys/pyOmeroUpload|1.1185682326621925e-05| -|setup.py|github/RTIInternational/gobbli|1.1185682326621925e-05| -|setup.py|github/ConorMacBride/mcalf|1.1185682326621925e-05| -|setup.py|github/ComparativeGenomicsToolkit/cactus|1.1185682326621925e-05| -|setup.py|github/htjb/maxsmooth|1.1185682326621925e-05| -|setup.py|github/parallelwindfarms/byteparsing|1.1185682326621925e-05| -|setup.py|github/fermisurfaces/IFermi|1.1185682326621925e-05| -|setup.py|github/jbuisine/macop|1.1185682326621925e-05| -|setup.py|github/BritishGeologicalSurvey/pyvolcans|1.1185682326621925e-05| -|setup.py|github/meinardmueller/libfmp|1.1185682326621925e-05| -|setup.py|github/meinardmueller/synctoolbox|1.1185682326621925e-05| -|setup.py|github/EISy-as-Py/hardy|1.1185682326621925e-05| -|setup.py|github/ERA-URBAN/fm128_radar|1.1185682326621925e-05| -|setup.py|github/arabic-digital-humanities/adhtools|1.1185682326621925e-05| -|setup.py|github/JohannesBuchner/BXA|1.1185682326621925e-05| -|setup.py|github/spyder-ide/spyder|1.1185682326621925e-05| -|setup.py|github/shirtsgroup/physical_validation|1.1185682326621925e-05| -|setup.py|github/Singh-Lab/DeMaSk|1.1185682326621925e-05| -|setup.py|github/aspuru-guzik-group/funsies|1.1185682326621925e-05| -|setup.py|github/bethgelab/foolbox|1.1185682326621925e-05| -|setup.py|github/ynop/audiomate|1.1185682326621925e-05| -|setup.py|github/PfizerRD/sit2standpy|1.1185682326621925e-05| -|setup.py|github/shilpagarg/WHdenovo|1.1185682326621925e-05| -|setup.py|github/bio-ontology-research-group/deepgoplus|1.1185682326621925e-05| -|setup.py|github/samaygarg/fuelcell|1.1185682326621925e-05| -|setup.py|github/mscroggs/symfem|1.1185682326621925e-05| -|setup.py|github/comprna/reorientexpress|1.1185682326621925e-05| -|setup.py|github/cupy/cupy|1.1185682326621925e-05| -|setup.py|github/edwardoughton/itmlogic|1.1185682326621925e-05| -|setup.py|github/3D-e-Chem/sygma|1.1185682326621925e-05| -|setup.py|github/3D-e-Chem/kripodb|1.1185682326621925e-05| -|setup.py|github/DynaSlum/satsense|1.1185682326621925e-05| -|setup.py|github/coljac/sensie|1.1185682326621925e-05| -|setup.py|github/CEED/libCEED|1.1185682326621925e-05| -|setup.py|github/aalhossary/pyemgpipeline|1.1185682326621925e-05| -|setup.py|github/easybuilders/easybuild|1.1185682326621925e-05| -|setup.py|github/dmnfarrell/snpgenie|1.1185682326621925e-05| -|setup.py|github/dmnfarrell/epitopepredict|1.1185682326621925e-05| -|setup.py|github/HillLab/SomaticSiMu|1.1185682326621925e-05| -|setup.py|github/compomics/DeepLC|1.1185682326621925e-05| -|setup.py|github/zdelrosario/py_grama|1.1185682326621925e-05| -|setup.py|github/nicolet5/DiffCapAnalyzer|1.1185682326621925e-05| -|setup.py|github/DrMarc/slab|1.1185682326621925e-05| -|setup.py|github/SirSharpest/NarrowEscapeSimulator|1.1185682326621925e-05| -|setup.py|github/antoinediez/Sisyphe|1.1185682326621925e-05| -|setup.py|github/TPI-Immunogenetics/igmat|1.1185682326621925e-05| -|setup.py|github/BackmanLab/PWSpy|1.1185682326621925e-05| -|setup.py|github/IKNL/vantage6|1.1185682326621925e-05| -|setup.py|github/matplotlib/matplotlib|1.1185682326621925e-05| -|setup.py|github/LiberTEM/LiberTEM|1.1185682326621925e-05| -|setup.py|github/virgesmith/neworder|1.1185682326621925e-05| -|setup.py|github/smog-server/OpenSMOG|1.1185682326621925e-05| -|setup.py|github/volkamerlab/opencadd|1.1185682326621925e-05| -|setup.py|github/kerkelae/disimpy|1.1185682326621925e-05| -|setup.py|github/NLeSC/noodles|1.1185682326621925e-05| -|setup.py|github/NLeSC/mcfly|1.1185682326621925e-05| -|setup.py|github/NLeSC/cptm|1.1185682326621925e-05| -|setup.py|github/NLeSC/boatswain|1.1185682326621925e-05| -|setup.py|github/NLeSC/Massive-PotreeConverter|1.1185682326621925e-05| -|setup.py|github/idptools/metapredict|1.1185682326621925e-05| -|setup.py|github/eWaterCycle/grpc4bmi|1.1185682326621925e-05| -|setup.py|github/eWaterCycle/jupyterlab_thredds|1.1185682326621925e-05| -|setup.py|github/EpistasisLab/regens|1.1185682326621925e-05| -|setup.py|github/EpistasisLab/tpot|1.1185682326621925e-05| -|setup.py|github/BartoszBartmanski/StoSpa2|1.1185682326621925e-05| -|setup.py|github/BioSTEAMDevelopmentGroup/thermosteam|1.1185682326621925e-05| -|setup.py|github/girder/viime|1.1185682326621925e-05| -|setup.py|github/AA-ALERT/frbcatdb|1.1185682326621925e-05| -|setup.py|github/PyPSA/atlite|1.1185682326621925e-05| -|setup.py|github/ORNL/tx2|1.1185682326621925e-05| -|setup.py|github/Yu-Group/veridical-flow|1.1185682326621925e-05| -|setup.py|github/hknd23/idcempy|1.1185682326621925e-05| -|setup.py|github/MrMinimal64/multivar_horner|1.1185682326621925e-05| -|setup.py|github/popgenmethods/smcpp|1.1185682326621925e-05| -|setup.py|github/rgerum/pylustrator|1.1185682326621925e-05| -|setup.py|github/eScatter/pyelsepa|1.1185682326621925e-05| -|setup.py|github/MD-Studio/cerulean|1.1185682326621925e-05| -|setup.py|github/KIT-MBS/pyREX|1.1185682326621925e-05| -|setup.py|github/ekaterinailin/AltaiPony|1.1185682326621925e-05| -|setup.py|github/benhid/Sequoya|1.1185682326621925e-05| -|setup.py|github/linqs/psl|1.1185682326621925e-05| -|setup.py|github/21cmFAST/21cmFAST|1.1185682326621925e-05| -|setup.py|github/jmschrei/pomegranate|1.1185682326621925e-05| -|setup.py|github/OpenMDAO/dymos|1.1185682326621925e-05| -|setup.py|github/bio-phys/BioEn|1.1185682326621925e-05| -|setup.py|github/tariqdaouda/CAMAP|1.1185682326621925e-05| -|setup.py|github/fair-software/howfairis|1.1185682326621925e-05| -|setup.py|github/fair-software/fairtally|1.1185682326621925e-05| -|setup.py|github/samuelefiorini/tangle|1.1185682326621925e-05| -|setup.py|github/colour-science/colour|1.1185682326621925e-05| -|setup.py|github/chasmani/piecewise-regression|1.1185682326621925e-05| -|setup.py|github/stammler/simframe|1.1185682326621925e-05| -|setup.py|github/MillionConcepts/lhorizon|1.1185682326621925e-05| -|setup.py|github/mjacob1002/Eir|1.1185682326621925e-05| -|setup.py|github/symmy596/SurfinPy|1.1185682326621925e-05| -|setup.py|github/symmy596/Polypy|1.1185682326621925e-05| -|setup.py|github/szymon-datalions/pyinterpolate|1.1185682326621925e-05| -|setup.py|github/rgmyr/corebreakout|1.1185682326621925e-05| -|setup.py|github/dynamicslab/pysindy|1.1185682326621925e-05| -|setup.py|github/tool-bin/ukbcc|1.1185682326621925e-05| -|setup.py|github/neuralhydrology/neuralhydrology|1.1185682326621925e-05| -|setup.py|github/wdecoster/nanopack|1.1185682326621925e-05| -|setup.py|github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY|1.1185682326621925e-05| -|setup.py|github/rhayes777/PyAutoFit|1.1185682326621925e-05| -|setup.py|github/dmey/synthia|1.1185682326621925e-05| -|setup.py|github/sambit-giri/tools21cm|1.1185682326621925e-05| -|setup.py|github/nlesc-ave/ave-rest-service|1.1185682326621925e-05| -|setup.py|github/Filter-Bubble/e2e-Dutch|1.1185682326621925e-05| -|setup.py|github/cdslaborg/paramonte|1.1185682326621925e-05| -|setup.py|github/snakemake/snakemake|1.1185682326621925e-05| -|setup.py|github/thejasvibr/bat_beamshapes|1.1185682326621925e-05| -|setup.py|github/actris-cloudnet/cloudnetpy|1.1185682326621925e-05| -|setup.py|github/xenon-middleware/pyxenon|1.1185682326621925e-05| -|setup.py|github/DrafProject/elmada|1.1185682326621925e-05| -|setup.py|github/equib/pyEQUIB|1.1185682326621925e-05| -|setup.py|github/dfujim/bfit|1.1185682326621925e-05| -|setup.py|github/atomneb/AtomNeb-py|1.1185682326621925e-05| -|setup.py|github/oschwengers/referenceseeker|1.1185682326621925e-05| -|setup.py|github/oschwengers/platon|1.1185682326621925e-05| -|setup.py|github/oschwengers/bakta|1.1185682326621925e-05| -|setup.py|github/Effective-Quadratures/Effective-Quadratures|1.1185682326621925e-05| -|setup.py|github/AlphonsG/Rainbow-Optical-Flow-For-ALI|1.1185682326621925e-05| -|setup.py|github/fAndreuzzi/BisPy|1.1185682326621925e-05| -|setup.py|github/KBNLresearch/ochre|1.1185682326621925e-05| -|setup.py|github/CLARIAH/grlc|1.1185682326621925e-05| -|setup.py|github/carlosborca/CrystaLattE|1.1185682326621925e-05| -|setup.py|github/Oftatkofta/cellocity|1.1185682326621925e-05| -|setup.py|github/biocore/scikit-bio|1.1185682326621925e-05| -|setup.py|github/raspishake/rsudp|1.1185682326621925e-05| -|setup.py|github/davemlz/eemont|1.1185682326621925e-05| -|setup.py|github/LBNL-ETA/MSWH|1.1185682326621925e-05| -|setup.py|github/ghislainv/forestatrisk|1.1185682326621925e-05| -|setup.py|github/Kuifje02/vrpy|1.1185682326621925e-05| -|setup.py|github/bootphon/phonemizer|1.1185682326621925e-05| -|setup.py|github/fair-data/fairdatapoint-client|1.1185682326621925e-05| -|setup.py|github/cabb99/open3spn2|1.1185682326621925e-05| -|setup.py|github/benvanwerkhoven/kernel_tuner|1.1185682326621925e-05| -|setup.py|github/CFSAN-Biostatistics/SeroTools|1.1185682326621925e-05| -|setup.py|github/iomega/spec2vec|1.1185682326621925e-05| -|setup.py|github/SMTG-UCL/surfaxe|1.1185682326621925e-05| -|setup.py|github/lkmklsmn/DrivAER|1.1185682326621925e-05| -|setup.py|github/Bahler-Lab/pyphe|1.1185682326621925e-05| -|setup.py|github/FSEC-Photovoltaics/pvrpm-lcoe|1.1185682326621925e-05| -|setup.py|github/wilkelab/Opfi|1.1185682326621925e-05| -|setup.py|github/radifar/PyPLIF-HIPPOS|1.1185682326621925e-05| -|setup.py|github/jorisparet/partycls|1.1185682326621925e-05| -|setup.py|github/exafmm/exafmm-t|1.1185682326621925e-05| -|setup.py|github/scipion-em/scipion-em-continuousflex|1.1185682326621925e-05| -|setup.py|github/ElectionDataAnalysis/electiondata|1.1185682326621925e-05| -|setup.py|github/elkebir-group/Jumper|1.1185682326621925e-05| -|setup.py|github/richteague/disksurf|1.1185682326621925e-05| -|setup.py|github/RamanLab/iCOMIC|1.1185682326621925e-05| -|setup.py|github/DeepRank/pdb2sql|1.1185682326621925e-05| -|setup.py|github/DeepRank/pssmgen|1.1185682326621925e-05| -|setup.py|github/DeepRank/DeepRank-GNN|1.1185682326621925e-05| -|setup.py|github/DeepRank/deeprank|1.1185682326621925e-05| -|setup.py|github/DeepRank/iScore|1.1185682326621925e-05| -|setup.py|github/pybamm-team/liionpack|1.1185682326621925e-05| -|setup.py|github/weecology/retriever|1.1185682326621925e-05| -|setup.py|github/matchms/ms2deepscore|1.1185682326621925e-05| -|setup.py|github/matchms/matchms|1.1185682326621925e-05| -|setup.py|github/sagepublishing/rejected_article_tracker_pkg|1.1185682326621925e-05| -|setup.py|github/icecube/FIRESONG|1.1185682326621925e-05| -|setup.py|gitlab/BioimageInformaticsGroup/openphi|1.1185682326621925e-05| -|setup.py|gitlab/jason-rumengan/pyarma|1.1185682326621925e-05| -|setup.py|gitlab/Molcas/OpenMolcas|1.1185682326621925e-05| -|setup.py|gitlab/gims-developers/gims|1.1185682326621925e-05| -|setup.py|gitlab/picos-api/picos|1.1185682326621925e-05| -|setup.py|gitlab/octopus-code/octopus|1.1185682326621925e-05| -|setup.py|gitlab/fduchate/predihood|1.1185682326621925e-05| -|DESCRIPTION|github/OwenWard/ppdiag|1.1185682326621925e-05| -|DESCRIPTION|github/SwissClinicalTrialOrganisation/secuTrialR|1.1185682326621925e-05| -|DESCRIPTION|github/VincentAlcazer/StatAid|1.1185682326621925e-05| -|DESCRIPTION|github/zoometh/iconr|1.1185682326621925e-05| -|DESCRIPTION|github/tidymodels/infer|1.1185682326621925e-05| -|DESCRIPTION|github/bommert/stabm|1.1185682326621925e-05| -|DESCRIPTION|github/Dulab2020/ARMT|1.1185682326621925e-05| -|DESCRIPTION|github/IMMM-SFA/gamut|1.1185682326621925e-05| -|DESCRIPTION|github/SJTU-CGM/ivTerm|1.1185682326621925e-05| -|DESCRIPTION|github/r-cas/caracas|1.1185682326621925e-05| -|DESCRIPTION|github/sachsmc/cosinor|1.1185682326621925e-05| -|DESCRIPTION|github/metaOmics/MetaPath|1.1185682326621925e-05| -|DESCRIPTION|github/dgrun/FateID|1.1185682326621925e-05| -|DESCRIPTION|github/stemangiola/tidyHeatmap|1.1185682326621925e-05| -|DESCRIPTION|github/ropenscilabs/gendercoder|1.1185682326621925e-05| -|DESCRIPTION|github/ropenscilabs/qcoder|1.1185682326621925e-05| -|DESCRIPTION|github/ropenscilabs/allcontributors|1.1185682326621925e-05| -|DESCRIPTION|github/ropenscilabs/r2readthedocs|1.1185682326621925e-05| -|DESCRIPTION|github/tbep-tech/tbeptools|1.1185682326621925e-05| -|DESCRIPTION|github/flosalbizziae/kataegis|1.1185682326621925e-05| -|DESCRIPTION|github/pratheesh3780/grapesAgri1|1.1185682326621925e-05| -|DESCRIPTION|github/cran/irtplay|1.1185682326621925e-05| -|DESCRIPTION|github/GaryBAYLOR/mixR|1.1185682326621925e-05| -|DESCRIPTION|github/tlverse/hal9001|1.1185682326621925e-05| -|DESCRIPTION|github/wadpac/GGIR|1.1185682326621925e-05| -|DESCRIPTION|github/CTU-Bern/presize|1.1185682326621925e-05| -|DESCRIPTION|github/samhforbes/PupillometryR|1.1185682326621925e-05| -|DESCRIPTION|github/radio1988/OneStopRNAseq|1.1185682326621925e-05| -|DESCRIPTION|github/ejikeugba/serp|1.1185682326621925e-05| -|DESCRIPTION|github/humanfactors/FIPS|1.1185682326621925e-05| -|DESCRIPTION|github/BrianAronson/birankr|1.1185682326621925e-05| -|DESCRIPTION|github/DidierMurilloF/FielDHub|1.1185682326621925e-05| -|DESCRIPTION|github/haoharryfeng/NeuCA|1.1185682326621925e-05| -|DESCRIPTION|github/constantAmateur/SoupX|1.1185682326621925e-05| -|DESCRIPTION|github/anwarbio/bioassays|1.1185682326621925e-05| -|DESCRIPTION|github/jessecambon/tidygeocoder|1.1185682326621925e-05| -|DESCRIPTION|github/rhenkin/visxhclust|1.1185682326621925e-05| -|DESCRIPTION|github/r-spatialecology/shar|1.1185682326621925e-05| -|DESCRIPTION|github/mdsteiner/EFAtools|1.1185682326621925e-05| -|DESCRIPTION|github/koenderks/jaspAudit|1.1185682326621925e-05| -|DESCRIPTION|github/JonasRieger/ldaPrototype|1.1185682326621925e-05| -|DESCRIPTION|github/bcgov/shinyssdtools|1.1185682326621925e-05| -|DESCRIPTION|github/bcgov/bcdata|1.1185682326621925e-05| -|DESCRIPTION|github/vbaliga/gaussplotR|1.1185682326621925e-05| -|DESCRIPTION|github/IndrajeetPatil/ggstatsplot|1.1185682326621925e-05| -|DESCRIPTION|github/IndrajeetPatil/statsExpressions|1.1185682326621925e-05| -|DESCRIPTION|github/kadyb/rgugik|1.1185682326621925e-05| -|DESCRIPTION|github/rickhelmus/patRoon|1.1185682326621925e-05| -|DESCRIPTION|github/TomKellyGenetics/graphsim|1.1185682326621925e-05| -|DESCRIPTION|github/tinglabs/scAIDE|1.1185682326621925e-05| -|DESCRIPTION|github/fumi-github/omicwas|1.1185682326621925e-05| -|DESCRIPTION|github/lrnv/cort|1.1185682326621925e-05| -|DESCRIPTION|github/mmahmoudian/sivs|1.1185682326621925e-05| -|DESCRIPTION|github/lydialucchesi/Vizumap|1.1185682326621925e-05| -|DESCRIPTION|github/VNNikolaidis/nnlib2Rcpp|1.1185682326621925e-05| -|DESCRIPTION|github/ecological-cities/home2park|1.1185682326621925e-05| -|DESCRIPTION|github/BMILAB/scLINE|1.1185682326621925e-05| -|DESCRIPTION|github/ColemanRHarris/mxnorm|1.1185682326621925e-05| -|DESCRIPTION|github/RajLabMSSM/echolocatoR|1.1185682326621925e-05| -|DESCRIPTION|github/r-spatial/rgee|1.1185682326621925e-05| -|DESCRIPTION|github/SofieVG/FlowSOM|1.1185682326621925e-05| -|DESCRIPTION|github/weizhouUMICH/SAIGE|1.1185682326621925e-05| -|DESCRIPTION|github/SchlossLab/mikropml|1.1185682326621925e-05| -|DESCRIPTION|github/mcsiple/mmrefpoints|1.1185682326621925e-05| -|DESCRIPTION|github/nhejazi/medoutcon|1.1185682326621925e-05| -|DESCRIPTION|github/nhejazi/txshift|1.1185682326621925e-05| -|DESCRIPTION|github/abschneider/StrainHub|1.1185682326621925e-05| -|DESCRIPTION|github/bblodfon/emba|1.1185682326621925e-05| -|DESCRIPTION|github/tgrimes/SeqNet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-archive/monkeylearn|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-archive/reviewer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-archive/rodev|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-archive/arresteddev|1.1185682326621925e-05| -|DESCRIPTION|github/julia-wrobel/registr|1.1185682326621925e-05| -|DESCRIPTION|github/VBlesius/RHRT|1.1185682326621925e-05| -|DESCRIPTION|github/kendomaniac/rCASC|1.1185682326621925e-05| -|DESCRIPTION|github/kendomaniac/docker4seq|1.1185682326621925e-05| -|DESCRIPTION|github/CornellLabofOrnithology/auk|1.1185682326621925e-05| -|DESCRIPTION|github/oneilsh/tidytensor|1.1185682326621925e-05| -|DESCRIPTION|github/YuLab-SMU/treeio|1.1185682326621925e-05| -|DESCRIPTION|github/cjbarrie/academictwitteR|1.1185682326621925e-05| -|DESCRIPTION|github/epiforecasts/covidregionaldata|1.1185682326621925e-05| -|DESCRIPTION|github/andyphilips/dynamac|1.1185682326621925e-05| -|DESCRIPTION|github/ShixiangWang/sigminer|1.1185682326621925e-05| -|DESCRIPTION|github/ezer/PAFway|1.1185682326621925e-05| -|DESCRIPTION|github/snystrom/memes|1.1185682326621925e-05| -|DESCRIPTION|github/dankelley/oce|1.1185682326621925e-05| -|DESCRIPTION|github/rcarragh/c212|1.1185682326621925e-05| -|DESCRIPTION|github/johannes-titz/cofad|1.1185682326621925e-05| -|DESCRIPTION|github/Jinsl-lab/SDImpute|1.1185682326621925e-05| -|DESCRIPTION|github/meenakshi-kushwaha/mmaqshiny|1.1185682326621925e-05| -|DESCRIPTION|github/donaldRwilliams/BGGM|1.1185682326621925e-05| -|DESCRIPTION|github/donaldRwilliams/GGMnonreg|1.1185682326621925e-05| -|DESCRIPTION|github/ants-project/ANTs|1.1185682326621925e-05| -|DESCRIPTION|github/JSB-UCLA/scPNMF|1.1185682326621925e-05| -|DESCRIPTION|github/NLeSC/compressing-the-sky|1.1185682326621925e-05| -|DESCRIPTION|github/NLeSC/EEG-epilepsy-diagnosis|1.1185682326621925e-05| -|DESCRIPTION|github/takfung/ResDisMapper|1.1185682326621925e-05| -|DESCRIPTION|github/ClaudioZandonella/PRDA|1.1185682326621925e-05| -|DESCRIPTION|github/RETURN-project/BenchmarkRecovery|1.1185682326621925e-05| -|DESCRIPTION|github/HajkD/LTRpred|1.1185682326621925e-05| -|DESCRIPTION|github/OrlandoLam/SAMT|1.1185682326621925e-05| -|DESCRIPTION|github/insilico/cncv|1.1185682326621925e-05| -|DESCRIPTION|github/KiranLDA/PAMLr|1.1185682326621925e-05| -|DESCRIPTION|github/MRCIEU/metaboprep|1.1185682326621925e-05| -|DESCRIPTION|github/zhouzilu/DENDRO|1.1185682326621925e-05| -|DESCRIPTION|github/Hegghammer/daiR|1.1185682326621925e-05| -|DESCRIPTION|github/ComtekAdvancedStructures/cmstatr|1.1185682326621925e-05| -|DESCRIPTION|github/r-lib/credentials|1.1185682326621925e-05| -|DESCRIPTION|github/r-lib/gert|1.1185682326621925e-05| -|DESCRIPTION|github/MAnalytics/akmedoids|1.1185682326621925e-05| -|DESCRIPTION|github/MAnalytics/opitools|1.1185682326621925e-05| -|DESCRIPTION|github/mingzehuang/latentcor|1.1185682326621925e-05| -|DESCRIPTION|github/raredd/kmdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-org/pkgreviewr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-org/rotemplate|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-org/roblog|1.1185682326621925e-05| -|DESCRIPTION|github/asancpt/caffsim|1.1185682326621925e-05| -|DESCRIPTION|github/wesleyburr/subMaldi|1.1185682326621925e-05| -|DESCRIPTION|github/easystats/effectsize|1.1185682326621925e-05| -|DESCRIPTION|github/easystats/parameters|1.1185682326621925e-05| -|DESCRIPTION|github/easystats/correlation|1.1185682326621925e-05| -|DESCRIPTION|github/easystats/performance|1.1185682326621925e-05| -|DESCRIPTION|github/arcaldwell49/SimplyAgree|1.1185682326621925e-05| -|DESCRIPTION|github/adithirgis/pollucheck|1.1185682326621925e-05| -|DESCRIPTION|github/IMB-Computational-Genomics-Lab/scGPS|1.1185682326621925e-05| -|DESCRIPTION|github/aranyics/ReDCM|1.1185682326621925e-05| -|DESCRIPTION|github/pmoulos/metaseqR2|1.1185682326621925e-05| -|DESCRIPTION|github/USEPA/nsink|1.1185682326621925e-05| -|DESCRIPTION|github/mrc-ide/individual|1.1185682326621925e-05| -|DESCRIPTION|github/niceume/datasailr|1.1185682326621925e-05| -|DESCRIPTION|github/hope-data-science/tidyfst|1.1185682326621925e-05| -|DESCRIPTION|github/yiling0210/APIR|1.1185682326621925e-05| -|DESCRIPTION|github/isoverse/isoreader|1.1185682326621925e-05| -|DESCRIPTION|github/alan-turing-institute/DetectorChecker|1.1185682326621925e-05| -|DESCRIPTION|github/azizka/IUCNN|1.1185682326621925e-05| -|DESCRIPTION|github/mlr-org/mcboost|1.1185682326621925e-05| -|DESCRIPTION|github/xoopR/set6|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/pkgstats|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/srr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/pkgcheck|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/roreviewapi|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/autotest|1.1185682326621925e-05| -|DESCRIPTION|github/JGCRI/rfasst|1.1185682326621925e-05| -|DESCRIPTION|github/JGCRI/plutus|1.1185682326621925e-05| -|DESCRIPTION|github/JGCRI/ambrosia|1.1185682326621925e-05| -|DESCRIPTION|github/ArkajyotiSaha/RandomForestsGLS|1.1185682326621925e-05| -|DESCRIPTION|github/alexander-pastukhov/bistablehistory|1.1185682326621925e-05| -|DESCRIPTION|github/nevrome/bleiglas|1.1185682326621925e-05| -|DESCRIPTION|github/saeyslab/nichenetr|1.1185682326621925e-05| -|DESCRIPTION|github/saeyslab/PeacoQC|1.1185682326621925e-05| -|DESCRIPTION|github/prdm0/ropenblas|1.1185682326621925e-05| -|DESCRIPTION|github/Sydney-Informatics-Hub/OmixLitMiner|1.1185682326621925e-05| -|DESCRIPTION|github/rauschenberger/joinet|1.1185682326621925e-05| -|DESCRIPTION|github/jorittmo/singcar|1.1185682326621925e-05| -|DESCRIPTION|github/tidyverse/glue|1.1185682326621925e-05| -|DESCRIPTION|github/llrs/experDesign|1.1185682326621925e-05| -|DESCRIPTION|github/martin3141/spant|1.1185682326621925e-05| -|DESCRIPTION|github/LindaNab/mecor|1.1185682326621925e-05| -|DESCRIPTION|github/GabrielNakamura/FishPhyloMaker|1.1185682326621925e-05| -|DESCRIPTION|github/david-barnett/microViz|1.1185682326621925e-05| -|DESCRIPTION|github/ArgoCanada/argodata|1.1185682326621925e-05| -|DESCRIPTION|github/akcochrane/TEfits|1.1185682326621925e-05| -|DESCRIPTION|github/saezlab/PHONEMeS|1.1185682326621925e-05| -|DESCRIPTION|github/signaturescience/skater|1.1185682326621925e-05| -|DESCRIPTION|github/timoast/signac|1.1185682326621925e-05| -|DESCRIPTION|github/dpseidel/stmove|1.1185682326621925e-05| -|DESCRIPTION|github/ramadatta/CPgeneProfiler|1.1185682326621925e-05| -|DESCRIPTION|github/lasseignelab/CINmetrics|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/phylocomr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/webmockr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gistr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnaturalearthhires|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cffr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/comtradr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/FedData|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rfigshare|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nasapower|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxlist|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/unrtf|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/wateRinfo|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/wdman|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcoreoa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/awardFindR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/katex|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ijtiff|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/lingtypology|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/qualtRics|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/GSODR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rrlite|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gittargets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rtweet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnoaa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/antiword|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bittrex|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mcbette|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/geonames|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jstor|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/baRcodeR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/clifro|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/plotly|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/opencontext|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/chromer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/robotstxt|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/osmdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/coder|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rbhl|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/hunspell|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/visdat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tacmagic|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/binman|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/riem|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/restez|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mregions|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pdftools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rentrez|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/writexl|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/magick|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rfisheries|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/eia|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/git2r|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/refsplitr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/geojsonio|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/colocr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/osmplotr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/osmextract|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/oai|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/beautier|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/finch|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rromeo|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tic|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/workloopR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rgbif|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/emld|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ecoengine|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/seasl|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tif|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jsonvalidate|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/CoordinateCleaner|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/RNeXML|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bikedata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/AntWeb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/spatsoc|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/hydroscoper|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tesseract|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rsnps|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/git2rdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/essurvey|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rperseus|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/codemetar|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cde|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cRegulome|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/graphql|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tiler|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/isdparser|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/phylogram|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mapr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jsonld|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/treestartr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/DataPackageR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/assertr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnaturalearthdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/getlandsat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/worrms|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rtika|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pangaear|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/BaseSet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cld3|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rzmq|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/chirps|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/textreuse|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rerddap|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/fulltext|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rppo|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/microdemic|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnaturalearth|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rebird|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/biomartr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/DataSpaceR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/hoardr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rorcid|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bowerbird|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ruODK|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rplos|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dataaimsr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/skimr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/internetarchive|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcites|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/phonfieldwork|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/elastic|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/stantargets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tabulizer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/treebase|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ckanr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/DoOR.data|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bibtex|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/phylotaR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdataretriever|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/skynet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/NLMR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gtfsr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/outcomerate|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mctq|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dbparser|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/arkdb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/RSelenium|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/fauxpas|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/opencv|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cyphr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rfema|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxadb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/terrainr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/osfr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bold|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dataspice|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/iheatmapr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/opencage|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ramlegacy|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/allodb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdryad|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jenkins|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/circle|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rmangal|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/zbank|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/spelling|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/paleobioDB|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/qpdf|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdatacite|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tidypmc|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/photosearcher|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/USAboundariesData|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rWBclimate|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pathviewr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/refimpact|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxizedb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/historydata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/censo2017|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/helminthR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ssh|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/opentripplanner|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ghql|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/natserv|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/excluder|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rotl|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cchecks|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/popler|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/outsider|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nbaR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/europepmc|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/spocc|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/brranching|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/epubr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/Rclean|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rusda|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jagstargets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/plater|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/av|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/outsider.base|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rglobi|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tokenizers|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rsat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/MtreeRing|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ots|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/smapr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/wellknown|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/MODISTools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/medrxivr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/infx|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/timefuzz|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/fingertipsR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/randgeo|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/chlorpromazineR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/suppdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnpn|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcrossref|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/PostcodesioR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/slopes|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nlrx|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/exoplanets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/landscapetools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/staypuft|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/treedata.table|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/getCRUCLdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/parzer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bib2df|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/RefManageR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/vcr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/solrium|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tinkr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/citesdb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/piggyback|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdflib|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/drake|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/hddtools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/EndoMineR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/beastier|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rgnparser|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/camsRad|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/neotoma|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/xslt|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/USAboundaries|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ezknitr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tidync|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rvertnet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/UCSCXenaTools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pixelclasser|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/citecorp|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gitignore|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jqr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/stats19|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cld2|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/outsider.devtools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pubchunks|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/geojsonlint|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxview|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nodbi|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/MODIStsp|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/targets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/addressable|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/Rpolyhedra|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rfishbase|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/SymbiotaR2|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdhs|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/prism|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxize|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/patentsview|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cleanEHR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/aRxiv|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/onekp|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/handlr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/scrubr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/lightr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ritis|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdefra|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rAvis|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/c14bazAAR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/datapack|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mapscanner|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/grainchanger|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/sofa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnassqs|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcol|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/antanym|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/crul|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rAltmetric|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bomrang|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/namext|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tradestatistics|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gutenbergr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/DoOR.functions|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rgpdd|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/wikitaxa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rbace|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/trufflesniffer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tracerer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dittodb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rinat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rrricanesdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pendulum|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dbhydroR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tidyhydat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rredlist|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/babette|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/weathercan|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/charlatan|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/traits|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mauricer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/stplanr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/webchem|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rrricanes|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/roadoi|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tarchetypes|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/EML|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/virtuoso|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcitoid|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/conditionz|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/googleLanguageR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nomisr|1.1185682326621925e-05| -|DESCRIPTION|github/msalibian/RBF|1.1185682326621925e-05| -|DESCRIPTION|github/chainsawriot/sweater|1.1185682326621925e-05| -|DESCRIPTION|github/chainsawriot/oolong|1.1185682326621925e-05| -|DESCRIPTION|gitlab/ampere2/metalwalls|1.1185682326621925e-05| -|DESCRIPTION|gitlab/libreumg/dataquier|1.1185682326621925e-05| -|requirements.txt|github/lutteropp/NetRAX|1.1185682326621925e-05| -|requirements.txt|github/DSIMB/medusa|1.1185682326621925e-05| -|requirements.txt|github/ggciag/mandyoc|1.1185682326621925e-05| -|requirements.txt|github/TinkerTools/tinker9|1.1185682326621925e-05| -|requirements.txt|github/BioGearsEngine/core|1.1185682326621925e-05| -|requirements.txt|github/neuroanatomy/reorient|1.1185682326621925e-05| -|requirements.txt|github/nextstrain/nextclade|1.1185682326621925e-05| -|requirements.txt|github/mswzeus/TargetNet|1.1185682326621925e-05| -|requirements.txt|github/LSARP/ProteomicsQC|1.1185682326621925e-05| -|requirements.txt|github/JLiangLab/TransVW|1.1185682326621925e-05| -|requirements.txt|github/TeamCOMPAS/COMPAS|1.1185682326621925e-05| -|requirements.txt|github/Rohit-Kundu/ET-NET_Covid-Detection|1.1185682326621925e-05| -|requirements.txt|github/SPARC-FAIR-Codeathon/aqua|1.1185682326621925e-05| -|requirements.txt|github/Julian/jsonschema|1.1185682326621925e-05| -|requirements.txt|github/shandley/hecatomb|1.1185682326621925e-05| -|requirements.txt|github/singularityhub/sregistry|1.1185682326621925e-05| -|requirements.txt|github/MRChemSoft/mrchem|1.1185682326621925e-05| -|requirements.txt|github/CouncilDataProject/cookiecutter-cdp-deployment|1.1185682326621925e-05| -|requirements.txt|github/GilbertLabUCSF/CanDI|1.1185682326621925e-05| -|requirements.txt|github/citation-file-format/citation-file-format|1.1185682326621925e-05| -|requirements.txt|github/gvilitechltd/LibSWIFFT|1.1185682326621925e-05| -|requirements.txt|github/diCenzo-GC/Tn-Core-webserver|1.1185682326621925e-05| -|requirements.txt|github/ImperialCollegeLondon/champ|1.1185682326621925e-05| -|requirements.txt|github/broadinstitute/cromwell|1.1185682326621925e-05| -|requirements.txt|github/nlesc/embodied-emotions-scripts|1.1185682326621925e-05| -|requirements.txt|github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs|1.1185682326621925e-05| -|requirements.txt|github/he2016012996/CABnet|1.1185682326621925e-05| -|requirements.txt|github/ketch/RK-Opt|1.1185682326621925e-05| -|requirements.txt|github/arnikz/PIQMIe|1.1185682326621925e-05| -|requirements.txt|github/SWIFTSIM/emulator|1.1185682326621925e-05| -|requirements.txt|github/3d-pli/fastpli|1.1185682326621925e-05| -|requirements.txt|github/amrex-astro/Castro|1.1185682326621925e-05| -|requirements.txt|github/Single-Cell-Graph-Learning/scSGL|1.1185682326621925e-05| -|requirements.txt|github/AMReX-Astro/Nyx|1.1185682326621925e-05| -|requirements.txt|github/snowformatics/macrobot|1.1185682326621925e-05| -|requirements.txt|github/monarch-initiative/loinc2hpo|1.1185682326621925e-05| -|requirements.txt|github/hemanthpruthvi/PyAstroPol|1.1185682326621925e-05| -|requirements.txt|github/wmglab-duke/ascent|1.1185682326621925e-05| -|requirements.txt|github/villano-lab/nrCascadeSim|1.1185682326621925e-05| -|requirements.txt|github/SuLab/Wikidata-phenomizer|1.1185682326621925e-05| -|requirements.txt|github/iontorrent/TS|1.1185682326621925e-05| -|requirements.txt|github/NLeSC-GO-common-infrastructure/marzipan|1.1185682326621925e-05| -|requirements.txt|github/CAMI-challenge/CAMITAX|1.1185682326621925e-05| -|requirements.txt|github/PolymerGuy/recolo|1.1185682326621925e-05| -|requirements.txt|github/NLeSC/ShiCo|1.1185682326621925e-05| -|requirements.txt|github/jdber1/opendrop|1.1185682326621925e-05| -|requirements.txt|github/csbioinfopk/iSumoK-PseAAC|1.1185682326621925e-05| -|requirements.txt|github/labsyspharm/minerva-story|1.1185682326621925e-05| -|requirements.txt|github/ablab/TandemTools|1.1185682326621925e-05| -|requirements.txt|github/sorenwacker/ProteomicsQC|1.1185682326621925e-05| -|requirements.txt|github/grant-m-s/astronomicAL|1.1185682326621925e-05| -|requirements.txt|github/qMRLab/qMRLab|1.1185682326621925e-05| -|requirements.txt|github/LINNAE-project/SFB-Annotator|1.1185682326621925e-05| -|requirements.txt|github/BioinfoUNIBA/REDItools2|1.1185682326621925e-05| -|requirements.txt|github/onnela-lab/beiwe-backend|1.1185682326621925e-05| -|requirements.txt|github/mms-fcul/PypKa|1.1185682326621925e-05| -|requirements.txt|github/surf-eds/one-button-compute|1.1185682326621925e-05| -|requirements.txt|github/kinnala/scikit-fem|1.1185682326621925e-05| -|requirements.txt|github/UUDigitalHumanitieslab/texcavator|1.1185682326621925e-05| -|requirements.txt|github/andr1976/HydDown|1.1185682326621925e-05| -|requirements.txt|github/ot483/NetCom|1.1185682326621925e-05| -|requirements.txt|github/enveda/RPath|1.1185682326621925e-05| -|requirements.txt|github/inpefess/gym-saturation|1.1185682326621925e-05| -|requirements.txt|github/Narayana-Rao/SAR-tools|1.1185682326621925e-05| -|requirements.txt|github/erikbern/ann-benchmarks|1.1185682326621925e-05| -|requirements.txt|github/learningsimulator/learningsimulator|1.1185682326621925e-05| -|requirements.txt|github/kkjawz/coref-ee|1.1185682326621925e-05| -|requirements.txt|github/STEllAR-GROUP/hpx|1.1185682326621925e-05| -|requirements.txt|github/JuliaHCI/ADI.jl|1.1185682326621925e-05| -|requirements.txt|github/robashaw/libecpint|1.1185682326621925e-05| -|requirements.txt|github/soraxas/sbp-env|1.1185682326621925e-05| -|requirements.txt|github/zhoux85/scAdapt|1.1185682326621925e-05| -|requirements.txt|github/JLBLine/WODEN|1.1185682326621925e-05| -|requirements.txt|github/Climdyn/qgs|1.1185682326621925e-05| -|requirements.txt|gitlab/LouisLab/PiVR|1.1185682326621925e-05| -|requirements.txt|gitlab/cracklet/cracklet|1.1185682326621925e-05| -|Gemfile|github/quadram-institute-bioscience/dadaist2|1.1185682326621925e-05| -|Gemfile|github/scrook/neuroml-db|1.1185682326621925e-05| -|Gemfile|github/tudelft3d/3dfier|1.1185682326621925e-05| -|Gemfile|github/codidact/qpixel|1.1185682326621925e-05| -|go.mod|github/sylabs/singularity|1.1185682326621925e-05| -|go.mod|github/jasonyangshadow/lpmx|1.1185682326621925e-05| -|go.mod|github/linksmart/thing-directory|1.1185682326621925e-05| -|go.mod|github/mlpack/mlpack|1.1185682326621925e-05| -|go.mod|github/containers/podman|1.1185682326621925e-05| -|pypi|[moto](https://pypi.org/project/moto)|1.1168825448163192e-05| -|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|1.1168825448163192e-05| -|rubygems|activemodel|1.1112244897959182e-05| -|pypi|[Bio](https://github.com/ialbert/bio)|1.1073825503355726e-05| -|pypi|[xopen](https://github.com/pycompression/xopen/)|1.1073825503355726e-05| -|pypi|[vip-hci](https://github.com/vortex-exoplanet/VIP)|1.1073825503355726e-05| -|cran|[redux](https://github.com/richfitz/redux)|1.1073825503355726e-05| -|npm|leaflet-geotiff-2|1.1073825503355706e-05| -|pypi|[hpccm](https://github.com/NVIDIA/hpc-container-maker)|1.1073825503355706e-05| -|pypi|[requirements](http://github.com/mattack108/requirements)|1.1073825503355706e-05| -|npm|rollup-plugin-license|1.1073825503355703e-05| -|npm|babel-plugin-remove-comments|1.1073825503355703e-05| -|npm|retape|1.1073825503355703e-05| -|npm|test|1.1073825503355703e-05| -|pypi|[Shapely](https://pypi.org/project/Shapely)|1.1073825503355703e-05| -|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|1.1070234819710491e-05| -|pypi|[debugpy](https://pypi.org/project/debugpy)|1.1070234819710491e-05| -|cran|Rtsne|1.1046140939597316e-05| -|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|1.0963087248322148e-05| -|cran|[rmsfact](NA)|1.0963087248322148e-05| -|cran|[multicolor](https://github.com/aedobbyn/multicolor/)|1.0963087248322148e-05| -|cran|geomorph|1.0963087248322147e-05| -|rubygems|introspection|1.0963087248322147e-05| -|pypi|[vega-datasets](http://github.com/altair-viz/vega_datasets)|1.0950975251677852e-05| -|pypi|[altair](http://altair-viz.github.io)|1.0935402684563767e-05| -|npm|babel-eslint|1.0895834844004716e-05| -|pypi|[xlrd](http://www.python-excel.org/)|1.0872747192894585e-05| -|pypi|[yarl](https://github.com/aio-libs/yarl/)|1.07823770189542e-05| -|pypi|[m2r2](https://pypi.org/project/m2r2)|1.0748124753257008e-05| -|pypi|[types-pytz](https://pypi.org/project/types-pytz)|1.0748124753257008e-05| -|pypi|[pytest-raises](https://pypi.org/project/pytest-raises)|1.0748124753257008e-05| -|pypi|[flake8-debugger](https://pypi.org/project/flake8-debugger)|1.0748124753257008e-05| -|pypi|[yt-dlp](https://pypi.org/project/yt-dlp)|1.0748124753257008e-05| -|pypi|[webvtt-py](https://pypi.org/project/webvtt-py)|1.0748124753257008e-05| -|pypi|[truecase](https://pypi.org/project/truecase)|1.0748124753257008e-05| -|pypi|[rapidfuzz](https://pypi.org/project/rapidfuzz)|1.0748124753257008e-05| -|pypi|[google-cloud-speech](https://pypi.org/project/google-cloud-speech)|1.0748124753257008e-05| -|pypi|[ffmpeg-python](https://pypi.org/project/ffmpeg-python)|1.0748124753257008e-05| -|pypi|[pulumi-gcp](https://pypi.org/project/pulumi-gcp)|1.0748124753257008e-05| -|pypi|[pulumi-google-native](https://pypi.org/project/pulumi-google-native)|1.0748124753257008e-05| -|pypi|[fireo](https://pypi.org/project/fireo)|1.0748124753257008e-05| -|cran|ggthemes|1.0716080122249015e-05| -|pypi|[pockets](https://pypi.org/project/pockets)|1.0682331645593973e-05| -|cran|clv|1.0658557046979868e-05| -|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|1.0621835663254258e-05| -|cran|[geojson](https://docs.ropensci.org/geojson)|1.0612416107382555e-05| -|cran|MLmetrics|1.058066898859255e-05| -|rubygems|octokit|1.0578889771092999e-05| -|npm|[time-span](https://github.com/sindresorhus/time-span#readme)|1.0541430046463604e-05| -|npm|loud-rejection|1.0541430046463604e-05| -|npm|globby|1.0541430046463604e-05| -|npm|csv-spectrum|1.0541430046463604e-05| -|npm|bops|1.0541430046463604e-05| -|pypi|[pytest-tornasync](https://pypi.org/project/pytest-tornasync)|1.0541430046463604e-05| -|pypi|[nbval](https://pypi.org/project/nbval)|1.0541430046463604e-05| -|pypi|[notebook-shim](https://pypi.org/project/notebook-shim)|1.0541430046463604e-05| -|cran|ncbit|1.0541430046463604e-05| -|cran|subplex|1.0541430046463604e-05| -|cran|[shinybusy](https://github.com/dreamRs/shinybusy)|1.053091159518762e-05| -|rubygems|[sqlite3](https://github.com/sparklemotion/sqlite3-ruby)|1.0511094370634162e-05| -|pypi|[pytest-remotedata](https://pypi.org/project/pytest-remotedata)|1.0469906519654856e-05| -|cran|thor|1.0441035474592523e-05| -|cran|[fds](https://sites.google.com/site/hanlinshangswebsite/)|1.041203259827421e-05| -|rubygems|rexml|1.037616743425558e-05| -|cran|polycor|1.0287817990031584e-05| -|cran|speedglm|1.024328859060403e-05| -|pypi|[partd](http://github.com/dask/partd/)|1.021833870827161e-05| -|cran|pander|1.0208772770853326e-05| -|cran|misc3d|1.0049496644295301e-05| -|cran|aws.signature|1.000831876374711e-05| -|cran|SuperLearner|9.966442953020135e-06| -|pypi|[scooby](https://pypi.org/project/scooby)|9.966442953020133e-06| -|cran|princurve|9.966442953020133e-06| -|cran|brglm|9.966442953020133e-06| -|cran|robustbase|9.926893576222444e-06| -|pypi|[sphinx-version-warning](https://github.com/humitos/sphinx-version-warning)|9.918983700862895e-06| -|pypi|[parameterized](https://pypi.org/project/parameterized)|9.918654122722914e-06| -|cran|gistr|9.913310961968684e-06| -|rubygems|rubocop-rspec|9.90647871645952e-06| -|pypi|[kazoo](https://kazoo.readthedocs.io)|9.89723154362416e-06| -|pypi|[softlayer-messaging](https://pypi.org/project/softlayer-messaging)|9.89723154362416e-06| -|pypi|[pytest-celery](https://pypi.org/project/pytest-celery)|9.89723154362416e-06| -|pypi|[pyro4](https://pypi.org/project/pyro4)|9.89723154362416e-06| -|pypi|[python-memcached](https://pypi.org/project/python-memcached)|9.89723154362416e-06| -|pypi|[pylibmc](https://pypi.org/project/pylibmc)|9.89723154362416e-06| -|pypi|[librabbitmq](https://pypi.org/project/librabbitmq)|9.89723154362416e-06| -|pypi|[gevent](https://pypi.org/project/gevent)|9.89723154362416e-06| -|pypi|[pycouchdb](https://pypi.org/project/pycouchdb)|9.89723154362416e-06| -|pypi|[couchbase](https://pypi.org/project/couchbase)|9.89723154362416e-06| -|pypi|[pydocumentdb](https://pypi.org/project/pydocumentdb)|9.89723154362416e-06| -|pypi|[python-consul2](https://pypi.org/project/python-consul2)|9.89723154362416e-06| -|pypi|[cassandra-driver](https://pypi.org/project/cassandra-driver)|9.89723154362416e-06| -|pypi|[azure-storage-blob](https://pypi.org/project/azure-storage-blob)|9.89723154362416e-06| -|pypi|[pyArango](https://pypi.org/project/pyArango)|9.89723154362416e-06| -|cran|PCICt|9.841214282507687e-06| -|cran|gld|9.84116231844357e-06| -|cran|torch|9.838797501227887e-06| -|cran|paws|9.838797501227887e-06| -|cran|keras|9.838797501227887e-06| -|cran|clustermq|9.838797501227887e-06| -|pypi|[tox-travis](https://pypi.org/project/tox-travis)|9.788470757430488e-06| -|pypi|[win32-setctime](https://pypi.org/project/win32-setctime)|9.788470757430488e-06| -|pypi|[aiocontextvars](https://pypi.org/project/aiocontextvars)|9.788470757430488e-06| -|cran|grpreg|9.788470757430488e-06| -|cran|[ff](https://github.com/truecluster/ff)|9.775073406040256e-06| -|npm|fresh|9.772784105575632e-06| -|npm|etag|9.772784105575632e-06| -|npm|temp-path|9.772784105575632e-06| -|pypi|[fastapi](https://github.com/tiangolo/fastapi)|9.768734392071185e-06| -|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|9.728470634510925e-06| -|pypi|[deprecat](https://pypi.org/project/deprecat)|9.708526931681295e-06| -|rubygems|jekyll-feed|9.687867030201341e-06| -|pypi|[kubernetes](https://pypi.org/project/kubernetes)|9.602491300874961e-06| -|pypi|[uvloop](https://pypi.org/project/uvloop)|9.597721070875433e-06| -|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|9.597721070875433e-06| -|pypi|[pyviz-comms](https://pypi.org/project/pyviz-comms)|9.559182428309944e-06| -|cran|pvclust|9.494695847740774e-06| -|cran|themis|9.47328643825699e-06| -|cran|superpc|9.47328643825699e-06| -|cran|subselect|9.47328643825699e-06| -|cran|spls|9.47328643825699e-06| -|cran|pamr|9.47328643825699e-06| -|cran|mda|9.47328643825699e-06| -|cran|ipred|9.47328643825699e-06| -|cran|ellipse|9.47328643825699e-06| -|cran|earth|9.47328643825699e-06| -|cran|BradleyTerry2|9.47328643825699e-06| -|cran|recipes|9.47328643825699e-06| -|cran|pROC|9.47328643825699e-06| -|cran|ModelMetrics|9.47328643825699e-06| -|npm|git-state|9.42339958699019e-06| -|npm|xpath|9.42339958699019e-06| -|npm|coffeescript|9.42339958699019e-06| -|npm|coffee-coverage|9.42339958699019e-06| -|npm|[split](http://github.com/dominictarr/split)|9.420072115384617e-06| -|rubygems|method_source|9.382948397479796e-06| -|npm|gulp-if|9.374506126663365e-06| -|npm|run-sequence|9.374506126663365e-06| -|cran|yulab.utils|9.356929507938815e-06| -|rubygems|appraisal|9.322353102314752e-06| -|rubygems|tins|9.32235310231475e-06| -|cran|robustlmm|9.135906040268456e-06| -|cran|parsnip|9.135906040268456e-06| -|cran|multgee|9.135906040268456e-06| -|cran|merTools|9.135906040268456e-06| -|cran|marginaleffects|9.135906040268456e-06| -|cran|logistf|9.135906040268456e-06| -|cran|JM|9.135906040268456e-06| -|cran|gmnl|9.135906040268456e-06| -|cran|fungible|9.135906040268456e-06| -|cran|feisr|9.135906040268456e-06| -|cran|estimatr|9.135906040268456e-06| -|cran|epiR|9.135906040268456e-06| -|cran|crch|9.135906040268456e-06| -|cran|censReg|9.135906040268456e-06| -|cran|bife|9.135906040268456e-06| -|cran|bdsmatrix|9.135906040268456e-06| -|pypi|[pretty-midi](https://pypi.org/project/pretty-midi)|9.060402684563757e-06| -|npm|gulp-concat|9.035511468397373e-06| -|npm|gulp-jshint|9.035511468397373e-06| -|npm|gulp-rename|9.035511468397373e-06| -|npm|jshint-stylish|9.035511468397373e-06| -|cran|corrplot|9.011168538279101e-06| -|cran|[rfishbase](https://docs.ropensci.org/rfishbase/)|8.997483221476512e-06| -|npm|on-finished|8.994155749870934e-06| -|npm|basic-auth|8.994155749870934e-06| -|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|8.972615733679072e-06| -|pypi|[casadi](http://casadi.org)|8.961990191017037e-06| -|cran|[progressr](https://progressr.futureverse.org)|8.888202048746051e-06| -|cran|sparkline|8.838908622592372e-06| -|pypi|[qmflows](https://pypi.org/project/qmflows)|8.832694151486113e-06| -|cran|distr6|8.8269623577473e-06| -|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|8.826051884357254e-06| -|cran|geojsonsf|8.781459731543629e-06| -|rubygems|flexmock|8.770469798657717e-06| -|cran|[stringdist](https://github.com/markvanderloo/stringdist)|8.766778523489974e-06| -|cran|archive|8.766088546931415e-06| -|cran|distributional|8.761708090567151e-06| -|cran|plainview|8.755243288590603e-06| -|cran|mapdeck|8.755243288590603e-06| -|npm|zuul|8.720637583892615e-06| -|pypi|[aafigure](https://pypi.org/project/aafigure)|8.700862895493767e-06| -|cran|[mlr3](https://mlr3.mlr-org.com)|8.684990235909413e-06| -|npm|through|8.633933180913047e-06| -|cran|[RcppParallel](https://rcppcore.github.io/RcppParallel/)|8.619966442953021e-06| -|cran|rainbow|8.613854266538829e-06| -|pypi|[gensim](http://radimrehurek.com/gensim)|8.588424997820988e-06| -|cran|scagnostics|8.579172505347003e-06| -|cran|labelled|8.579172505347003e-06| -|cran|intergraph|8.579172505347003e-06| -|cran|chemometrics|8.579172505347003e-06| -|cran|broom.helpers|8.579172505347003e-06| -|cran|procmaps|8.568518191451783e-06| -|cran|MuMIn|8.524739631339424e-06| -|cran|[tidytext](http://github.com/juliasilge/tidytext)|8.454680033848205e-06| -|pypi|[tensorboard-plugin-wit](https://pypi.org/project/tensorboard-plugin-wit)|8.433144037170883e-06| -|pypi|[tensorboard-data-server](https://pypi.org/project/tensorboard-data-server)|8.433144037170883e-06| -|pypi|[google-auth-oauthlib](https://pypi.org/project/google-auth-oauthlib)|8.433144037170883e-06| -|cran|RProtoBuf|8.433144037170883e-06| -|cran|[lhs](https://github.com/bertcarnell/lhs)|8.384467881112178e-06| -|cran|limma|8.348812596799174e-06| -|cran|affy|8.348812596799174e-06| -|cran|marray|8.348812596799174e-06| -|cran|[reactable](https://glin.github.io/reactable/)|8.281707107210464e-06| -|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|8.242922743099359e-06| -|pypi|[s3fs](https://pypi.org/project/s3fs)|8.242922743099359e-06| -|pypi|[ocifs](https://pypi.org/project/ocifs)|8.242922743099359e-06| -|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|8.242922743099359e-06| -|pypi|[pygit2](https://pypi.org/project/pygit2)|8.242922743099359e-06| -|pypi|[fusepy](https://pypi.org/project/fusepy)|8.242922743099359e-06| -|pypi|[dropbox](https://pypi.org/project/dropbox)|8.242922743099359e-06| -|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|8.242922743099359e-06| -|pypi|[adlfs](https://pypi.org/project/adlfs)|8.242922743099359e-06| -|pypi|[pytest-json-report](https://pypi.org/project/pytest-json-report)|8.24261744966443e-06| -|cran|feather|8.19366528569184e-06| -|pypi|[databricks-cli](https://pypi.org/project/databricks-cli)|8.158669202885547e-06| -|pypi|[prometheus-flask-exporter](https://pypi.org/project/prometheus-flask-exporter)|8.158669202885547e-06| -|pypi|[querystring-parser](https://pypi.org/project/querystring-parser)|8.158669202885547e-06| -|pypi|[configparser](https://github.com/jaraco/configparser/)|8.148489932885945e-06| -|npm|[standard-version](https://github.com/conventional-changelog/standard-version#readme)|8.143115273987756e-06| -|cran|GenSA|8.131298960741624e-06| -|npm|updox|8.120805369127516e-06| -|npm|safename|8.120805369127516e-06| -|cran|MonetDBLite|8.120805369127516e-06| -|pypi|[google-auth-httplib2](https://pypi.org/project/google-auth-httplib2)|8.116646185839871e-06| -|cran|RgoogleMaps|8.097734899328858e-06| -|cran|systemfonts|8.079069522718239e-06| -|pypi|[boltons](https://pypi.org/project/boltons)|7.980791483452903e-06| -|pypi|[pytest-cov>=2.10](https://pypi.org/project/pytest-cov>=2.10)|7.980791483452903e-06| -|pypi|[pytest>=6.0](https://pypi.org/project/pytest>=6.0)|7.980791483452903e-06| -|pypi|[loompy>=3.0.5](https://pypi.org/project/loompy>=3.0.5)|7.980791483452903e-06| -|pypi|[scanpydoc>=0.7.3](https://pypi.org/project/scanpydoc>=0.7.3)|7.980791483452903e-06| -|pypi|[sphinx_issues](https://pypi.org/project/sphinx_issues)|7.980791483452903e-06| -|pypi|[sphinx-autodoc-typehints>=1.11.0](https://pypi.org/project/sphinx-autodoc-typehints>=1.11.0)|7.980791483452903e-06| -|pypi|[sphinx>=4.1,<4.2](https://pypi.org/project/sphinx>=4.1,<4.2)|7.980791483452903e-06| -|pypi|[packaging>=20](https://pypi.org/project/packaging>=20)|7.980791483452903e-06| -|pypi|[scipy>1.4](https://pypi.org/project/scipy>1.4)|7.980791483452903e-06| -|pypi|[numpy>=1.16.5](https://pypi.org/project/numpy>=1.16.5)|7.980791483452903e-06| -|pypi|[pandas>=1.1.1](https://pypi.org/project/pandas>=1.1.1)|7.980791483452903e-06| -|cran|gdtools|7.968158651662714e-06| -|pypi|[streamz](https://pypi.org/project/streamz)|7.954247831068915e-06| -|pypi|[nbsmoke](https://pypi.org/project/nbsmoke)|7.954247831068915e-06| -|pypi|[nbsite](https://pypi.org/project/nbsite)|7.954247831068915e-06| -|pypi|[sphinxcontrib-napoleon](https://sphinxcontrib-napoleon.readthedocs.io)|7.95372622708485e-06| -|cran|ExactData|7.944266121972571e-06| -|cran|Epi|7.917066155321188e-06| -|cran|memisc|7.917066155321188e-06| -|cran|descr|7.917066155321188e-06| -|cran|sylly.en|7.917066155321188e-06| -|cran|sylly|7.917066155321188e-06| -|pypi|[passlib](https://pypi.org/project/passlib)|7.911814054480854e-06| -|cran|[rjags](https://mcmc-jags.sourceforge.io)|7.879452762003103e-06| -|pypi|[google-cloud-core](https://github.com/googleapis/python-cloud-core)|7.876453350978352e-06| -|cran|[R.matlab](https://github.com/HenrikBengtsson/R.matlab)|7.868744007670204e-06| -|cran|[pbivnorm](https://github.com/brentonk/pbivnorm)|7.846388202048746e-06| -|cran|compiler|7.830776605944391e-06| -|cran|DoE.base|7.830776605944391e-06| -|rubygems|jekyll-sitemap|7.803586409395973e-06| -|rubygems|jekyll-github-metadata|7.803586409395973e-06| -|cran|RcppCCTZ|7.785599048602403e-06| -|rubygems|typhoeus|7.752468839884946e-06| -|pypi|[cvxopt](http://cvxopt.org)|7.751677852348993e-06| -|pypi|[soxr](https://pypi.org/project/soxr)|7.751677852348993e-06| -|pypi|[samplerate](https://pypi.org/project/samplerate)|7.751677852348993e-06| -|pypi|[pytest-mpl](https://pypi.org/project/pytest-mpl)|7.751677852348993e-06| -|pypi|[presets](https://pypi.org/project/presets)|7.751677852348993e-06| -|pypi|[sphinxcontrib-svg2pdfconverter](https://pypi.org/project/sphinxcontrib-svg2pdfconverter)|7.751677852348993e-06| -|pypi|[mir-eval](https://pypi.org/project/mir-eval)|7.751677852348993e-06| -|pypi|[sphinx-multiversion](https://pypi.org/project/sphinx-multiversion)|7.751677852348993e-06| -|pypi|[soundfile](https://pypi.org/project/soundfile)|7.751677852348993e-06| -|pypi|[resampy](https://pypi.org/project/resampy)|7.751677852348993e-06| -|pypi|[audioread](https://pypi.org/project/audioread)|7.751677852348993e-06| -|rubygems|[term-ansicolor](http://flori.github.com/term-ansicolor)|7.723498921380633e-06| -|cran|DendSer|7.709422465559873e-06| -|cran|ridigbio|7.69015659955258e-06| -|cran|rvertnet|7.69015659955258e-06| -|cran|rebird|7.69015659955258e-06| -|cran|rbison|7.69015659955258e-06| -|cran|rgbif|7.69015659955258e-06| -|npm|grunt|7.666494579246256e-06| -|npm|imagemin-svgo|7.666494579246256e-06| -|npm|imagemin-optipng|7.666494579246256e-06| -|npm|imagemin-jpegtran|7.666494579246256e-06| -|npm|imagemin-gifsicle|7.666494579246256e-06| -|npm|pretty-bytes|7.666494579246256e-06| -|npm|plur|7.666494579246256e-06| -|npm|p-map|7.666494579246256e-06| -|npm|imagemin|7.666494579246256e-06| -|cran|rnaturalearthhires|7.666494579246256e-06| -|cran|[clusterCrit](http:www.r-project.org)|7.648988242418142e-06| -|npm|houkou|7.613255033557046e-06| -|cran|picante|7.613255033557046e-06| -|cran|hisse|7.613255033557046e-06| -|cran|diversitree|7.613255033557046e-06| -|cran|sparklyr|7.613255033557046e-06| -|cran|[gargle](https://gargle.r-lib.org)|7.600358497644761e-06| -|pypi|[func-timeout](https://pypi.org/project/func-timeout)|7.587877516778523e-06| -|pypi|[jaraco.itertools](https://pypi.org/project/jaraco.itertools)|7.587877516778523e-06| -|rubygems|rspec-mocks|7.537122483221476e-06| -|rubygems|rspec-expectations|7.537122483221476e-06| -|rubygems|rspec-core|7.537122483221476e-06| -|rubygems|spoon|7.537122483221476e-06| -|cran|bayesplot|7.535174194601259e-06| -|rubygems|mini_portile2|7.520808365292424e-06| -|npm|watchify|7.4578824818518005e-06| -|npm|vinyl-source-stream|7.4578824818518005e-06| -|npm|vinyl-buffer|7.4578824818518005e-06| -|npm|gulp-gh-pages|7.4578824818518005e-06| -|npm|gulp-clean|7.4578824818518005e-06| -|npm|gulp-beautify|7.4578824818518005e-06| -|npm|gulp-babel|7.4578824818518005e-06| -|npm|babelify|7.4578824818518005e-06| -|npm|babel-plugin-transform-es2015-modules-commonjs|7.4578824818518005e-06| -|rubygems|hiredis|7.4578824818518005e-06| -|rubygems|em-synchrony|7.4578824818518005e-06| -|rubygems|aws-sigv4|7.4578824818518005e-06| -|rubygems|aws-sdk-kms|7.4578824818518005e-06| -|rubygems|aws-sdk-core|7.4578824818518005e-06| -|rubygems|bump|7.4578824818518005e-06| -|cran|svUnit|7.4578824818518e-06| -|cran|AlgDesign|7.4578824818518e-06| -|npm|resolve|7.455551893576221e-06| -|npm|eslint-plugin-react|7.437799590667449e-06| -|npm|eslint-plugin-jsx-a11y|7.437799590667449e-06| -|pypi|[pytest-env](https://pypi.org/project/pytest-env)|7.391991154547985e-06| -|pypi|[lark](https://github.com/lark-parser/lark)|7.382550335570495e-06| -|pypi|[rowan](https://github.com/glotzerlab/rowan)|7.382550335570471e-06| -|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|7.321029082774075e-06| -|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|7.310849452420901e-06| -|pypi|[nodeenv](https://pypi.org/project/nodeenv)|7.305211022199277e-06| -|pypi|[identify](https://pypi.org/project/identify)|7.305211022199277e-06| -|pypi|[cfgv](https://pypi.org/project/cfgv)|7.305211022199277e-06| -|rubygems|execjs|7.2434683604985625e-06| -|pypi|[email_validator](https://github.com/JoshData/python-email-validator)|7.219699960521136e-06| -|cran|rsyslog|7.206504904491482e-06| -|cran|logging|7.206504904491482e-06| -|npm|json-stringify-safe|7.1656625672984725e-06| -|pypi|[hyperspy](https://pypi.org/project/hyperspy)|7.165416502171338e-06| -|cran|[reproj](https://github.com/hypertidy/reproj/)|7.139656533754441e-06| -|npm|[angular-mocks](http://angularjs.org)|7.11888782358581e-06| -|npm|gulp-angular-templatecache|7.11888782358581e-06| -|npm|gulp-cssnano|7.11888782358581e-06| -|npm|gulp-less|7.11888782358581e-06| -|pypi|[Auto-FOX](https://pypi.org/project/Auto-FOX)|7.11888782358581e-06| -|pypi|[vcrpy](https://pypi.org/project/vcrpy)|7.11888782358581e-06| -|pypi|[citeproc-py](https://pypi.org/project/citeproc-py)|7.11888782358581e-06| -|cran|Rdonlp2|7.11888782358581e-06| -|cran|gamlss.dist|7.11888782358581e-06| -|cran|Rsolnp|7.11888782358581e-06| -|cran|[correlation](https://easystats.github.io/correlation/)|7.116473835691449e-06| -|cran|kml|7.066155321188892e-06| -|pypi|[aesara-theano-fallback](https://github.com/exoplanet-dev/aesara-theano-fallback)|7.0310003195909276e-06| -|pypi|[munkres](https://software.clapper.org/munkres/)|7.027620030975736e-06| -|pypi|[fs](https://github.com/PyFilesystem/pyfilesystem2)|7.027620030975736e-06| -|pypi|[xdoctest](https://pypi.org/project/xdoctest)|7.027620030975736e-06| -|pypi|[ubelt](https://pypi.org/project/ubelt)|7.027620030975736e-06| -|cran|kriging|7.027620030975736e-06| -|cran|udunits2|7.027620030975736e-06| -|cran|formula.tools|7.027620030975736e-06| -|cran|R2WinBUGS|7.027620030975736e-06| -|npm|[querystring](https://github.com/Gozala/querystring#readme)|6.979865771812081e-06| -|pypi|[zope.testing](https://pypi.org/project/zope.testing)|6.957343830665977e-06| -|pypi|[zope.event](https://pypi.org/project/zope.event)|6.957343830665977e-06| -|pypi|[repoze.sphinx.autointerface](https://pypi.org/project/repoze.sphinx.autointerface)|6.957343830665977e-06| -|pypi|[ipyvolume](https://pypi.org/project/ipyvolume)|6.899845121321631e-06| -|cran|mlr3measures|6.871450696954052e-06| -|cran|leafgl|6.851929530201342e-06| -|npm|cross-spawn|6.829069961018458e-06| -|pypi|[torchvision](https://github.com/pytorch/vision)|6.828859060402698e-06| -|pypi|[google-cloud-storage](https://pypi.org/project/google-cloud-storage)|6.82687121544903e-06| -|cran|seasonal|6.809370961690774e-06| -|cran|forecTheta|6.809370961690774e-06| -|cran|urca|6.809370961690774e-06| -|cran|fracdiff|6.809370961690774e-06| -|cran|googleAnalyticsR|6.809370961690774e-06| -|cran|bigQueryR|6.809370961690774e-06| -|pypi|[channels](https://pypi.org/project/channels)|6.790726052471019e-06| -|pypi|[pydeck](https://pypi.org/project/pydeck)|6.782718120805369e-06| -|cran|[tiff](https://www.rforge.net/tiff/)|6.767337807606269e-06| +https://github.com/ropensci/beastier/)|1.987951807228916e-05| +|pypi|[mkdocs-material-extensions](https://pypi.org/project/mkdocs-material-extensions)|1.9879518072289157e-05| +|pypi|[mkl](https://pypi.org/project/mkl)|1.9879518072289157e-05| +|cran|shapefiles|1.9879518072289157e-05| +|pypi|[towncrier](https://pypi.org/project/towncrier)|1.9867439556168666e-05| +|pypi|[httpx](https://pypi.org/project/httpx)|1.9846107117545814e-05| +|cran|[ggsignif](https://const-ae.github.io/ggsignif/)|1.9821033338095006e-05| +|cran|[ggsci](https://nanx.me/ggsci/)|1.9821033338095006e-05| +|npm|on-headers|1.9811715957235535e-05| +|pypi|[pathos](https://github.com/uqfoundation/pathos)|1.9719313287704507e-05| +|cran|[survey](http://r-survey.r-forge.r-project.org/survey/)|1.9593071445752963e-05| +|cran|sandwich|1.9593071445752963e-05| +|cran|partykit|1.957868742048941e-05| +|rubygems|test-unit|1.954197196951069e-05| +|cran|spData|1.9518072289156627e-05| +|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|1.950482472877938e-05| +|pypi|[google-crc32c](https://github.com/googleapis/python-crc32c)|1.9372397498988373e-05| +|pypi|[mwoauth](https://pypi.org/project/mwoauth)|1.93631669535284e-05| +|pypi|[wikidataintegrator](https://pypi.org/project/wikidataintegrator)|1.93631669535284e-05| +|pypi|[dash-extensions](https://pypi.org/project/dash-extensions)|1.93631669535284e-05| +|pypi|[Flask-Caching](https://pypi.org/project/Flask-Caching)|1.93631669535284e-05| +|pypi|[ipaddr](https://pypi.org/project/ipaddr)|1.93631669535284e-05| +|pypi|[progress](https://pypi.org/project/progress)|1.93631669535284e-05| +|pypi|[pytoml](https://pypi.org/project/pytoml)|1.93631669535284e-05| +|npm|[mdi](http://materialdesignicons.com)|1.93631669535284e-05| +|npm|[tippy.js](https://atomiks.github.io/tippyjs/)|1.93631669535284e-05| +|npm|[abort-controller](https://github.com/mysticatea/abort-controller#readme)|1.93631669535284e-05| +|npm|color|1.93631669535284e-05| +|npm|create-react-class|1.93631669535284e-05| +|npm|dotenv-load|1.93631669535284e-05| +|npm|iframe-resizer|1.93631669535284e-05| +|npm|isomorphic-unfetch|1.93631669535284e-05| +|npm|js-file-download|1.93631669535284e-05| +|npm|material-table|1.93631669535284e-05| +|npm|material-ui-chip-input|1.93631669535284e-05| +|npm|materialize-css|1.93631669535284e-05| +|npm|mui-datatables|1.93631669535284e-05| +|npm|next|1.93631669535284e-05| +|npm|next-env|1.93631669535284e-05| +|npm|next-redux-wrapper|1.93631669535284e-05| +|npm|nprogress|1.93631669535284e-05| +|npm|ra-data-simple-rest|1.93631669535284e-05| +|npm|react-admin|1.93631669535284e-05| +|npm|react-ga|1.93631669535284e-05| +|npm|react-json-view|1.93631669535284e-05| +|npm|react-loading|1.93631669535284e-05| +|npm|react-scroll|1.93631669535284e-05| +|npm|react-scroll-to-component|1.93631669535284e-05| +|npm|react-swipeable-views|1.93631669535284e-05| +|npm|react-wordcloud|1.93631669535284e-05| +|npm|recharts|1.93631669535284e-05| +|npm|redux-saga|1.93631669535284e-05| +|npm|serialize-error|1.93631669535284e-05| +|npm|swagger-client|1.93631669535284e-05| +|npm|swagger-ui-react|1.93631669535284e-05| +|npm|tween|1.93631669535284e-05| +|npm|uuid5|1.93631669535284e-05| +|pypi|[sphinx-autobuild](https://github.com/executablebooks/sphinx-autobuild)|1.9282987540223007e-05| +|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|1.9266351118760757e-05| +|cran|seqLogo|1.9211965875926064e-05| +|npm|codecov|1.9184370573994194e-05| +|cran|oskeyring|1.9169535283993114e-05| +|cran|ExplainPrediction|1.9169535283993114e-05| +|cran|rpart.plot|1.9169535283993114e-05| +|cran|rstatix|1.914332249472151e-05| +|pypi|[autograd](https://github.com/HIPS/autograd)|1.9123837661062394e-05| +|pypi|[numkit](https://pypi.org/project/numkit)|1.9052265399626677e-05| +|pypi|[oslo.serialization](https://pypi.org/project/oslo.serialization)|1.901277108433735e-05| +|pypi|[oslo.i18n](https://pypi.org/project/oslo.i18n)|1.901277108433735e-05| +|pypi|[debtcollector](https://pypi.org/project/debtcollector)|1.901277108433735e-05| +|cran|afex|1.8945412938420466e-05| +|pypi|[folium](https://pypi.org/project/folium)|1.8942018072289158e-05| +|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|1.8925834755572082e-05| +|cran|tester|1.883322764743183e-05| +|cran|fastICA|1.878412702516645e-05| +|rubygems|[mocha](https://mocha.jamesmead.org)|1.8690435210228667e-05| +|rubygems|kramdown-parser-gfm|1.8637048192771085e-05| +|rubygems|jekyll-theme-primer|1.8637048192771085e-05| +|rubygems|jekyll-sass-converter|1.8637048192771085e-05| +|rubygems|jekyll_test_plugin_malicious|1.8637048192771085e-05| +|cran|docopt|1.858864027538726e-05| +|cran|[tidygraph](https://tidygraph.data-imaginist.com)|1.8583518686088896e-05| +|cran|[rentrez](http://github.com/ropensci/rentrez)|1.857358003442346e-05| +|pypi|[gensim](https://pypi.org/project/gensim)|1.849790543520008e-05| +|pypi|[googleapis-common-protos](https://github.com/googleapis/python-api-common-protos)|1.8433137247954834e-05| +|cran|[snakecase](https://github.com/Tazinho/snakecase)|1.8383931568822855e-05| +|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|1.8379177085701295e-05| +|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|1.8379177085701295e-05| +|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|1.8379177085701295e-05| +|npm|[ansi-regex](https://github.com/chalk/ansi-regex#readme)|1.837859914233204e-05| +|npm|[balanced-match](https://github.com/juliangruber/balanced-match)|1.837859914233204e-05| +|npm|[brace-expansion](https://github.com/juliangruber/brace-expansion)|1.837859914233204e-05| +|npm|[cacatoo](https://github.com/bramvandijk88/cacatoo#readme)|1.837859914233204e-05| +|npm|[code-point-at](https://github.com/sindresorhus/code-point-at#readme)|1.837859914233204e-05| +|npm|[decompress-response](https://github.com/sindresorhus/decompress-response#readme)|1.837859914233204e-05| +|npm|[detect-libc](https://github.com/lovell/detect-libc#readme)|1.837859914233204e-05| +|npm|[esdoc](https://esdoc.org/)|1.837859914233204e-05| +|npm|esdoc-standard-plugin|1.837859914233204e-05| +|npm|fast-random|1.837859914233204e-05| +|npm|flatted|1.837859914233204e-05| +|npm|fs.realpath|1.837859914233204e-05| +|npm|has-unicode|1.837859914233204e-05| +|npm|iconv-lite|1.837859914233204e-05| +|npm|ignore-walk|1.837859914233204e-05| +|npm|ini|1.837859914233204e-05| +|npm|is-fullwidth-code-point|1.837859914233204e-05| +|npm|jsdocs|1.837859914233204e-05| +|npm|mimic-response|1.837859914233204e-05| +|npm|needle|1.837859914233204e-05| +|npm|node|1.837859914233204e-05| +|npm|nopt|1.837859914233204e-05| +|npm|npm|1.837859914233204e-05| +|npm|npm-bundled|1.837859914233204e-05| +|npm|npm-normalize-package-bin|1.837859914233204e-05| +|npm|npm-packlist|1.837859914233204e-05| +|npm|number-is-nan|1.837859914233204e-05| +|npm|odex|1.837859914233204e-05| +|npm|os-homedir|1.837859914233204e-05| +|npm|os-tmpdir|1.837859914233204e-05| +|npm|osenv|1.837859914233204e-05| +|npm|path-is-absolute|1.837859914233204e-05| +|npm|rc|1.837859914233204e-05| +|npm|safer-buffer|1.837859914233204e-05| +|npm|set-blocking|1.837859914233204e-05| +|npm|signal-exit|1.837859914233204e-05| +|npm|simple-concat|1.837859914233204e-05| +|npm|string-width|1.837859914233204e-05| +|npm|strip-json-comments|1.837859914233204e-05| +|cran|SASmixed|1.8345245266781407e-05| +|cran|[colourpicker](https://github.com/daattali/colourpicker)|1.8333861762840838e-05| +|cran|antiword|1.8314279094399573e-05| +|npm|[standard-version](https://github.com/conventional-changelog/standard-version#readme)|1.8311002250761285e-05| +|pypi|[configparser](https://pypi.org/project/configparser)|1.8229382771728658e-05| +|npm|[rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser)|1.8223460167199408e-05| +|pypi|[pickydict](https://github.com/florian-huber/pickydict)|1.819800942902045e-05| +|pypi|[pyteomics](http://pyteomics.readthedocs.io)|1.8198009429020435e-05| +|npm|tslint|1.8185240963855422e-05| +|pypi|[pathtools](https://pypi.org/project/pathtools)|1.8128110899195236e-05| +|pypi|[flask](https://palletsprojects.com/p/flask)|1.8106926499550114e-05| +|pypi|[unyt](https://github.com/yt-project/unyt)|1.8072289156626512e-05| +|cran|BiocManager|1.8013507421916915e-05| +|pypi|[pip-tools](https://pypi.org/project/pip-tools)|1.7909985398955363e-05| +|pypi|[repeated-test](https://pypi.org/project/repeated-test)|1.789156626506024e-05| +|pypi|[pykerberos](https://pypi.org/project/pykerberos)|1.7891566265060238e-05| +|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|1.7891566265060238e-05| +|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|1.7891566265060238e-05| +|pypi|[types-colorama](https://pypi.org/project/types-colorama)|1.7891566265060238e-05| +|pypi|[pdbmender](https://pypi.org/project/pdbmender)|1.7891566265060238e-05| +|pypi|[delphi4py](https://pypi.org/project/delphi4py)|1.7891566265060238e-05| +|pypi|[pykwalify](https://pypi.org/project/pykwalify)|1.7891566265060238e-05| +|pypi|[gevent](https://pypi.org/project/gevent)|1.7883602110304572e-05| +|cran|spam|1.784538070440329e-05| +|cran|acepack|1.783714725463865e-05| +|cran|htmlTable|1.783714725463865e-05| +|pypi|[schema](https://github.com/keleshev/schema)|1.765985404771324e-05| +|cran|measurements|1.7572074010327022e-05| +|cran|NISTunits|1.7572074010327022e-05| +|cran|gbm|1.752515556732424e-05| +|npm|glob|1.743575731497418e-05| +|cran|protolite|1.742685025817556e-05| +|cran|geepack|1.729311854372119e-05| +|cran|bigmemory|1.7233218588640274e-05| +|pypi|[rdkit](https://pypi.org/project/rdkit)|1.711367207962284e-05| +|pypi|[imbalanced-learn](https://pypi.org/project/imbalanced-learn)|1.7110073741734074e-05| +|pypi|[diff-cover](https://pypi.org/project/diff-cover)|1.7108122103799815e-05| +|npm|tsconfig-paths|1.703958691910499e-05| +|npm|replace|1.703958691910499e-05| +|npm|node-qunit-phantomjs|1.703958691910499e-05| +|cran|[geosphere](NA)|1.6979756444652645e-05| +|cran|ks|1.6962134251290875e-05| +|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|1.694277108433735e-05| +|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|1.694277108433735e-05| +|pypi|[nbclassic](https://pypi.org/project/nbclassic)|1.694277108433735e-05| +|pypi|[notebook-shim](https://pypi.org/project/notebook-shim)|1.694277108433735e-05| +|pypi|[json5](https://pypi.org/project/json5)|1.694277108433735e-05| +|pypi|[mmtf-python](https://github.com/rcsb/mmtf-python.git)|1.6940568340534412e-05| +|cran|[origami](https://tlverse.org/origami/)|1.6893661602933492e-05| +|cran|[RNetCDF](https://github.com/mjwoods/RNetCDF +https://www.unidata.ucar.edu/software/netcdf/ +https://www.unidata.ucar.edu/software/udunits/)|1.6851427448926178e-05| +|cran|glmmTMB|1.684052278958985e-05| +|cran|fixest|1.684052278958985e-05| +|cran|cplm|1.684052278958985e-05| +|cran|betareg|1.684052278958985e-05| +|cran|AER|1.684052278958985e-05| +|cran|signal|1.680581933645918e-05| +|pypi|[eventlet](https://pypi.org/project/eventlet)|1.6776325301204817e-05| +|npm|chai-passport-strategy|1.6773343373493976e-05| +|npm|passport-strategy|1.6773343373493976e-05| +|cran|[Ckmeans.1d.dp](NA)|1.6710693706503032e-05| +|pypi|[bitstring](https://pypi.org/project/bitstring)|1.6683304647160068e-05| +|pypi|[casadi](http://casadi.org)|1.66787632457541e-05| +|rubygems|[rubyzip](http://github.com/rubyzip/rubyzip)|1.6632081748362006e-05| +|pypi|[google-auth-httplib2](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2)|1.6622433395554048e-05| +|cran|klaR|1.657882257894552e-05| +|npm|babel-jest|1.6505893073130665e-05| +|pypi|[types-pytz](https://pypi.org/project/types-pytz)|1.642276929307404e-05| +|pypi|[hdf5plugin](https://pypi.org/project/hdf5plugin)|1.6408443692123867e-05| +|pypi|[psims](https://pypi.org/project/psims)|1.6408443692123867e-05| +|cran|[jsonld](https://docs.ropensci.org/jsonld)|1.6375706909269773e-05| +|rubygems|hoe|1.632149004179985e-05| +|pypi|[pybamm](https://pypi.org/project/pybamm)|1.6297721004499926e-05| +|rubygems|addressable|1.6294792071511854e-05| +|cran|doMC|1.628829604130809e-05| +|pypi|[sphinxcontrib.mermaid](https://pypi.org/project/sphinxcontrib.mermaid)|1.6265060240963857e-05| +|pypi|[mdit-py-plugins](https://pypi.org/project/mdit-py-plugins)|1.6265060240963857e-05| +|pypi|[markdown-it-py](https://pypi.org/project/markdown-it-py)|1.6265060240963857e-05| +|cran|qvalue|1.6265060240963857e-05| +|cran|subprocess|1.6265060240963857e-05| +|cran|tensorA|1.6247186548391367e-05| +|npm|concat-stream|1.6220376009532637e-05| +|rubygems|webmock|1.6198346808602957e-05| +|pypi|[tensorflow-estimator](https://www.tensorflow.org/)|1.6194648724769207e-05| +|cran|[EML](https://docs.ropensci.org/EML/)|1.618760757314976e-05| +|pypi|[gssapi](https://pypi.org/project/gssapi)|1.6155125860585195e-05| +|npm|gulp-uglify|1.615015793156929e-05| +|pypi|[zict](https://pypi.org/project/zict)|1.6131431059867697e-05| +|cran|scatterplot3d|1.61166974909398e-05| +|pypi|[loguru](https://github.com/Delgan/loguru)|1.6114457831325306e-05| +|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|1.6059886605244506e-05| +|pypi|[PyTest](https://pypi.org/project/PyTest)|1.6059886605244506e-05| +|pypi|[pulumi](https://github.com/pulumi/pulumi)|1.5946137491141047e-05| +|pypi|[AssertionLib](https://pypi.org/project/AssertionLib)|1.593737587713492e-05| +|pypi|[affine](https://github.com/sgillies/affine)|1.5908242861556126e-05| +|pypi|[pep8-naming](https://pypi.org/project/pep8-naming)|1.584304686987515e-05| +|pypi|[kgt](https://pypi.org/project/kgt)|1.5786676116229624e-05| +|pypi|[x21](https://pypi.org/project/x21)|1.5786676116229624e-05| +|pypi|[pytest-qt](https://pypi.org/project/pytest-qt)|1.5786676116229624e-05| +|npm|murl|1.5786676116229624e-05| +|npm|protein|1.5786676116229624e-05| +|npm|network-address|1.5786676116229624e-05| +|cran|[wesanderson](https://github.com/karthik/wesanderson)|1.573948856651094e-05| +|pypi|[types-dataclasses](https://pypi.org/project/types-dataclasses)|1.569270780601397e-05| +|cran|coxme|1.561381133606204e-05| +|cran|[downloader](https://github.com/wch/downloader)|1.5604428703826312e-05| +|pypi|[crossbar](http://crossbar.io/)|1.5490533562822718e-05| +|pypi|[argh](https://pypi.org/project/argh)|1.5490533562822718e-05| +|pypi|[asn1crypto](https://pypi.org/project/asn1crypto)|1.5490533562822718e-05| +|pypi|[asq](https://pypi.org/project/asq)|1.5490533562822718e-05| +|pypi|[automat](https://pypi.org/project/automat)|1.5490533562822718e-05| +|pypi|[cbor](https://pypi.org/project/cbor)|1.5490533562822718e-05| +|pypi|[dictdiffer](https://pypi.org/project/dictdiffer)|1.5490533562822718e-05| +|pypi|[hpack](https://pypi.org/project/hpack)|1.5490533562822718e-05| +|pypi|[hyperframe](https://pypi.org/project/hyperframe)|1.5490533562822718e-05| +|pypi|[lmdb](https://pypi.org/project/lmdb)|1.5490533562822718e-05| +|pypi|[netaddr](https://pypi.org/project/netaddr)|1.5490533562822718e-05| +|pypi|[node-semver](https://pypi.org/project/node-semver)|1.5490533562822718e-05| +|pypi|[priority](https://pypi.org/project/priority)|1.5490533562822718e-05| +|pypi|[py-ubjson](https://pypi.org/project/py-ubjson)|1.5490533562822718e-05| +|pypi|[pyqrcode](https://pypi.org/project/pyqrcode)|1.5490533562822718e-05| +|pypi|[pytrie](https://pypi.org/project/pytrie)|1.5490533562822718e-05| +|pypi|[redis-py-cluster](https://pypi.org/project/redis-py-cluster)|1.5490533562822718e-05| +|pypi|[sdnotify](https://pypi.org/project/sdnotify)|1.5490533562822718e-05| +|pypi|[strict-rfc3339](https://pypi.org/project/strict-rfc3339)|1.5490533562822718e-05| +|pypi|[treq](https://pypi.org/project/treq)|1.5490533562822718e-05| +|pypi|[txtorcon](https://pypi.org/project/txtorcon)|1.5490533562822718e-05| +|pypi|[u-msgpack-python](https://pypi.org/project/u-msgpack-python)|1.5490533562822718e-05| +|npm|bluebird|1.5452340085670624e-05| +|pypi|[jupyter-bokeh](https://pypi.org/project/jupyter-bokeh)|1.543753963221306e-05| +|cran|VennDiagram|1.5406093906093907e-05| +|pypi|[botocore](https://github.com/boto/botocore)|1.538978314327532e-05| +|cran|loder|1.5348157335223245e-05| +|cran|ore|1.5348157335223245e-05| +|cran|nor1mix|1.533562822719449e-05| +|cran|diptest|1.533562822719449e-05| +|cran|changepoint|1.533562822719449e-05| +|cran|linprog|1.533562822719449e-05| +|cran|magic|1.533562822719449e-05| +|cran|modeldata|1.533562822719449e-05| +|cran|[fst](http://www.fstpackage.org)|1.5285239241660716e-05| +|pypi|[cronutils](https://github.com/zagaran/cronutils)|1.5272357033768878e-05| +|pypi|[proto-plus](https://pypi.org/project/proto-plus)|1.5272357033768878e-05| +|pypi|[pycrypto](https://pypi.org/project/pycrypto)|1.5272357033768878e-05| +|pypi|[pycryptodomex](https://pypi.org/project/pycryptodomex)|1.5272357033768878e-05| +|pypi|[zstd](https://pypi.org/project/zstd)|1.5272357033768878e-05| +|pypi|[nglview](https://github.com/arose/nglview)|1.5272357033768878e-05| +|pypi|[pyperclip](https://github.com/asweigart/pyperclip)|1.5272357033768878e-05| +|cran|[reprex](https://reprex.tidyverse.org)|1.5200919292359054e-05| +|cran|lgr|1.5149292823467783e-05| +|pypi|[snuggs](https://github.com/mapbox/snuggs)|1.5074137208173354e-05| +|cran|scico|1.5061777723137447e-05| +|cran|rcartocolor|1.5061777723137447e-05| +|pypi|[marshmallow](https://github.com/marshmallow-code/marshmallow)|1.505863435187876e-05| +|pypi|[google-cloud-core](https://github.com/googleapis/python-cloud-core)|1.5010964769152451e-05| +|pypi|[numpy-financial](https://numpy.org/numpy-financial/)|1.4927241433265527e-05| +|pypi|[pvlib](https://github.com/pvlib/pvlib-python)|1.4927241433265527e-05| +|pypi|[bumpversion](https://pypi.org/project/bumpversion)|1.4909638554216867e-05| +|cran|RcppDE|1.4909638554216867e-05| +|cran|gdalUtils|1.4909638554216867e-05| +|npm|[tslint-config-prettier](https://github.com/prettier/tslint-config-prettier#readme)|1.4909638554216867e-05| +|npm|microbundle|1.4909638554216867e-05| +|npm|const-version|1.4909638554216867e-05| +|pypi|[xlrd](https://pypi.org/project/xlrd)|1.4854652278698192e-05| +|pypi|[xgboost](https://github.com/dmlc/xgboost)|1.479801559177889e-05| +|cran|[emld](https://docs.ropensci.org/emld/)|1.4793459552495713e-05| +|pypi|[numcodecs](https://github.com/zarr-developers/numcodecs)|1.4791741661769027e-05| +|pypi|[testtools](https://github.com/testing-cabal/testtools)|1.4769913941480205e-05| +|pypi|[fixtures](https://pypi.org/project/fixtures)|1.4769913941480205e-05| +|cran|FNN|1.4713102409638552e-05| +|cran|BiocVersion|1.4644625699594717e-05| +|rubygems|[coveralls](https://coveralls.io)|1.4576006726048365e-05| +|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|1.4572059623142612e-05| +|cran|rstantools|1.4513557074598204e-05| +|cran|rhub|1.450652329055656e-05| +|cran|gmailr|1.450652329055656e-05| +|cran|foghorn|1.450652329055656e-05| +|cran|rversions|1.450652329055656e-05| +|pypi|[xxhash](https://pypi.org/project/xxhash)|1.4505739676974148e-05| +|pypi|[autodocsumm](https://pypi.org/project/autodocsumm)|1.4501628964838947e-05| +|cran|tm.lexicon.GeneralInquirer|1.4480372037600952e-05| +|cran|Rpoppler|1.4480372037600952e-05| +|cran|Rcampdf|1.4480372037600952e-05| +|cran|filehash|1.4480372037600952e-05| +|pypi|[pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp)|1.4346161884587012e-05| +|pypi|[grayskull](https://pypi.org/project/grayskull)|1.4313253012048192e-05| +|cran|[fuzzyjoin](https://github.com/dgrtwo/fuzzyjoin)|1.4304911955514367e-05| +|npm|[is-plain-object](https://github.com/jonschlinkert/is-plain-object)|1.4276947074010328e-05| +|pypi|[click-repl](https://pypi.org/project/click-repl)|1.4171997908991338e-05| +|pypi|[click-didyoumean](https://pypi.org/project/click-didyoumean)|1.4171997908991338e-05| +|cran|PolynomF|1.4124920735573875e-05| +|cran|[tokenizers](https://lincolnmullen.com/software/tokenizers/)|1.4071034613543005e-05| +|cran|[lmerTest](https://github.com/runehaubo/lmerTestR)|1.4066683391347015e-05| +|npm|jsmd|1.3941480206540447e-05| +|npm|is-mergeable-object|1.3941480206540447e-05| +|pypi|[python-keystoneclient](https://docs.openstack.org/python-keystoneclient/latest/)|1.384819277108434e-05| +|npm|gzip-size|1.3820998278829604e-05| +|cran|bignum|1.376274328081557e-05| +|cran|[shinyWidgets](https://github.com/dreamRs/shinyWidgets)|1.3681628363002235e-05| +|cran|metafor|1.36353491538705e-05| +|cran|RSpectra|1.3631669535283991e-05| +|pypi|[pycares](https://pypi.org/project/pycares)|1.3625115848007413e-05| +|cran|future.callr|1.360995067480584e-05| +|pypi|[annoy](https://github.com/spotify/annoy)|1.357778941854374e-05| +|pypi|[sphinxcontrib.programoutput](https://pypi.org/project/sphinxcontrib.programoutput)|1.357778941854374e-05| +|pypi|[visdom](https://pypi.org/project/visdom)|1.357778941854374e-05| +|pypi|[nmslib](https://pypi.org/project/nmslib)|1.357778941854374e-05| +|pypi|[pyemd](https://pypi.org/project/pyemd)|1.357778941854374e-05| +|pypi|[Morfessor](https://pypi.org/project/Morfessor)|1.357778941854374e-05| +|pypi|[Pyro4](https://pypi.org/project/Pyro4)|1.357778941854374e-05| +|cran|[solrium](https://github.com/ropensci/solrium (devel))|1.353334767641998e-05| +|cran|party|1.3519201664052584e-05| +|npm|accepts|1.3507050178736925e-05| +|cran|[haven](https://haven.tidyverse.org)|1.3424210676698908e-05| +|cran|FastRWeb|1.3418674698795181e-05| +|cran|quantmod|1.3418674698795181e-05| +|cran|truncreg|1.3377638996352384e-05| +|cran|panelr|1.3377638996352384e-05| +|cran|metaBMA|1.3377638996352384e-05| +|cran|lfe|1.3377638996352384e-05| +|cran|ivreg|1.3377638996352384e-05| +|cran|GLMMadaptive|1.3377638996352384e-05| +|cran|clubSandwich|1.3377638996352384e-05| +|cran|cgam|1.3377638996352384e-05| +|cran|blme|1.3377638996352384e-05| +|cran|bbmle|1.3377638996352384e-05| +|cran|aod|1.3377638996352384e-05| +|cran|geojsonlint|1.3360585197934596e-05| +|cran|PASWR|1.3340924136104858e-05| +|rubygems|[byebug](https://github.com/deivid-rodriguez/byebug)|1.3324118707501877e-05| +|pypi|[kopt](https://pypi.org/project/kopt)|1.325301204819277e-05| +|cran|ggfittext|1.325301204819277e-05| +|cran|taxadb|1.3244406196213425e-05| +|cran|assertive.code|1.3207718090406738e-05| +|cran|assertive.reflection|1.3207718090406738e-05| +|cran|assertive.data.us|1.3207718090406738e-05| +|cran|assertive.data.uk|1.3207718090406738e-05| +|cran|assertive.data|1.3207718090406738e-05| +|cran|assertive.models|1.3207718090406738e-05| +|cran|assertive.matrices|1.3207718090406738e-05| +|cran|assertive.sets|1.3207718090406738e-05| +|cran|assertive.files|1.3207718090406738e-05| +|cran|assertive.datetimes|1.3207718090406738e-05| +|cran|assertive.strings|1.3207718090406738e-05| +|cran|assertive.numbers|1.3207718090406738e-05| +|cran|assertive.types|1.3207718090406738e-05| +|cran|assertive.properties|1.3207718090406738e-05| +|cran|assertive.base|1.3207718090406738e-05| +|pypi|[uvicorn](https://pypi.org/project/uvicorn)|1.3150391530946925e-05| +|cran|gsl|1.3138242625675114e-05| +|npm|terser|1.3113825839070568e-05| +|pypi|[altair](http://altair-viz.github.io)|1.3067086527929892e-05| +|pypi|[lcapy](https://pypi.org/project/lcapy)|1.30643054144288e-05| +|pypi|[scikit-spatial](https://pypi.org/project/scikit-spatial)|1.30643054144288e-05| +|pypi|[textwrapper](https://pypi.org/project/textwrapper)|1.30643054144288e-05| +|pypi|[anytree](https://pypi.org/project/anytree)|1.30643054144288e-05| +|pypi|[scikit-fem](https://pypi.org/project/scikit-fem)|1.30643054144288e-05| +|pypi|[property-cached](https://pypi.org/project/property-cached)|1.30643054144288e-05| +|pypi|[heapdict](https://pypi.org/project/heapdict)|1.30643054144288e-05| +|pypi|[SoundCard](https://github.com/bastibe/SoundCard)|1.301204819277109e-05| +|pypi|[SoundFile](https://github.com/bastibe/PySoundFile)|1.301204819277109e-05| +|pypi|[gurobipy](https://pypi.org/project/gurobipy)|1.2938116100766703e-05| +|pypi|[google-cloud-storage](https://github.com/googleapis/python-storage)|1.285778645018421e-05| +|cran|Biobase|1.2812214146468406e-05| +|pypi|[librosa](https://pypi.org/project/librosa)|1.2805654435925524e-05| +|pypi|[Flask-SQLAlchemy](https://pypi.org/project/Flask-SQLAlchemy)|1.2779690189328742e-05| +|rubygems|thor|1.2761433489058272e-05| +|pypi|[ephem](https://pypi.org/project/ephem)|1.2740963855421686e-05| +|cran|[clisymbols](https://github.com/gaborcsardi/clisymbols)|1.2720831317782064e-05| +|pypi|[openstacksdk](https://pypi.org/project/openstacksdk)|1.2643373493975902e-05| +|pypi|[black>=20.8b1](https://pypi.org/project/black>=20.8b1)|1.2636547657983364e-05| +|pypi|[importlib_metadata>=0.7](https://pypi.org/project/importlib_metadata>=0.7)|1.2636547657983364e-05| +|pypi|[h5py>=3](https://pypi.org/project/h5py>=3)|1.2636547657983364e-05| +|pypi|[npx](https://pypi.org/project/npx)|1.26293408929837e-05| +|pypi|[meshplex](https://pypi.org/project/meshplex)|1.26293408929837e-05| +|pypi|[skrebate](https://github.com/EpistasisLab/scikit-rebate)|1.26293408929837e-05| +|pypi|[dask-ml](https://pypi.org/project/dask-ml)|1.26293408929837e-05| +|pypi|[update-checker](https://pypi.org/project/update-checker)|1.26293408929837e-05| +|cran|[wordcloud](http://blog.fellstat.com/?cat=11 http://www.fellstat.com)|1.2505845284799463e-05| +|cran|clusterGeneration|1.2501870837386813e-05| +|cran|[mlr3misc](https://mlr3misc.mlr-org.com)|1.2480154732642935e-05| +|cran|bs4Dash|1.2473978213532174e-05| +|cran|rticles|1.2470334586625839e-05| +|cran|locfit|1.2460531782301622e-05| +|pypi|[pytest-mpl](https://pypi.org/project/pytest-mpl)|1.2447800250776863e-05| +|cran|nonnest2|1.2408666925767586e-05| +|cran|mlogit|1.2408666925767586e-05| +|cran|[logger](https://daroczig.github.io/logger/)|1.2339889026636018e-05| +|cran|leaps|1.2337316298159672e-05| +|pypi|[azure-storage-blob](https://pypi.org/project/azure-storage-blob)|1.232884239661348e-05| +|cran|[geometry](https://davidcsterratt.github.io/geometry)|1.2283993115318432e-05| +|pypi|[param](https://pypi.org/project/param)|1.2269448687715993e-05| +|pypi|[pyct](https://pypi.org/project/pyct)|1.2269448687715993e-05| +|cran|stm|1.2263805697880342e-05| +|cran|topicmodels|1.2263805697880342e-05| +|pypi|[pymatreader](https://pypi.org/project/pymatreader)|1.2253804177749958e-05| +|pypi|[pytest-benchmark](https://pypi.org/project/pytest-benchmark)|1.2243927991925284e-05| +|cran|FMStable|1.219879518072289e-05| +|cran|tree|1.219879518072289e-05| +|cran|sparsesvd|1.219879518072289e-05| +|pypi|[python-subunit](https://pypi.org/project/python-subunit)|1.2145817555938037e-05| +|pypi|[ddt](https://pypi.org/project/ddt)|1.2145817555938037e-05| +|npm|rollup-plugin-replace|1.2132081748361994e-05| +|npm|babel-plugin-external-helpers|1.2132081748361994e-05| +|pypi|[m2r](https://pypi.org/project/m2r)|1.2081890060240962e-05| +|rubygems|timecop|1.2049422178509958e-05| +|rubygems|actionmailer|1.197639537742808e-05| +|cran|Bessel|1.197289156626506e-05| +|pypi|[emoji](https://pypi.org/project/emoji)|1.1927710843373494e-05| +|pypi|[pynumpress](https://pypi.org/project/pynumpress)|1.1927710843373494e-05| +|npm|csso|1.1927710843373494e-05| +|npm|google-closure-compiler|1.1927710843373494e-05| +|npm|uglify-es|1.1927710843373494e-05| +|npm|ora|1.1927710843373494e-05| +|npm|update-notifier|1.1927710843373494e-05| +|npm|crass|1.1927710843373494e-05| +|npm|sqwish|1.1927710843373494e-05| +|npm|clean-css|1.1927710843373494e-05| +|npm|html-minifier|1.1927710843373494e-05| +|npm|node-version|1.1927710843373494e-05| +|pypi|[user-agents](https://pypi.org/project/user-agents)|1.1927710843373492e-05| +|rubygems|json|1.1926406793354174e-05| +|npm|parseurl|1.1892987471865484e-05| +|cran|[humaniformat](https://github.com/ironholds/humaniformat/)|1.188600556070436e-05| +|pypi|[dataclasses-json](https://pypi.org/project/dataclasses-json)|1.1879872430900075e-05| +|npm|ascli|1.1808433734939759e-05| +|pypi|[sphinx-version-warning](https://pypi.org/project/sphinx-version-warning)|1.1790508974674206e-05| +|cran|[dbscan](https://github.com/mhahsler/dbscan)|1.1783293873927203e-05| +|cran|tracerer|1.1699429296131895e-05| +|rubygems|rails-dom-testing|1.1684288173100564e-05| +|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|1.1676601141407735e-05| +|pypi|[s3fs](https://pypi.org/project/s3fs)|1.1676601141407735e-05| +|pypi|[ocifs](https://pypi.org/project/ocifs)|1.1676601141407735e-05| +|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|1.1676601141407735e-05| +|pypi|[pygit2](https://pypi.org/project/pygit2)|1.1676601141407735e-05| +|pypi|[fusepy](https://pypi.org/project/fusepy)|1.1676601141407735e-05| +|pypi|[dropbox](https://pypi.org/project/dropbox)|1.1676601141407735e-05| +|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|1.1676601141407735e-05| +|pypi|[adlfs](https://pypi.org/project/adlfs)|1.1676601141407735e-05| +|cran|stabledist|1.1657043558850788e-05| +|rubygems|actionpack|1.1593004671748217e-05| +|npm|execa|1.1564527340129749e-05| +|pypi|[pympler](https://pypi.org/project/pympler)|1.1528732444571183e-05| +|cran|spacetime|1.1504288894709272e-05| +|pypi|[pytray](https://github.com/muhrin/pytray.git)|1.1503404924044012e-05| +|rubygems|rake-compiler-dock|1.1501721170395867e-05| +|pypi|[aiodns](https://pypi.org/project/aiodns)|1.1367172564580374e-05| +|pypi|[pyshp](https://pypi.org/project/pyshp)|1.1359724612736661e-05| +|pypi|[pytest-json-report](https://pypi.org/project/pytest-json-report)|1.1359724612736661e-05| +|pypi|[noodles](http://nlesc.github.io/noodles)|1.1358135840063541e-05| +|pypi|[sas7bdat](https://pypi.org/project/sas7bdat)|1.1299936588459098e-05| +|pypi|[sas-kernel](https://pypi.org/project/sas-kernel)|1.1299936588459098e-05| +|pypi|[saspy](https://pypi.org/project/saspy)|1.1299936588459098e-05| +|cran|[fdrtool](https://strimmerlab.github.io/software/fdrtool/)|1.1260426320667288e-05| +|cran|[move](https://bartk.gitlab.io/move/)|1.1230636833046472e-05| +|pypi|[soundfile](https://pypi.org/project/soundfile)|1.121370000888073e-05| +|pypi|[portray](https://pypi.org/project/portray)|1.118222891566265e-05| +|pypi|[typing-inspect](https://pypi.org/project/typing-inspect)|1.118222891566265e-05| +|pypi|[marshmallow-enum](https://pypi.org/project/marshmallow-enum)|1.118222891566265e-05| +|npm|[jade](http://jade-lang.com)|1.118222891566265e-05| +|npm|superagent|1.118222891566265e-05| +|npm|connect-flash|1.118222891566265e-05| +|npm|isexe|1.118222891566265e-05| +|cran|debugme|1.1159992619660122e-05| +|npm|babel-loader|1.1143775371555134e-05| +|pypi|[databases](https://pypi.org/project/databases)|1.1123590217237812e-05| +|cran|sm|1.1105110095554631e-05| +|cran|goftest|1.1105110095554631e-05| +|cran|tensor|1.1105110095554631e-05| +|cran|spatstat.sparse|1.1105110095554631e-05| +|npm|compressible|1.100473321858864e-05| +|npm|bytes|1.100473321858864e-05| +|npm|[rollup-plugin-uglify](https://github.com/TrySound/rollup-plugin-uglify)|1.0992469879518072e-05| +|cran|[rdflib](https://github.com/ropensci/rdflib)|1.0954020162281779e-05| +|requirements.txt|gitlab/cracklet/cracklet|1.095290251916758e-05| +|requirements.txt|gitlab/LouisLab/PiVR|1.095290251916758e-05| +|requirements.txt|github/kkjawz/coref-ee|1.095290251916758e-05| +|requirements.txt|github/PolymerGuy/recolo|1.095290251916758e-05| +|requirements.txt|github/csbioinfopk/iSumoK-PseAAC|1.095290251916758e-05| +|requirements.txt|github/kinnala/scikit-fem|1.095290251916758e-05| +|requirements.txt|github/onnela-lab/beiwe-backend|1.095290251916758e-05| +|requirements.txt|github/surf-eds/one-button-compute|1.095290251916758e-05| +|requirements.txt|github/ketch/RK-Opt|1.095290251916758e-05| +|requirements.txt|github/BioGearsEngine/core|1.095290251916758e-05| +|requirements.txt|github/Narayana-Rao/SAR-tools|1.095290251916758e-05| +|requirements.txt|github/MD-Studio/MDStudio|1.095290251916758e-05| +|requirements.txt|github/villano-lab/nrCascadeSim|1.095290251916758e-05| +|requirements.txt|github/qMRLab/qMRLab|1.095290251916758e-05| +|requirements.txt|github/sorenwacker/ProteomicsQC|1.095290251916758e-05| +|requirements.txt|github/telatin/qax|1.095290251916758e-05| +|requirements.txt|github/statgen/Minimac4|1.095290251916758e-05| +|requirements.txt|github/Rohit-Kundu/ET-NET_Covid-Detection|1.095290251916758e-05| +|requirements.txt|github/gvilitechltd/LibSWIFFT|1.095290251916758e-05| +|requirements.txt|github/UUDigitalHumanitieslab/texcavator|1.095290251916758e-05| +|requirements.txt|github/robashaw/libecpint|1.095290251916758e-05| +|requirements.txt|github/JLiangLab/TransVW|1.095290251916758e-05| +|requirements.txt|github/candYgene/siga|1.095290251916758e-05| +|requirements.txt|github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs|1.095290251916758e-05| +|requirements.txt|github/ggciag/mandyoc|1.095290251916758e-05| +|requirements.txt|github/nextstrain/nextclade|1.095290251916758e-05| +|requirements.txt|github/wmglab-duke/ascent|1.095290251916758e-05| +|requirements.txt|github/MRChemSoft/mrchem|1.095290251916758e-05| +|requirements.txt|github/CAMI-challenge/CAMITAX|1.095290251916758e-05| +|requirements.txt|github/LSARP/ProteomicsQC|1.095290251916758e-05| +|requirements.txt|github/neuroanatomy/reorient|1.095290251916758e-05| +|requirements.txt|github/inpefess/gym-saturation|1.095290251916758e-05| +|requirements.txt|github/DSIMB/medusa|1.095290251916758e-05| +|requirements.txt|github/3d-pli/fastpli|1.095290251916758e-05| +|requirements.txt|github/lutteropp/NetRAX|1.095290251916758e-05| +|requirements.txt|github/grant-m-s/astronomicAL|1.095290251916758e-05| +|requirements.txt|github/ImperialCollegeLondon/champ|1.095290251916758e-05| +|requirements.txt|github/snowformatics/macrobot|1.095290251916758e-05| +|requirements.txt|github/Climdyn/qgs|1.095290251916758e-05| +|requirements.txt|github/diCenzo-GC/Tn-Core-webserver|1.095290251916758e-05| +|requirements.txt|github/iontorrent/TS|1.095290251916758e-05| +|requirements.txt|github/hemanthpruthvi/PyAstroPol|1.095290251916758e-05| +|requirements.txt|github/nlesc/embodied-emotions-scripts|1.095290251916758e-05| +|requirements.txt|github/LINNAE-project/SFB-Annotator|1.095290251916758e-05| +|requirements.txt|github/andr1976/HydDown|1.095290251916758e-05| +|requirements.txt|github/labsyspharm/minerva-story|1.095290251916758e-05| +|requirements.txt|github/mswzeus/TargetNet|1.095290251916758e-05| +|requirements.txt|github/STEllAR-GROUP/hpx|1.095290251916758e-05| +|requirements.txt|github/BioinfoUNIBA/REDItools2|1.095290251916758e-05| +|requirements.txt|github/GilbertLabUCSF/CanDI|1.095290251916758e-05| +|requirements.txt|github/Single-Cell-Graph-Learning/scSGL|1.095290251916758e-05| +|requirements.txt|github/chemfiles/chemfiles|1.095290251916758e-05| +|requirements.txt|github/he2016012996/CABnet|1.095290251916758e-05| +|requirements.txt|github/monarch-initiative/loinc2hpo|1.095290251916758e-05| +|requirements.txt|github/abinit/abinit|1.095290251916758e-05| +|requirements.txt|github/arnikz/PIQMIe|1.095290251916758e-05| +|requirements.txt|github/CouncilDataProject/cookiecutter-cdp-deployment|1.095290251916758e-05| +|requirements.txt|github/Julian/jsonschema|1.095290251916758e-05| +|requirements.txt|github/amrex-astro/Castro|1.095290251916758e-05| +|requirements.txt|github/ablab/TandemTools|1.095290251916758e-05| +|requirements.txt|github/spack/spack|1.095290251916758e-05| +|requirements.txt|github/shandley/hecatomb|1.095290251916758e-05| +|requirements.txt|github/NLeSC-GO-common-infrastructure/marzipan|1.095290251916758e-05| +|requirements.txt|github/soraxas/sbp-env|1.095290251916758e-05| +|requirements.txt|github/learningsimulator/learningsimulator|1.095290251916758e-05| +|requirements.txt|github/mms-fcul/PypKa|1.095290251916758e-05| +|requirements.txt|github/TinkerTools/tinker9|1.095290251916758e-05| +|requirements.txt|github/NLeSC/ShiCo|1.095290251916758e-05| +|requirements.txt|github/SuLab/Wikidata-phenomizer|1.095290251916758e-05| +|requirements.txt|github/zhoux85/scAdapt|1.095290251916758e-05| +|requirements.txt|github/JuliaHCI/ADI.jl|1.095290251916758e-05| +|requirements.txt|github/AMReX-Astro/Nyx|1.095290251916758e-05| +|requirements.txt|github/broadinstitute/cromwell|1.095290251916758e-05| +|requirements.txt|github/SPARC-FAIR-Codeathon/aqua|1.095290251916758e-05| +|requirements.txt|github/JLBLine/WODEN|1.095290251916758e-05| +|requirements.txt|github/citation-file-format/citation-file-format|1.095290251916758e-05| +|requirements.txt|github/erikbern/ann-benchmarks|1.095290251916758e-05| +|requirements.txt|github/jdber1/opendrop|1.095290251916758e-05| +|requirements.txt|github/ot483/NetCom|1.095290251916758e-05| +|requirements.txt|github/enveda/RPath|1.095290251916758e-05| +|requirements.txt|github/TeamCOMPAS/COMPAS|1.095290251916758e-05| +|requirements.txt|github/singularityhub/sregistry|1.095290251916758e-05| +|setup.py|gitlab/octopus-code/octopus|1.095290251916758e-05| +|setup.py|gitlab/picos-api/picos|1.095290251916758e-05| +|setup.py|gitlab/BioimageInformaticsGroup/openphi|1.095290251916758e-05| +|setup.py|gitlab/Molcas/OpenMolcas|1.095290251916758e-05| +|setup.py|gitlab/gims-developers/gims|1.095290251916758e-05| +|setup.py|gitlab/jason-rumengan/pyarma|1.095290251916758e-05| +|setup.py|gitlab/fduchate/predihood|1.095290251916758e-05| +|setup.py|github/ekaterinailin/AltaiPony|1.095290251916758e-05| +|setup.py|github/wdecoster/nanopack|1.095290251916758e-05| +|setup.py|github/era-urban/wrfpy|1.095290251916758e-05| +|setup.py|github/ynop/audiomate|1.095290251916758e-05| +|setup.py|github/glotzerlab/freud|1.095290251916758e-05| +|setup.py|github/glotzerlab/coxeter|1.095290251916758e-05| +|setup.py|github/IKNL/vantage6|1.095290251916758e-05| +|setup.py|github/Kuifje02/vrpy|1.095290251916758e-05| +|setup.py|github/bio-phys/BioEn|1.095290251916758e-05| +|setup.py|github/popgenmethods/smcpp|1.095290251916758e-05| +|setup.py|github/Filter-Bubble/e2e-Dutch|1.095290251916758e-05| +|setup.py|github/dmey/synthia|1.095290251916758e-05| +|setup.py|github/FSEC-Photovoltaics/pvrpm-lcoe|1.095290251916758e-05| +|setup.py|github/jbuisine/macop|1.095290251916758e-05| +|setup.py|github/MrMinimal64/multivar_horner|1.095290251916758e-05| +|setup.py|github/thejasvibr/bat_beamshapes|1.095290251916758e-05| +|setup.py|github/atomneb/AtomNeb-py|1.095290251916758e-05| +|setup.py|github/eScatter/pyelsepa|1.095290251916758e-05| +|setup.py|github/amusecode/amuse|1.095290251916758e-05| +|setup.py|github/ketch/nodepy|1.095290251916758e-05| +|setup.py|github/fAndreuzzi/BisPy|1.095290251916758e-05| +|setup.py|github/oschwengers/referenceseeker|1.095290251916758e-05| +|setup.py|github/oschwengers/platon|1.095290251916758e-05| +|setup.py|github/oschwengers/bakta|1.095290251916758e-05| +|setup.py|github/mscroggs/symfem|1.095290251916758e-05| +|setup.py|github/Magritte-code/Magritte|1.095290251916758e-05| +|setup.py|github/cadop/seg1d|1.095290251916758e-05| +|setup.py|github/elwinter/nnde|1.095290251916758e-05| +|setup.py|github/AlphonsG/Rainbow-Optical-Flow-For-ALI|1.095290251916758e-05| +|setup.py|github/omuse-geoscience/omuse|1.095290251916758e-05| +|setup.py|github/tariqdaouda/CAMAP|1.095290251916758e-05| +|setup.py|github/Materials-Consortia/optimade-python-tools|1.095290251916758e-05| +|setup.py|github/RTIInternational/gobbli|1.095290251916758e-05| +|setup.py|github/MD-Studio/cerulean|1.095290251916758e-05| +|setup.py|github/TPI-Immunogenetics/igmat|1.095290251916758e-05| +|setup.py|github/nlesc-ave/ave-rest-service|1.095290251916758e-05| +|setup.py|github/virgesmith/neworder|1.095290251916758e-05| +|setup.py|github/rajeshrinet/pystokes|1.095290251916758e-05| +|setup.py|github/rodluger/starry_process|1.095290251916758e-05| +|setup.py|github/compomics/DeepLC|1.095290251916758e-05| +|setup.py|github/BartoszBartmanski/StoSpa2|1.095290251916758e-05| +|setup.py|github/richteague/disksurf|1.095290251916758e-05| +|setup.py|github/Quantum-Dynamics-Hub/libra-code|1.095290251916758e-05| +|setup.py|github/zarr-developers/zarr-python|1.095290251916758e-05| +|setup.py|github/ConorMacBride/mcalf|1.095290251916758e-05| +|setup.py|github/SCM-NV/qmflows-namd|1.095290251916758e-05| +|setup.py|github/SCM-NV/qmflows|1.095290251916758e-05| +|setup.py|github/SCM-NV/pyZacros|1.095290251916758e-05| +|setup.py|github/DeltaRCM/pyDeltaRCM|1.095290251916758e-05| +|setup.py|github/szymon-datalions/pyinterpolate|1.095290251916758e-05| +|setup.py|github/fair-data/fairdatapoint-client|1.095290251916758e-05| +|setup.py|github/hiddenSymmetries/simsopt|1.095290251916758e-05| +|setup.py|github/fair-software/fairtally|1.095290251916758e-05| +|setup.py|github/fair-software/howfairis|1.095290251916758e-05| +|setup.py|github/zdelrosario/py_grama|1.095290251916758e-05| +|setup.py|github/snakemake/snakemake|1.095290251916758e-05| +|setup.py|github/AA-ALERT/frbcatdb|1.095290251916758e-05| +|setup.py|github/UNSW-CEEM/nempy|1.095290251916758e-05| +|setup.py|github/AlexMikes/AutoFunc|1.095290251916758e-05| +|setup.py|github/parallelwindfarms/byteparsing|1.095290251916758e-05| +|setup.py|github/weecology/retriever|1.095290251916758e-05| +|setup.py|github/DrMarc/slab|1.095290251916758e-05| +|setup.py|github/dfujim/bfit|1.095290251916758e-05| +|setup.py|github/cdslaborg/paramonte|1.095290251916758e-05| +|setup.py|github/meinardmueller/synctoolbox|1.095290251916758e-05| +|setup.py|github/meinardmueller/libfmp|1.095290251916758e-05| +|setup.py|github/SWIFTSIM/emulator|1.095290251916758e-05| +|setup.py|github/tool-bin/ukbcc|1.095290251916758e-05| +|setup.py|github/KIT-MBS/pyREX|1.095290251916758e-05| +|setup.py|github/OpenMDAO/dymos|1.095290251916758e-05| +|setup.py|github/SandoghdarLab/PiSCAT|1.095290251916758e-05| +|setup.py|github/spyder-ide/spyder|1.095290251916758e-05| +|setup.py|github/SMTG-UCL/surfaxe|1.095290251916758e-05| +|setup.py|github/dynamicslab/pysindy|1.095290251916758e-05| +|setup.py|github/matchms/matchms|1.095290251916758e-05| +|setup.py|github/matchms/ms2deepscore|1.095290251916758e-05| +|setup.py|github/cupy/cupy|1.095290251916758e-05| +|setup.py|github/qpv-research-group/solcore5|1.095290251916758e-05| +|setup.py|github/smog-server/OpenSMOG|1.095290251916758e-05| +|setup.py|github/LiberTEM/LiberTEM|1.095290251916758e-05| +|setup.py|github/malonge/RagTag|1.095290251916758e-05| +|setup.py|github/symmy596/Polypy|1.095290251916758e-05| +|setup.py|github/symmy596/SurfinPy|1.095290251916758e-05| +|setup.py|github/Oftatkofta/cellocity|1.095290251916758e-05| +|setup.py|github/arabic-digital-humanities/adhtools|1.095290251916758e-05| +|setup.py|github/NLESC-JCER/QMCTorch|1.095290251916758e-05| +|setup.py|github/xenon-middleware/pyxenon|1.095290251916758e-05| +|setup.py|github/ghislainv/forestatrisk|1.095290251916758e-05| +|setup.py|github/felixchenier/kineticstoolkit|1.095290251916758e-05| +|setup.py|github/mishioo/tesliper|1.095290251916758e-05| +|setup.py|github/exafmm/exafmm-t|1.095290251916758e-05| +|setup.py|github/radifar/PyPLIF-HIPPOS|1.095290251916758e-05| +|setup.py|github/clawpack/clawpack|1.095290251916758e-05| +|setup.py|github/jianhuupenn/SpaGCN|1.095290251916758e-05| +|setup.py|github/lantunes/cellpylib|1.095290251916758e-05| +|setup.py|github/TriPed-Robot/TriP|1.095290251916758e-05| +|setup.py|github/Effective-Quadratures/Effective-Quadratures|1.095290251916758e-05| +|setup.py|github/rgerum/pylustrator|1.095290251916758e-05| +|setup.py|github/Social-Evolution-and-Behavior/anTraX|1.095290251916758e-05| +|setup.py|github/0xCoto/Virgo|1.095290251916758e-05| +|setup.py|github/multiscale/muscle3|1.095290251916758e-05| +|setup.py|github/Yu-Group/veridical-flow|1.095290251916758e-05| +|setup.py|github/elkebir-group/Jumper|1.095290251916758e-05| +|setup.py|github/scipion-em/scipion-em-continuousflex|1.095290251916758e-05| +|setup.py|github/aspuru-guzik-group/funsies|1.095290251916758e-05| +|setup.py|github/numba/numba|1.095290251916758e-05| +|setup.py|github/lkmklsmn/DrivAER|1.095290251916758e-05| +|setup.py|github/ComparativeGenomicsToolkit/cactus|1.095290251916758e-05| +|setup.py|github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY|1.095290251916758e-05| +|setup.py|github/KALMUS-Color-Toolkit/KALMUS|1.095290251916758e-05| +|setup.py|github/nlesc/scriptcwl|1.095290251916758e-05| +|setup.py|github/linqs/psl|1.095290251916758e-05| +|setup.py|github/carlosborca/CrystaLattE|1.095290251916758e-05| +|setup.py|github/brainets/frites|1.095290251916758e-05| +|setup.py|github/CFSAN-Biostatistics/SeroTools|1.095290251916758e-05| +|setup.py|github/EISy-as-Py/hardy|1.095290251916758e-05| +|setup.py|github/nicolet5/DiffCapAnalyzer|1.095290251916758e-05| +|setup.py|github/medema-group/bigslice|1.095290251916758e-05| +|setup.py|github/FlowModelingControl/flowtorch|1.095290251916758e-05| +|setup.py|github/biocore/scikit-bio|1.095290251916758e-05| +|setup.py|github/EpistasisLab/tpot|1.095290251916758e-05| +|setup.py|github/EpistasisLab/regens|1.095290251916758e-05| +|setup.py|github/MDAnalysis/mdanalysis|1.095290251916758e-05| +|setup.py|github/dpalmasan/TRUNAJOD2.0|1.095290251916758e-05| +|setup.py|github/PyPSA/atlite|1.095290251916758e-05| +|setup.py|github/Bahler-Lab/pyphe|1.095290251916758e-05| +|setup.py|github/RaRe-Technologies/gensim|1.095290251916758e-05| +|setup.py|github/edwardoughton/itmlogic|1.095290251916758e-05| +|setup.py|github/icecube/FIRESONG|1.095290251916758e-05| +|setup.py|github/HillLab/SomaticSiMu|1.095290251916758e-05| +|setup.py|github/jollejolles/pirecorder|1.095290251916758e-05| +|setup.py|github/SouthGreenPlatform/PyRice|1.095290251916758e-05| +|setup.py|github/fakedrtom/oncogemini|1.095290251916758e-05| +|setup.py|github/davidebolo1993/TRiCoLOR|1.095290251916758e-05| +|setup.py|github/davidebolo1993/VISOR|1.095290251916758e-05| +|setup.py|github/yatiml/yatiml|1.095290251916758e-05| +|setup.py|github/Nico-Curti/rFBP|1.095290251916758e-05| +|setup.py|github/ECSHackWeek/impedance.py|1.095290251916758e-05| +|setup.py|github/cabb99/open3spn2|1.095290251916758e-05| +|setup.py|github/neuralhydrology/neuralhydrology|1.095290251916758e-05| +|setup.py|github/RamanLab/iCOMIC|1.095290251916758e-05| +|setup.py|github/samaygarg/fuelcell|1.095290251916758e-05| +|setup.py|github/comprna/reorientexpress|1.095290251916758e-05| +|setup.py|github/Singh-Lab/DeMaSk|1.095290251916758e-05| +|setup.py|github/COVID-IWG/epimargin|1.095290251916758e-05| +|setup.py|github.com/idptools/metapredict|1.095290251916758e-05| +|setup.py|github/bio-ontology-research-group/deepgoplus|1.095290251916758e-05| +|setup.py|github/potassco/clingo|1.095290251916758e-05| +|setup.py|github/IMMM-SFA/mosartwmpy|1.095290251916758e-05| +|setup.py|github/rgmyr/corebreakout|1.095290251916758e-05| +|setup.py|github/tylunel/pvpumpingsystem|1.095290251916758e-05| +|setup.py|github/iomega/spec2vec|1.095290251916758e-05| +|setup.py|github/bethgelab/foolbox|1.095290251916758e-05| +|setup.py|github/stammler/simframe|1.095290251916758e-05| +|setup.py|github/ml-evs/matador|1.095290251916758e-05| +|setup.py|github/DrafProject/elmada|1.095290251916758e-05| +|setup.py|github/nlesc-nano/swan|1.095290251916758e-05| +|setup.py|github/nlesc-nano/flamingo|1.095290251916758e-05| +|setup.py|github/nlesc-nano/insilico-server|1.095290251916758e-05| +|setup.py|github/nlesc-nano/ceiba-cli|1.095290251916758e-05| +|setup.py|github/nlesc-nano/ceiba|1.095290251916758e-05| +|setup.py|github/nlesc-nano/CAT|1.095290251916758e-05| +|setup.py|github/nlesc-nano/Moka|1.095290251916758e-05| +|setup.py|github/ElectionDataAnalysis/electiondata|1.095290251916758e-05| +|setup.py|github/pybamm-team/liionpack|1.095290251916758e-05| +|setup.py|github/wilkelab/Opfi|1.095290251916758e-05| +|setup.py|github/jorisparet/partycls|1.095290251916758e-05| +|setup.py|github/s-goldman/Dusty-Evolved-Star-Kit|1.095290251916758e-05| +|setup.py|github/JohannesBuchner/BXA|1.095290251916758e-05| +|setup.py|github/mjacob1002/Eir|1.095290251916758e-05| +|setup.py|github/ORNL/tx2|1.095290251916758e-05| +|setup.py|github/colour-science/colour|1.095290251916758e-05| +|setup.py|github/ModellingWebLab/chaste-codegen|1.095290251916758e-05| +|setup.py|github/DeepRank/DeepRank-GNN|1.095290251916758e-05| +|setup.py|github/DeepRank/pdb2sql|1.095290251916758e-05| +|setup.py|github/DeepRank/iScore|1.095290251916758e-05| +|setup.py|github/DeepRank/pssmgen|1.095290251916758e-05| +|setup.py|github/DeepRank/deeprank|1.095290251916758e-05| +|setup.py|github/athulpg007/AMAT|1.095290251916758e-05| +|setup.py|github/HIPS/autograd|1.095290251916758e-05| +|setup.py|github/shirtsgroup/physical_validation|1.095290251916758e-05| +|setup.py|github/ni1o1/transbigdata|1.095290251916758e-05| +|setup.py|github/hknd23/idcempy|1.095290251916758e-05| +|setup.py|github/panoptes-organization/panoptes|1.095290251916758e-05| +|setup.py|github/Theano/Theano|1.095290251916758e-05| +|setup.py|github/LBNL-ETA/MSWH|1.095290251916758e-05| +|setup.py|github/SirSharpest/NarrowEscapeSimulator|1.095290251916758e-05| +|setup.py|github/htjb/maxsmooth|1.095290251916758e-05| +|setup.py|github/skovaka/UNCALLED|1.095290251916758e-05| +|setup.py|github/easybuilders/easybuild|1.095290251916758e-05| +|setup.py|github/3D-e-Chem/sygma|1.095290251916758e-05| +|setup.py|github/3D-e-Chem/kripodb|1.095290251916758e-05| +|setup.py|github/indralab/pybiopax|1.095290251916758e-05| +|setup.py|github/benvanwerkhoven/kernel_tuner|1.095290251916758e-05| +|setup.py|github/spokenlanguage/platalea|1.095290251916758e-05| +|setup.py|github/NKI-CCB/PRECISE|1.095290251916758e-05| +|setup.py|github/twesterhout/lattice-symmetries|1.095290251916758e-05| +|setup.py|github/matplotlib/matplotlib|1.095290251916758e-05| +|setup.py|github/BioSTEAMDevelopmentGroup/thermosteam|1.095290251916758e-05| +|setup.py|github/slzarate/parliament2|1.095290251916758e-05| +|setup.py|github/aiidateam/kiwipy|1.095290251916758e-05| +|setup.py|github/opimwue/ddop|1.095290251916758e-05| +|setup.py|github/bootphon/phonemizer|1.095290251916758e-05| +|setup.py|github/CEED/libCEED|1.095290251916758e-05| +|setup.py|github/dask/dask|1.095290251916758e-05| +|setup.py|github/aalhossary/pyemgpipeline|1.095290251916758e-05| +|setup.py|github/rhayes777/PyAutoFit|1.095290251916758e-05| +|setup.py|github/conda/conda|1.095290251916758e-05| +|setup.py|github/eWaterCycle/grpc4bmi|1.095290251916758e-05| +|setup.py|github/eWaterCycle/jupyterlab_thredds|1.095290251916758e-05| +|setup.py|github/AlexanderLabWHOI/EUKulele|1.095290251916758e-05| +|setup.py|github/PfizerRD/sit2standpy|1.095290251916758e-05| +|setup.py|github/circuitgraph/circuitgraph|1.095290251916758e-05| +|setup.py|github/volkamerlab/opencadd|1.095290251916758e-05| +|setup.py|github/odb9402/CNNPeaks|1.095290251916758e-05| +|setup.py|github/KathrynJones1/catwoman|1.095290251916758e-05| +|setup.py|github/NLeSC/cptm|1.095290251916758e-05| +|setup.py|github/NLeSC/Massive-PotreeConverter|1.095290251916758e-05| +|setup.py|github/NLeSC/noodles|1.095290251916758e-05| +|setup.py|github/NLeSC/mcfly|1.095290251916758e-05| +|setup.py|github/NLeSC/boatswain|1.095290251916758e-05| +|setup.py|github/fitbenchmarking/fitbenchmarking|1.095290251916758e-05| +|setup.py|github/CLARIAH/grlc|1.095290251916758e-05| +|setup.py|github/mzy2240/ESA|1.095290251916758e-05| +|setup.py|github/KBNLresearch/ochre|1.095290251916758e-05| +|setup.py|github/jiahecui/SenAOReFoc|1.095290251916758e-05| +|setup.py|github/21cmFAST/21cmFAST|1.095290251916758e-05| +|setup.py|github/cbalbin-FIU/Epitopedia|1.095290251916758e-05| +|setup.py|github/chasmani/piecewise-regression|1.095290251916758e-05| +|setup.py|github/benhid/Sequoya|1.095290251916758e-05| +|setup.py|github/SynthSys/pyOmeroUpload|1.095290251916758e-05| +|setup.py|github/swiftsim/swiftsimio|1.095290251916758e-05| +|setup.py|github/girder/viime|1.095290251916758e-05| +|setup.py|github/dmnfarrell/snpgenie|1.095290251916758e-05| +|setup.py|github/dmnfarrell/epitopepredict|1.095290251916758e-05| +|setup.py|github/BackmanLab/PWSpy|1.095290251916758e-05| +|setup.py|github/NeuralEnsemble/PyNN|1.095290251916758e-05| +|setup.py|github/kerkelae/disimpy|1.095290251916758e-05| +|setup.py|github/fermisurfaces/IFermi|1.095290251916758e-05| +|setup.py|github/shilpagarg/WHdenovo|1.095290251916758e-05| +|setup.py|github/recipy/recipy|1.095290251916758e-05| +|setup.py|github/jmschrei/pomegranate|1.095290251916758e-05| +|setup.py|github/SCECcode/pycsep|1.095290251916758e-05| +|setup.py|github/antoinediez/Sisyphe|1.095290251916758e-05| +|setup.py|github/BritishGeologicalSurvey/pyvolcans|1.095290251916758e-05| +|setup.py|github/DynaSlum/satsense|1.095290251916758e-05| +|setup.py|github/nlppln/nlppln|1.095290251916758e-05| +|setup.py|github/actris-cloudnet/cloudnetpy|1.095290251916758e-05| +|setup.py|github/fruzsinaagocs/oscode|1.095290251916758e-05| +|setup.py|github/equib/pyEQUIB|1.095290251916758e-05| +|setup.py|github/sambit-giri/tools21cm|1.095290251916758e-05| +|setup.py|github/Electrostatics/apbs|1.095290251916758e-05| +|setup.py|github/MillionConcepts/lhorizon|1.095290251916758e-05| +|setup.py|github/coljac/sensie|1.095290251916758e-05| +|setup.py|github/FreBio/komics|1.095290251916758e-05| +|setup.py|github/vsoch/gridtest|1.095290251916758e-05| +|setup.py|github/raspishake/rsudp|1.095290251916758e-05| +|setup.py|github/ERA-URBAN/fm128_radar|1.095290251916758e-05| +|setup.py|github/sagepublishing/rejected_article_tracker_pkg|1.095290251916758e-05| +|setup.py|github/davemlz/eemont|1.095290251916758e-05| +|setup.py|github/sebhaan/geobo|1.095290251916758e-05| +|setup.py|github/abrupt-climate/hyper-canny|1.095290251916758e-05| +|setup.py|github/adbar/htmldate|1.095290251916758e-05| +|setup.py|github/singularityhub/singularity-compose|1.095290251916758e-05| +|setup.py|github/singularityhub/singularity-hpc|1.095290251916758e-05| +|setup.py|github/cas-bioinf/rboAnalyzer|1.095290251916758e-05| +|setup.py|github/samuelefiorini/tangle|1.095290251916758e-05| +|DESCRIPTION|gitlab/libreumg/dataquier|1.095290251916758e-05| +|DESCRIPTION|gitlab/ampere2/metalwalls|1.095290251916758e-05| +|DESCRIPTION|github/pmoulos/metaseqR2|1.095290251916758e-05| +|DESCRIPTION|github/isoverse/isoreader|1.095290251916758e-05| +|DESCRIPTION|github/JSB-UCLA/scPNMF|1.095290251916758e-05| +|DESCRIPTION|github/cjbarrie/academictwitteR|1.095290251916758e-05| +|DESCRIPTION|github/kadyb/rgugik|1.095290251916758e-05| +|DESCRIPTION|github/MRCIEU/metaboprep|1.095290251916758e-05| +|DESCRIPTION|github/OrlandoLam/SAMT|1.095290251916758e-05| +|DESCRIPTION|github/VNNikolaidis/nnlib2Rcpp|1.095290251916758e-05| +|DESCRIPTION|github/mdsteiner/EFAtools|1.095290251916758e-05| +|DESCRIPTION|github/azizka/IUCNN|1.095290251916758e-05| +|DESCRIPTION|github/bommert/stabm|1.095290251916758e-05| +|DESCRIPTION|github/koenderks/jaspAudit|1.095290251916758e-05| +|DESCRIPTION|github/donaldRwilliams/GGMnonreg|1.095290251916758e-05| +|DESCRIPTION|github/donaldRwilliams/BGGM|1.095290251916758e-05| +|DESCRIPTION|github/rickhelmus/patRoon|1.095290251916758e-05| +|DESCRIPTION|github/metaOmics/MetaPath|1.095290251916758e-05| +|DESCRIPTION|github/meenakshi-kushwaha/mmaqshiny|1.095290251916758e-05| +|DESCRIPTION|github/r-cas/caracas|1.095290251916758e-05| +|DESCRIPTION|github/KiranLDA/PAMLr|1.095290251916758e-05| +|DESCRIPTION|github/saeyslab/PeacoQC|1.095290251916758e-05| +|DESCRIPTION|github/saeyslab/nichenetr|1.095290251916758e-05| +|DESCRIPTION|github/lrnv/cort|1.095290251916758e-05| +|DESCRIPTION|github/lydialucchesi/Vizumap|1.095290251916758e-05| +|DESCRIPTION|github/Sydney-Informatics-Hub/OmixLitMiner|1.095290251916758e-05| +|DESCRIPTION|github/stemangiola/tidyHeatmap|1.095290251916758e-05| +|DESCRIPTION|github/mcsiple/mmrefpoints|1.095290251916758e-05| +|DESCRIPTION|github/OwenWard/ppdiag|1.095290251916758e-05| +|DESCRIPTION|github/easystats/performance|1.095290251916758e-05| +|DESCRIPTION|github/easystats/parameters|1.095290251916758e-05| +|DESCRIPTION|github/easystats/effectsize|1.095290251916758e-05| +|DESCRIPTION|github/easystats/correlation|1.095290251916758e-05| +|DESCRIPTION|github/r-spatial/rgee|1.095290251916758e-05| +|DESCRIPTION|github/oneilsh/tidytensor|1.095290251916758e-05| +|DESCRIPTION|github/ArgoCanada/argodata|1.095290251916758e-05| +|DESCRIPTION|github/JonasRieger/ldaPrototype|1.095290251916758e-05| +|DESCRIPTION|github/mlr-org/mcboost|1.095290251916758e-05| +|DESCRIPTION|github/bcgov/shinyssdtools|1.095290251916758e-05| +|DESCRIPTION|github/bcgov/bcdata|1.095290251916758e-05| +|DESCRIPTION|github/BrianAronson/birankr|1.095290251916758e-05| +|DESCRIPTION|github/cran/irtplay|1.095290251916758e-05| +|DESCRIPTION|github/Dulab2020/ARMT|1.095290251916758e-05| +|DESCRIPTION|github/bblodfon/emba|1.095290251916758e-05| +|DESCRIPTION|github/Jinsl-lab/SDImpute|1.095290251916758e-05| +|DESCRIPTION|github/tinglabs/scAIDE|1.095290251916758e-05| +|DESCRIPTION|github/llrs/experDesign|1.095290251916758e-05| +|DESCRIPTION|github/rauschenberger/joinet|1.095290251916758e-05| +|DESCRIPTION|github/vbaliga/gaussplotR|1.095290251916758e-05| +|DESCRIPTION|github/akcochrane/TEfits|1.095290251916758e-05| +|DESCRIPTION|github/kendomaniac/docker4seq|1.095290251916758e-05| +|DESCRIPTION|github/kendomaniac/rCASC|1.095290251916758e-05| +|DESCRIPTION|github/RajLabMSSM/echolocatoR|1.095290251916758e-05| +|DESCRIPTION|github/haoharryfeng/NeuCA|1.095290251916758e-05| +|DESCRIPTION|github/HajkD/LTRpred|1.095290251916758e-05| +|DESCRIPTION|github/flosalbizziae/kataegis|1.095290251916758e-05| +|DESCRIPTION|github/timoast/signac|1.095290251916758e-05| +|DESCRIPTION|github/ClaudioZandonella/PRDA|1.095290251916758e-05| +|DESCRIPTION|github/asancpt/caffsim|1.095290251916758e-05| +|DESCRIPTION|github/tlverse/hal9001|1.095290251916758e-05| +|DESCRIPTION|github/pratheesh3780/grapesAgri1|1.095290251916758e-05| +|DESCRIPTION|github/USEPA/nsink|1.095290251916758e-05| +|DESCRIPTION|github/ColemanRHarris/mxnorm|1.095290251916758e-05| +|DESCRIPTION|github/r-spatialecology/shar|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/rotemplate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/pkgreviewr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/roblog|1.095290251916758e-05| +|DESCRIPTION|github/lasseignelab/CINmetrics|1.095290251916758e-05| +|DESCRIPTION|github/ants-project/ANTs|1.095290251916758e-05| +|DESCRIPTION|github/nhejazi/txshift|1.095290251916758e-05| +|DESCRIPTION|github/nhejazi/medoutcon|1.095290251916758e-05| +|DESCRIPTION|github/ShixiangWang/sigminer|1.095290251916758e-05| +|DESCRIPTION|github/constantAmateur/SoupX|1.095290251916758e-05| +|DESCRIPTION|github/SchlossLab/mikropml|1.095290251916758e-05| +|DESCRIPTION|github/SofieVG/FlowSOM|1.095290251916758e-05| +|DESCRIPTION|github/ComtekAdvancedStructures/cmstatr|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/ambrosia|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/rfasst|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/plutus|1.095290251916758e-05| +|DESCRIPTION|github/TomKellyGenetics/graphsim|1.095290251916758e-05| +|DESCRIPTION|github/YuLab-SMU/treeio|1.095290251916758e-05| +|DESCRIPTION|github/MAnalytics/opitools|1.095290251916758e-05| +|DESCRIPTION|github/MAnalytics/akmedoids|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/reviewer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/monkeylearn|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/arresteddev|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/rodev|1.095290251916758e-05| +|DESCRIPTION|github/wesleyburr/subMaldi|1.095290251916758e-05| +|DESCRIPTION|github/adithirgis/pollucheck|1.095290251916758e-05| +|DESCRIPTION|github/tgrimes/SeqNet|1.095290251916758e-05| +|DESCRIPTION|github/tidyverse/glue|1.095290251916758e-05| +|DESCRIPTION|github/alexander-pastukhov/bistablehistory|1.095290251916758e-05| +|DESCRIPTION|github/ejikeugba/serp|1.095290251916758e-05| +|DESCRIPTION|github/aranyics/ReDCM|1.095290251916758e-05| +|DESCRIPTION|github/mmahmoudian/sivs|1.095290251916758e-05| +|DESCRIPTION|github/SwissClinicalTrialOrganisation/secuTrialR|1.095290251916758e-05| +|DESCRIPTION|github/msalibian/RBF|1.095290251916758e-05| +|DESCRIPTION|github/IndrajeetPatil/ggstatsplot|1.095290251916758e-05| +|DESCRIPTION|github/IndrajeetPatil/statsExpressions|1.095290251916758e-05| +|DESCRIPTION|github/IMB-Computational-Genomics-Lab/scGPS|1.095290251916758e-05| +|DESCRIPTION|github/IMMM-SFA/gamut|1.095290251916758e-05| +|DESCRIPTION|github/SJTU-CGM/ivTerm|1.095290251916758e-05| +|DESCRIPTION|github/VBlesius/RHRT|1.095290251916758e-05| +|DESCRIPTION|github/dankelley/oce|1.095290251916758e-05| +|DESCRIPTION|github/Hegghammer/daiR|1.095290251916758e-05| +|DESCRIPTION|github/wadpac/GGIR|1.095290251916758e-05| +|DESCRIPTION|github/dpseidel/stmove|1.095290251916758e-05| +|DESCRIPTION|github/BMILAB/scLINE|1.095290251916758e-05| +|DESCRIPTION|github/signaturescience/skater|1.095290251916758e-05| +|DESCRIPTION|github/anwarbio/bioassays|1.095290251916758e-05| +|DESCRIPTION|github/niceume/datasailr|1.095290251916758e-05| +|DESCRIPTION|github/nevrome/bleiglas|1.095290251916758e-05| +|DESCRIPTION|github/dgrun/FateID|1.095290251916758e-05| +|DESCRIPTION|github/raredd/kmdata|1.095290251916758e-05| +|DESCRIPTION|github/sachsmc/cosinor|1.095290251916758e-05| +|DESCRIPTION|github/GaryBAYLOR/mixR|1.095290251916758e-05| +|DESCRIPTION|github/humanfactors/FIPS|1.095290251916758e-05| +|DESCRIPTION|github/weizhouUMICH/SAIGE|1.095290251916758e-05| +|DESCRIPTION|github/mrc-ide/individual|1.095290251916758e-05| +|DESCRIPTION|github/johannes-titz/cofad|1.095290251916758e-05| +|DESCRIPTION|github/RETURN-project/BenchmarkRecovery|1.095290251916758e-05| +|DESCRIPTION|github/LindaNab/mecor|1.095290251916758e-05| +|DESCRIPTION|github/CornellLabofOrnithology/auk|1.095290251916758e-05| +|DESCRIPTION|github/yiling0210/APIR|1.095290251916758e-05| +|DESCRIPTION|github/martin3141/spant|1.095290251916758e-05| +|DESCRIPTION|github/radio1988/OneStopRNAseq|1.095290251916758e-05| +|DESCRIPTION|github/r-lib/gert|1.095290251916758e-05| +|DESCRIPTION|github/r-lib/credentials|1.095290251916758e-05| +|DESCRIPTION|github/alan-turing-institute/DetectorChecker|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/trufflesniffer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DoOR.functions|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/colocr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearthhires|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/brranching|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/refsplitr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nodbi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/iheatmapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmplotr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfisheries|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/skynet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/AntWeb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rerddap|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/plater|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stantargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/PostcodesioR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DataPackageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gittargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/parzer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/citesdb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/baRcodeR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chirps|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ghql|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geojsonlint|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ecoengine|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tabulizer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ezknitr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/babette|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/awardFindR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tracerer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treestartr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ckanr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/antiword|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/addressable|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fauxpas|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnpn|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nomisr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rperseus|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/infx|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/helminthR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/USAboundariesData|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rsat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/patentsview|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/microdemic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcoreoa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/drake|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidypmc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/clifro|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxlist|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidync|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrricanes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pixelclasser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider.devtools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgpdd|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/censo2017|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nlrx|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ramlegacy|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jstor|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/finch|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/EML|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/emld|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/onekp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tiler|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RNeXML|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rotl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rsnps|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outcomerate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jagstargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treebase|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tarchetypes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/refimpact|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/googleLanguageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/UCSCXenaTools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tesseract|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bib2df|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wdman|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmextract|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnoaa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/allodb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ots|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/graphql|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rbhl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/arkdb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/terrainr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hunspell|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/paleobioDB|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rplos|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdefra|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/worrms|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gtfsr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hddtools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcitoid|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treedata.table|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxadb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wellknown|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rppo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/neotoma|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/xslt|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hydroscoper|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcites|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/oai|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/BaseSet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/medrxivr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/conditionz|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dataaimsr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dittodb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/textreuse|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/eia|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/qpdf|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxize|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdatacite|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tif|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stplanr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cleanEHR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osfr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/popler|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rAltmetric|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/qualtRics|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/workloopR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/solrium|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/camsRad|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mauricer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/targets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/piggyback|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/comtradr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/crul|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/beautier|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spocc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tradestatistics|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fingertipsR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/Rclean|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgbif|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencontext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/git2r|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jenkins|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider.base|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nasapower|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cyphr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phonfieldwork|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/roadoi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pangaear|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jsonld|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdhs|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearthdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfigshare|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/zbank|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfishbase|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/suppdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/prism|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dataspice|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/git2rdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/webchem|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdflib|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/USAboundaries|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/seasl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gitignore|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/restez|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/lingtypology|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gutenbergr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bold|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cld2|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pendulum|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dbhydroR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/beastier|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/grainchanger|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/staypuft|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/historydata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfema|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdataretriever|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidyhydat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/c14bazAAR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spatsoc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tinkr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rredlist|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/isdparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bikedata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/webmockr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxview|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MODIStsp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nbaR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/traits|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rglobi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylogram|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearth|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rbace|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ssh|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rentrez|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ijtiff|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rorcid|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/NLMR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bowerbird|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/vcr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bomrang|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/getCRUCLdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cRegulome|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rtweet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rusda|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/robotstxt|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DataSpaceR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnassqs|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/charlatan|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/riem|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cde|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geonames|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ritis|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxizedb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mapscanner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrlite|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcrossref|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/GSODR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/elastic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cchecks|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spelling|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tokenizers|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgnparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cld3|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pdftools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/epubr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/sofa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rromeo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/aRxiv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wateRinfo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/landscapetools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/datapack|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/timefuzz|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bibtex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/plotly|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/scrubr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/Rpolyhedra|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opentripplanner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chromer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rmangal|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylocomr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rebird|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rvertnet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencage|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/antanym|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RefManageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/SymbiotaR2|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdryad|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/slopes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rzmq|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/coder|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/unrtf|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/smapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/magick|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/handlr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MODISTools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rtika|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylotaR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/FedData|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pubchunks|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/natserv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jqr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/virtuoso|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hoardr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chlorpromazineR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/namext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stats19|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ruODK|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mctq|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dbparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/internetarchive|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/excluder|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrricanesdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/exoplanets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geojsonio|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wikitaxa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tacmagic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/assertr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pathviewr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rWBclimate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rAvis|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/weathercan|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fulltext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jsonvalidate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mcbette|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DoOR.data|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/visdat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/skimr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/codemetar|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/essurvey|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/biomartr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/randgeo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/photosearcher|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/writexl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mregions|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/av|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/CoordinateCleaner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/europepmc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/circle|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/getlandsat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/EndoMineR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/katex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/binman|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cffr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bittrex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/citecorp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rinat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/lightr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gistr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MtreeRing|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RSelenium|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcol|1.095290251916758e-05| +|DESCRIPTION|github/NLeSC/EEG-epilepsy-diagnosis|1.095290251916758e-05| +|DESCRIPTION|github/NLeSC/compressing-the-sky|1.095290251916758e-05| +|DESCRIPTION|github/david-barnett/microViz|1.095290251916758e-05| +|DESCRIPTION|github/epiforecasts/covidregionaldata|1.095290251916758e-05| +|DESCRIPTION|github/ArkajyotiSaha/RandomForestsGLS|1.095290251916758e-05| +|DESCRIPTION|github/fumi-github/omicwas|1.095290251916758e-05| +|DESCRIPTION|github/ramadatta/CPgeneProfiler|1.095290251916758e-05| +|DESCRIPTION|github/tidymodels/infer|1.095290251916758e-05| +|DESCRIPTION|github/tbep-tech/tbeptools|1.095290251916758e-05| +|DESCRIPTION|github/julia-wrobel/registr|1.095290251916758e-05| +|DESCRIPTION|github/rhenkin/visxhclust|1.095290251916758e-05| +|DESCRIPTION|github/ezer/PAFway|1.095290251916758e-05| +|DESCRIPTION|github/hope-data-science/tidyfst|1.095290251916758e-05| +|DESCRIPTION|github/GabrielNakamura/FishPhyloMaker|1.095290251916758e-05| +|DESCRIPTION|github/rcarragh/c212|1.095290251916758e-05| +|DESCRIPTION|github/prdm0/ropenblas|1.095290251916758e-05| +|DESCRIPTION|github/snystrom/memes|1.095290251916758e-05| +|DESCRIPTION|github/CTU-Bern/presize|1.095290251916758e-05| +|DESCRIPTION|github/saezlab/PHONEMeS|1.095290251916758e-05| +|DESCRIPTION|github/andyphilips/dynamac|1.095290251916758e-05| +|DESCRIPTION|github/xoopR/set6|1.095290251916758e-05| +|DESCRIPTION|github/ecological-cities/home2park|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/allcontributors|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/gendercoder|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/r2readthedocs|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/qcoder|1.095290251916758e-05| +|DESCRIPTION|github/arcaldwell49/SimplyAgree|1.095290251916758e-05| +|DESCRIPTION|github/chainsawriot/sweater|1.095290251916758e-05| +|DESCRIPTION|github/chainsawriot/oolong|1.095290251916758e-05| +|DESCRIPTION|github/DidierMurilloF/FielDHub|1.095290251916758e-05| +|DESCRIPTION|github/VincentAlcazer/StatAid|1.095290251916758e-05| +|DESCRIPTION|github/takfung/ResDisMapper|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/roreviewapi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/autotest|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/srr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/pkgcheck|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/pkgstats|1.095290251916758e-05| +|DESCRIPTION|github/samhforbes/PupillometryR|1.095290251916758e-05| +|DESCRIPTION|github/jorittmo/singcar|1.095290251916758e-05| +|DESCRIPTION|github/abschneider/StrainHub|1.095290251916758e-05| +|DESCRIPTION|github/insilico/cncv|1.095290251916758e-05| +|DESCRIPTION|github/zoometh/iconr|1.095290251916758e-05| +|DESCRIPTION|github/jessecambon/tidygeocoder|1.095290251916758e-05| +|DESCRIPTION|github/mingzehuang/latentcor|1.095290251916758e-05| +|DESCRIPTION|github/zhouzilu/DENDRO|1.095290251916758e-05| +|package.json|gitlab/metafundev/metafun|1.095290251916758e-05| +|package.json|gitlab/magnumpi/magnumpi|1.095290251916758e-05| +|package.json|gitlab/geekysquirrel/bigx|1.095290251916758e-05| +|package.json|github/Yomguithereal/talisman|1.095290251916758e-05| +|package.json|github/wangjun1996/VisFeature|1.095290251916758e-05| +|package.json|github/research-software-directory/research-software-directory|1.095290251916758e-05| +|package.json|github/reproducible-biomedical-modeling/Biosimulations|1.095290251916758e-05| +|package.json|github/PathwayCommons/grounding-search|1.095290251916758e-05| +|package.json|github/interactivereport/OmicsView0|1.095290251916758e-05| +|package.json|github/AA-ALERT/frbcat-web|1.095290251916758e-05| +|package.json|github/MaayanLab/signature-commons-ui|1.095290251916758e-05| +|package.json|github/sonjageorgievska/CClusTera|1.095290251916758e-05| +|package.json|github/davidhoksza/MolArt|1.095290251916758e-05| +|package.json|github/ADAH-EviDENce/evidence|1.095290251916758e-05| +|package.json|github/MichaelSel/edoJS|1.095290251916758e-05| +|package.json|github/phelelani/nf-rnaSeqMetagen|1.095290251916758e-05| +|package.json|github/eweitz/ideogram|1.095290251916758e-05| +|package.json|github/tobiasrausch/alfred|1.095290251916758e-05| +|package.json|github/MolMeDB/MolMeDB|1.095290251916758e-05| +|package.json|github/pmkruyen/dearscholar|1.095290251916758e-05| +|package.json|github/cinemascience/cinema_snap|1.095290251916758e-05| +|package.json|github/amkram/shusher|1.095290251916758e-05| +|package.json|github/lumen-org/lumen|1.095290251916758e-05| +|package.json|github/iomega/zenodo-upload|1.095290251916758e-05| +|package.json|github/iomega/paired-data-form|1.095290251916758e-05| +|package.json|github/CrowdTruth/CrowdTruth|1.095290251916758e-05| +|package.json|github/hetalang/heta-compiler|1.095290251916758e-05| +|package.json|github/biosimulations/Biosimulations|1.095290251916758e-05| +|package.json|github/eucp-project/storyboards|1.095290251916758e-05| +|package.json|github/eucp-project/atlas|1.095290251916758e-05| +|package.json|github/eWaterCycle/eWaterleaf|1.095290251916758e-05| +|package.json|github/eWaterCycle/setup-grpc|1.095290251916758e-05| +|package.json|github/eWaterCycle/Cesium-NcWMS|1.095290251916758e-05| +|package.json|github/eWaterCycle/setup-singularity|1.095290251916758e-05| +|package.json|github/tortellini-tools/action|1.095290251916758e-05| +|package.json|github/NLeSC/DiVE|1.095290251916758e-05| +|package.json|github/NLeSC/ExtJS-DateTime|1.095290251916758e-05| +|package.json|github/NLeSC/xenon-flow|1.095290251916758e-05| +|package.json|github/NLeSC/UncertaintyVisualization|1.095290251916758e-05| +|package.json|github/NLeSC/pattyvis|1.095290251916758e-05| +|package.json|github/NLeSC/nlesc-serverless-boilerplate|1.095290251916758e-05| +|package.json|github/NLeSC/case-law-app|1.095290251916758e-05| +|package.json|github/NLeSC/spot|1.095290251916758e-05| +|package.json|github/NLeSC/docker-couch-admin|1.095290251916758e-05| +|package.json|github/ci-for-science/self-hosted-runners|1.095290251916758e-05| +|package.json|github/PopMedNet-Team/popmednet|1.095290251916758e-05| +|package.json|github/meta-logic/sequoia|1.095290251916758e-05| +|package.json|github/ReGIS-org/regis-v2|1.095290251916758e-05| +|package.json|github/ci-for-research/self-hosted-runners|1.095290251916758e-05| +|package.json|github/emrecdem/emo-spectre|1.095290251916758e-05| +|package.json|github/Via-Appia/via-appia-online-viewer|1.095290251916758e-05| +|package.json|github/DorianDepriester/mtex2Gmsh|1.095290251916758e-05| +|package.json|github/dondi/GRNsight|1.095290251916758e-05| +|package.json|github/bramvandijk88/cacatoo|1.095290251916758e-05| +|package.json|github/klevis-a/kinematics-vis|1.095290251916758e-05| +|package.json|github/EMResearch/EvoMaster|1.095290251916758e-05| +|package.json|github/bio-tools/biotoolsSum|1.095290251916758e-05| +|package.json|github/fairdataihub/SPARClink|1.095290251916758e-05| +|package.json|github/luntergroup/octopus|1.095290251916758e-05| +|package.json|github/nlesc-sherlock/Rig|1.095290251916758e-05| +|package.json|github/TNOCS/csWeb|1.095290251916758e-05| +|package.json|github/citation-file-format/cff-initializer-javascript|1.095290251916758e-05| +|package.json|github/mathjax/MathJax|1.095290251916758e-05| +|package.json|github/vibbits/phyd3|1.095290251916758e-05| +|Gemfile|github/tudelft3d/3dfier|1.095290251916758e-05| +|Gemfile|github/scrook/neuroml-db|1.095290251916758e-05| +|Gemfile|github/quadram-institute-bioscience/dadaist2|1.095290251916758e-05| +|Gemfile|github/codidact/qpixel|1.095290251916758e-05| +|go.mod|github/mlpack/mlpack|1.095290251916758e-05| +|go.mod|github/jasonyangshadow/lpmx|1.095290251916758e-05| +|go.mod|github/sylabs/singularity|1.095290251916758e-05| +|go.mod|github/linksmart/thing-directory|1.095290251916758e-05| +|go.mod|github/containers/podman|1.095290251916758e-05| +|rubygems|activemodel|1.0880993361199901e-05| +|pypi|[Bio](https://github.com/ialbert/bio)|1.0843373493975925e-05| +|pypi|[serotools](https://github.com/CFSAN-Biostatistics/serotools)|1.0843373493975925e-05| +|pypi|[idcempy](https://github.com/hknd23/idcempy)|1.0843373493975925e-05| +|pypi|[vip-hci](https://github.com/vortex-exoplanet/VIP)|1.0843373493975925e-05| +|cran|[redux](https://github.com/richfitz/redux)|1.0843373493975925e-05| +|pypi|[pyarma](https://pyarma.sourceforge.io)|1.0843373493975904e-05| +|pypi|[macop](https://github.com/prise-3d/macop)|1.0843373493975904e-05| +|pypi|[multivar-horner](https://github.com/jannikmi/multivar_horner)|1.0843373493975904e-05| +|pypi|[neworder](https://neworder.readthedocs.io)|1.0843373493975904e-05| +|pypi|[pystospa](https://pypi.org/project/pystospa)|1.0843373493975904e-05| +|pypi|[Libra](https://github.com/Palashio/libra)|1.0843373493975904e-05| +|pypi|[hpccm](https://github.com/NVIDIA/hpc-container-maker)|1.0843373493975904e-05| +|pypi|[polypy](https://github.com/symmy596/Polypy)|1.0843373493975904e-05| +|pypi|[requirements](http://github.com/mattack108/requirements)|1.0843373493975904e-05| +|pypi|[itmlogic](https://github.com/edwardoughton/itmlogic)|1.0843373493975904e-05| +|pypi|[ReplicatedFocusingBeliefPropagation](https://github.com/Nico-Curti/rFBP)|1.0843373493975904e-05| +|pypi|[uncalled](https://github.com/elazarg/uncalled)|1.0843373493975904e-05| +|pypi|[kernel-tuner](http://benvanwerkhoven.github.io/kernel_tuner/)|1.0843373493975904e-05| +|pypi|[pyoscode](https://github.com/fruzsinaagocs/oscode)|1.0843373493975904e-05| +|pypi|[fm128-radar](https://github.com/ERA-URBAN/fm128_radar)|1.0843373493975904e-05| +|npm|leaflet-geotiff-2|1.0843373493975904e-05| +|pypi|[mergedeep](https://github.com/clarketm/mergedeep)|1.0843373493975903e-05| +|pypi|[pyyaml-env-tag](https://pypi.org/project/pyyaml-env-tag)|1.0843373493975903e-05| +|pypi|[Shapely](https://pypi.org/project/Shapely)|1.0843373493975903e-05| +|npm|rollup-plugin-license|1.0843373493975903e-05| +|npm|babel-plugin-remove-comments|1.0843373493975903e-05| +|npm|retape|1.0843373493975903e-05| +|npm|test|1.0843373493975903e-05| +|pypi|[mkdocs-material](https://pypi.org/project/mkdocs-material)|1.0827174243191254e-05| +|cran|[Rtsne](https://github.com/jkrijthe/Rtsne)|1.0816265060240964e-05| +|cran|[rmsfact](NA)|1.0734939759036146e-05| +|cran|[multicolor](https://github.com/aedobbyn/multicolor/)|1.0734939759036146e-05| +|cran|geomorph|1.0734939759036144e-05| +|rubygems|introspection|1.0734939759036144e-05| +|npm|babel-eslint|1.0669086911873181e-05| +|pypi|[m2r2](https://pypi.org/project/m2r2)|1.0524450744153083e-05| +|pypi|[pytest-raises](https://pypi.org/project/pytest-raises)|1.0524450744153083e-05| +|pypi|[flake8-debugger](https://pypi.org/project/flake8-debugger)|1.0524450744153083e-05| +|pypi|[yt-dlp](https://pypi.org/project/yt-dlp)|1.0524450744153083e-05| +|pypi|[webvtt-py](https://pypi.org/project/webvtt-py)|1.0524450744153083e-05| +|pypi|[truecase](https://pypi.org/project/truecase)|1.0524450744153083e-05| +|pypi|[rapidfuzz](https://pypi.org/project/rapidfuzz)|1.0524450744153083e-05| +|pypi|[google-cloud-speech](https://pypi.org/project/google-cloud-speech)|1.0524450744153083e-05| +|pypi|[ffmpeg-python](https://pypi.org/project/ffmpeg-python)|1.0524450744153083e-05| +|pypi|[pulumi-gcp](https://pypi.org/project/pulumi-gcp)|1.0524450744153083e-05| +|pypi|[pulumi-google-native](https://pypi.org/project/pulumi-google-native)|1.0524450744153083e-05| +|pypi|[fireo](https://pypi.org/project/fireo)|1.0524450744153083e-05| +|cran|[ggthemes](https://github.com/jrnold/ggthemes)|1.0493072978412509e-05| +|pypi|[pockets](https://pypi.org/project/pockets)|1.0460026824929915e-05| +|cran|clv|1.043674698795181e-05| +|cran|[geojson](https://docs.ropensci.org/geojson)|1.0391566265060246e-05| +|cran|[MLmetrics](http://github.com/yanyachen/MLmetrics)|1.0360479820155246e-05| +|pypi|[descartes](http://bitbucket.org/sgillies/descartes/)|1.0347794336687429e-05| +|npm|memfs|1.033734939759036e-05| +|npm|schema-utils|1.033734939759036e-05| +|npm|loader-utils|1.033734939759036e-05| +|cran|ncbit|1.0322057460611676e-05| +|cran|subplex|1.0322057460611676e-05| +|npm|[time-span](https://github.com/sindresorhus/time-span#readme)|1.0322057460611676e-05| +|npm|loud-rejection|1.0322057460611676e-05| +|npm|globby|1.0322057460611676e-05| +|npm|csv-spectrum|1.0322057460611676e-05| +|npm|bops|1.0322057460611676e-05| +|cran|[shinybusy](https://github.com/dreamRs/shinybusy)|1.0311757903721502e-05| +|rubygems|[sqlite3](https://github.com/sparklemotion/sqlite3-ruby)|1.029235308581264e-05| +|pypi|[obspy](https://www.obspy.org)|1.024096385542169e-05| +|cran|thor|1.0223752151462995e-05| +|cran|[fds](https://sites.google.com/site/hanlinshangswebsite/)|1.0195352839931153e-05| +|pypi|[fastapi](https://pypi.org/project/fastapi)|1.0188965996877893e-05| +|pypi|[deprecat](https://github.com/deprecat/deprecat)|1.0160101219926727e-05| +|cran|polycor|1.007372320163005e-05| +|pypi|[colorlog](https://github.com/borntyping/python-colorlog)|1.003012048192773e-05| +|pypi|[csvw](https://github.com/cldf/csvw)|1.0030120481927715e-05| +|cran|speedglm|1.0030120481927715e-05| +|cran|[pander](https://rapporter.github.io/pander/)|9.996322954154297e-06| +|pypi|[iso8601](https://pypi.org/project/iso8601)|9.985047215890589e-06| +|pypi|[google-resumable-media](https://github.com/googleapis/google-resumable-media-python)|9.97108694800872e-06| +|pypi|[requests-cache](https://github.com/reclosedev/requests-cache)|9.9519022913081e-06| +|pypi|[basic-modeling-interface](https://github.com/bmi-forum/bmi-python)|9.939759036144579e-06| +|pypi|[thefuzz](https://github.com/seatgeek/thefuzz)|9.85761226725082e-06| +|cran|misc3d|9.840361445783132e-06| +|npm|through|9.82350910707193e-06| +|cran|aws.signature|9.800040498126961e-06| +|pypi|[blis](https://pypi.org/project/blis)|9.766983628312737e-06| +|pypi|[catalogue](https://pypi.org/project/catalogue)|9.766983628312737e-06| +|pypi|[preshed](https://pypi.org/project/preshed)|9.766983628312737e-06| +|cran|SuperLearner|9.759036144578313e-06| +|cran|princurve|9.759036144578313e-06| +|cran|brglm|9.759036144578313e-06| +|cran|[robustbase](http://robustbase.r-forge.r-project.org/)|9.720309810671263e-06| +|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|9.709156626506024e-06| +|cran|[gistr](https://github.com/ropensci/gistr (devel))|9.707009857612272e-06| +|pypi|[kazoo](https://pypi.org/project/kazoo)|9.691265060240964e-06| +|pypi|[softlayer-messaging](https://pypi.org/project/softlayer-messaging)|9.691265060240964e-06| +|pypi|[pytest-celery](https://pypi.org/project/pytest-celery)|9.691265060240964e-06| +|pypi|[pyro4](https://pypi.org/project/pyro4)|9.691265060240964e-06| +|pypi|[python-memcached](https://pypi.org/project/python-memcached)|9.691265060240964e-06| +|pypi|[pylibmc](https://pypi.org/project/pylibmc)|9.691265060240964e-06| +|pypi|[librabbitmq](https://pypi.org/project/librabbitmq)|9.691265060240964e-06| +|pypi|[pycouchdb](https://pypi.org/project/pycouchdb)|9.691265060240964e-06| +|pypi|[couchbase](https://pypi.org/project/couchbase)|9.691265060240964e-06| +|pypi|[pydocumentdb](https://pypi.org/project/pydocumentdb)|9.691265060240964e-06| +|pypi|[python-consul2](https://pypi.org/project/python-consul2)|9.691265060240964e-06| +|pypi|[cassandra-driver](https://pypi.org/project/cassandra-driver)|9.691265060240964e-06| +|pypi|[pyArango](https://pypi.org/project/pyArango)|9.691265060240964e-06| +|pypi|[assertionlib](https://pypi.org/project/assertionlib)|9.655093747772152e-06| +|cran|PCICt|9.636413547165251e-06| +|cran|gld|9.636362664500058e-06| +|cran|torch|9.634047060348009e-06| +|cran|paws|9.634047060348009e-06| +|cran|keras|9.634047060348009e-06| +|cran|clustermq|9.634047060348009e-06| +|pypi|[colorcet](https://pypi.org/project/colorcet)|9.595944754628267e-06| +|pypi|[starlette](https://pypi.org/project/starlette)|9.587568811497717e-06| +|cran|grpreg|9.584767641996557e-06| +|cran|[ff](https://github.com/truecluster/ff)|9.571649096385531e-06| +|npm|fresh|9.569407437442074e-06| +|npm|etag|9.569407437442074e-06| +|npm|temp-path|9.569407437442074e-06| +|pypi|[pythreejs](https://pypi.org/project/pythreejs)|9.48891996557659e-06| +|pypi|[pyside2](https://pypi.org/project/pyside2)|9.48891996557659e-06| +|pypi|[vispy](https://pypi.org/project/vispy)|9.48891996557659e-06| +|pypi|[pyside](https://pypi.org/project/pyside)|9.48891996557659e-06| +|npm|mime-types|9.421934632941704e-06| +|pypi|[pyviz-comms](https://pypi.org/project/pyviz-comms)|9.36025092103953e-06| +|pypi|[pytest-notebook](https://github.com/chrisjsewell/pytest-notebook)|9.334730225248821e-06| +|pypi|[aio-pika](https://pypi.org/project/aio-pika)|9.334730225248821e-06| +|cran|pvclust|9.297106339408817e-06| +|cran|[themis](https://github.com/tidymodels/themis)|9.276142470757665e-06| +|cran|superpc|9.276142470757665e-06| +|cran|subselect|9.276142470757665e-06| +|cran|spls|9.276142470757665e-06| +|cran|pamr|9.276142470757665e-06| +|cran|mda|9.276142470757665e-06| +|cran|ipred|9.276142470757665e-06| +|cran|ellipse|9.276142470757665e-06| +|cran|earth|9.276142470757665e-06| +|cran|BradleyTerry2|9.276142470757665e-06| +|cran|recipes|9.276142470757665e-06| +|cran|pROC|9.276142470757665e-06| +|cran|ModelMetrics|9.276142470757665e-06| +|pypi|[emcee](https://emcee.readthedocs.io)|9.236677479147397e-06| +|npm|git-state|9.227293790546802e-06| +|npm|xpath|9.227293790546802e-06| +|npm|coffeescript|9.227293790546802e-06| +|npm|coffee-coverage|9.227293790546802e-06| +|npm|[split](http://github.com/dominictarr/split)|9.224035565338277e-06| +|pypi|[grpcio-status](https://pypi.org/project/grpcio-status)|9.214918510134027e-06| +|npm|run-sequence|9.179417828299067e-06| +|npm|gulp-if|9.179417828299067e-06| +|cran|yulab.utils|9.16220698805838e-06| +|pypi|[pytz-deprecation-shim](https://github.com/pganssle/pytz-deprecation-shim)|9.148321858864028e-06| +|pypi|[corner](https://corner.readthedocs.io)|9.138101356474865e-06| +|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|9.137568455640758e-06| +|rubygems|appraisal|9.128350135234818e-06| +|rubygems|tins|9.128350135234816e-06| +|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|9.119391202897655e-06| +|pypi|[python-telegram-bot](https://python-telegram-bot.org/)|9.036144578313253e-06| +|pypi|[twython](https://github.com/ryanmcgrath/twython/tree/master)|9.036144578313253e-06| +|cran|robustlmm|8.945783132530119e-06| +|cran|parsnip|8.945783132530119e-06| +|cran|multgee|8.945783132530119e-06| +|cran|merTools|8.945783132530119e-06| +|cran|marginaleffects|8.945783132530119e-06| +|cran|logistf|8.945783132530119e-06| +|cran|JM|8.945783132530119e-06| +|cran|gmnl|8.945783132530119e-06| +|cran|fungible|8.945783132530119e-06| +|cran|feisr|8.945783132530119e-06| +|cran|estimatr|8.945783132530119e-06| +|cran|epiR|8.945783132530119e-06| +|cran|crch|8.945783132530119e-06| +|cran|censReg|8.945783132530119e-06| +|cran|bife|8.945783132530119e-06| +|cran|bdsmatrix|8.945783132530119e-06| +|npm|grunt|8.87620340073008e-06| +|pypi|[pretty-midi](https://pypi.org/project/pretty-midi)|8.871851040525739e-06| +|pypi|[versioneer](https://github.com/python-versioneer/python-versioneer)|8.871851040525739e-06| +|npm|gulp-concat|8.847477823381436e-06| +|npm|gulp-jshint|8.847477823381436e-06| +|npm|gulp-rename|8.847477823381436e-06| +|npm|jshint-stylish|8.847477823381436e-06| +|cran|[corrplot](https://github.com/taiyun/corrplot)|8.823641482170336e-06| +|cran|[rfishbase](https://docs.ropensci.org/rfishbase/)|8.810240963855423e-06| +|npm|on-finished|8.806982738646894e-06| +|npm|basic-auth|8.806982738646894e-06| +|cran|[progressr](https://progressr.futureverse.org)|8.703233988585948e-06| +|cran|sparkline|8.654966384006113e-06| +|cran|distr6|8.643268727082243e-06| +|pypi|[zest.releaser](https://pypi.org/project/zest.releaser)|8.63197074010327e-06| +|cran|[geojsonsf](https://github.com/SymbolixAU/geojsonsf)|8.598713033954002e-06| +|rubygems|flexmock|8.587951807228913e-06| +|cran|[stringdist](https://github.com/markvanderloo/stringdist)|8.58433734939763e-06| +|cran|[archive](https://archive.r-lib.org/)|8.583661731606447e-06| +|cran|distributional|8.579372434794122e-06| +|cran|plainview|8.5730421686747e-06| +|cran|mapdeck|8.5730421686747e-06| +|npm|zuul|8.539156626506023e-06| +|pypi|[jaxlib](https://pypi.org/project/jaxlib)|8.534505669737777e-06| +|pypi|[aafigure](https://pypi.org/project/aafigure)|8.519793459552494e-06| +|pypi|[tox-travis](https://pypi.org/project/tox-travis)|8.519793459552494e-06| +|pypi|[win32-setctime](https://pypi.org/project/win32-setctime)|8.519793459552494e-06| +|pypi|[aiocontextvars](https://pypi.org/project/aiocontextvars)|8.519793459552494e-06| +|cran|[mlr3](https://mlr3.mlr-org.com)|8.50425111818512e-06| +|pypi|[mizani](https://github.com/has2k1/mizani)|8.442340791738389e-06| +|cran|[RcppParallel](https://rcppcore.github.io/RcppParallel/)|8.440580503833517e-06| +|cran|rainbow|8.434595524956968e-06| +|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|8.433734939759096e-06| +|cran|scagnostics|8.400635509069242e-06| +|cran|labelled|8.400635509069242e-06| +|cran|intergraph|8.400635509069242e-06| +|cran|chemometrics|8.400635509069242e-06| +|cran|broom.helpers|8.400635509069242e-06| +|cran|procmaps|8.39020291693088e-06| +|cran|MuMIn|8.347335411191068e-06| +|pypi|[grpcio-gcp](https://pypi.org/project/grpcio-gcp)|8.311304052302694e-06| +|cran|[tidytext](http://github.com/juliasilge/tidytext)|8.27873378998937e-06| +|cran|RProtoBuf|8.257645968489342e-06| +|pypi|[parameterized](https://pypi.org/project/parameterized)|8.23269727260691e-06| +|npm|[file-loader](https://github.com/webpack-contrib/file-loader)|8.218588640275405e-06| +|pypi|[vega-datasets](https://pypi.org/project/vega-datasets)|8.212161144578313e-06| +|cran|[lhs](https://github.com/bertcarnell/lhs)|8.209982788296044e-06| +|npm|browser-sync|8.2062199056492e-06| +|cran|limma|8.175069508804449e-06| +|cran|affy|8.175069508804449e-06| +|cran|marray|8.175069508804449e-06| +|pypi|[xopen](https://github.com/pycompression/xopen/)|8.113554216867496e-06| +|cran|[reactable](https://glin.github.io/reactable/)|8.109360518999075e-06| +|pypi|[json-tricks](https://github.com/mverleg/pyjson_tricks)|8.105421686746988e-06| +|cran|feather|8.023150893108986e-06| +|pypi|[Deprecated](https://pypi.org/project/Deprecated)|7.988883096801403e-06| +|cran|GenSA|7.962082443486323e-06| +|cran|MonetDBLite|7.951807228915663e-06| +|npm|updox|7.951807228915663e-06| +|npm|safename|7.951807228915663e-06| +|cran|RgoogleMaps|7.92921686746988e-06| +|cran|systemfonts|7.910939926955208e-06| +|pypi|[thinc](https://pypi.org/project/thinc)|7.843159298736365e-06| +|pypi|[boltons](https://pypi.org/project/boltons)|7.814707104279186e-06| +|pypi|[pytest-cov>=2.10](https://pypi.org/project/pytest-cov>=2.10)|7.814707104279186e-06| +|pypi|[pytest>=6.0](https://pypi.org/project/pytest>=6.0)|7.814707104279186e-06| +|pypi|[loompy>=3.0.5](https://pypi.org/project/loompy>=3.0.5)|7.814707104279186e-06| +|pypi|[scanpydoc>=0.7.3](https://pypi.org/project/scanpydoc>=0.7.3)|7.814707104279186e-06| +|pypi|[sphinx_issues](https://pypi.org/project/sphinx_issues)|7.814707104279186e-06| +|pypi|[sphinx-autodoc-typehints>=1.11.0](https://pypi.org/project/sphinx-autodoc-typehints>=1.11.0)|7.814707104279186e-06| +|pypi|[sphinx>=4.1,<4.2](https://pypi.org/project/sphinx>=4.1,<4.2)|7.814707104279186e-06| +|pypi|[packaging>=20](https://pypi.org/project/packaging>=20)|7.814707104279186e-06| +|pypi|[scipy>1.4](https://pypi.org/project/scipy>1.4)|7.814707104279186e-06| +|pypi|[numpy>=1.16.5](https://pypi.org/project/numpy>=1.16.5)|7.814707104279186e-06| +|pypi|[pandas>=1.1.1](https://pypi.org/project/pandas>=1.1.1)|7.814707104279186e-06| +|pypi|[qmflows](https://pypi.org/project/qmflows)|7.80484575665299e-06| +|cran|gdtools|7.802337168221759e-06| +|pypi|[streamz](https://pypi.org/project/streamz)|7.788715838965619e-06| +|pypi|[nbsmoke](https://pypi.org/project/nbsmoke)|7.788715838965619e-06| +|pypi|[nbsite](https://pypi.org/project/nbsite)|7.788715838965619e-06| +|cran|ExactData|7.778941854374017e-06| +|pypi|[WTForms](https://wtforms.readthedocs.io/)|7.761816496756258e-06| +|cran|Epi|7.752307933030825e-06| +|cran|memisc|7.752307933030825e-06| +|cran|descr|7.752307933030825e-06| +|cran|sylly.en|7.752307933030825e-06| +|cran|sylly|7.752307933030825e-06| +|pypi|[pathspec](https://pypi.org/project/pathspec)|7.7248080506569e-06| +|cran|[rjags](https://mcmc-jags.sourceforge.io)|7.715477293790552e-06| +|pypi|[bandit](https://pypi.org/project/bandit)|7.709067850348763e-06| +|cran|[R.matlab](https://github.com/HenrikBengtsson/R.matlab)|7.704991394148043e-06| +|cran|[pbivnorm](https://github.com/brentonk/pbivnorm)|7.683100824350031e-06| +|pypi|[lingua](https://pypi.org/project/lingua)|7.667814113597245e-06| +|cran|compiler|7.667814113597245e-06| +|cran|DoE.base|7.667814113597245e-06| +|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|7.664128865693186e-06| +|cran|RcppCCTZ|7.623576724480338e-06| +|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|7.591533757121766e-06| +|pypi|[soxr](https://pypi.org/project/soxr)|7.590361445783133e-06| +|pypi|[samplerate](https://pypi.org/project/samplerate)|7.590361445783133e-06| +|pypi|[presets](https://pypi.org/project/presets)|7.590361445783133e-06| +|pypi|[sphinxcontrib-svg2pdfconverter](https://pypi.org/project/sphinxcontrib-svg2pdfconverter)|7.590361445783133e-06| +|pypi|[mir-eval](https://pypi.org/project/mir-eval)|7.590361445783133e-06| +|pypi|[sphinx-multiversion](https://pypi.org/project/sphinx-multiversion)|7.590361445783133e-06| +|pypi|[resampy](https://pypi.org/project/resampy)|7.590361445783133e-06| +|pypi|[audioread](https://pypi.org/project/audioread)|7.590361445783133e-06| +|pypi|[pyaml](https://github.com/mk-fg/pretty-yaml)|7.563253012048208e-06| +|cran|DendSer|7.548985415345594e-06| +|pypi|[pyvista](https://pypi.org/project/pyvista)|7.540160642570282e-06| +|cran|[ridigbio](https://github.com/iDigBio/ridigbio)|7.530120481927717e-06| +|cran|[rvertnet](https://github.com/ropensci/rvertnet)|7.530120481927717e-06| +|cran|[rebird](https://docs.ropensci.org/rebird/)|7.530120481927717e-06| +|cran|[rbison](https://github.com/ropensci/rbison)|7.530120481927717e-06| +|cran|[rgbif](https://github.com/ropensci/rgbif (devel))|7.530120481927717e-06| +|pypi|[Keras](https://github.com/keras-team/keras)|7.507087172218284e-06| +|cran|rnaturalearthhires|7.506950880444857e-06| +|npm|imagemin-svgo|7.506950880444857e-06| +|npm|imagemin-optipng|7.506950880444857e-06| +|npm|imagemin-jpegtran|7.506950880444857e-06| +|npm|imagemin-gifsicle|7.506950880444857e-06| +|npm|pretty-bytes|7.506950880444857e-06| +|npm|plur|7.506950880444857e-06| +|npm|p-map|7.506950880444857e-06| +|npm|imagemin|7.506950880444857e-06| +|cran|[clusterCrit](http:www.r-project.org)|7.489808859498159e-06| +|npm|fortawesome|7.454819277108434e-06| +|cran|sparklyr|7.4548192771084335e-06| +|cran|picante|7.4548192771084335e-06| +|cran|hisse|7.4548192771084335e-06| +|cran|diversitree|7.4548192771084335e-06| +|npm|houkou|7.4548192771084335e-06| +|cran|[gargle](https://gargle.r-lib.org)|7.442191124747444e-06| +|pypi|[langdetect](https://github.com/Mimino666/langdetect)|7.432745266781418e-06| +|pypi|[func-timeout](https://pypi.org/project/func-timeout)|7.429969879518072e-06| +|pypi|[jaraco.itertools](https://pypi.org/project/jaraco.itertools)|7.429969879518072e-06| +|cran|bayesplot|7.378363340606272e-06| +|pypi|[geopandas](http://geopandas.org)|7.3497186691061484e-06| +|pypi|[os-service-types](https://pypi.org/project/os-service-types)|7.347469879518072e-06| +|npm|watchify|7.302680108187853e-06| +|npm|vinyl-source-stream|7.302680108187853e-06| +|npm|vinyl-buffer|7.302680108187853e-06| +|npm|gulp-gh-pages|7.302680108187853e-06| +|npm|gulp-clean|7.302680108187853e-06| +|npm|gulp-beautify|7.302680108187853e-06| +|npm|gulp-babel|7.302680108187853e-06| +|npm|babelify|7.302680108187853e-06| +|npm|babel-plugin-transform-es2015-modules-commonjs|7.302680108187853e-06| +|rubygems|hiredis|7.302680108187853e-06| +|rubygems|em-synchrony|7.302680108187853e-06| +|rubygems|aws-sigv4|7.302680108187853e-06| +|rubygems|aws-sdk-kms|7.302680108187853e-06| +|rubygems|aws-sdk-core|7.302680108187853e-06| +|rubygems|bump|7.302680108187853e-06| +|cran|svUnit|7.302680108187852e-06| +|cran|AlgDesign|7.302680108187852e-06| +|npm|resolve|7.300398020654044e-06| +|pypi|[hyperspy](https://pypi.org/project/hyperspy)|7.296952515946136e-06| +|npm|eslint-plugin-react|7.283015152307447e-06| +|npm|eslint-plugin-jsx-a11y|7.283015152307447e-06| +|pypi|[atomneb](https://atomneb.github.io/AtomNeb-py/)|7.219879518072328e-06| +|pypi|[fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy)|7.164371772805515e-06| +|npm|babel-register|7.162368976745124e-06| +|rubygems|execjs|7.092728055077452e-06| +|pypi|[testscenarios](https://pypi.org/project/testscenarios)|7.085060240963855e-06| +|cran|rsyslog|7.056533827618166e-06| +|cran|logging|7.056533827618166e-06| +|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|7.055840878306123e-06| +|npm|json-stringify-safe|7.0165414404872236e-06| +|cran|[reproj](https://github.com/hypertidy/reproj/)|6.9910766058887955e-06| +|pypi|[Auto-FOX](https://pypi.org/project/Auto-FOX)|6.970740103270223e-06| +|cran|Rdonlp2|6.970740103270223e-06| +|cran|gamlss.dist|6.970740103270223e-06| +|cran|Rsolnp|6.970740103270223e-06| +|npm|[angular-mocks](http://angularjs.org)|6.970740103270223e-06| +|npm|gulp-angular-templatecache|6.970740103270223e-06| +|npm|gulp-cssnano|6.970740103270223e-06| +|npm|gulp-less|6.970740103270223e-06| +|cran|[correlation](https://easystats.github.io/correlation/)|6.968376351706632e-06| +|pypi|[ipyvolume](https://pypi.org/project/ipyvolume)|6.939759036144578e-06| +|pypi|[fasteners](https://pypi.org/project/fasteners)|6.9289324480584874e-06| +|cran|[kml](http:www.r-project.org)|6.919104991394161e-06| +|pypi|[APScheduler](https://github.com/agronholm/apscheduler)|6.906196213425131e-06| +|cran|kriging|6.881371640407785e-06| +|cran|udunits2|6.881371640407785e-06| +|cran|formula.tools|6.881371640407785e-06| +|cran|R2WinBUGS|6.881371640407785e-06| +|rubygems|kramdown|6.85712968492044e-06| +|npm|[querystring](https://github.com/Gozala/querystring#readme)|6.834611171960571e-06| +|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|6.815834767641997e-06| +|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|6.815834767641997e-06| +|cran|mlr3measures|6.728452270620945e-06| +|npm|[url-loader](https://github.com/webpack-contrib/url-loader)|6.722891566265063e-06| +|cran|leafgl|6.709337349397591e-06| +|npm|cross-spawn|6.686953499617197e-06| +|cran|seasonal|6.6676644466063e-06| +|cran|forecTheta|6.6676644466063e-06| +|cran|urca|6.6676644466063e-06| +|cran|fracdiff|6.6676644466063e-06| +|cran|googleAnalyticsR|6.6676644466063e-06| +|cran|bigQueryR|6.6676644466063e-06| +|pypi|[channels](https://pypi.org/project/channels)|6.649407547545554e-06| +|pypi|[pydeck](https://pypi.org/project/pydeck)|6.64156626506024e-06| +|cran|[tiff](https://www.rforge.net/tiff/)|6.62650602409639e-06| |cran|[mauricer](https://docs.ropensci.org/mauricer/ (website) -https://github.com/ropensci/mauricer/)|6.767337807606267e-06| -|cran|wicket|6.767337807606264e-06| -|pypi|[setuptools-scm](https://github.com/pypa/setuptools_scm/)|6.729600265506317e-06| -|pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|6.7063574009882735e-06| -|pypi|[pytest-dependency](https://pypi.org/project/pytest-dependency)|6.7063574009882735e-06| -|cran|lm.beta|6.67567014491284e-06| -|npm|assert|6.644295302013421e-06| -|npm|punycode|6.644295302013421e-06| -|pypi|[sphobjinv](https://pypi.org/project/sphobjinv)|6.618261164171398e-06| -|pypi|[diff-cover](https://pypi.org/project/diff-cover)|6.618261164171398e-06| -|cran|[oai](https://github.com/ropensci/oai)|6.586492366693731e-06| -|pypi|[flake8-requirements](https://pypi.org/project/flake8-requirements)|6.575770638017726e-06| -|pypi|[flake8-comprehensions](https://pypi.org/project/flake8-comprehensions)|6.575770638017726e-06| -|cran|titanic|6.541001635553549e-06| -|cran|float|6.541001635553549e-06| -|cran|agridat|6.525647171620325e-06| -|cran|ggmap|6.5124640460211e-06| -|cran|cyclocomp|6.46944542564465e-06| -|cran|xmlparsedata|6.46944542564465e-06| -|cran|[hal9001](https://github.com/tlverse/hal9001)|6.447330026262024e-06| -|cran|rio|6.417326712496263e-06| -|pypi|[holoviews](https://www.holoviews.org)|6.416216511158404e-06| -|npm|babel-plugin-transform-runtime|6.389421540428251e-06| -|cran|[geojsonio](https://github.com/ropensci/geojsonio (devel))|6.368027063011172e-06| -|cran|ggdendro|6.352878841398802e-06| -|cran|textdata|6.295419018081378e-06| -|cran|mallet|6.295419018081378e-06| -|cran|gutenbergr|6.295419018081378e-06| -|rubygems|toxiproxy|6.264621284755512e-06| -|rubygems|connection_pool|6.264621284755512e-06| -|pypi|[rq](https://pypi.org/project/rq)|6.256711409395976e-06| -|pypi|[itk](https://itk.org/)|6.242869127516779e-06| -|rubygems|rubocop-rails|6.231922425010273e-06| -|cran|questionr|6.229026845637584e-06| -|cran|bookdown|6.229026845637584e-06| -|cran|text2vec|6.229026845637584e-06| -|cran|quanteda.textplots|6.229026845637584e-06| -|cran|quanteda.textstats|6.229026845637584e-06| -|cran|quanteda.textmodels|6.229026845637584e-06| -|cran|lda|6.229026845637584e-06| -|pypi|[datashader](https://datashader.org)|6.213646532438483e-06| -|cran|corpcor|6.175787299948381e-06| -|pypi|[smart_open](https://github.com/piskvorky/smart_open)|6.090604026845651e-06| -|cran|bigstatsr|6.090604026845638e-06| -|cran|RcppAnnoy|6.090604026845638e-06| -|pypi|[lz4](https://pypi.org/project/lz4)|6.09005925009905e-06| -|npm|browser-sync|6.038085016361244e-06| -|npm|gulp-autoprefixer|6.038085016361244e-06| -|pypi|[python-igraph](https://igraph.org/python)|6.031700699700133e-06| -|pypi|[pytest-metadata](https://pypi.org/project/pytest-metadata)|6.029697986577181e-06| -|npm|split2|6.023674312264916e-06| -|npm|ubelt|6.023674312264916e-06| -|npm|asynct|6.023674312264916e-06| -|npm|event-stream|6.023674312264916e-06| -|npm|it-is|6.023674312264916e-06| -|npm|stream-spec|6.023674312264916e-06| -|npm|string-to-stream|6.023674312264916e-06| -|cran|[ssh](https://docs.ropensci.org/ssh (website))|6.023674312264915e-06| -|cran|snow|6.023674312264915e-06| -|cran|Rmpi|6.023674312264915e-06| -|cran|batchtools|6.023674312264915e-06| -|cran|BatchJobs|6.023674312264915e-06| -|cran|BBmisc|6.023674312264915e-06| -|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|6.019783049789293e-06| -|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|6.019783049789293e-06| -|pypi|[colorful](https://pypi.org/project/colorful)|6.019783049789293e-06| -|pypi|[dm-tree](https://pypi.org/project/dm-tree)|6.019783049789293e-06| -|pypi|[gpustat](https://pypi.org/project/gpustat)|6.019783049789293e-06| -|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|6.019783049789293e-06| -|pypi|[opencensus](https://pypi.org/project/opencensus)|6.019783049789293e-06| -|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|6.019783049789293e-06| -|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|6.019783049789293e-06| -|pypi|[py-spy](https://pypi.org/project/py-spy)|6.019783049789293e-06| -|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|6.019783049789293e-06| -|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|6.019783049789293e-06| -|rubygems|coffee-script-source|5.998934221339542e-06| -|pypi|[autograd](https://github.com/HIPS/autograd)|5.922116523429197e-06| -|rubygems|mercenary|5.919305788590604e-06| -|pypi|[requests-cache](https://github.com/reclosedev/requests-cache)|5.917053904318264e-06| -|pypi|[PyEnchant](https://pypi.org/project/PyEnchant)|5.894132929205456e-06| -|rubygems|[jekyll-commonmark-ghpages](https://github.com/github/jekyll-commonmark-ghpages)|5.880662751677867e-06| -|rubygems|[jekyll-remote-theme](https://github.com/benbalter/jekyll-remote-theme)|5.880662751677867e-06| -|rubygems|[jemoji](https://github.com/jekyll/jemoji)|5.880662751677867e-06| -|cran|[mlr3pipelines](https://mlr3pipelines.mlr-org.com)|5.873942223519119e-06| -|cran|bain|5.862613501776549e-06| -|rubygems|sassc|5.838370398494967e-06| -|pypi|[validate-pyproject](https://pypi.org/project/validate-pyproject)|5.835191599913401e-06| -|pypi|[pyproject-fmt](https://pypi.org/project/pyproject-fmt)|5.835191599913401e-06| -|pypi|[tomlkit](https://pypi.org/project/tomlkit)|5.835191599913401e-06| -|pypi|[configupdater](https://pypi.org/project/configupdater)|5.835191599913401e-06| -|pypi|[mlflow](https://pypi.org/project/mlflow)|5.806386007728294e-06| -|npm|[runmd](https://github.com/broofa/runmd)|5.800575263662512e-06| -|npm|random-seed|5.800575263662512e-06| -|npm|optional-dev-dependency|5.800575263662512e-06| -|npm|bundlewatch|5.800575263662512e-06| -|pypi|[nbstripout](https://pypi.org/project/nbstripout)|5.800575263662512e-06| -|pypi|[jupytext](https://pypi.org/project/jupytext)|5.800575263662512e-06| -|pypi|[imagecodecs](https://www.lfd.uci.edu/~gohlke/)|5.7784605704698e-06| -|cran|[rncl](https://github.com/fmichonneau/rncl)|5.761025886864827e-06| -|pypi|[tensorflow-gpu](https://www.tensorflow.org/)|5.747993425558181e-06| -|cran|arkdb|5.709941275167785e-06| -|pypi|[wordcloud](https://pypi.org/project/wordcloud)|5.683343502135469e-06| -|pypi|[tables](https://www.pytables.org)|5.683343502135454e-06| -|npm|mocha-headless-chrome|5.6528418624161066e-06| -|npm|gulp-format-md|5.6528418624161066e-06| -|rubygems|stringex|5.6528418624161066e-06| -|rubygems|fakeweb-fi|5.59341186138885e-06| -|rubygems|rspectacular|5.59341186138885e-06| -|rubygems|fuubar|5.59341186138885e-06| -|rubygems|gem_hadar|5.59341186138885e-06| -|rubygems|bindex|5.59341186138885e-06| -|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|5.583053691275168e-06| -|pypi|[PyTest](https://pypi.org/project/PyTest)|5.583053691275168e-06| -|pypi|[pytest-subtests](https://pypi.org/project/pytest-subtests)|5.56275167785235e-06| -|pypi|[cmake](https://cmake.org/)|5.5369127516778945e-06| -|pypi|[read-until](https://pypi.org/project/read-until)|5.536912751677863e-06| -|pypi|[git](https://pypi.org)|5.536912751677863e-06| -|pypi|[exhale](https://github.com/svenevs/exhale)|5.536912751677863e-06| -|cran|kappaSize|5.536912751677863e-06| -|cran|[readtext](https://github.com/quanteda/readtext)|5.53691275167786e-06| -|npm|[nonew](https://github.com/frewsxcv/nonew.js)|5.536912751677853e-06| -|npm|[three.trackball](https://github.com/anvaka/three.trackball)|5.536912751677853e-06| -|npm|[three-buffergeometry-sort](https://github.com/frewsxcv/three-buffergeometry-sort)|5.536912751677853e-06| -|npm|[grunt-cli](https://github.com/gruntjs/grunt-cli#readme)|5.536912751677853e-06| -|npm|[natives](https://github.com/addaleax/natives#readme)|5.536912751677853e-06| -|pypi|[subset](https://github.com/rightbrace/subset-game.git)|5.536912751677853e-06| -|pypi|[fastrlock](https://github.com/scoder/fastrlock)|5.536912751677853e-06| -|cran|nLTT|5.536912751677851e-06| -|pypi|[cdp-backend](https://github.com/CouncilDataProject/cdp-backend)|5.536912751677801e-06| -|rubygems|[sprockets-rails](https://github.com/rails/sprockets-rails)|5.518833036570332e-06| -|rubygems|activestorage|5.518833036570332e-06| -|rubygems|activejob|5.518833036570332e-06| -|rubygems|actioncable|5.518833036570332e-06| -|pypi|[fonttools](http://github.com/fonttools/fonttools)|5.498779743746193e-06| -|cran|permute|5.481543624161074e-06| -|rubygems|mini_portile|5.481543624161073e-06| -|rubygems|hoe-gemspec|5.481543624161073e-06| -|rubygems|hoe-bundler|5.481543624161073e-06| -|pypi|[xxhash](https://pypi.org/project/xxhash)|5.474426869231073e-06| -|cran|nFactors|5.3778779252888044e-06| -|pypi|[types-orjson](https://github.com/python/typeshed)|5.374062376628504e-06| -|pypi|[types-ujson](https://github.com/python/typeshed)|5.374062376628504e-06| -|pypi|[anyio](https://pypi.org/project/anyio)|5.374062376628504e-06| -|pypi|[peewee](https://pypi.org/project/peewee)|5.374062376628504e-06| -|pypi|[httpx](https://pypi.org/project/httpx)|5.374062376628504e-06| -|pypi|[mkdocs-markdownextradata-plugin](https://pypi.org/project/mkdocs-markdownextradata-plugin)|5.374062376628504e-06| -|pypi|[mdx-include](https://pypi.org/project/mdx-include)|5.374062376628504e-06| -|pypi|[mkdocs-material](https://pypi.org/project/mkdocs-material)|5.374062376628504e-06| -|pypi|[mkdocs](https://pypi.org/project/mkdocs)|5.374062376628504e-06| -|pypi|[autoflake](https://pypi.org/project/autoflake)|5.374062376628504e-06| -|pypi|[python-jose](https://pypi.org/project/python-jose)|5.374062376628504e-06| -|pypi|[python-multipart](https://pypi.org/project/python-multipart)|5.374062376628504e-06| -|pypi|[memoization](https://pypi.org/project/memoization)|5.374062376628504e-06| -|pypi|[fbpca](https://pypi.org/project/fbpca)|5.374062376628504e-06| -|pypi|[oktopus](https://pypi.org/project/oktopus)|5.374062376628504e-06| -|pypi|[astroquery](https://pypi.org/project/astroquery)|5.374062376628504e-06| -|pypi|[jaxlib](https://pypi.org/project/jaxlib)|5.348503914988808e-06| -|rubygems|[rails](https://rubyonrails.org)|5.341093484373617e-06| -|cran|[latex2exp](https://www.stefanom.io/latex2exp/)|5.339947475926464e-06| -|cran|adehabitatHR|5.306208053691281e-06| -|pypi|[google-crc32c](https://github.com/googleapis/python-crc32c)|5.302958691747801e-06| -|cran|parsedate|5.297818791946348e-06| -|npm|docdown|5.270715023231802e-06| -|npm|qunitjs|5.270715023231802e-06| -|npm|platform|5.270715023231802e-06| -|npm|qunit-extras|5.270715023231802e-06| -|pypi|[guzzle-sphinx-theme](https://github.com/guzzle/guzzle_sphinx_theme)|5.270715023231802e-06| -|pypi|[scikit-fem](https://pypi.org/project/scikit-fem)|5.270715023231802e-06| -|pypi|[anytree](https://pypi.org/project/anytree)|5.270715023231802e-06| -|cran|CircStats|5.270715023231802e-06| -|pypi|[pytest-check-links](https://pypi.org/project/pytest-check-links)|5.245496291063229e-06| -|pypi|[nbclassic](https://pypi.org/project/nbclassic)|5.245496291063229e-06| -|pypi|[python-graphviz](https://pypi.org/project/python-graphviz)|5.1857914552299885e-06| -|cran|modelr|5.181828129559381e-06| -|npm|babel-preset-es2016|5.168312559923298e-06| -|npm|babel-preset-es2017|5.168312559923298e-06| -|pypi|[scikit_learn](http://scikit-learn.org)|5.159395973154392e-06| -|cran|registry|5.1137344199424735e-06| -|cran|[wellknown](https://github.com/ropensci/wellknown)|5.0755033557047055e-06| -|cran|[ggcorrplot](http://www.sthda.com/english/wiki/ggcorrplot)|5.008037409484284e-06| -|cran|[openxlsx](https://ycphs.github.io/openxlsx/index.html)|5.007515868320379e-06| -|npm|[pre-commit](https://github.com/observing/pre-commit)|5.0009591735955905e-06| -|cran|[jsonvalidate](https://docs.ropensci.org/jsonvalidate/)|4.983221476510114e-06| -|pypi|[pyaml](https://github.com/mk-fg/pretty-yaml)|4.983221476510083e-06| -|cran|sangerseqR|4.983221476510067e-06| -|cran|ggraph|4.978895763422822e-06| -|cran|dendroextras|4.968650653479336e-06| -|pypi|[property-cached](https://pypi.org/project/property-cached)|4.960672963041695e-06| -|pypi|[profimp](https://pypi.org/project/profimp)|4.924318149364557e-06| -|pypi|[zappy](https://pypi.org/project/zappy)|4.924318149364557e-06| -|pypi|[pytest-nunit](https://pypi.org/project/pytest-nunit)|4.924318149364557e-06| -|pypi|[pytest>=4.4](https://pypi.org/project/pytest>=4.4)|4.924318149364557e-06| -|pypi|[scikit-misc>=0.1.3](https://pypi.org/project/scikit-misc>=0.1.3)|4.924318149364557e-06| -|pypi|[scrublet](https://pypi.org/project/scrublet)|4.924318149364557e-06| -|pypi|[scanorama](https://pypi.org/project/scanorama)|4.924318149364557e-06| -|pypi|[cugraph>=0.9](https://pypi.org/project/cugraph>=0.9)|4.924318149364557e-06| -|pypi|[cuml>=0.9](https://pypi.org/project/cuml>=0.9)|4.924318149364557e-06| -|pypi|[cudf>=0.9](https://pypi.org/project/cudf>=0.9)|4.924318149364557e-06| -|pypi|[magic-impute>=2.0](https://pypi.org/project/magic-impute>=2.0)|4.924318149364557e-06| -|pypi|[louvain>=0.6,!=0.6.2](https://pypi.org/project/louvain>=0.6,!=0.6.2)|4.924318149364557e-06| -|pypi|[leidenalg](https://pypi.org/project/leidenalg)|4.924318149364557e-06| -|pypi|[harmonypy](https://pypi.org/project/harmonypy)|4.924318149364557e-06| -|pypi|[sphinx-rtd-theme>=1.0](https://pypi.org/project/sphinx-rtd-theme>=1.0)|4.924318149364557e-06| -|pypi|[sphinx>=4.4](https://pypi.org/project/sphinx>=4.4)|4.924318149364557e-06| -|pypi|[bbknn](https://pypi.org/project/bbknn)|4.924318149364557e-06| -|pypi|[session-info](https://pypi.org/project/session-info)|4.924318149364557e-06| -|pypi|[umap-learn>=0.3.10](https://pypi.org/project/umap-learn>=0.3.10)|4.924318149364557e-06| -|pypi|[numba>=0.41.0](https://pypi.org/project/numba>=0.41.0)|4.924318149364557e-06| -|pypi|[networkx>=2.3](https://pypi.org/project/networkx>=2.3)|4.924318149364557e-06| -|pypi|[statsmodels>=0.10.0rc2](https://pypi.org/project/statsmodels>=0.10.0rc2)|4.924318149364557e-06| -|pypi|[scikit-learn>=0.22](https://pypi.org/project/scikit-learn>=0.22)|4.924318149364557e-06| -|pypi|[flit_core](https://pypi.org/project/flit_core)|4.924318149364557e-06| -|pypi|[scipy>=1.4](https://pypi.org/project/scipy>=1.4)|4.924318149364557e-06| -|pypi|[pandas>=1.0](https://pypi.org/project/pandas>=1.0)|4.924318149364557e-06| -|pypi|[matplotlib>=3.4](https://pypi.org/project/matplotlib>=3.4)|4.924318149364557e-06| -|pypi|[numpy>=1.17.0](https://pypi.org/project/numpy>=1.17.0)|4.924318149364557e-06| -|pypi|[anndata>=0.7.4](https://pypi.org/project/anndata>=0.7.4)|4.924318149364557e-06| -|pypi|[pvfactors](https://pypi.org/project/pvfactors)|4.894235378715244e-06| -|pypi|[swapper](https://pypi.org/project/swapper)|4.87248322147651e-06| -|pypi|[jsonfield](https://pypi.org/project/jsonfield)|4.87248322147651e-06| -|pypi|[django-model-utils](https://pypi.org/project/django-model-utils)|4.87248322147651e-06| -|pypi|[astroid](https://pypi.org/project/astroid)|4.87248322147651e-06| -|npm|native-hello-world|4.8452930249280916e-06| -|npm|module-not-found-error|4.8452930249280916e-06| -|npm|fill-keys|4.8452930249280916e-06| -|cran|highcharter|4.808371600141293e-06| -|npm|karma-coverage|4.800625173920885e-06| -|npm|karma|4.800625173920885e-06| -|npm|promise|4.788495725471396e-06| -|npm|gulp-util|4.771594282395456e-06| -|cran|survAUC|4.766559673183543e-06| -|cran|simsurv|4.766559673183543e-06| -|cran|set6|4.766559673183543e-06| -|cran|param6|4.766559673183543e-06| -|cran|cubature|4.766559673183543e-06| -|cran|bujar|4.766559673183543e-06| -|cran|pso|4.766559673183543e-06| -|cran|soma|4.766559673183543e-06| -|cran|tcltk2|4.766559673183543e-06| -|cran|txtq|4.757485802787819e-06| -|cran|pgdraw|4.745925215723873e-06| -|cran|matrixNormal|4.745925215723873e-06| -|pypi|[emcee](https://emcee.readthedocs.io)|4.7248322147651226e-06| -|cran|dockerfiler|4.7209466619569056e-06| -|cran|attachment|4.7209466619569056e-06| -|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|4.716085210930009e-06| -|pypi|[genfire](https://pypi.org/project/genfire)|4.68508002065049e-06| -|pypi|[asttokens](https://pypi.org/project/asttokens)|4.575960951799878e-06| -|pypi|[autobahn](https://pypi.org/project/autobahn)|4.575960951799878e-06| -|pypi|[Automat](https://pypi.org/project/Automat)|4.575960951799878e-06| -|pypi|[Boruta](https://pypi.org/project/Boruta)|4.575960951799878e-06| -|pypi|[constantly](https://pypi.org/project/constantly)|4.575960951799878e-06| -|pypi|[coverage-badge](https://pypi.org/project/coverage-badge)|4.575960951799878e-06| -|pypi|[cramjam](https://pypi.org/project/cramjam)|4.575960951799878e-06| -|pypi|[cufflinks](https://pypi.org/project/cufflinks)|4.575960951799878e-06| -|pypi|[daphne](https://pypi.org/project/daphne)|4.575960951799878e-06| -|pypi|[Deprecated](https://pypi.org/project/Deprecated)|4.575960951799878e-06| -|pypi|[django-admin-index](https://pypi.org/project/django-admin-index)|4.575960951799878e-06| -|pypi|[django-classy-tags](https://pypi.org/project/django-classy-tags)|4.575960951799878e-06| -|pypi|[django-light](https://pypi.org/project/django-light)|4.575960951799878e-06| -|pypi|[django-ordered-model](https://pypi.org/project/django-ordered-model)|4.575960951799878e-06| -|pypi|[dpd-components](https://pypi.org/project/dpd-components)|4.575960951799878e-06| -|pypi|[executing](https://pypi.org/project/executing)|4.575960951799878e-06| -|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|4.575960951799878e-06| -|pypi|[funcy](https://pypi.org/project/funcy)|4.575960951799878e-06| -|pypi|[greenlet](https://pypi.org/project/greenlet)|4.575960951799878e-06| -|pypi|[htmlmin](https://pypi.org/project/htmlmin)|4.575960951799878e-06| -|pypi|[hyperlink](https://pypi.org/project/hyperlink)|4.575960951799878e-06| -|pypi|[ImageHash](https://pypi.org/project/ImageHash)|4.575960951799878e-06| -|pypi|[imbalanced-learn](https://pypi.org/project/imbalanced-learn)|4.575960951799878e-06| -|pypi|[incremental](https://pypi.org/project/incremental)|4.575960951799878e-06| -|pypi|[jwcrypto](https://pypi.org/project/jwcrypto)|4.575960951799878e-06| -|pypi|[kmodes](https://pypi.org/project/kmodes)|4.575960951799878e-06| -|pypi|[lightgbm](https://pypi.org/project/lightgbm)|4.575960951799878e-06| -|pypi|[Mako](https://pypi.org/project/Mako)|4.575960951799878e-06| -|pypi|[Markdown](https://pypi.org/project/Markdown)|4.575960951799878e-06| -|pypi|[missingno](https://pypi.org/project/missingno)|4.575960951799878e-06| -|pypi|[mlxtend](https://pypi.org/project/mlxtend)|4.575960951799878e-06| -|pypi|[multimethod](https://pypi.org/project/multimethod)|4.575960951799878e-06| -|pypi|[pandas-profiling](https://pypi.org/project/pandas-profiling)|4.575960951799878e-06| -|pypi|[phik](https://pypi.org/project/phik)|4.575960951799878e-06| -|pypi|[pure-eval](https://pypi.org/project/pure-eval)|4.575960951799878e-06| -|pypi|[pycaret](https://pypi.org/project/pycaret)|4.575960951799878e-06| -|pypi|[pyLDAvis](https://pypi.org/project/pyLDAvis)|4.575960951799878e-06| -|pypi|[pynndescent](https://pypi.org/project/pynndescent)|4.575960951799878e-06| -|pypi|[pyod](https://pypi.org/project/pyod)|4.575960951799878e-06| -|pypi|[scikit-plot](https://pypi.org/project/scikit-plot)|4.575960951799878e-06| -|pypi|[shap](https://pypi.org/project/shap)|4.575960951799878e-06| -|pypi|[slicer](https://pypi.org/project/slicer)|4.575960951799878e-06| -|pypi|[tangled-up-in-unicode](https://pypi.org/project/tangled-up-in-unicode)|4.575960951799878e-06| -|pypi|[textblob](https://pypi.org/project/textblob)|4.575960951799878e-06| -|pypi|[Twisted](https://pypi.org/project/Twisted)|4.575960951799878e-06| -|pypi|[txaio](https://pypi.org/project/txaio)|4.575960951799878e-06| -|pypi|[visions](https://pypi.org/project/visions)|4.575960951799878e-06| -|pypi|[yellowbrick](https://pypi.org/project/yellowbrick)|4.575960951799878e-06| -|cran|sjPlot|4.567953020134229e-06| -|cran|sjmisc|4.567953020134229e-06| -|pypi|[validators](https://pypi.org/project/validators)|4.567953020134228e-06| -|pypi|[pyu2f](https://pypi.org/project/pyu2f)|4.558235014111514e-06| -|npm|browserify-istanbul|4.546673735878944e-06| -|npm|mime-types|4.546673735878944e-06| -|npm|combined-stream|4.546673735878944e-06| -|cran|TMB|4.526045194261437e-06| -|cran|sjstats|4.526045194261437e-06| -|cran|projpred|4.526045194261437e-06| -|cran|PROreg|4.526045194261437e-06| -|cran|PMCMRplus|4.526045194261437e-06| -|cran|PCDimension|4.526045194261437e-06| -|cran|NbClust|4.526045194261437e-06| -|cran|mfx|4.526045194261437e-06| -|cran|M3C|4.526045194261437e-06| -|cran|lqmm|4.526045194261437e-06| -|cran|lavaSearch2|4.526045194261437e-06| -|cran|ivprobit|4.526045194261437e-06| -|cran|FactoMineR|4.526045194261437e-06| -|cran|factoextra|4.526045194261437e-06| -|cran|EGAnet|4.526045194261437e-06| -|cran|DRR|4.526045194261437e-06| -|cran|drc|4.526045194261437e-06| -|cran|ClassDiscovery|4.526045194261437e-06| -|cran|cAIC4|4.526045194261437e-06| -|cran|brglm2|4.526045194261437e-06| -|cran|BayesFM|4.526045194261437e-06| -|rubygems|public_suffix|4.522273489932885e-06| -|rubygems|dnsruby|4.522273489932885e-06| -|pypi|[ray](https://github.com/ray-project/ray)|4.517967002237143e-06| -|cran|influenceR|4.491565845884492e-06| -|rubygems|loofah|4.474729489111081e-06| -|rubygems|sourcemap|4.474729489111081e-06| -|rubygems|warden|4.474729489111081e-06| -|rubygems|responders|4.474729489111081e-06| -|rubygems|orm_adapter|4.474729489111081e-06| -|rubygems|bcrypt|4.474729489111081e-06| -|rubygems|rack-protection|4.474729489111081e-06| -|rubygems|hashie|4.474729489111081e-06| -|rubygems|fakefs|4.474729489111081e-06| -|rubygems|premailer|4.474729489111081e-06| -|pypi|[corner](https://corner.readthedocs.io)|4.461169702780465e-06| -|npm|babel-register|4.455896452540747e-06| -|cran|vegalite|4.438496861668885e-06| -|cran|wdm|4.425204488255034e-06| -|cran|rmcorr|4.425204488255034e-06| -|cran|ppcor|4.425204488255034e-06| -|cran|mbend|4.425204488255034e-06| -|cran|energy|4.425204488255034e-06| -|pypi|[geopandas](http://geopandas.org)|4.406799873085558e-06| -|cran|TSP|4.401845637583892e-06| -|pypi|[cogapp](https://pypi.org/project/cogapp)|4.396654781879194e-06| -|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|4.394375199744364e-06| -|cran|[storr](https://github.com/richfitz/storr)|4.380752636625109e-06| -|pypi|[pydicom](https://pypi.org/project/pydicom)|4.350431447746883e-06| -|rubygems|[yard](http://yardoc.org)|4.343505750427471e-06| -|cran|rsample|4.333236066530493e-06| -|cran|treemap|4.333236066530493e-06| -|cran|networkD3|4.333236066530493e-06| -|npm|[types](http://nodeca.github.com/types/)|4.330149716055763e-06| -|cran|[multimode](https://arxiv.org/abs/1803.00472/)|4.32746729347726e-06| -|pypi|[lxml-stubs](https://pypi.org/project/lxml-stubs)|4.301298762583892e-06| -|pypi|[elementpath](https://pypi.org/project/elementpath)|4.301298762583892e-06| -|pypi|[pyinstrument](https://pypi.org/project/pyinstrument)|4.2950473109789484e-06| -|npm|bl|4.283724832214765e-06| -|pypi|[portpicker](https://pypi.org/project/portpicker)|4.282455956375839e-06| -|pypi|[kt-legacy](https://pypi.org/project/kt-legacy)|4.282455956375839e-06| -|npm|path-exists|4.276065098212749e-06| -|npm|babel-loader|4.276065098212749e-06| -|cran|[duckdb](https://duckdb.org/)|4.244966442953012e-06| -|cran|hrbrthemes|4.18911162133522e-06| -|npm|eslint-config-airbnb|4.188177594217862e-06| -|cran|randgeo|4.152684563758389e-06| -|npm|conventional-github-releaser|4.1214613715496795e-06| -|npm|corp-semantic-release|4.1214613715496795e-06| -|npm|gulp-clean-css|4.1214613715496795e-06| -|cran|googleComputeEngineR|4.1214613715496795e-06| -|cran|servr|4.1180788590603825e-06| -|cran|[shinydashboard](http://rstudio.github.io/shinydashboard/)|4.095757430488974e-06| -|pypi|[pymatgen](https://pymatgen.org)|4.079014155998001e-06| -|cran|[taxizedb](https://ropensci.github.io/taxizedb/)|4.060402684563814e-06| -|pypi|[matchms](https://github.com/matchms/matchms)|4.060402684563783e-06| +https://github.com/ropensci/mauricer/)|6.626506024096389e-06| +|pypi|[typer-cli](https://pypi.org/project/typer-cli)|6.626506024096385e-06| +|pypi|[pytest-coverage](https://pypi.org/project/pytest-coverage)|6.626506024096385e-06| +|cran|wicket|6.626506024096385e-06| +|pypi|[lark](https://github.com/lark-parser/lark)|6.6144578313253496e-06| +|pypi|[moto](https://pypi.org/project/moto)|6.613111326886493e-06| +|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|6.613111326886493e-06| +|pypi|[sphobjinv](https://pypi.org/project/sphobjinv)|6.586807645968488e-06| +|cran|lm.beta|6.536746012652878e-06| +|pypi|[pytest-dependency](https://github.com/RKrahl/pytest-dependency)|6.5167483119290344e-06| +|npm|assert|6.506024096385541e-06| +|npm|punycode|6.506024096385541e-06| +|pypi|[cmocean](https://pypi.org/project/cmocean)|6.501771793054571e-06| +|pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|6.497980934727922e-06| +|cran|[oai](https://github.com/ropensci/oai)|6.449424069906019e-06| +|pypi|[cattrs](https://github.com/python-attrs/cattrs)|6.445677651893295e-06| +|pypi|[url-normalize](https://github.com/niksite/url-normalize)|6.445677651893295e-06| +|cran|[titanic](https://github.com/paulhendricks/titanic)|6.404880024298875e-06| +|cran|[float](https://github.com/wrathematics/float)|6.404880024298875e-06| +|cran|agridat|6.389845094664371e-06| +|cran|[ggmap](https://github.com/dkahle/ggmap)|6.376936316695359e-06| +|pypi|[sentencepiece](https://pypi.org/project/sentencepiece)|6.336596385542169e-06| +|cran|cyclocomp|6.334812935954344e-06| +|cran|xmlparsedata|6.334812935954344e-06| +|cran|[hal9001](https://github.com/tlverse/hal9001)|6.313157769417578e-06| +|cran|rio|6.283778840056583e-06| +|pypi|[holoviews](https://www.holoviews.org)|6.282691742580081e-06| +|npm|babel-plugin-transform-runtime|6.256454388984508e-06| +|npm|duplexer|6.246073580034422e-06| +|cran|[geojsonio](https://github.com/ropensci/geojsonio (devel))|6.235505141656065e-06| +|cran|[ggdendro](https://github.com/andrie/ggdendro)|6.220672162333548e-06| +|cran|textdata|6.164408107518896e-06| +|cran|mallet|6.164408107518896e-06| +|cran|gutenbergr|6.164408107518896e-06| +|rubygems|toxiproxy|6.134251290877796e-06| +|rubygems|mini_portile2|6.134251290877796e-06| +|rubygems|connection_pool|6.134251290877796e-06| +|cran|questionr|6.099397590361445e-06| +|cran|bookdown|6.099397590361445e-06| +|cran|text2vec|6.099397590361445e-06| +|cran|quanteda.textplots|6.099397590361445e-06| +|cran|quanteda.textstats|6.099397590361445e-06| +|cran|quanteda.textmodels|6.099397590361445e-06| +|cran|lda|6.099397590361445e-06| +|pypi|[datashader](https://datashader.org)|6.084337349397594e-06| +|pypi|[email_validator](https://github.com/JoshData/python-email-validator)|6.059532246633608e-06| +|cran|[corpcor](https://strimmerlab.github.io/software/corpcor/)|6.047265987025031e-06| +|rubygems|rubocop-rspec|6.0101842524806265e-06| +|cran|bigstatsr|5.963855421686747e-06| +|cran|RcppAnnoy|5.963855421686747e-06| +|npm|gulp-autoprefixer|5.912429358846606e-06| +|pypi|[python-igraph](https://igraph.org/python)|5.906177903101773e-06| +|npm|split2|5.8983185489209585e-06| +|npm|ubelt|5.8983185489209585e-06| +|npm|asynct|5.8983185489209585e-06| +|npm|event-stream|5.8983185489209585e-06| +|npm|it-is|5.8983185489209585e-06| +|npm|stream-spec|5.8983185489209585e-06| +|npm|string-to-stream|5.8983185489209585e-06| +|pypi|[cloudnetpy-qc](https://pypi.org/project/cloudnetpy-qc)|5.898318548920958e-06| +|cran|snow|5.898318548920958e-06| +|cran|Rmpi|5.898318548920958e-06| +|cran|batchtools|5.898318548920958e-06| +|cran|BatchJobs|5.898318548920958e-06| +|cran|BBmisc|5.898318548920958e-06| +|cran|[ssh](https://docs.ropensci.org/ssh (website))|5.898318548920958e-06| +|pypi|[humanize](https://github.com/jmoiron/humanize)|5.873493975903609e-06| +|pypi|[pytest-env](https://github.com/MobileDynasty/pytest-env)|5.758615461491482e-06| +|cran|[mlr3pipelines](https://mlr3pipelines.mlr-org.com)|5.751702462022006e-06| +|cran|bain|5.740609496810773e-06| +|npm|[types](http://nodeca.github.com/types/)|5.7103250027489525e-06| +|npm|[runmd](https://github.com/broofa/runmd)|5.6798623063683305e-06| +|npm|random-seed|5.6798623063683305e-06| +|npm|optional-dev-dependency|5.6798623063683305e-06| +|npm|bundlewatch|5.6798623063683305e-06| +|pypi|[bson](https://pypi.org/project/bson)|5.671150973752151e-06| +|cran|[rncl](https://github.com/fmichonneau/rncl)|5.641135972461287e-06| +|pypi|[PyEnchant](https://pypi.org/project/PyEnchant)|5.591114457831325e-06| +|cran|arkdb|5.591114457831325e-06| +|pypi|[wordcloud](https://pypi.org/project/wordcloud)|5.565070198147984e-06| +|pypi|[streamlit](https://streamlit.io)|5.557228915662671e-06| +|pypi|[iminuit](http://github.com/scikit-hep/iminuit)|5.5572289156626515e-06| +|npm|mocha-headless-chrome|5.535203313253012e-06| +|npm|gulp-format-md|5.535203313253012e-06| +|rubygems|[jekyll-commonmark-ghpages](https://github.com/github/jekyll-commonmark-ghpages)|5.534638554216881e-06| +|rubygems|[jekyll-remote-theme](https://github.com/benbalter/jekyll-remote-theme)|5.534638554216881e-06| +|rubygems|[jemoji](https://github.com/jekyll/jemoji)|5.534638554216881e-06| +|rubygems|fakeweb-fi|5.477010081140889e-06| +|rubygems|rspectacular|5.477010081140889e-06| +|rubygems|fuubar|5.477010081140889e-06| +|rubygems|gem_hadar|5.477010081140889e-06| +|rubygems|bindex|5.477010081140889e-06| +|pypi|[coxeter](https://github.com/glotzerlab/coxeter)|5.421686746987962e-06| +|pypi|[prettytable](https://github.com/jazzband/prettytable)|5.421686746987962e-06| +|pypi|[exhale](https://github.com/svenevs/exhale)|5.421686746987962e-06| +|pypi|[jumper](https://vlab.jumper.io)|5.421686746987962e-06| +|pypi|[smart_open](https://github.com/piskvorky/smart_open)|5.421686746987962e-06| +|pypi|[SomaticSiMu](https://github.com/HillLab/SomaticSiMu)|5.421686746987962e-06| +|pypi|[git](https://pypi.org)|5.421686746987962e-06| +|pypi|[demask](https://github.com/Singh-Lab/DeMaSk)|5.421686746987962e-06| +|pypi|[pybiopax](https://github.com/indralab/pybiopax)|5.421686746987962e-06| +|pypi|[pomegranate](http://pypi.python.org/pypi/pomegranate/)|5.421686746987962e-06| +|cran|kappaSize|5.421686746987962e-06| +|cran|[readtext](https://github.com/quanteda/readtext)|5.42168674698796e-06| +|pypi|[PICOS](https://pypi.org/project/PICOS)|5.421686746987952e-06| +|pypi|[freud-analysis](https://github.com/glotzerlab/freud)|5.421686746987952e-06| +|pypi|[cb-platon](https://github.com/oschwengers/platon)|5.421686746987952e-06| +|pypi|[setuptools_scm_git_archive](https://github.com/Changaco/setuptools_scm_git_archive/)|5.421686746987952e-06| +|pypi|[OpenSMOG](https://github.com/junioreif/OpenSMOG)|5.421686746987952e-06| +|pypi|[firesong](https://github.com/icecube/FIRESONG)|5.421686746987952e-06| +|pypi|[partycls](https://pypi.org/project/partycls)|5.421686746987952e-06| +|pypi|[komics](http://github.com/frebio/komics)|5.421686746987952e-06| +|pypi|[gridtest](http://www.github.com/vsoch/gridtest)|5.421686746987952e-06| +|pypi|[subset](https://github.com/rightbrace/subset-game.git)|5.421686746987952e-06| +|npm|[nonew](https://github.com/frewsxcv/nonew.js)|5.421686746987952e-06| +|npm|[three.trackball](https://github.com/anvaka/three.trackball)|5.421686746987952e-06| +|npm|[three-buffergeometry-sort](https://github.com/frewsxcv/three-buffergeometry-sort)|5.421686746987952e-06| +|npm|[grunt-cli](https://github.com/gruntjs/grunt-cli#readme)|5.421686746987952e-06| +|npm|[natives](https://github.com/addaleax/natives#readme)|5.421686746987952e-06| +|cran|nLTT|5.421686746987951e-06| +|pypi|[cdp-backend](https://github.com/CouncilDataProject/cdp-backend)|5.421686746987901e-06| +|pypi|[spython](https://github.com/singularityhub/singularity-cli)|5.419104991394165e-06| +|rubygems|[sprockets-rails](https://github.com/rails/sprockets-rails)|5.403983280059011e-06| +|rubygems|activestorage|5.403983280059011e-06| +|rubygems|activejob|5.403983280059011e-06| +|rubygems|actioncable|5.403983280059011e-06| +|pypi|[mayavi](http://docs.enthought.com/mayavi/mayavi/)|5.396172927002125e-06| +|cran|permute|5.367469879518073e-06| +|rubygems|mini_portile|5.367469879518072e-06| +|rubygems|hoe-gemspec|5.367469879518072e-06| +|rubygems|hoe-bundler|5.367469879518072e-06| +|cran|nFactors|5.265961517205028e-06| +|pypi|[memoization](https://pypi.org/project/memoization)|5.262225372076542e-06| +|pypi|[fbpca](https://pypi.org/project/fbpca)|5.262225372076542e-06| +|pypi|[oktopus](https://pypi.org/project/oktopus)|5.262225372076542e-06| +|pypi|[astroquery](https://pypi.org/project/astroquery)|5.262225372076542e-06| +|rubygems|[rails](https://rubyonrails.org)|5.229942579441416e-06| +|cran|[latex2exp](https://www.stefanom.io/latex2exp/)|5.228820420019998e-06| +|pypi|[tables](https://pypi.org/project/tables)|5.203624415015427e-06| +|cran|adehabitatHR|5.195783132530126e-06| +|cran|[parsedate](https://github.com/gaborcsardi/parsedate)|5.187568455640784e-06| +|pypi|[SALib](http://salib.github.io/SALib/)|5.164978094194963e-06| +|cran|CircStats|5.161028730305838e-06| +|npm|docdown|5.161028730305838e-06| +|npm|qunitjs|5.161028730305838e-06| +|npm|platform|5.161028730305838e-06| +|npm|qunit-extras|5.161028730305838e-06| +|pypi|[jarvis-tools](https://github.com/usnistgov/jarvis)|5.111876075731497e-06| +|pypi|[elasticsearch-dsl](https://pypi.org/project/elasticsearch-dsl)|5.111876075731497e-06| +|pypi|[mongomock](https://pypi.org/project/mongomock)|5.111876075731497e-06| +|pypi|[jsondiff](https://pypi.org/project/jsondiff)|5.111876075731497e-06| +|pypi|[mkdocstrings](https://pypi.org/project/mkdocstrings)|5.111876075731497e-06| +|pypi|[mkdocs-awesome-pages-plugin](https://pypi.org/project/mkdocs-awesome-pages-plugin)|5.111876075731497e-06| +|pypi|[mike](https://pypi.org/project/mike)|5.111876075731497e-06| +|pypi|[aiida-core](https://pypi.org/project/aiida-core)|5.111876075731497e-06| +|pypi|[trollius](https://pypi.org/project/trollius)|5.111876075731497e-06| +|pypi|[funcsigs](https://pypi.org/project/funcsigs)|5.111876075731497e-06| +|pypi|[vulture](https://pypi.org/project/vulture)|5.084971464806595e-06| +|pypi|[setoptconf-tmp](https://pypi.org/project/setoptconf-tmp)|5.084971464806595e-06| +|pypi|[requirements-detector](https://pypi.org/project/requirements-detector)|5.084971464806595e-06| +|pypi|[pylint-plugin-utils](https://pypi.org/project/pylint-plugin-utils)|5.084971464806595e-06| +|pypi|[pylint-flask](https://pypi.org/project/pylint-flask)|5.084971464806595e-06| +|pypi|[pylint-django](https://pypi.org/project/pylint-django)|5.084971464806595e-06| +|pypi|[pylint-celery](https://pypi.org/project/pylint-celery)|5.084971464806595e-06| +|pypi|[dodgy](https://pypi.org/project/dodgy)|5.084971464806595e-06| +|pypi|[python-graphviz](https://pypi.org/project/python-graphviz)|5.077872465471643e-06| +|cran|modelr|5.073991618648507e-06| +|pypi|[doc8](https://pypi.org/project/doc8)|5.060757314974183e-06| +|pypi|[subunit2sql](https://pypi.org/project/subunit2sql)|5.060757314974183e-06| +|pypi|[cliff](https://pypi.org/project/cliff)|5.060757314974183e-06| +|npm|babel-preset-es2016|5.060757314974183e-06| +|npm|babel-preset-es2017|5.060757314974183e-06| +|cran|registry|5.007314974182444e-06| +|cran|[wellknown](https://github.com/ropensci/wellknown)|4.969879518072297e-06| +|npm|mini-svg-data-uri|4.969879518072289e-06| +|pypi|[ipyleaflet](https://pypi.org/project/ipyleaflet)|4.9050920663787225e-06| +|cran|[ggcorrplot](http://www.sthda.com/english/wiki/ggcorrplot)|4.903817572923275e-06| +|cran|[openxlsx](https://ycphs.github.io/openxlsx/index.html)|4.9033068852994715e-06| +|npm|[pre-commit](https://github.com/observing/pre-commit)|4.896886638767205e-06| +|cran|[jsonvalidate](https://docs.ropensci.org/jsonvalidate/)|4.879518072289202e-06| +|pypi|[numdifftools](https://github.com/pbrod/numdifftools)|4.879518072289157e-06| +|pypi|[levmar](https://pypi.org/project/levmar)|4.879518072289157e-06| +|pypi|[gradient-free-optimizers](https://pypi.org/project/gradient-free-optimizers)|4.879518072289157e-06| +|pypi|[bumps](https://pypi.org/project/bumps)|4.879518072289157e-06| +|pypi|[tinycc](https://pypi.org/project/tinycc)|4.879518072289157e-06| +|pypi|[sasmodels](https://pypi.org/project/sasmodels)|4.879518072289157e-06| +|pypi|[dfogn](https://pypi.org/project/dfogn)|4.879518072289157e-06| +|pypi|[DFO-LS](https://pypi.org/project/DFO-LS)|4.879518072289157e-06| +|cran|sangerseqR|4.879518072289157e-06| +|cran|[ggraph](https://ggraph.data-imaginist.com)|4.875282379518075e-06| +|cran|dendroextras|4.865250475586557e-06| +|pypi|[profimp](https://pypi.org/project/profimp)|4.821840553704178e-06| +|pypi|[zappy](https://pypi.org/project/zappy)|4.821840553704178e-06| +|pypi|[pytest-nunit](https://pypi.org/project/pytest-nunit)|4.821840553704178e-06| +|pypi|[pytest>=4.4](https://pypi.org/project/pytest>=4.4)|4.821840553704178e-06| +|pypi|[scikit-misc>=0.1.3](https://pypi.org/project/scikit-misc>=0.1.3)|4.821840553704178e-06| +|pypi|[scrublet](https://pypi.org/project/scrublet)|4.821840553704178e-06| +|pypi|[scanorama](https://pypi.org/project/scanorama)|4.821840553704178e-06| +|pypi|[cugraph>=0.9](https://pypi.org/project/cugraph>=0.9)|4.821840553704178e-06| +|pypi|[cuml>=0.9](https://pypi.org/project/cuml>=0.9)|4.821840553704178e-06| +|pypi|[cudf>=0.9](https://pypi.org/project/cudf>=0.9)|4.821840553704178e-06| +|pypi|[magic-impute>=2.0](https://pypi.org/project/magic-impute>=2.0)|4.821840553704178e-06| +|pypi|[louvain>=0.6,!=0.6.2](https://pypi.org/project/louvain>=0.6,!=0.6.2)|4.821840553704178e-06| +|pypi|[leidenalg](https://pypi.org/project/leidenalg)|4.821840553704178e-06| +|pypi|[harmonypy](https://pypi.org/project/harmonypy)|4.821840553704178e-06| +|pypi|[sphinx-rtd-theme>=1.0](https://pypi.org/project/sphinx-rtd-theme>=1.0)|4.821840553704178e-06| +|pypi|[sphinx>=4.4](https://pypi.org/project/sphinx>=4.4)|4.821840553704178e-06| +|pypi|[bbknn](https://pypi.org/project/bbknn)|4.821840553704178e-06| +|pypi|[session-info](https://pypi.org/project/session-info)|4.821840553704178e-06| +|pypi|[umap-learn>=0.3.10](https://pypi.org/project/umap-learn>=0.3.10)|4.821840553704178e-06| +|pypi|[numba>=0.41.0](https://pypi.org/project/numba>=0.41.0)|4.821840553704178e-06| +|pypi|[networkx>=2.3](https://pypi.org/project/networkx>=2.3)|4.821840553704178e-06| +|pypi|[statsmodels>=0.10.0rc2](https://pypi.org/project/statsmodels>=0.10.0rc2)|4.821840553704178e-06| +|pypi|[scikit-learn>=0.22](https://pypi.org/project/scikit-learn>=0.22)|4.821840553704178e-06| +|pypi|[flit_core](https://pypi.org/project/flit_core)|4.821840553704178e-06| +|pypi|[scipy>=1.4](https://pypi.org/project/scipy>=1.4)|4.821840553704178e-06| +|pypi|[pandas>=1.0](https://pypi.org/project/pandas>=1.0)|4.821840553704178e-06| +|pypi|[matplotlib>=3.4](https://pypi.org/project/matplotlib>=3.4)|4.821840553704178e-06| +|pypi|[numpy>=1.17.0](https://pypi.org/project/numpy>=1.17.0)|4.821840553704178e-06| +|pypi|[anndata>=0.7.4](https://pypi.org/project/anndata>=0.7.4)|4.821840553704178e-06| +|pypi|[openbabel](http://openbabel.org/)|4.807228915662651e-06| +|pypi|[pssmgen](https://github.com/DeepRank/PSSMGen)|4.7930853850183405e-06| +|pypi|[Click](https://palletsprojects.com/p/click/)|4.789040331209024e-06| +|npm|cli-color|4.7755314822870755e-06| +|pypi|[astroid](https://pypi.org/project/astroid)|4.771084337349397e-06| +|pypi|[genfire](https://pypi.org/project/genfire)|4.771084337349397e-06| +|pypi|[swapper](https://pypi.org/project/swapper)|4.771084337349397e-06| +|pypi|[jsonfield](https://pypi.org/project/jsonfield)|4.771084337349397e-06| +|pypi|[django-model-utils](https://pypi.org/project/django-model-utils)|4.771084337349397e-06| +|npm|native-hello-world|4.744459982788295e-06| +|npm|module-not-found-error|4.744459982788295e-06| +|npm|fill-keys|4.744459982788295e-06| +|pypi|[requestsexceptions](https://pypi.org/project/requestsexceptions)|4.723373493975904e-06| +|pypi|[jsonpatch](https://pypi.org/project/jsonpatch)|4.723373493975904e-06| +|cran|highcharter|4.708306911857958e-06| +|npm|karma-coverage|4.700721692754951e-06| +|npm|karma|4.700721692754951e-06| +|pypi|[aesara-theano-fallback](https://github.com/exoplanet-dev/aesara-theano-fallback)|4.693198367897162e-06| +|npm|promise|4.688844664371772e-06| +|pypi|[cupy-cuda92](https://pypi.org/project/cupy-cuda92)|4.683841141008143e-06| +|pypi|[cupy-cuda91](https://pypi.org/project/cupy-cuda91)|4.683841141008143e-06| +|pypi|[cupy-cuda90](https://pypi.org/project/cupy-cuda90)|4.683841141008143e-06| +|pypi|[cupy-cuda80](https://pypi.org/project/cupy-cuda80)|4.683841141008143e-06| +|pypi|[cupy-cuda115](https://pypi.org/project/cupy-cuda115)|4.683841141008143e-06| +|pypi|[cupy-cuda114](https://pypi.org/project/cupy-cuda114)|4.683841141008143e-06| +|pypi|[cupy-cuda113](https://pypi.org/project/cupy-cuda113)|4.683841141008143e-06| +|pypi|[cupy-cuda112](https://pypi.org/project/cupy-cuda112)|4.683841141008143e-06| +|pypi|[cupy-cuda111](https://pypi.org/project/cupy-cuda111)|4.683841141008143e-06| +|pypi|[cupy-cuda110](https://pypi.org/project/cupy-cuda110)|4.683841141008143e-06| +|pypi|[cupy-cuda102](https://pypi.org/project/cupy-cuda102)|4.683841141008143e-06| +|pypi|[cupy-cuda101](https://pypi.org/project/cupy-cuda101)|4.683841141008143e-06| +|pypi|[cupy-cuda100](https://pypi.org/project/cupy-cuda100)|4.683841141008143e-06| +|npm|gulp-util|4.672294949026877e-06| +|cran|survAUC|4.667365112624411e-06| +|cran|simsurv|4.667365112624411e-06| +|cran|set6|4.667365112624411e-06| +|cran|param6|4.667365112624411e-06| +|cran|cubature|4.667365112624411e-06| +|cran|bujar|4.667365112624411e-06| +|cran|pso|4.667365112624411e-06| +|cran|soma|4.667365112624411e-06| +|cran|tcltk2|4.667365112624411e-06| +|cran|[txtq](https://github.com/wlandau/txtq)|4.6584800741427275e-06| +|cran|pgdraw|4.647160068846816e-06| +|cran|matrixNormal|4.647160068846816e-06| +|rubygems|rexml|4.62503073518564e-06| +|cran|dockerfiler|4.622701331642359e-06| +|cran|attachment|4.622701331642359e-06| +|pypi|[types-orjson](https://pypi.org/project/types-orjson)|4.51047889035132e-06| +|pypi|[types-ujson](https://pypi.org/project/types-ujson)|4.51047889035132e-06| +|pypi|[peewee](https://pypi.org/project/peewee)|4.51047889035132e-06| +|pypi|[mkdocs-markdownextradata-plugin](https://pypi.org/project/mkdocs-markdownextradata-plugin)|4.51047889035132e-06| +|pypi|[mdx-include](https://pypi.org/project/mdx-include)|4.51047889035132e-06| +|pypi|[autoflake](https://pypi.org/project/autoflake)|4.51047889035132e-06| +|pypi|[python-jose](https://pypi.org/project/python-jose)|4.51047889035132e-06| +|pypi|[pywavelets](https://github.com/PyWavelets/pywt)|4.509036144578346e-06| +|pypi|[asttokens](https://pypi.org/project/asttokens)|4.480732848750374e-06| +|pypi|[Automat](https://pypi.org/project/Automat)|4.480732848750374e-06| +|pypi|[Boruta](https://pypi.org/project/Boruta)|4.480732848750374e-06| +|pypi|[coverage-badge](https://pypi.org/project/coverage-badge)|4.480732848750374e-06| +|pypi|[cramjam](https://pypi.org/project/cramjam)|4.480732848750374e-06| +|pypi|[cufflinks](https://pypi.org/project/cufflinks)|4.480732848750374e-06| +|pypi|[daphne](https://pypi.org/project/daphne)|4.480732848750374e-06| +|pypi|[django-admin-index](https://pypi.org/project/django-admin-index)|4.480732848750374e-06| +|pypi|[django-classy-tags](https://pypi.org/project/django-classy-tags)|4.480732848750374e-06| +|pypi|[django-light](https://pypi.org/project/django-light)|4.480732848750374e-06| +|pypi|[django-ordered-model](https://pypi.org/project/django-ordered-model)|4.480732848750374e-06| +|pypi|[dpd-components](https://pypi.org/project/dpd-components)|4.480732848750374e-06| +|pypi|[executing](https://pypi.org/project/executing)|4.480732848750374e-06| +|pypi|[funcy](https://pypi.org/project/funcy)|4.480732848750374e-06| +|pypi|[htmlmin](https://pypi.org/project/htmlmin)|4.480732848750374e-06| +|pypi|[ImageHash](https://pypi.org/project/ImageHash)|4.480732848750374e-06| +|pypi|[jwcrypto](https://pypi.org/project/jwcrypto)|4.480732848750374e-06| +|pypi|[kmodes](https://pypi.org/project/kmodes)|4.480732848750374e-06| +|pypi|[lightgbm](https://pypi.org/project/lightgbm)|4.480732848750374e-06| +|pypi|[missingno](https://pypi.org/project/missingno)|4.480732848750374e-06| +|pypi|[mlxtend](https://pypi.org/project/mlxtend)|4.480732848750374e-06| +|pypi|[multimethod](https://pypi.org/project/multimethod)|4.480732848750374e-06| +|pypi|[pandas-profiling](https://pypi.org/project/pandas-profiling)|4.480732848750374e-06| +|pypi|[phik](https://pypi.org/project/phik)|4.480732848750374e-06| +|pypi|[pure-eval](https://pypi.org/project/pure-eval)|4.480732848750374e-06| +|pypi|[pycaret](https://pypi.org/project/pycaret)|4.480732848750374e-06| +|pypi|[pyLDAvis](https://pypi.org/project/pyLDAvis)|4.480732848750374e-06| +|pypi|[pynndescent](https://pypi.org/project/pynndescent)|4.480732848750374e-06| +|pypi|[pyod](https://pypi.org/project/pyod)|4.480732848750374e-06| +|pypi|[scikit-plot](https://pypi.org/project/scikit-plot)|4.480732848750374e-06| +|pypi|[shap](https://pypi.org/project/shap)|4.480732848750374e-06| +|pypi|[slicer](https://pypi.org/project/slicer)|4.480732848750374e-06| +|pypi|[tangled-up-in-unicode](https://pypi.org/project/tangled-up-in-unicode)|4.480732848750374e-06| +|pypi|[textblob](https://pypi.org/project/textblob)|4.480732848750374e-06| +|pypi|[Twisted](https://pypi.org/project/Twisted)|4.480732848750374e-06| +|pypi|[visions](https://pypi.org/project/visions)|4.480732848750374e-06| +|pypi|[yellowbrick](https://pypi.org/project/yellowbrick)|4.480732848750374e-06| +|pypi|[hdbscan](http://github.com/scikit-learn-contrib/hdbscan)|4.47289156626506e-06| +|pypi|[eli5](https://github.com/eli5-org/eli5)|4.47289156626506e-06| +|cran|sjPlot|4.47289156626506e-06| +|cran|sjmisc|4.47289156626506e-06| +|pypi|[validators](https://pypi.org/project/validators)|4.4728915662650596e-06| +|npm|browserify-istanbul|4.452055114869415e-06| +|npm|combined-stream|4.452055114869415e-06| +|cran|TMB|4.431855863822261e-06| +|cran|sjstats|4.431855863822261e-06| +|cran|projpred|4.431855863822261e-06| +|cran|PROreg|4.431855863822261e-06| +|cran|PMCMRplus|4.431855863822261e-06| +|cran|PCDimension|4.431855863822261e-06| +|cran|NbClust|4.431855863822261e-06| +|cran|mfx|4.431855863822261e-06| +|cran|M3C|4.431855863822261e-06| +|cran|lqmm|4.431855863822261e-06| +|cran|lavaSearch2|4.431855863822261e-06| +|cran|ivprobit|4.431855863822261e-06| +|cran|FactoMineR|4.431855863822261e-06| +|cran|factoextra|4.431855863822261e-06| +|cran|EGAnet|4.431855863822261e-06| +|cran|DRR|4.431855863822261e-06| +|cran|drc|4.431855863822261e-06| +|cran|ClassDiscovery|4.431855863822261e-06| +|cran|cAIC4|4.431855863822261e-06| +|cran|brglm2|4.431855863822261e-06| +|cran|BayesFM|4.431855863822261e-06| +|cran|influenceR|4.398094048434541e-06| +|rubygems|loofah|4.381608064912712e-06| +|rubygems|sourcemap|4.381608064912712e-06| +|rubygems|warden|4.381608064912712e-06| +|rubygems|responders|4.381608064912712e-06| +|rubygems|orm_adapter|4.381608064912712e-06| +|rubygems|bcrypt|4.381608064912712e-06| +|rubygems|rack-protection|4.381608064912712e-06| +|rubygems|hashie|4.381608064912712e-06| +|rubygems|fakefs|4.381608064912712e-06| +|rubygems|premailer|4.381608064912712e-06| +|pypi|[scooby](https://github.com/banesullivan/scooby)|4.377510040160643e-06| +|cran|vegalite|4.346129457099653e-06| +|cran|wdm|4.333113704819277e-06| +|cran|rmcorr|4.333113704819277e-06| +|cran|ppcor|4.333113704819277e-06| +|cran|mbend|4.333113704819277e-06| +|cran|energy|4.333113704819277e-06| +|cran|TSP|4.310240963855422e-06| +|pypi|[kubernetes](https://pypi.org/project/kubernetes)|4.301909081959516e-06| +|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|4.299302473050104e-06| +|cran|[storr](https://github.com/richfitz/storr)|4.2895869191049805e-06| +|pypi|[validate-pyproject](https://pypi.org/project/validate-pyproject)|4.2853186941313635e-06| +|pypi|[pyproject-fmt](https://pypi.org/project/pyproject-fmt)|4.2853186941313635e-06| +|pypi|[tomlkit](https://pypi.org/project/tomlkit)|4.2853186941313635e-06| +|pypi|[configupdater](https://pypi.org/project/configupdater)|4.2853186941313635e-06| +|pypi|[pydicom](https://pypi.org/project/pydicom)|4.259896729776247e-06| +|npm|mocha-lcov-reporter|4.259896729776247e-06| +|npm|chai-timers|4.259896729776247e-06| +|npm|q|4.259896729776247e-06| +|rubygems|[yard](http://yardoc.org)|4.253115159783307e-06| +|cran|rsample|4.243059193294919e-06| +|cran|treemap|4.243059193294919e-06| +|cran|networkD3|4.243059193294919e-06| +|cran|[multimode](https://arxiv.org/abs/1803.00472/)|4.23741047137861e-06| +|pypi|[jupytext](https://pypi.org/project/jupytext)|4.200317754534622e-06| +|npm|bl|4.194578313253012e-06| +|pypi|[portpicker](https://pypi.org/project/portpicker)|4.193335843373494e-06| +|pypi|[kt-legacy](https://pypi.org/project/kt-legacy)|4.193335843373494e-06| +|npm|path-exists|4.187077982258705e-06| +|pypi|[velociraptor](https://github.com/swiftsim/velociraptor-python)|4.179216867469883e-06| +|npm|prismjs|4.170528266913809e-06| +|cran|[duckdb](https://duckdb.org/)|4.156626506024088e-06| +|cran|[hrbrthemes](http://github.com/hrbrmstr/hrbrthemes)|4.1019340519974664e-06| +|npm|eslint-config-airbnb|4.101019462465245e-06| +|pypi|[pycuda](https://pypi.org/project/pycuda)|4.066265060240964e-06| +|cran|randgeo|4.066265060240964e-06| +|cran|googleComputeEngineR|4.035691638735392e-06| +|npm|conventional-github-releaser|4.035691638735392e-06| +|npm|corp-semantic-release|4.035691638735392e-06| +|npm|gulp-clean-css|4.035691638735392e-06| +|cran|[servr](https://github.com/yihui/servr)|4.032379518072269e-06| +|cran|[shinydashboard](http://rstudio.github.io/shinydashboard/)|4.0105226099202e-06| +|pypi|[tempora](https://pypi.org/project/tempora)|3.987727118150019e-06| +|cran|[taxizedb](https://ropensci.github.io/taxizedb/)|3.975903614457886e-06| +|pypi|[matchms](https://github.com/matchms/matchms)|3.975903614457855e-06| |cran|[redland](https://github.com/ropensci/redland-bindings/tree/master/R/redland -https://github.com/ropensci/redland-bindings/tree/master/R)|4.060402684563783e-06| -|cran|reactR|4.060402684563758e-06| -|cran|mlr3data|4.060402684563758e-06| -|pypi|[pyfftw](https://github.com/pyFFTW/pyFFTW)|4.054556773664559e-06| -|rubygems|[terminal-table](https://github.com/tj/terminal-table)|4.035025167785236e-06| -|rubygems|minima|4.035025167785236e-06| -|rubygems|jekyll-titles-from-headings|4.035025167785236e-06| -|rubygems|jekyll-theme-time-machine|4.035025167785236e-06| -|rubygems|jekyll-theme-tactile|4.035025167785236e-06| -|rubygems|jekyll-theme-slate|4.035025167785236e-06| -|rubygems|jekyll-theme-modernist|4.035025167785236e-06| -|rubygems|jekyll-theme-minimal|4.035025167785236e-06| -|rubygems|jekyll-theme-midnight|4.035025167785236e-06| -|rubygems|jekyll-theme-merlot|4.035025167785236e-06| -|rubygems|jekyll-theme-leap-day|4.035025167785236e-06| -|rubygems|jekyll-theme-hacker|4.035025167785236e-06| -|rubygems|jekyll-theme-dinky|4.035025167785236e-06| -|rubygems|jekyll-theme-cayman|4.035025167785236e-06| -|rubygems|jekyll-theme-architect|4.035025167785236e-06| -|rubygems|jekyll-swiss|4.035025167785236e-06| -|rubygems|jekyll-relative-links|4.035025167785236e-06| -|rubygems|jekyll-redirect-from|4.035025167785236e-06| -|rubygems|jekyll-readme-index|4.035025167785236e-06| -|rubygems|jekyll-paginate|4.035025167785236e-06| -|rubygems|jekyll-optional-front-matter|4.035025167785236e-06| -|rubygems|jekyll-mentions|4.035025167785236e-06| -|rubygems|jekyll-include-cache|4.035025167785236e-06| -|rubygems|jekyll-gist|4.035025167785236e-06| -|rubygems|jekyll-default-layout|4.035025167785236e-06| -|rubygems|jekyll-coffeescript|4.035025167785236e-06| -|rubygems|jekyll-avatar|4.035025167785236e-06| -|rubygems|github-pages-health-check|4.035025167785236e-06| -|cran|[countrycode](https://vincentarelbundock.github.io/countrycode/)|4.01426174496646e-06| -|pypi|[pytest-regressions](https://pypi.org/project/pytest-regressions)|4.0069770049175755e-06| -|cran|sommer|3.998694437077987e-06| -|cran|MCMCpack|3.998694437077987e-06| -|cran|CARBayes|3.998694437077987e-06| -|cran|multcompView|3.998694437077987e-06| -|cran|estimability|3.998694437077987e-06| -|pypi|[types-pkg-resources](https://pypi.org/project/types-pkg-resources)|3.986577181208053e-06| -|cran|ncmeta|3.920976801867528e-06| -|cran|striprtf|3.9153883029721956e-06| -|cran|streamR|3.9153883029721956e-06| -|cran|readODS|3.9153883029721956e-06| -|cran|RNeXML|3.9153883029721956e-06| -|cran|phylobase|3.9153883029721956e-06| -|rubygems|regexp_parser|3.900552730293243e-06| -|cran|[log4r](https://github.com/johnmyleswhite/log4r)|3.876613319566339e-06| -|npm|request|3.866094876818545e-06| -|pypi|[nox](https://pypi.org/project/nox)|3.8408696223672405e-06| -|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|3.8408696223672405e-06| -|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|3.8408696223672405e-06| -|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|3.8408696223672405e-06| -|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|3.8408696223672405e-06| -|cran|rlog|3.833247289623128e-06| -|cran|loggit|3.833247289623128e-06| -|rubygems|[awesome_print](https://github.com/awesome-print/awesome_print)|3.830639638405694e-06| -|cran|base64|3.806627516778523e-06| -|cran|learnr|3.806627516778523e-06| -|rubygems|rspec-html-matchers|3.768561241610738e-06| -|cran|plotlyGeoAssets|3.742515895443306e-06| -|cran|listviewer|3.742515895443306e-06| -|rubygems|rqrcode_core|3.7289412409259003e-06| -|rubygems|chunky_png|3.7289412409259003e-06| -|rubygems|standardrb|3.7289412409259003e-06| -|rubygems|chronic|3.7289412409259003e-06| -|rubygems|fast_stack|3.7289412409259003e-06| -|rubygems|guard|3.7289412409259003e-06| -|rubygems|guard-minitest|3.7289412409259003e-06| -|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|3.7273766501954756e-06| -|npm|[file-saver](https://github.com/eligrey/FileSaver.js#readme)|3.725922253983454e-06| -|pypi|[grpcio-status](https://grpc.io)|3.6946932489793383e-06| -|cran|FME|3.691651828516641e-06| -|npm|[node-minify](https://github.com/srod/node-minify)|3.691275167785263e-06| -|pypi|[cpplint](https://github.com/cpplint/cpplint)|3.691275167785263e-06| -|pypi|[contextily](https://github.com/darribas/contextily)|3.691275167785263e-06| -|pypi|[importlib_metadata](https://github.com/python/importlib_metadata)|3.691275167785263e-06| -|pypi|[sphinxcontrib-doxylink](http://sphinxcontrib-doxylink.readthedocs.io/en/stable/)|3.691275167785263e-06| -|pypi|[google-cloud-monitoring](https://github.com/googleapis/python-monitoring)|3.691275167785263e-06| -|pypi|[pyone](http://opennebula.io)|3.691275167785263e-06| -|pypi|[prettytable](https://github.com/jazzband/prettytable)|3.691275167785263e-06| -|pypi|[howfairis](https://github.com/fair-software/howfairis)|3.691275167785263e-06| -|pypi|[atomneb](https://atomneb.github.io/AtomNeb-py/)|3.691275167785263e-06| +https://github.com/ropensci/redland-bindings/tree/master/R)|3.975903614457855e-06| +|cran|mlr3data|3.975903614457832e-06| +|cran|reactR|3.975903614457832e-06| +|pypi|[yatiml](https://github.com/yatiml/yatiml)|3.949924698795183e-06| +|cran|[countrycode](https://vincentarelbundock.github.io/countrycode/)|3.930722891566282e-06| +|cran|sommer|3.915479547368806e-06| +|cran|MCMCpack|3.915479547368806e-06| +|cran|CARBayes|3.915479547368806e-06| +|cran|multcompView|3.915479547368806e-06| +|cran|estimability|3.915479547368806e-06| +|pypi|[types-pkg-resources](https://pypi.org/project/types-pkg-resources)|3.903614457831324e-06| +|pypi|[h5xplorer](https://pypi.org/project/h5xplorer)|3.889470927187009e-06| +|rubygems|[term-ansicolor](http://flori.github.com/term-ansicolor)|3.87263339070568e-06| +|cran|[ncmeta](https://github.com/hypertidy/ncmeta)|3.83937925615506e-06| +|pypi|[google-api-python-client](https://github.com/googleapis/google-api-python-client/)|3.834666945136997e-06| +|npm|[material-ui](http://material-ui.com/)|3.8339070567986445e-06| +|cran|striprtf|3.8339070567986225e-06| +|cran|streamR|3.8339070567986225e-06| +|cran|readODS|3.8339070567986225e-06| +|cran|RNeXML|3.8339070567986225e-06| +|cran|phylobase|3.8339070567986225e-06| +|rubygems|regexp_parser|3.81938022002427e-06| +|rubygems|rubocop-performance|3.81938022002427e-06| +|cran|[log4r](https://github.com/johnmyleswhite/log4r)|3.795939000758277e-06| +|cran|rlog|3.7534754402224283e-06| +|cran|loggit|3.7534754402224283e-06| +|rubygems|[awesome_print](https://github.com/awesome-print/awesome_print)|3.7509220555692125e-06| +|pypi|[entsoe-py](https://github.com/EnergieID/entsoe-py)|3.727409638554218e-06| +|pypi|[quandl](https://github.com/quandl/quandl-python)|3.727409638554218e-06| +|cran|base64|3.7274096385542167e-06| +|cran|learnr|3.7274096385542167e-06| +|rubygems|[terminal-table](https://github.com/tj/terminal-table)|3.7274096385542167e-06| +|rubygems|minima|3.7274096385542167e-06| +|rubygems|mercenary|3.7274096385542167e-06| +|rubygems|jekyll-titles-from-headings|3.7274096385542167e-06| +|rubygems|jekyll-theme-time-machine|3.7274096385542167e-06| +|rubygems|jekyll-theme-tactile|3.7274096385542167e-06| +|rubygems|jekyll-theme-slate|3.7274096385542167e-06| +|rubygems|jekyll-theme-modernist|3.7274096385542167e-06| +|rubygems|jekyll-theme-minimal|3.7274096385542167e-06| +|rubygems|jekyll-theme-midnight|3.7274096385542167e-06| +|rubygems|jekyll-theme-merlot|3.7274096385542167e-06| +|rubygems|jekyll-theme-leap-day|3.7274096385542167e-06| +|rubygems|jekyll-theme-hacker|3.7274096385542167e-06| +|rubygems|jekyll-theme-dinky|3.7274096385542167e-06| +|rubygems|jekyll-theme-cayman|3.7274096385542167e-06| +|rubygems|jekyll-theme-architect|3.7274096385542167e-06| +|rubygems|jekyll-swiss|3.7274096385542167e-06| +|rubygems|jekyll-sitemap|3.7274096385542167e-06| +|rubygems|jekyll-seo-tag|3.7274096385542167e-06| +|rubygems|jekyll-relative-links|3.7274096385542167e-06| +|rubygems|jekyll-redirect-from|3.7274096385542167e-06| +|rubygems|jekyll-readme-index|3.7274096385542167e-06| +|rubygems|jekyll-paginate|3.7274096385542167e-06| +|rubygems|jekyll-optional-front-matter|3.7274096385542167e-06| +|rubygems|jekyll-mentions|3.7274096385542167e-06| +|rubygems|jekyll-include-cache|3.7274096385542167e-06| +|rubygems|jekyll-github-metadata|3.7274096385542167e-06| +|rubygems|jekyll-gist|3.7274096385542167e-06| +|rubygems|jekyll-feed|3.7274096385542167e-06| +|rubygems|jekyll-default-layout|3.7274096385542167e-06| +|rubygems|jekyll-coffeescript|3.7274096385542167e-06| +|rubygems|jekyll-avatar|3.7274096385542167e-06| +|rubygems|github-pages-health-check|3.7274096385542167e-06| +|rubygems|rubocop-github|3.7274096385542167e-06| +|npm|sinon-chai|3.714683341173921e-06| +|npm|repeat-string|3.6901355421686743e-06| +|npm|tap-out|3.6901355421686743e-06| +|npm|figures|3.6901355421686743e-06| +|npm|pretty-ms|3.6901355421686743e-06| +|npm|tapes|3.6901355421686743e-06| +|cran|plotlyGeoAssets|3.6646322130627773e-06| +|cran|listviewer|3.6646322130627773e-06| +|rubygems|rqrcode_core|3.6513400540939265e-06| +|rubygems|chunky_png|3.6513400540939265e-06| +|rubygems|standardrb|3.6513400540939265e-06| +|rubygems|chronic|3.6513400540939265e-06| +|rubygems|fast_stack|3.6513400540939265e-06| +|rubygems|guard|3.6513400540939265e-06| +|rubygems|guard-minitest|3.6513400540939265e-06| +|npm|[file-saver](https://github.com/eligrey/FileSaver.js#readme)|3.6483838938238857e-06| +|pypi|[pytest-sugar](https://pypi.org/project/pytest-sugar)|3.627510718177653e-06| +|cran|FME|3.614826653552987e-06| +|pypi|[synthia](https://github.com/dmey/synthia)|3.6144578313253287e-06| +|pypi|[BisPy](https://github.com/fAndreuzzi/BisPy)|3.6144578313253287e-06| +|pypi|[symfem](https://github.com/mscroggs/symfem)|3.6144578313253287e-06| +|pypi|[sphinxcontrib-doxylink](http://sphinxcontrib-doxylink.readthedocs.io/en/stable/)|3.6144578313253287e-06| +|pypi|[howfairis](https://github.com/fair-software/howfairis)|3.6144578313253287e-06| +|pypi|[cpplint](https://github.com/cpplint/cpplint)|3.6144578313253287e-06| +|pypi|[importlib_metadata](https://github.com/python/importlib_metadata)|3.6144578313253287e-06| +|pypi|[bigslice](https://github.com/satriaphd/bigslice)|3.6144578313253287e-06| +|pypi|[contextily](https://github.com/darribas/contextily)|3.6144578313253287e-06| +|pypi|[PSSMGen](https://github.com/DeepRank/PSSMGen)|3.6144578313253287e-06| +|pypi|[pyone](http://opennebula.io)|3.6144578313253287e-06| +|pypi|[sit2standpy](https://github.com/PfizerRD/sit2standpy)|3.6144578313253287e-06| +|pypi|[circuitgraph](https://github.com/circuitgraph/circuitgraph)|3.6144578313253287e-06| +|pypi|[google-cloud-monitoring](https://github.com/googleapis/python-monitoring)|3.6144578313253287e-06| +|cran|[rlist](https://renkun.me/rlist)|3.6144578313253287e-06| |cran|[CholWishart](https://github.com/gzt/CholWishart -https://gzt.github.io/CholWishart/)|3.691275167785263e-06| -|cran|[rlist](https://renkun.me/rlist)|3.691275167785263e-06| -|npm|[apollo-server-express](https://github.com/apollographql/apollo-server#readme)|3.6912751677852355e-06| -|npm|[graphql](https://github.com/graphql/graphql-js)|3.6912751677852355e-06| -|npm|[Matlab](https://github.com/abdennour/masfufa#readme)|3.6912751677852355e-06| -|npm|Gmsh|3.6912751677852355e-06| -|npm|[MTEX](https://github.com/diversemix/mtex#readme)|3.6912751677852355e-06| -|pypi|[easybuild-framework](https://easybuild.io)|3.6912751677852355e-06| -|pypi|[easybuild-easyblocks](https://easybuild.io)|3.6912751677852355e-06| -|pypi|[easybuild-easyconfigs](https://easybuild.io)|3.6912751677852355e-06| -|pypi|[openmdao](http://openmdao.org)|3.6912751677852355e-06| -|cran|[tabulizerjars](https://github.com/ropensci/tabulizerjars)|3.6912751677852355e-06| -|cran|[susieR](https://github.com/stephenslab/susieR)|3.6591771228479696e-06| -|npm|babel-plugin-transform-object-rest-spread|3.6586369188873275e-06| -|npm|karma-sourcemap-loader|3.6586369188873275e-06| -|npm|karma-mocha|3.6586369188873275e-06| -|npm|karma-chrome-launcher|3.6586369188873275e-06| -|npm|karma-chai|3.6586369188873275e-06| -|pypi|[trio-websocket~=0.9](https://pypi.org/project/trio-websocket~=0.9)|3.6543624161073823e-06| -|pypi|[trio~=0.17](https://pypi.org/project/trio~=0.17)|3.6543624161073823e-06| -|pypi|[urllib3[secure,](https://pypi.org/project/urllib3[secure,)|3.6543624161073823e-06| -|pypi|[pytest-isort](https://github.com/stephrdev/pytest-isort)|3.6408661912751684e-06| -|cran|rvg|3.6062787001059692e-06| -|cran|officer|3.6062787001059692e-06| -|cran|phosphoricons|3.6062787001059692e-06| -|cran|datamods|3.6062787001059692e-06| -|cran|[NMF](http://renozao.github.io/NMF)|3.6020355483442814e-06| -|pypi|[ipyleaflet](https://github.com/jupyter-widgets/ipyleaflet)|3.598993288590607e-06| -|pypi|[mlflow-dbstore](https://pypi.org/project/mlflow-dbstore)|3.582708251085669e-06| -|pypi|[mlserver-mlflow](https://pypi.org/project/mlserver-mlflow)|3.582708251085669e-06| -|pypi|[mlserver](https://pypi.org/project/mlserver)|3.582708251085669e-06| -|pypi|[pysftp](https://pypi.org/project/pysftp)|3.582708251085669e-06| -|pypi|[azureml-core](https://pypi.org/project/azureml-core)|3.582708251085669e-06| -|pypi|[aliyunstoreplugin](https://pypi.org/project/aliyunstoreplugin)|3.582708251085669e-06| -|cran|[fastcluster](http://danifold.net/fastcluster.html)|3.5727658071352962e-06| -|npm|[xml2js](https://github.com/Leonidas-from-XIV/node-xml2js)|3.5654362416107487e-06| -|cran|aws.ec2metadata|3.559443911792905e-06| -|cran|loo|3.5364797575232733e-06| -|cran|ISLR|3.5364797575232733e-06| -|cran|ICSOutlier|3.5364797575232733e-06| -|cran|ICS|3.5364797575232733e-06| -|cran|CompQuadForm|3.5364797575232733e-06| -|cran|bigutilsr|3.5364797575232733e-06| -|cran|[umap](https://github.com/tkonopka/umap)|3.5317593480345244e-06| -|pypi|[google-api-python-client](https://github.com/googleapis/google-api-python-client/)|3.4902479755490448e-06| -|npm|karma-cli|3.484528265358802e-06| -|npm|cli-color|3.4786719153329887e-06| -|pypi|[PySide2](https://www.pyside.org)|3.4771812080537256e-06| -|pypi|[Keras](https://github.com/keras-team/keras)|3.4675615212528107e-06| -|npm|babel-jest|3.4409495845317993e-06| -|cran|philentropy|3.4328859060402697e-06| -|pypi|[tempora](https://pypi.org/project/tempora)|3.431822059699069e-06| -|npm|[babel-polyfill](https://babeljs.io/)|3.4249440068938576e-06| -|npm|pkgfiles|3.404685480845387e-06| -|npm|puppeteer|3.404685480845387e-06| -|npm|obake|3.404685480845387e-06| -|npm|is-node-modern|3.404685480845387e-06| -|npm|in-publish|3.404685480845387e-06| -|npm|formidable|3.404685480845387e-06| -|npm|far|3.404685480845387e-06| -|npm|fake|3.404685480845387e-06| -|npm|asynckit|3.404685480845387e-06| -|cran|tidyquant|3.404685480845387e-06| -|cran|tibbletime|3.404685480845387e-06| -|cran|sweep|3.404685480845387e-06| -|cran|timetk|3.404685480845387e-06| -|pypi|[pydotplus](https://pypi.org/project/pydotplus)|3.3941446589232653e-06| -|pypi|[fasteners](https://pypi.org/project/fasteners)|3.3941446589232653e-06| -|pypi|[xcffib](https://pypi.org/project/xcffib)|3.3917051174496643e-06| -|cran|data.tree|3.389991245987742e-06| -|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|3.3799744897959182e-06| -|cran|syslognet|3.3732576148683533e-06| -|cran|botor|3.3732576148683533e-06| -|cran|telegram|3.3732576148683533e-06| -|cran|RPushbullet|3.3732576148683533e-06| -|cran|slackr|3.3732576148683533e-06| -|rubygems|coffee-script|3.342063587179838e-06| -|cran|[EMbC]()|3.3287392138063362e-06| -|cran|[geodist](https://github.com/hypertidy/geodist)|3.322147651006774e-06| -|npm|[material-ui](http://material-ui.com/)|3.3221476510067272e-06| -|cran|languageR|3.322147651006712e-06| -|cran|arm|3.322147651006712e-06| -|cran|hypergeo|3.322147651006712e-06| -|pypi|[percy](https://pypi.org/project/percy)|3.3030674319396356e-06| -|pypi|[diskcache](https://pypi.org/project/diskcache)|3.3030674319396356e-06| -|pypi|[fire](https://pypi.org/project/fire)|3.3030674319396356e-06| -|pypi|[pytest-sugar](https://pypi.org/project/pytest-sugar)|3.3030674319396356e-06| -|pypi|[preconditions](https://pypi.org/project/preconditions)|3.3030674319396356e-06| -|pypi|[mimesis](https://pypi.org/project/mimesis)|3.3030674319396356e-06| -|pypi|[flask-talisman](https://pypi.org/project/flask-talisman)|3.3030674319396356e-06| -|pypi|[dash-dangerously-set-inner-html](https://pypi.org/project/dash-dangerously-set-inner-html)|3.3030674319396356e-06| -|pypi|[dash-flow-example](https://pypi.org/project/dash-flow-example)|3.3030674319396356e-06| -|pypi|[flask-compress](https://pypi.org/project/flask-compress)|3.3030674319396356e-06| -|pypi|[falcon](https://pypi.org/project/falcon)|3.262823585810163e-06| -|pypi|[pyramid](https://pypi.org/project/pyramid)|3.262823585810163e-06| -|pypi|[bottle](https://pypi.org/project/bottle)|3.262823585810163e-06| -|pypi|[webtest-aiohttp](https://pypi.org/project/webtest-aiohttp)|3.262823585810163e-06| -|pypi|[webtest](https://pypi.org/project/webtest)|3.262823585810163e-06| -|cran|concaveman|3.262823585810163e-06| -|cran|tweenr|3.262823585810163e-06| -|pypi|[cachecontrol](https://github.com/ionrock/cachecontrol)|3.2441629643633607e-06| -|pypi|[google-cloud-firestore](https://github.com/googleapis/python-firestore)|3.2441629643633607e-06| -|cran|[ctmm](https://github.com/ctmm-initiative/ctmm)|3.2298657718120816e-06| -|pypi|[croniter](http://github.com/kiorky/croniter)|3.221476510067114e-06| -|pypi|[pyvista](https://github.com/pyvista/pyvista)|3.2214765100671122e-06| -|rubygems|ruby-vips|3.1962353493650574e-06| -|rubygems|mini_magick|3.1962353493650574e-06| -|rubygems|minitest-hooks|3.1962353493650574e-06| -|rubygems|minispec-metadata|3.1962353493650574e-06| -|rubygems|dhash-vips|3.1962353493650574e-06| -|rubygems|codeclimate-test-reporter|3.1962353493650574e-06| -|rubygems|ZenTest|3.1962353493650574e-06| -|npm|[crossfilter2](https://crossfilter.github.io/crossfilter/)|3.181927133269424e-06| -|cran|snpStats|3.1777064487890283e-06| -|pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|3.132310642377756e-06| -|pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|3.132310642377756e-06| -|pypi|[types-PyYAML](https://pypi.org/project/types-PyYAML)|3.132310642377756e-06| -|cran|skewt|3.132310642377756e-06| -|cran|catdata|3.132310642377756e-06| -|cran|MPV|3.132310642377756e-06| -|cran|fit.models|3.132310642377756e-06| -|cran|robust|3.132310642377756e-06| -|cran|DEoptimR|3.132310642377756e-06| -|pypi|[testtools](https://pypi.org/project/testtools)|3.1009875359539783e-06| -|pypi|[testscenarios](https://pypi.org/project/testscenarios)|3.1009875359539783e-06| -|pypi|[python-subunit](https://pypi.org/project/python-subunit)|3.1009875359539783e-06| -|pypi|[fixtures](https://pypi.org/project/fixtures)|3.1009875359539783e-06| -|pypi|[ddt](https://pypi.org/project/ddt)|3.1009875359539783e-06| -|pypi|[obspy](https://www.obspy.org)|3.0760626398210474e-06| -|pypi|[scriptcwl](https://github.com/nlesc/scriptcwl)|3.0760626398210474e-06| -|cran|[hdf5r](https://hhoeflin.github.io/hdf5r/)|3.0760626398210474e-06| -|cran|IRanges|3.045302013422819e-06| -|cran|qdapDictionaries|3.045302013422819e-06| -|npm|tar|3.0148489932885906e-06| -|npm|closurecompiler-externs|3.0148489932885906e-06| -|npm|jsdoc|3.0148489932885906e-06| -|pypi|[pymeeus](https://pypi.org/project/pymeeus)|3.0148489932885906e-06| -|pypi|[zest.releaser](https://pypi.org/project/zest.releaser)|3.0148489932885906e-06| -|pypi|[pytz-deprecation-shim](https://pypi.org/project/pytz-deprecation-shim)|3.0148489932885906e-06| -|pypi|[sphinxbootstrap4theme](https://pypi.org/project/sphinxbootstrap4theme)|3.0148489932885906e-06| -|pypi|[texttable](https://pypi.org/project/texttable)|3.0148489932885906e-06| -|pypi|[zict](https://pypi.org/project/zict)|3.011837156132458e-06| -|cran|swagger|3.011837156132458e-06| -|cran|nlshrink|3.0118371561324575e-06| -|cran|NetworkComparisonTest|3.0118371561324575e-06| -|cran|NetworkToolbox|3.0118371561324575e-06| -|cran|mathjaxr|3.0118371561324575e-06| -|cran|glassoFast|3.0118371561324575e-06| -|cran|leafem|3.0106963087248374e-06| +https://gzt.github.io/CholWishart/)|3.6144578313253287e-06| +|npm|[node-minify](https://github.com/srod/node-minify)|3.6144578313253287e-06| +|pypi|[tesliper](https://github.com/mishioo/tesliper)|3.6144578313253016e-06| +|pypi|[pyplif-hippos](https://github.com/radifar/PyPLIF-HIPPOS)|3.6144578313253016e-06| +|pypi|[bitarray](https://github.com/ilanschnell/bitarray)|3.6144578313253016e-06| +|pypi|[clingo](https://github.com/potassco/clingo)|3.6144578313253016e-06| +|pypi|[electiondata](https://github.com/kavigupta/electiondata)|3.6144578313253016e-06| +|pypi|[libceed](https://libceed.readthedocs.io)|3.6144578313253016e-06| +|pypi|[singularity-compose](http://github.com/singularityhub/singularity-compose)|3.6144578313253016e-06| +|cran|[tabulizerjars](https://github.com/ropensci/tabulizerjars)|3.6144578313253016e-06| +|npm|[Matlab](https://github.com/abdennour/masfufa#readme)|3.6144578313253016e-06| +|npm|Gmsh|3.6144578313253016e-06| +|npm|[MTEX](https://github.com/diversemix/mtex#readme)|3.6144578313253016e-06| +|npm|[apollo-server-express](https://github.com/apollographql/apollo-server#readme)|3.6144578313253016e-06| +|npm|[graphql](https://github.com/graphql/graphql-js)|3.6144578313253016e-06| +|pypi|[asciitree](http://github.com/mbr/asciitree)|3.605421686746988e-06| +|cran|[susieR](https://github.com/stephenslab/susieR)|3.583027763226818e-06| +|npm|karma-sourcemap-loader|3.5824988011886865e-06| +|npm|karma-mocha|3.5824988011886865e-06| +|npm|karma-chrome-launcher|3.5824988011886865e-06| +|npm|karma-chai|3.5824988011886865e-06| +|npm|babel-plugin-transform-object-rest-spread|3.5824988011886865e-06| +|pypi|[pytest-isort](https://pypi.org/project/pytest-isort)|3.5650978915662657e-06| +|cran|rvg|3.5312301838934686e-06| +|cran|officer|3.5312301838934686e-06| +|cran|phosphoricons|3.5312301838934686e-06| +|cran|datamods|3.5312301838934686e-06| +|cran|[NMF](http://renozao.github.io/NMF)|3.527075334304258e-06| +|pypi|[pyevtk](https://github.com/pyscience-projects/pyevtk)|3.5081502480510283e-06| +|cran|[fastcluster](http://danifold.net/fastcluster.html)|3.4984147114774974e-06| +|npm|[xml2js](https://github.com/Leonidas-from-XIV/node-xml2js)|3.491237677984676e-06| +|cran|aws.ec2metadata|3.4853700516351117e-06| +|pypi|[rdkit-pypi](https://github.com/kuelumbus/rdkit-pypi)|3.4716829897552838e-06| +|cran|loo|3.462883793237466e-06| +|cran|ISLR|3.462883793237466e-06| +|cran|ICSOutlier|3.462883793237466e-06| +|cran|ICS|3.462883793237466e-06| +|cran|CompQuadForm|3.462883793237466e-06| +|cran|bigutilsr|3.462883793237466e-06| +|cran|[umap](https://github.com/tkonopka/umap)|3.4582616179001804e-06| +|pypi|[pytest-remotedata](https://github.com/astropy/pytest-remotedata)|3.4236082260074794e-06| +|npm|karma-cli|3.4120134383688595e-06| +|pypi|[PySide2](https://www.pyside.org)|3.404819277108467e-06| +|pypi|[twiggy](https://github.com/wearpants/twiggy/)|3.3956880152187723e-06| +|pypi|[langcodes](https://github.com/rspeer/langcodes)|3.362426449985992e-06| +|pypi|[pathy](https://github.com/justindujardin/pathy)|3.362426449985992e-06| +|pypi|[spacy-loggers](https://github.com/explosion/spacy-loggers)|3.362426449985992e-06| +|cran|[philentropy](https://github.com/HajkD/philentropy)|3.3614457831325313e-06| +|npm|[babel-polyfill](https://babeljs.io/)|3.3536691589957375e-06| +|cran|tidyquant|3.33383222330315e-06| +|cran|tibbletime|3.33383222330315e-06| +|cran|sweep|3.33383222330315e-06| +|cran|timetk|3.33383222330315e-06| +|npm|pkgfiles|3.33383222330315e-06| +|npm|puppeteer|3.33383222330315e-06| +|npm|obake|3.33383222330315e-06| +|npm|is-node-modern|3.33383222330315e-06| +|npm|in-publish|3.33383222330315e-06| +|npm|formidable|3.33383222330315e-06| +|npm|far|3.33383222330315e-06| +|npm|fake|3.33383222330315e-06| +|npm|asynckit|3.33383222330315e-06| +|pypi|[pydotplus](https://pypi.org/project/pydotplus)|3.3235107613114997e-06| +|pypi|[xcffib](https://pypi.org/project/xcffib)|3.321121987951807e-06| +|cran|[data.tree](http://github.com/gluc/data.tree)|3.3194437830372856e-06| +|pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|3.303058387395737e-06| +|pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|3.303058387395737e-06| +|pypi|[types-PyYAML](https://pypi.org/project/types-PyYAML)|3.303058387395737e-06| +|cran|syslognet|3.303058387395737e-06| +|cran|botor|3.303058387395737e-06| +|cran|telegram|3.303058387395737e-06| +|cran|RPushbullet|3.303058387395737e-06| +|cran|slackr|3.303058387395737e-06| +|cran|[EMbC]()|3.2594664371772887e-06| +|cran|[geodist](https://github.com/hypertidy/geodist)|3.2530120481928327e-06| +|cran|languageR|3.2530120481927717e-06| +|cran|arm|3.2530120481927717e-06| +|cran|hypergeo|3.2530120481927717e-06| +|pypi|[uvloop](https://pypi.org/project/uvloop)|3.244075201906527e-06| +|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|3.244075201906527e-06| +|pypi|[flat-table](https://github.com/metinsenturk/flat_table)|3.2213735578920475e-06| +|pypi|[tikzplotlib](https://pypi.org/project/tikzplotlib)|3.2213735578920475e-06| +|cran|concaveman|3.194922547332186e-06| +|cran|tweenr|3.194922547332186e-06| +|pypi|[cachecontrol](https://github.com/ionrock/cachecontrol)|3.176650263023926e-06| +|pypi|[google-cloud-firestore](https://github.com/googleapis/python-firestore)|3.176650263023926e-06| +|cran|[ctmm](https://github.com/ctmm-initiative/ctmm)|3.16265060240964e-06| +|npm|babel-plugin-istanbul|3.1524130736632e-06| +|rubygems|ruby-vips|3.1297200463662227e-06| +|rubygems|mini_magick|3.1297200463662227e-06| +|rubygems|minitest-hooks|3.1297200463662227e-06| +|rubygems|minispec-metadata|3.1297200463662227e-06| +|rubygems|dhash-vips|3.1297200463662227e-06| +|rubygems|codeclimate-test-reporter|3.1297200463662227e-06| +|rubygems|ZenTest|3.1297200463662227e-06| +|npm|[crossfilter2](https://crossfilter.github.io/crossfilter/)|3.115709591613215e-06| +|cran|snpStats|3.111576741749607e-06| +|cran|skewt|3.067125645438898e-06| +|cran|catdata|3.067125645438898e-06| +|cran|MPV|3.067125645438898e-06| +|cran|fit.models|3.067125645438898e-06| +|cran|robust|3.067125645438898e-06| +|cran|DEoptimR|3.067125645438898e-06| +|pypi|[sphinx-toggleprompt](https://pypi.org/project/sphinx-toggleprompt)|3.0496987951807227e-06| +|pypi|[pvfactors](https://pypi.org/project/pvfactors)|3.0496987951807227e-06| +|pypi|[pytest-responsemock](https://pypi.org/project/pytest-responsemock)|3.0496987951807227e-06| +|pypi|[iso3166](https://pypi.org/project/iso3166)|3.0496987951807227e-06| +|pypi|[importlib_resources](http://importlib-resources.readthedocs.io/)|3.012048192771102e-06| +|pypi|[scriptcwl](https://github.com/nlesc/scriptcwl)|3.012048192771102e-06| +|cran|[hdf5r](https://hhoeflin.github.io/hdf5r/)|3.012048192771102e-06| +|pypi|[mne](https://mne.tools/dev/)|2.9912754466140435e-06| +|cran|IRanges|2.9819277108433735e-06| +|cran|qdapDictionaries|2.9819277108433735e-06| +|npm|phantomjs-prebuilt|2.981927710843373e-06| +|pypi|[sphinxbootstrap4theme](https://pypi.org/project/sphinxbootstrap4theme)|2.9521084337349396e-06| +|pypi|[texttable](https://pypi.org/project/texttable)|2.9521084337349396e-06| +|pypi|[pymeeus](https://pypi.org/project/pymeeus)|2.9521084337349396e-06| +|npm|tar|2.9521084337349396e-06| +|npm|closurecompiler-externs|2.9521084337349396e-06| +|npm|jsdoc|2.9521084337349396e-06| +|cran|swagger|2.9491592744604792e-06| +|cran|nlshrink|2.949159274460479e-06| +|cran|NetworkComparisonTest|2.949159274460479e-06| +|cran|NetworkToolbox|2.949159274460479e-06| +|cran|mathjaxr|2.949159274460479e-06| +|cran|glassoFast|2.949159274460479e-06| +|pypi|[phonemizer](https://pypi.org/project/phonemizer)|2.9480421686747194e-06| +|cran|[leafem](https://github.com/r-spatial/leafem)|2.948042168674704e-06| +|pypi|[croniter](https://pypi.org/project/croniter)|2.9209337349397606e-06| |cran|[ghql](https://github.com/ropensci/ghql (devel) -https://docs.ropensci.org/ghql (docs))|2.974315952503873e-06| -|pypi|[dask-cudf](https://pypi.org/project/dask-cudf)|2.9710263545588475e-06| -|pypi|[cudf](https://pypi.org/project/cudf)|2.9710263545588475e-06| -|pypi|[spatialpandas](https://pypi.org/project/spatialpandas)|2.9710263545588475e-06| -|pypi|[snappy](https://pypi.org/project/snappy)|2.9710263545588475e-06| -|pypi|[rioxarray](https://pypi.org/project/rioxarray)|2.9710263545588475e-06| -|pypi|[pytest-benchmark](https://pypi.org/project/pytest-benchmark)|2.9710263545588475e-06| -|pypi|[datashape](https://pypi.org/project/datashape)|2.9710263545588475e-06| -|pypi|[pywin32-ctypes](https://pypi.org/project/pywin32-ctypes)|2.9234899328859058e-06| -|pypi|[jeepney](https://pypi.org/project/jeepney)|2.9234899328859058e-06| -|pypi|[SecretStorage](https://pypi.org/project/SecretStorage)|2.9234899328859058e-06| -|cran|tablerDash|2.9002876318312554e-06| -|cran|argonDash|2.9002876318312554e-06| -|cran|argonR|2.9002876318312554e-06| -|cran|shinydashboardPlus|2.9002876318312554e-06| -|cran|geonames|2.8673298178331743e-06| -|cran|isdparser|2.8673298178331743e-06| -|cran|Exact|2.8647505106507127e-06| -|pypi|[sphinx-argparse-cli](https://pypi.org/project/sphinx-argparse-cli)|2.8598851138037106e-06| -|npm|seed-random|2.8549706375838923e-06| -|npm|freeport|2.8549706375838923e-06| -|npm|ws|2.8549706375838923e-06| -|npm|node-uuid|2.8549706375838923e-06| -|npm|event-emitter|2.8549706375838923e-06| -|cran|[xslt](https://github.com/ropensci/xslt)|2.8523489932886027e-06| -|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|2.8523489932886023e-06| -|rubygems|netrc|2.8264209312080533e-06| -|cran|starsdata|2.813594251531952e-06| -|cran|ncdfgeom|2.813594251531952e-06| -|cran|cubelyr|2.813594251531952e-06| -|cran|clue|2.813594251531952e-06| -|cran|effects|2.811048012390294e-06| -|cran|alr4|2.811048012390294e-06| -|cran|carData|2.811048012390294e-06| -|cran|vtreat|2.811048012390294e-06| -|cran|kknn|2.811048012390294e-06| -|cran|smotefamily|2.811048012390294e-06| -|cran|bestNormalize|2.811048012390294e-06| -|cran|mlr3learners|2.811048012390294e-06| -|cran|mlr3filters|2.811048012390294e-06| -|cran|bbotk|2.811048012390294e-06| -|cran|[Momocs](https://github.com/MomX/Momocs/)|2.768456375838963e-06| -|cran|[iptools](https://github.com/hrbrmstr/iptools)|2.7684563758389473e-06| -|npm|[csv-parser](https://github.com/mafintosh/csv-parser)|2.7684563758389316e-06| -|npm|[svd-js](https://github.com/danilosalvati/svd-js#readme)|2.7684563758389316e-06| -|npm|[hasha](https://github.com/sindresorhus/hasha#readme)|2.7684563758389316e-06| -|pypi|[mip](https://github.com/coin-or/python-mip)|2.7684563758389316e-06| -|pypi|[pytray](https://github.com/muhrin/pytray.git)|2.7684563758389316e-06| -|pypi|[neo](https://neuralensemble.org/neo)|2.7684563758389316e-06| -|pypi|[genshi](https://github.com/edgewall/genshi)|2.7684563758389316e-06| -|pypi|[cairosvg](https://courtbouillon.org/cairosvg)|2.7684563758389316e-06| -|pypi|[pystream-protobuf](https://github.com/cartoonist/pystream-protobuf)|2.7684563758389316e-06| -|pypi|[multipledispatch](http://github.com/mrocklin/multipledispatch/)|2.7684563758389316e-06| -|pypi|[alive-progress](https://github.com/rsalmei/alive-progress)|2.7684563758389316e-06| -|pypi|[cspy](https://github.com/torressa/cspy)|2.7684563758389316e-06| -|cran|[metR](https://github.com/eliocamp/metR)|2.7684563758389316e-06| -|cran|leaflet.minicharts|2.7684563758389316e-06| -|cran|[decoder](https://www.bitbucket.com/cancercentrum/decoder)|2.7684563758389316e-06| -|npm|[font-awesome-webpack](https://github.com/gowravshekar/font-awesome-webpack)|2.7684563758389265e-06| -|pypi|[pycoeman](https://github.com/NLeSC/pycoeman)|2.7684563758389265e-06| -|pypi|[pscript](https://pypi.org/project/pscript)|2.7684563758389257e-06| -|pypi|[mpl-sample-data](https://pypi.org/project/mpl-sample-data)|2.7684563758389257e-06| -|pypi|[deepdiff](https://pypi.org/project/deepdiff)|2.7684563758389257e-06| -|cran|gcookbook|2.747640914366453e-06| -|pypi|[mygene](https://github.com/biothings/mygene.py)|2.7407718120805536e-06| -|pypi|[minknow-api](https://github.com/nanoporetech/minknow_api)|2.7407718120805536e-06| -|cran|GA|2.740771812080537e-06| -|cran|gclus|2.740771812080537e-06| -|cran|qap|2.740771812080537e-06| -|cran|biomaRt|2.7407718120805366e-06| -|rubygems|rack-test|2.7306888115713916e-06| -|pypi|[google-resumable-media](https://github.com/googleapis/google-resumable-media-python)|2.7294640325172507e-06| -|npm|serialize-javascript|2.7187477528763177e-06| -|npm|jest-worker|2.7187477528763177e-06| -|pypi|[transformers](https://pypi.org/project/transformers)|2.715166010215546e-06| -|pypi|[biothings-client](https://github.com/biothings/biothings_client.py)|2.7133640939597224e-06| -|rubygems|[ruby-progressbar](https://github.com/jfelchner/ruby-progressbar)|2.711957266127928e-06| -|pypi|[resample](https://pypi.org/project/resample)|2.7069351230425057e-06| -|pypi|[boost-histogram](https://pypi.org/project/boost-histogram)|2.7069351230425057e-06| -|pypi|[numba-stats](https://pypi.org/project/numba-stats)|2.7069351230425057e-06| -|pypi|[hashin](https://pypi.org/project/hashin)|2.6936853438649443e-06| -|pypi|[jaraco.windows](https://pypi.org/project/jaraco.windows)|2.693165353806185e-06| -|pypi|[singledispatch](https://pypi.org/project/singledispatch)|2.693165353806185e-06| -|cran|[xgboost](https://github.com/dmlc/xgboost)|2.68935762224355e-06| -|rubygems|rubocop-rake|2.670778983546222e-06| -|rubygems|rubocop-minitest|2.670778983546222e-06| -|pypi|[bson](https://pypi.org/project/bson)|2.6593681484899327e-06| -|pypi|[url-normalize](https://pypi.org/project/url-normalize)|2.6593681484899327e-06| -|pypi|[cattrs](https://pypi.org/project/cattrs)|2.6593681484899327e-06| -|cran|dblog|2.6216078202509483e-06| -|pypi|[cyvcf2](https://github.com/brentp/cyvcf2/)|2.6146532438478813e-06| -|npm|babel-plugin-unassert|2.6102588686481302e-06| -|npm|babel-preset-power-assert|2.6102588686481302e-06| -|npm|eslint-config-mysticatea|2.6102588686481302e-06| -|npm|if-node-version|2.6102588686481302e-06| -|npm|opener|2.6102588686481302e-06| -|npm|power-assert|2.6102588686481302e-06| -|npm|shelljs|2.6102588686481302e-06| -|npm|chokidar|2.6102588686481302e-06| -|npm|duplexer|2.6102588686481302e-06| -|npm|glob2base|2.6102588686481302e-06| -|npm|shell-quote|2.6102588686481302e-06| -|npm|subarg|2.6102588686481302e-06| -|npm|testing-library|2.555498193082086e-06| -|npm|escape-html|2.5554981930820856e-06| -|pypi|[furl](https://pypi.org/project/furl)|2.537751677852349e-06| -|pypi|[pyodbc](https://pypi.org/project/pyodbc)|2.537751677852349e-06| -|pypi|[pymysql](https://pypi.org/project/pymysql)|2.537751677852349e-06| -|pypi|[pg8000](https://pypi.org/project/pg8000)|2.537751677852349e-06| -|pypi|[psycopg2cffi](https://pypi.org/project/psycopg2cffi)|2.537751677852349e-06| -|pypi|[flexmock](https://pypi.org/project/flexmock)|2.537751677852349e-06| -|pypi|[phonenumbers](https://pypi.org/project/phonenumbers)|2.537751677852349e-06| -|pypi|[pendulum](https://pypi.org/project/pendulum)|2.537751677852349e-06| -|pypi|[intervals](https://pypi.org/project/intervals)|2.537751677852349e-06| -|pypi|[colour](https://pypi.org/project/colour)|2.537751677852349e-06| -|cran|bcpa|2.537751677852349e-06| -|cran|amt|2.537751677852349e-06| -|cran|circular|2.537751677852349e-06| -|rubygems|[unicode-display_width](https://github.com/janlelis/unicode-display_width)|2.523646439700041e-06| -|pypi|[pytest-django](https://pypi.org/project/pytest-django)|2.5123741610738253e-06| -|pypi|[twisted](https://pypi.org/project/twisted)|2.5123741610738253e-06| -|pypi|[sybil](https://pypi.org/project/sybil)|2.5123741610738253e-06| -|pypi|[zope.component](https://pypi.org/project/zope.component)|2.5123741610738253e-06| -|pypi|[setuptools-git](https://pypi.org/project/setuptools-git)|2.5123741610738253e-06| -|cran|Rfast|2.5087156174650224e-06| -|cran|genlasso|2.5087156174650224e-06| -|cran|L0Learn|2.5087156174650224e-06| -|cran|mixsqp|2.5087156174650224e-06| -|pypi|[connexion](https://github.com/zalando/connexion)|2.491610738255026e-06| -|rubygems|rubocop-standard|2.4859608272839334e-06| -|rubygems|minitest-focus|2.4859608272839334e-06| -|rubygems|rubocop-ast|2.4859608272839334e-06| -|rubygems|rainbow|2.4859608272839334e-06| -|rubygems|parser|2.4859608272839334e-06| -|rubygems|parallel|2.4859608272839334e-06| -|rubygems|rspec_junit_formatter|2.4859608272839334e-06| -|pypi|[tvtk](https://pypi.org/project/tvtk)|2.4803364815208476e-06| -|pypi|[mayavi](https://pypi.org/project/mayavi)|2.4803364815208476e-06| -|pypi|[grpcio-gcp](https://grpc.io)|2.4642681930509228e-06| -|pypi|[js2py](https://github.com/PiotrDabkowski/Js2Py)|2.4362416107382697e-06| -|pypi|[Click](https://palletsprojects.com/p/click/)|2.4278922978587614e-06| -|pypi|[pytest-trio](https://pypi.org/project/pytest-trio)|2.4226465124640458e-06| -|cran|RDCOMClient|2.3832798365917713e-06| -|cran|base|2.3832798365917713e-06| -|cran|NetSwan|2.3832798365917713e-06| -|cran|netrankr|2.3832798365917713e-06| -|cran|fortunes|2.3747315436241617e-06| -|npm|methods|2.3729626078619365e-06| -|cran|mail|2.3729626078619365e-06| -|cran|bibtex|2.3729626078619365e-06| -|cran|synchronicity|2.3729626078619365e-06| -|cran|doMPI|2.3729626078619365e-06| -|cran|rngtools|2.3729626078619365e-06| -|cran|pkgmaker|2.3729626078619365e-06| -|cran|waveslim|2.3627343207590836e-06| -|npm|random-buffer|2.342540010325245e-06| -|npm|nock|2.342540010325245e-06| -|npm|is-zip|2.342540010325245e-06| -|npm|pify|2.342540010325245e-06| -|npm|p-event|2.342540010325245e-06| -|npm|make-dir|2.342540010325245e-06| -|npm|got|2.342540010325245e-06| -|npm|get-stream|2.342540010325245e-06| -|npm|filenamify|2.342540010325245e-06| -|npm|ext-name|2.342540010325245e-06| -|npm|decompress|2.342540010325245e-06| -|npm|content-disposition|2.342540010325245e-06| -|npm|archive-type|2.342540010325245e-06| -|npm|[webpack-dev-server](https://github.com/webpack/webpack-dev-server#readme)|2.342540010325245e-06| -|npm|[wallaby-webpack](https://github.com/jeffling/wallaby-webpack#readme)|2.342540010325245e-06| -|npm|package-yaml|2.342540010325245e-06| -|npm|json-loader|2.342540010325245e-06| -|npm|isparta-loader|2.342540010325245e-06| -|npm|isparta|2.342540010325245e-06| -|npm|gh-pages|2.342540010325245e-06| -|npm|gatsby|2.342540010325245e-06| -|npm|expect|2.342540010325245e-06| -|npm|enzyme-adapter-react-16|2.342540010325245e-06| -|npm|enzyme|2.342540010325245e-06| -|npm|conventional-changelog|2.342540010325245e-06| -|npm|chai-enzyme|2.342540010325245e-06| -|npm|babel-plugin-__coverage__|2.342540010325245e-06| -|npm|add-stream|2.342540010325245e-06| -|npm|karma-webpack|2.342540010325245e-06| -|npm|karma-sinon|2.342540010325245e-06| -|npm|karma-mocha-reporter|2.342540010325245e-06| -|npm|lodash.isequal|2.342540010325245e-06| -|npm|classnames|2.342540010325245e-06| -|npm|clamp|2.342540010325245e-06| -|pypi|[anndata](http://anndata.readthedocs.io)|2.3378076062639915e-06| -|rubygems|[i18n](https://github.com/ruby-i18n/i18n)|2.327233640939598e-06| -|pypi|[sphinxcontrib_bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|2.3070469798657815e-06| -|cran|[shinycssloaders](https://github.com/daattali/shinycssloaders)|2.2730483927940767e-06| -|cran|numbers|2.243906746732606e-06| -|rubygems|letter_opener|2.2373647445555405e-06| -|rubygems|rspec-rails|2.2373647445555405e-06| -|pypi|[cffconvert](https://github.com/citation-file-format/cff-converter-python)|2.2147651006711825e-06| -|cran|Rd2md|2.2147651006711825e-06| -|npm|[remark-sectionize](https://github.com/jake-low/remark-sectionize#readme)|2.2147651006711516e-06| -|pypi|[charset_normalizer](https://github.com/ousret/charset_normalizer)|2.2147651006711516e-06| -|pypi|[dateparser](https://github.com/scrapinghub/dateparser)|2.2147651006711516e-06| -|pypi|[ogb](https://github.com/snap-stanford/ogb)|2.2147651006711516e-06| -|pypi|[thefuzz](https://github.com/seatgeek/thefuzz)|2.2147651006711516e-06| -|pypi|[pywavelets](https://github.com/PyWavelets/pywt)|2.2147651006711516e-06| -|pypi|[tripoli](https://github.com/DDMAL/tripoli)|2.2147651006711516e-06| -|pypi|[sphinx_argparse](https://pypi.org/project/sphinx_argparse)|2.2147651006711516e-06| -|cran|[digitTests](https://koenderks.github.io/digitTests/)|2.2147651006711516e-06| -|cran|[jfa](https://koenderks.github.io/jfa/)|2.2147651006711516e-06| -|cran|[leafletR](https://github.com/chgrl/leafletR)|2.2147651006711516e-06| -|cran|[phonTools](http://www.santiagobarreda.com/rscripts.html)|2.2147651006711516e-06| -|cran|[hash](http://www.johnhughes.org)|2.2147651006711516e-06| -|pypi|[progressbar](http://code.google.com/p/python-progressbar)|2.214765100671141e-06| -|pypi|[pykeops](http://www.kernel-operations.io/)|2.214765100671141e-06| -|pypi|[ipywidgets-bokeh](https://pypi.org/project/ipywidgets-bokeh)|2.214765100671141e-06| -|pypi|[ipympl](https://pypi.org/project/ipympl)|2.214765100671141e-06| -|pypi|[hvplot](https://pypi.org/project/hvplot)|2.214765100671141e-06| -|pypi|[pymatreader](https://gitlab.com/obob/pymatreader)|2.2147651006711207e-06| -|cran|[uchardet](https://artemklevtsov.gitlab.io/uchardet)|2.2147651006711207e-06| -|cran|textshaping|2.205987068259944e-06| -|cran|[fda](http://www.functionaldata.org)|2.197187599872182e-06| -|cran|R.cache|2.1926174496644297e-06| -|pypi|[itk-segmentation](https://pypi.org/project/itk-segmentation)|2.1534635666347076e-06| -|pypi|[itk-registration](https://pypi.org/project/itk-registration)|2.1534635666347076e-06| -|pypi|[itk-filtering](https://pypi.org/project/itk-filtering)|2.1534635666347076e-06| -|pypi|[itk-io](https://pypi.org/project/itk-io)|2.1534635666347076e-06| -|pypi|[itk-numerics](https://pypi.org/project/itk-numerics)|2.1534635666347076e-06| -|pypi|[itk-core](https://pypi.org/project/itk-core)|2.1534635666347076e-06| -|cran|tidymodels|2.149624950651402e-06| -|cran|DiagrammeRsvg|2.1082860092927208e-06| -|cran|rapportools|2.0882070949185038e-06| -|pypi|[ezdxf](https://pypi.org/project/ezdxf)|2.080282210307808e-06| -|pypi|[glooey](https://pypi.org/project/glooey)|2.080282210307808e-06| -|pypi|[colorlog](https://pypi.org/project/colorlog)|2.080282210307808e-06| -|pypi|[pycollada](https://pypi.org/project/pycollada)|2.080282210307808e-06| -|pypi|[triangle](https://pypi.org/project/triangle)|2.080282210307808e-06| -|pypi|[python-fcl](https://pypi.org/project/python-fcl)|2.080282210307808e-06| -|pypi|[svg.path](https://pypi.org/project/svg.path)|2.080282210307808e-06| -|pypi|[mapbox-earcut](https://pypi.org/project/mapbox-earcut)|2.080282210307808e-06| -|pypi|[xatlas](https://pypi.org/project/xatlas)|2.080282210307808e-06| -|pypi|[humanize](https://github.com/jmoiron/humanize)|2.0763422818791985e-06| -|npm|fortawesome|2.076342281879195e-06| -|cran|suncalc|2.0763422818791947e-06| -|cran|fftw|2.0763422818791947e-06| -|cran|manipulate|2.0763422818791947e-06| -|cran|Gmedian|2.0763422818791947e-06| -|cran|fasttime|2.0763422818791947e-06| -|npm|should-util|2.0763422818791942e-06| -|npm|mocha-better-spec-reporter|2.0763422818791942e-06| -|npm|should-equal|2.0763422818791942e-06| -|npm|eslint-config-shouldjs|2.0763422818791942e-06| -|npm|should-type|2.0763422818791942e-06| -|npm|should-format|2.0763422818791942e-06| -|npm|should-type-adaptors|2.0763422818791942e-06| -|npm|[compression](https://github.com/expressjs/compression#readme)|2.0433844678811322e-06| -|cran|[ratelimitr](https://github.com/tarakc02/ratelimitr)|2.030201342281907e-06| -|pypi|[localconfig](https://github.com/maxzheng/localconfig)|2.013422818791946e-06| -|cran|[kSamples](NA)|1.9994407158836738e-06| -|npm|[react-scripts](https://github.com/facebook/create-react-app#readme)|1.9592152813629325e-06| -|cran|graphlayouts|1.9576941514860978e-06| -|npm|which|1.9522687882587243e-06| -|npm|webpack-manifest-plugin|1.933525087887504e-06| -|npm|script-loader|1.933525087887504e-06| -|npm|recursive-readdir|1.933525087887504e-06| -|npm|react-dev-utils|1.933525087887504e-06| -|npm|output-file-sync|1.933525087887504e-06| -|npm|npm-release|1.933525087887504e-06| -|npm|jest-canvas-mock|1.933525087887504e-06| -|npm|imports-loader|1.933525087887504e-06| -|npm|fs-promise|1.933525087887504e-06| -|npm|flow-typed|1.933525087887504e-06| -|npm|flow-bin|1.933525087887504e-06| -|npm|find-cache-dir|1.933525087887504e-06| -|npm|filesize|1.933525087887504e-06| -|npm|file-loader|1.933525087887504e-06| -|npm|fake-xml-http-request|1.933525087887504e-06| -|npm|eslint-plugin-flowtype|1.933525087887504e-06| -|npm|eslint-loader|1.933525087887504e-06| -|npm|eslint-config-react-app|1.933525087887504e-06| -|npm|dmd-clear|1.933525087887504e-06| -|npm|dagre|1.933525087887504e-06| -|npm|colors|1.933525087887504e-06| -|npm|child-process-promise|1.933525087887504e-06| -|npm|case-sensitive-paths-webpack-plugin|1.933525087887504e-06| -|npm|babel-plugin-flow-react-proptypes|1.933525087887504e-06| -|npm|[form-data](https://github.com/form-data/form-data#readme)|1.9329757909875443e-06| -|npm|gulp-marked|1.916623644811564e-06| -|npm|gulp-mocha-phantomjs|1.916623644811564e-06| -|npm|humanize|1.916623644811564e-06| -|npm|acorn|1.916623644811564e-06| -|npm|chai-jquery|1.916623644811564e-06| -|npm|gulp-iife|1.916623644811564e-06| -|npm|gulp-cache|1.916623644811564e-06| -|npm|gulp-closure-compiler|1.916623644811564e-06| -|npm|drool|1.916623644811564e-06| -|npm|gulp-file|1.916623644811564e-06| -|npm|gulp-imagemin|1.916623644811564e-06| -|npm|escodegen|1.916623644811564e-06| -|npm|prismjs|1.916623644811564e-06| -|npm|gulp-zip|1.916623644811564e-06| -|npm|gulp-csso|1.916623644811564e-06| -|npm|gulp-shell|1.916623644811564e-06| -|npm|merge-stream|1.916623644811564e-06| -|npm|swig|1.916623644811564e-06| -|npm|vinyl-paths|1.916623644811564e-06| -|npm|gulp-connect|1.916623644811564e-06| -|npm|gulp-css-inline-images|1.916623644811564e-06| -|npm|gulp-front-matter|1.916623644811564e-06| -|npm|gulp-jscs|1.916623644811564e-06| -|npm|gulp-open|1.916623644811564e-06| -|npm|gulp-flatten|1.916623644811564e-06| -|npm|gulp-load-plugins|1.916623644811564e-06| -|npm|gulp-sass|1.916623644811564e-06| -|npm|gulp-header|1.916623644811564e-06| -|npm|gulp-size|1.916623644811564e-06| -|npm|gulp-replace|1.916623644811564e-06| -|npm|gulp-sourcemaps|1.916623644811564e-06| -|npm|gulp-subtree|1.916623644811564e-06| -|npm|gulp-tap|1.916623644811564e-06| -|pypi|[sagemaker](https://pypi.org/project/sagemaker)|1.9033137583892616e-06| -|pypi|[ftfy](https://pypi.org/project/ftfy)|1.9033137583892616e-06| -|pypi|[fairscale](https://pypi.org/project/fairscale)|1.9033137583892616e-06| -|pypi|[onnxruntime-tools](https://pypi.org/project/onnxruntime-tools)|1.9033137583892616e-06| -|pypi|[onnxruntime](https://pypi.org/project/onnxruntime)|1.9033137583892616e-06| -|pypi|[unidic](https://pypi.org/project/unidic)|1.9033137583892616e-06| -|pypi|[unidic-lite](https://pypi.org/project/unidic-lite)|1.9033137583892616e-06| -|pypi|[ipadic](https://pypi.org/project/ipadic)|1.9033137583892616e-06| -|pypi|[fugashi](https://pypi.org/project/fugashi)|1.9033137583892616e-06| -|pypi|[faiss-cpu](https://pypi.org/project/faiss-cpu)|1.9033137583892616e-06| -|pypi|[rouge-score](https://pypi.org/project/rouge-score)|1.9033137583892616e-06| -|pypi|[sacrebleu](https://pypi.org/project/sacrebleu)|1.9033137583892616e-06| -|pypi|[datasets](https://pypi.org/project/datasets)|1.9033137583892616e-06| -|pypi|[timeout-decorator](https://pypi.org/project/timeout-decorator)|1.9033137583892616e-06| -|pypi|[deepspeed](https://pypi.org/project/deepspeed)|1.9033137583892616e-06| -|pypi|[codecarbon](https://pypi.org/project/codecarbon)|1.9033137583892616e-06| -|pypi|[timm](https://pypi.org/project/timm)|1.9033137583892616e-06| -|pypi|[sigopt](https://pypi.org/project/sigopt)|1.9033137583892616e-06| -|pypi|[optuna](https://pypi.org/project/optuna)|1.9033137583892616e-06| -|pypi|[phonemizer](https://pypi.org/project/phonemizer)|1.9033137583892616e-06| -|pypi|[pyctcdecode](https://pypi.org/project/pyctcdecode)|1.9033137583892616e-06| -|pypi|[torchaudio](https://pypi.org/project/torchaudio)|1.9033137583892616e-06| -|pypi|[sentencepiece](https://pypi.org/project/sentencepiece)|1.9033137583892616e-06| -|pypi|[optax](https://pypi.org/project/optax)|1.9033137583892616e-06| -|pypi|[flax](https://pypi.org/project/flax)|1.9033137583892616e-06| -|pypi|[tf2onnx](https://pypi.org/project/tf2onnx)|1.9033137583892616e-06| -|pypi|[onnxconverter-common](https://pypi.org/project/onnxconverter-common)|1.9033137583892616e-06| -|pypi|[tokenizers](https://pypi.org/project/tokenizers)|1.9033137583892616e-06| -|pypi|[sacremoses](https://pypi.org/project/sacremoses)|1.9033137583892616e-06| -|pypi|[huggingface-hub](https://pypi.org/project/huggingface-hub)|1.9033137583892616e-06| -|cran|leafsync|1.9033137583892616e-06| -|cran|leaflet.extras2|1.9033137583892616e-06| -|cran|satellite|1.9033137583892616e-06| -|cran|leafpop|1.9033137583892616e-06| -|npm|[closurecompiler](https://github.com/dcodeIO/ClosureCompiler.js#readme)|1.9002684563758384e-06| -|npm|[metascript](https://github.com/dcodeIO/MetaScript)|1.9002684563758384e-06| -|npm|[testjs](https://github.com/dcodeIO/test.js)|1.9002684563758384e-06| -|rubygems|safe_yaml|1.884280620805369e-06| -|rubygems|pathutil|1.884280620805369e-06| -|rubygems|jekyll-watch|1.884280620805369e-06| -|rubygems|em-websocket|1.884280620805369e-06| -|rubygems|colorator|1.884280620805369e-06| -|cran|[posterior](https://mc-stan.org/posterior/)|1.8585441404233383e-06| -|cran|[tarchetypes](https://docs.ropensci.org/tarchetypes/)|1.8585441404233383e-06| -|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|1.8456375838926315e-06| -|pypi|[rpy2](https://rpy2.github.io)|1.8456375838926315e-06| -|pypi|[injector](https://github.com/alecthomas/injector)|1.8456375838926315e-06| -|pypi|[fhirclient](https://github.com/smart-on-fhir/client-py/)|1.8456375838926315e-06| -|pypi|[clize](https://github.com/epsy/clize)|1.8456375838926315e-06| -|pypi|[Requests](https://requests.readthedocs.io)|1.8456375838926315e-06| -|pypi|[importlib_resources](http://importlib-resources.readthedocs.io/)|1.8456375838926315e-06| -|pypi|[twython](https://github.com/ryanmcgrath/twython/tree/master)|1.8456375838926315e-06| -|pypi|[python-telegram-bot](https://python-telegram-bot.org/)|1.8456375838926315e-06| -|pypi|[ninja](http://ninja-build.org/)|1.8456375838926315e-06| -|cran|[nplr](https://github.com/fredcommo/nplr)|1.8456375838926315e-06| -|cran|[osqp](https://osqp.org)|1.8456375838926315e-06| -|cran|[rstackdeque](https://github.com/oneilsh/rstackdeque)|1.8456375838926315e-06| -|cran|[biblio](https://github.com/kamapu/biblio)|1.8456375838926315e-06| -|cran|[spiderbar](https://gitlab.com/hrbrmstr/spiderbar)|1.8456375838926315e-06| -|cran|[wdman](https://github.com/ropensci/wdman)|1.8456375838926315e-06| -|cran|[ipaddress](https://davidchall.github.io/ipaddress/)|1.8456375838926315e-06| -|npm|[html-entities](https://github.com/mdevils/html-entities#readme)|1.8456375838926177e-06| -|npm|[long](https://github.com/dcodeIO/long.js#readme)|1.8456375838926177e-06| -|npm|[mnemonist](https://github.com/yomguithereal/mnemonist#readme)|1.8456375838926177e-06| -|npm|[obliterator](https://github.com/yomguithereal/obliterator#readme)|1.8456375838926177e-06| -|npm|[pandemonium](https://github.com/yomguithereal/pandemonium#readme)|1.8456375838926177e-06| -|pypi|[SoundFile](https://github.com/bastibe/PySoundFile)|1.8456375838926177e-06| -|pypi|[SoundCard](https://github.com/bastibe/SoundCard)|1.8456375838926177e-06| -|npm|its-set|1.8456375838926171e-06| -|npm|babel-plugin-transform-es2015-modules-umd|1.8456375838926171e-06| -|npm|babel-preset-stage-2|1.8456375838926171e-06| -|npm|gulp-eslint|1.8456375838926171e-06| -|npm|eslint-plugin-babel|1.8456375838926171e-06| -|pypi|[geopy](https://github.com/geopy/geopy)|1.8410234899328914e-06| -|npm|pretty-hrtime|1.808909395973154e-06| -|npm|utf8|1.808909395973154e-06| -|pypi|[SALib](http://salib.github.io/SALib/)|1.744966442953011e-06| -|cran|[fasterize](https://github.com/ecohealthalliance/fasterize)|1.7225950782997683e-06| -|pypi|[mercantile](https://github.com/mapbox/mercantile)|1.6872203579418413e-06| -|npm|[babel-plugin-transform-undefined-to-void](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-simplify-comparison-operators](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-remove-debugger](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-remove-console](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-regexp-constructors](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-minify-booleans](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-merge-sibling-variables](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-member-expression-literals](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-inline-consecutive-adds](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-minify-simplify](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|babel-plugin-minify-replace|1.6853193130184669e-06| -|npm|babel-plugin-minify-numeric-literals|1.6853193130184669e-06| -|npm|babel-plugin-minify-mangle-names|1.6853193130184669e-06| -|npm|babel-plugin-minify-infinity|1.6853193130184669e-06| -|npm|babel-plugin-minify-guarded-expressions|1.6853193130184669e-06| -|npm|babel-plugin-minify-flip-comparisons|1.6853193130184669e-06| -|npm|babel-plugin-minify-dead-code-elimination|1.6853193130184669e-06| -|npm|babel-plugin-minify-constant-folding|1.6853193130184669e-06| -|npm|babel-plugin-minify-builtins|1.6853193130184669e-06| -|npm|babel-helper-evaluate-path|1.6684661198882822e-06| -|npm|esutils|1.6684661198882822e-06| -|npm|babel-helper-is-void-0|1.6684661198882822e-06| -|cran|whitening|1.6610738255033556e-06| -|cran|randtoolbox|1.6610738255033556e-06| -|cran|mc2d|1.6610738255033556e-06| -|cran|ggExtra|1.6610738255033556e-06| -|cran|DiceDesign|1.6610738255033556e-06| -|cran|condMVNorm|1.6610738255033556e-06| -|npm|proxyquire|1.660414669223392e-06| -|cran|showtextdb|1.6544903011949583e-06| -|cran|sysfonts|1.6544903011949583e-06| -|pypi|[restructuredtext-lint](https://pypi.org/project/restructuredtext-lint)|1.6444630872483222e-06| -|pypi|[pytest-datadir](https://pypi.org/project/pytest-datadir)|1.6444630872483222e-06| -|cran|rematch2|1.644463087248322e-06| -|cran|diffobj|1.644463087248322e-06| -|rubygems|puma|1.640588341853304e-06| -|rubygems|uglifier|1.6405883418533001e-06| -|pypi|[flake8-use-fstring](https://pypi.org/project/flake8-use-fstring)|1.6150976749760306e-06| -|pypi|[flake8-type-annotations](https://pypi.org/project/flake8-type-annotations)|1.6150976749760306e-06| -|pypi|[flake8-noqa](https://pypi.org/project/flake8-noqa)|1.6150976749760306e-06| -|pypi|[flake8-literal](https://pypi.org/project/flake8-literal)|1.6150976749760306e-06| -|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|1.6150976749760306e-06| -|pypi|[flake8-datetimez](https://pypi.org/project/flake8-datetimez)|1.6150976749760306e-06| -|pypi|[flake8-continuation](https://pypi.org/project/flake8-continuation)|1.6150976749760306e-06| -|pypi|[flake8-commas](https://pypi.org/project/flake8-commas)|1.6150976749760306e-06| -|pypi|[flake8-annotations](https://pypi.org/project/flake8-annotations)|1.6150976749760306e-06| -|cran|[UpSetR](http://github.com/hms-dbmi/UpSetR)|1.605704697986584e-06| -|pypi|[pytest-freezegun](https://pypi.org/project/pytest-freezegun)|1.591415890885473e-06| -|pypi|[coverage-enable-subprocess](https://pypi.org/project/coverage-enable-subprocess)|1.591415890885473e-06| -|pypi|[sphinx-argparse](https://pypi.org/project/sphinx-argparse)|1.591415890885473e-06| -|pypi|[proselint](https://pypi.org/project/proselint)|1.591415890885473e-06| -|npm|[d3-cloud](https://www.jasondavies.com/wordcloud/)|1.5819750719079744e-06| -|npm|[path](http://nodejs.org/docs/latest/api/path.html)|1.5819750719079744e-06| -|npm|[react-grid-gallery](https://benhowell.github.io/react-grid-gallery/)|1.5819750719079744e-06| -|npm|[deepmerge](https://github.com/TehShrike/deepmerge)|1.5819750719079744e-06| -|npm|[js-logger](http://github.com/jonnyreeves/js-logger)|1.5819750719079744e-06| -|pypi|[pvlib](https://github.com/pvlib/pvlib-python)|1.5819750719079744e-06| -|pypi|[numpy-financial](https://numpy.org/numpy-financial/)|1.5819750719079744e-06| -|pypi|[qimage2ndarray](https://github.com/hmeine/qimage2ndarray)|1.5819750719079744e-06| -|pypi|[eagerpy](https://github.com/jonasrauber/eagerpy)|1.5819750719079744e-06| -|pypi|[PyQT5](https://www.riverbankcomputing.com/software/pyqt/)|1.5819750719079744e-06| -|pypi|[emn_sdk](https://www.energy.gov/eere/energy-materials-network/energy-materials-network)|1.5819750719079744e-06| -|pypi|[pyvcf](https://github.com/jamescasbon/PyVCF)|1.5819750719079744e-06| -|pypi|[plotnine](https://github.com/has2k1/plotnine)|1.5819750719079744e-06| -|pypi|[bed-reader](https://pypi.org/project/bed-reader)|1.5819750719079744e-06| -|cran|[itsadug](NA)|1.5819750719079744e-06| -|cran|[tidytree](https://yulab-smu.top/treedata-book/)|1.5819750719079744e-06| -|cran|sde|1.5819750719079744e-06| -|cran|[CORElearn](http://lkm.fri.uni-lj.si/rmarko/software/)|1.5819750719079744e-06| -|cran|RISmed|1.5819750719079744e-06| -|cran|[httr2](https://httr2.r-lib.org)|1.5819750719079744e-06| -|cran|[phylocomr](https://github.com/ropensci/phylocomr)|1.5819750719079744e-06| -|cran|[rsdmx](https://github.com/opensdmx/rsdmx)|1.5819750719079744e-06| -|npm|[atob](https://git.coolaj86.com/coolaj86/atob.js.git)|1.5819750719079579e-06| -|npm|[node-html-parser](https://github.com/taoqf/node-fast-html-parser)|1.5819750719079579e-06| -|npm|[serve-favicon](https://github.com/expressjs/serve-favicon#readme)|1.5794398554465743e-06| -|pypi|[astropy-sphinx-theme](https://pypi.org/project/astropy-sphinx-theme)|1.5504937679769892e-06| -|rubygems|[redis](https://github.com/redis/redis-rb)|1.542093347406077e-06| -|rubygems|[stackprof](http://github.com/tmm1/stackprof)|1.542093347406077e-06| -|go|golang.org/x/sys|1.5365892830079418e-06| -|npm|assume|1.4908593922855666e-06| -|npm|spawn-sync|1.4908593922855666e-06| -|pypi|[spacy-alignments](https://pypi.org/project/spacy-alignments)|1.4847409542871307e-06| -|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|1.4766607314066566e-06| -|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|1.4766607314066566e-06| -|cran|[contentid](https://github.com/cboettig/contentid)|1.4765100671140803e-06| -|npm|[morgan](https://github.com/expressjs/morgan#readme)|1.4536009292720761e-06| -|rubygems|xpath|1.4145919030093092e-06| -|rubygems|mini_mime|1.4145919030093092e-06| -|rubygems|matrix|1.4145919030093092e-06| -|rubygems|webdrivers|1.4145919030093092e-06| -|rubygems|sinatra|1.4145919030093092e-06| -|rubygems|selenium-webdriver|1.4145919030093092e-06| -|rubygems|selenium_statistics|1.4145919030093092e-06| -|rubygems|sauce_whisk|1.4145919030093092e-06| -|rubygems|rspec-instafail|1.4145919030093092e-06| -|rubygems|launchy|1.4145919030093092e-06| -|rubygems|irb|1.4145919030093092e-06| -|rubygems|erubi|1.4145919030093092e-06| -|rubygems|cucumber|1.4145919030093092e-06| -|cran|thematic|1.4132104656040266e-06| -|pypi|[pytest-filter-subpackage](https://pypi.org/project/pytest-filter-subpackage)|1.4095397890699902e-06| -|pypi|[pytest-arraydiff](https://pypi.org/project/pytest-arraydiff)|1.4095397890699902e-06| -|pypi|[pytest-openfiles](https://pypi.org/project/pytest-openfiles)|1.4095397890699902e-06| -|npm|[deep-filter](https://github.com/IndigoUnited/js-deep-filter#readme)|1.3842281879194658e-06| -|npm|[kebabcase-keys](https://github.com/mattii/kebabcase-keys#readme)|1.3842281879194658e-06| -|pypi|[pypiwin32](https://pypi.org/project/pypiwin32)|1.3842281879194658e-06| -|pypi|[mypy_extensions](http://www.mypy-lang.org/)|1.3842281879194658e-06| -|pypi|[loguru](https://github.com/Delgan/loguru)|1.3842281879194658e-06| -|pypi|[questionary](https://github.com/tmbo/questionary)|1.3842281879194658e-06| -|pypi|[iPython](https://ipython.org)|1.3842281879194658e-06| -|pypi|[OWSLib](https://geopython.github.io/OWSLib)|1.3842281879194658e-06| -|pypi|[cloudnetpy_qc](https://github.com/actris-cloudnet/cloudnetpy-qc)|1.3842281879194658e-06| -|pypi|[python-box](https://github.com/cdgriffith/Box)|1.3842281879194658e-06| -|pypi|[pywdpa](https://ecology.ghislainv.fr/pywdpa)|1.3842281879194658e-06| -|pypi|[dna-features-viewer](https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer)|1.3842281879194658e-06| -|pypi|[parasail](https://github.com/jeffdaily/parasail-python)|1.3842281879194658e-06| -|cran|[fishtree](https://fishtreeoflife.org/)|1.3842281879194658e-06| -|cran|Rlabkey|1.3842281879194658e-06| -|cran|[LiblineaR]()|1.3842281879194658e-06| -|pypi|[NanoPlot](https://github.com/wdecoster/NanoPlot)|1.3842281879194633e-06| -|pypi|[NanoStat](https://github.com/wdecoster/nanostat)|1.3842281879194633e-06| -|pypi|[NanoFilt](https://github.com/wdecoster/nanofilt)|1.3842281879194633e-06| -|pypi|[NanoLyse](https://github.com/wdecoster/nanolyse)|1.3842281879194633e-06| -|pypi|[nanoget](https://github.com/wdecoster/nanoget)|1.3842281879194633e-06| -|pypi|[nanomath](https://github.com/wdecoster/nanomath)|1.3842281879194633e-06| -|pypi|[NanoComp](https://github.com/wdecoster/NanoComp)|1.3842281879194633e-06| -|pypi|[nanoQC](https://github.com/wdecoster/nanoQC)|1.3842281879194633e-06| -|npm|sinon-chai|1.3160969085620824e-06| -|npm|karma-tap-reporter|1.3160969085620824e-06| -|npm|karma-spec-reporter|1.3160969085620824e-06| -|npm|karma-rollup-preprocessor|1.3160969085620824e-06| -|npm|karma-html-reporter|1.3160969085620824e-06| -|npm|karma-firefox-launcher|1.3160969085620824e-06| -|npm|karma-chai-sinon|1.3160969085620824e-06| -|npm|eslint-plugin-mocha|1.3160969085620824e-06| -|npm|eslint-config-nfl|1.3160969085620824e-06| -|npm|cz-conventional-changelog|1.3160969085620824e-06| -|npm|conventional-changelog-cli|1.3160969085620824e-06| -|npm|babel-plugin-transform-class-properties|1.3160969085620824e-06| -|npm|babel-plugin-istanbul|1.3160969085620824e-06| -|npm|react-side-effect|1.3160969085620824e-06| -|npm|react-fast-compare|1.3160969085620824e-06| -|rubygems|webpacker|1.3160969085620824e-06| -|rubygems|rubocop-discourse|1.3160969085620824e-06| -|rubygems|mini_racer|1.3160969085620824e-06| -|rubygems|listen|1.3160969085620824e-06| -|rubygems|dalli|1.3160969085620824e-06| -|go|github.com/gorilla/mux|1.2790584573485068e-06| -|go|golang.org/x/crypto|1.2790584573485068e-06| -|cran|pheatmap|1.2749470151889833e-06| +https://docs.ropensci.org/ghql (docs))|2.912418906394811e-06| +|pypi|[dask-cudf](https://pypi.org/project/dask-cudf)|2.909197766676462e-06| +|pypi|[cudf](https://pypi.org/project/cudf)|2.909197766676462e-06| +|pypi|[spatialpandas](https://pypi.org/project/spatialpandas)|2.909197766676462e-06| +|pypi|[snappy](https://pypi.org/project/snappy)|2.909197766676462e-06| +|pypi|[rioxarray](https://pypi.org/project/rioxarray)|2.909197766676462e-06| +|pypi|[datashape](https://pypi.org/project/datashape)|2.909197766676462e-06| +|pypi|[OpenPIV](https://pypi.org/project/OpenPIV)|2.882750514252128e-06| +|pypi|[pyoculus](https://pypi.org/project/pyoculus)|2.8703047484053863e-06| +|pypi|[py-spec](https://pypi.org/project/py-spec)|2.8703047484053863e-06| +|pypi|[pywin32-ctypes](https://pypi.org/project/pywin32-ctypes)|2.862650602409638e-06| +|cran|tablerDash|2.839931153184165e-06| +|cran|argonDash|2.839931153184165e-06| +|cran|argonR|2.839931153184165e-06| +|cran|shinydashboardPlus|2.839931153184165e-06| +|pypi|[horovod](https://pypi.org/project/horovod)|2.8249841471147745e-06| +|pypi|[pytest-regressions](https://github.com/ESSS/pytest-regressions)|2.82342511701786e-06| +|pypi|[pygam](https://github.com/dswah/pyGAM)|2.8141135972461287e-06| +|pypi|[itk-segmentation](https://pypi.org/project/itk-segmentation)|2.8115318416523232e-06| +|pypi|[itk-registration](https://pypi.org/project/itk-registration)|2.8115318416523232e-06| +|pypi|[itk-filtering](https://pypi.org/project/itk-filtering)|2.8115318416523232e-06| +|pypi|[itk-io](https://pypi.org/project/itk-io)|2.8115318416523232e-06| +|pypi|[itk-numerics](https://pypi.org/project/itk-numerics)|2.8115318416523232e-06| +|pypi|[itk-core](https://pypi.org/project/itk-core)|2.8115318416523232e-06| +|cran|[isdparser](https://github.com/ropensci/isdparser)|2.807659208261619e-06| +|cran|geonames|2.807659208261619e-06| +|cran|Exact|2.8051335777894163e-06| +|pypi|[sphinx-argparse-cli](https://pypi.org/project/sphinx-argparse-cli)|2.800369432355441e-06| +|npm|gpx-parse|2.7992020232167257e-06| +|npm|node-geo-distance|2.7992020232167257e-06| +|npm|rx|2.7992020232167257e-06| +|npm|redis|2.7992020232167257e-06| +|npm|seed-random|2.7955572289156623e-06| +|npm|freeport|2.7955572289156623e-06| +|npm|ws|2.7955572289156623e-06| +|npm|node-uuid|2.7955572289156623e-06| +|npm|event-emitter|2.7955572289156623e-06| +|cran|[xslt](https://github.com/ropensci/xslt)|2.7929901423877444e-06| +|pypi|[spacy-transformers](https://spacy.io)|2.7600168114317733e-06| +|pypi|[pythainlp](https://pypi.org/project/pythainlp)|2.7600168114317733e-06| +|pypi|[spacy-ray](https://pypi.org/project/spacy-ray)|2.7600168114317733e-06| +|pypi|[spacy-lookups-data](https://pypi.org/project/spacy-lookups-data)|2.7600168114317733e-06| +|pypi|[natto-py](https://pypi.org/project/natto-py)|2.7600168114317733e-06| +|pypi|[sudachidict-core](https://pypi.org/project/sudachidict-core)|2.7600168114317733e-06| +|pypi|[sudachipy](https://pypi.org/project/sudachipy)|2.7600168114317733e-06| +|pypi|[thinc-apple-ops](https://pypi.org/project/thinc-apple-ops)|2.7600168114317733e-06| +|cran|starsdata|2.7550419067574644e-06| +|cran|ncdfgeom|2.7550419067574644e-06| +|cran|cubelyr|2.7550419067574644e-06| +|cran|clue|2.7550419067574644e-06| +|cran|effects|2.7525486561631138e-06| +|cran|alr4|2.7525486561631138e-06| +|cran|carData|2.7525486561631138e-06| +|cran|vtreat|2.7525486561631138e-06| +|cran|kknn|2.7525486561631138e-06| +|cran|smotefamily|2.7525486561631138e-06| +|cran|bestNormalize|2.7525486561631138e-06| +|cran|mlr3learners|2.7525486561631138e-06| +|cran|mlr3filters|2.7525486561631138e-06| +|cran|bbotk|2.7525486561631138e-06| +|pypi|[selenium](https://pypi.org/project/selenium)|2.752500331804566e-06| +|pypi|[lxml-stubs](https://pypi.org/project/lxml-stubs)|2.7172816265060237e-06| +|pypi|[elementpath](https://pypi.org/project/elementpath)|2.7172816265060237e-06| +|rubygems|coffee-script-source|2.7111199901647403e-06| +|cran|[Momocs](https://github.com/MomX/Momocs/)|2.7108433734940117e-06| +|cran|[iptools](https://github.com/hrbrmstr/iptools)|2.7108433734939964e-06| +|pypi|[cspy](https://github.com/torressa/cspy)|2.710843373493981e-06| +|pypi|[referenceseeker](https://github.com/oschwengers/referenceseeker)|2.710843373493981e-06| +|pypi|[fairdatapoint-client](https://github.com/fair-data/fairdatapoint-client)|2.710843373493981e-06| +|pypi|[genshi](https://github.com/edgewall/genshi)|2.710843373493981e-06| +|pypi|[cairosvg](https://courtbouillon.org/cairosvg)|2.710843373493981e-06| +|pypi|[neo](https://neuralensemble.org/neo)|2.710843373493981e-06| +|pypi|[pyequib](https://equib.github.io/pyEQUIB/)|2.710843373493981e-06| +|cran|[metR](https://github.com/eliocamp/metR)|2.710843373493981e-06| +|cran|leaflet.minicharts|2.710843373493981e-06| +|cran|[decoder](https://www.bitbucket.com/cancercentrum/decoder)|2.710843373493981e-06| +|npm|[csv-parser](https://github.com/mafintosh/csv-parser)|2.710843373493981e-06| +|npm|[hasha](https://github.com/sindresorhus/hasha#readme)|2.710843373493981e-06| +|npm|[svd-js](https://github.com/danilosalvati/svd-js#readme)|2.710843373493981e-06| +|pypi|[easybuild](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-easyblocks](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-easyconfigs](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-framework](https://easybuild.io)|2.710843373493976e-06| +|pypi|[pycoeman](https://github.com/NLeSC/pycoeman)|2.710843373493976e-06| +|npm|[font-awesome-webpack](https://github.com/gowravshekar/font-awesome-webpack)|2.710843373493976e-06| +|npm|[tailwindcss](https://tailwindcss.com)|2.710843373493976e-06| +|pypi|[pscript](https://pypi.org/project/pscript)|2.7108433734939757e-06| +|pypi|[mpl-sample-data](https://pypi.org/project/mpl-sample-data)|2.7108433734939757e-06| +|pypi|[deepdiff](https://pypi.org/project/deepdiff)|2.7108433734939757e-06| +|pypi|[path.py](https://pypi.org/project/path.py)|2.7108433734939757e-06| +|pypi|[alive-progress](https://github.com/rsalmei/alive-progress)|2.705421686746997e-06| +|cran|gcookbook|2.6904610924902616e-06| +|pypi|[mygene](https://github.com/biothings/mygene.py)|2.6837349397590525e-06| +|cran|GA|2.6837349397590364e-06| +|cran|gclus|2.6837349397590364e-06| +|cran|qap|2.6837349397590364e-06| +|cran|biomaRt|2.683734939759036e-06| +|rubygems|rack-test|2.673861771681078e-06| +|npm|serialize-javascript|2.6621692125645435e-06| +|npm|jest-worker|2.6621692125645435e-06| +|pypi|[nox](https://pypi.org/project/nox)|2.6607745146082227e-06| +|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|2.6607745146082227e-06| +|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|2.6607745146082227e-06| +|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|2.6607745146082227e-06| +|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|2.6607745146082227e-06| +|pypi|[biothings-client](https://github.com/biothings/biothings_client.py)|2.656897590361437e-06| +|rubygems|[ruby-progressbar](https://github.com/jfelchner/ruby-progressbar)|2.655520039341038e-06| +|pypi|[hashin](https://pypi.org/project/hashin)|2.6376283651864847e-06| +|pypi|[jsonref](https://pypi.org/project/jsonref)|2.637577336372517e-06| +|pypi|[moviepy](https://pypi.org/project/moviepy)|2.637577336372517e-06| +|pypi|[docker-pycreds](https://pypi.org/project/docker-pycreds)|2.637577336372517e-06| +|pypi|[sentry-sdk](https://pypi.org/project/sentry-sdk)|2.637577336372517e-06| +|pypi|[promise](https://pypi.org/project/promise)|2.637577336372517e-06| +|pypi|[jaraco.windows](https://pypi.org/project/jaraco.windows)|2.6371191963885318e-06| +|pypi|[singledispatch](https://pypi.org/project/singledispatch)|2.6371191963885318e-06| +|cran|[xgboost](https://github.com/dmlc/xgboost)|2.6333907056798834e-06| +|pypi|[testresources](https://pypi.org/project/testresources)|2.6240963855421688e-06| +|pypi|[oslotest](https://pypi.org/project/oslotest)|2.6240963855421688e-06| +|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|2.6240963855421688e-06| +|pypi|[requests-kerberos](https://pypi.org/project/requests-kerberos)|2.6240963855421688e-06| +|pypi|[betamax](https://pypi.org/project/betamax)|2.6240963855421688e-06| +|pypi|[watermark](https://pypi.org/project/watermark)|2.618277990008816e-06| +|npm|eslint-plugin-jest|2.5992590215583884e-06| +|npm|moment-timezone|2.5992590215583884e-06| +|cran|dblog|2.5670508119434256e-06| +|pypi|[gooey](http://pypi.python.org/pypi/Gooey/)|2.5559380378657483e-06| +|npm|babel-plugin-unassert|2.5559380378657483e-06| +|npm|babel-preset-power-assert|2.5559380378657483e-06| +|npm|eslint-config-mysticatea|2.5559380378657483e-06| +|npm|if-node-version|2.5559380378657483e-06| +|npm|opener|2.5559380378657483e-06| +|npm|power-assert|2.5559380378657483e-06| +|npm|shelljs|2.5559380378657483e-06| +|npm|chokidar|2.5559380378657483e-06| +|npm|glob2base|2.5559380378657483e-06| +|npm|shell-quote|2.5559380378657483e-06| +|npm|subarg|2.5559380378657483e-06| +|pypi|[clize](https://github.com/epsy/clize)|2.5301204819277177e-06| +|pypi|[mip](https://github.com/coin-or/python-mip)|2.526506024096395e-06| +|pypi|[tvtk](https://pypi.org/project/tvtk)|2.525868178596739e-06| +|pypi|[IPython](https://ipython.org)|2.512246789355243e-06| +|npm|testing-library|2.5023169601482857e-06| +|npm|escape-html|2.5023169601482853e-06| +|pypi|[resample](http://github.com/resample-project/resample)|2.4849397590361446e-06| +|pypi|[boost-histogram](https://github.com/scikit-hep/boost-histogram)|2.4849397590361446e-06| +|pypi|[numba-stats](https://pypi.org/project/numba-stats)|2.4849397590361446e-06| +|cran|bcpa|2.4849397590361446e-06| +|cran|amt|2.4849397590361446e-06| +|cran|circular|2.4849397590361446e-06| +|pypi|[pytest-django](https://pypi.org/project/pytest-django)|2.460090361445783e-06| +|pypi|[sybil](https://pypi.org/project/sybil)|2.460090361445783e-06| +|pypi|[zope.component](https://pypi.org/project/zope.component)|2.460090361445783e-06| +|pypi|[setuptools-git](https://pypi.org/project/setuptools-git)|2.460090361445783e-06| +|cran|Rfast|2.4565079540128478e-06| +|cran|genlasso|2.4565079540128478e-06| +|cran|L0Learn|2.4565079540128478e-06| +|cran|mixsqp|2.4565079540128478e-06| +|rubygems|rubocop-standard|2.4342267027292844e-06| +|rubygems|minitest-focus|2.4342267027292844e-06| +|rubygems|unicode-display_width|2.4342267027292844e-06| +|rubygems|rubocop-ast|2.4342267027292844e-06| +|rubygems|rainbow|2.4342267027292844e-06| +|rubygems|parser|2.4342267027292844e-06| +|rubygems|parallel|2.4342267027292844e-06| +|rubygems|rspec_junit_formatter|2.4342267027292844e-06| +|npm|sendgrid-rest|2.425975086787829e-06| +|npm|system-sleep|2.425975086787829e-06| +|npm|lodash.chunk|2.425975086787829e-06| +|npm|mailparser|2.425975086787829e-06| +|npm|async.ensureasync|2.425975086787829e-06| +|npm|bottleneck|2.425975086787829e-06| +|npm|mocha-sinon|2.425975086787829e-06| +|npm|async.queue|2.425975086787829e-06| +|rubygems|[rubocop-rails](https://docs.rubocop.org/rubocop-rails/)|2.4120973690681098e-06| +|pypi|[eagerpy](https://github.com/jonasrauber/eagerpy)|2.407228915662662e-06| +|pypi|[EDFlib-Python](https://pypi.org/project/EDFlib-Python)|2.3961919104991393e-06| +|pypi|[eeglabio](https://pypi.org/project/eeglabio)|2.3961919104991393e-06| +|pypi|[nitime](https://pypi.org/project/nitime)|2.3961919104991393e-06| +|pypi|[codespell](https://pypi.org/project/codespell)|2.3961919104991393e-06| +|pypi|[flake8-array-spacing](https://pypi.org/project/flake8-array-spacing)|2.3961919104991393e-06| +|pypi|[pytest-harvest](https://pypi.org/project/pytest-harvest)|2.3961919104991393e-06| +|pypi|[h5io](https://pypi.org/project/h5io)|2.3961919104991393e-06| +|pypi|[pytest-trio](https://pypi.org/project/pytest-trio)|2.3722299913941477e-06| +|pypi|[pymc3-ext](https://github.com/exoplanet-dev/pymc3-ext)|2.3696183334737545e-06| +|cran|RDCOMClient|2.3336825563122054e-06| +|cran|base|2.3336825563122054e-06| +|cran|NetSwan|2.3336825563122054e-06| +|cran|netrankr|2.3336825563122054e-06| +|cran|fortunes|2.325312157721797e-06| +|pypi|[nbstripout](https://pypi.org/project/nbstripout)|2.323580034423408e-06| +|cran|mail|2.323580034423408e-06| +|cran|bibtex|2.323580034423408e-06| +|cran|synchronicity|2.323580034423408e-06| +|cran|doMPI|2.323580034423408e-06| +|cran|rngtools|2.323580034423408e-06| +|cran|pkgmaker|2.323580034423408e-06| +|npm|methods|2.323580034423408e-06| +|pypi|[dcor](https://pypi.org/project/dcor)|2.3135646032405482e-06| +|cran|waveslim|2.3135646032405482e-06| +|pypi|[citeproc-py](https://github.com/brechtm/citeproc-py)|2.312671207970715e-06| +|npm|random-buffer|2.293790546802595e-06| +|npm|nock|2.293790546802595e-06| +|npm|is-zip|2.293790546802595e-06| +|npm|pify|2.293790546802595e-06| +|npm|p-event|2.293790546802595e-06| +|npm|make-dir|2.293790546802595e-06| +|npm|got|2.293790546802595e-06| +|npm|get-stream|2.293790546802595e-06| +|npm|filenamify|2.293790546802595e-06| +|npm|ext-name|2.293790546802595e-06| +|npm|decompress|2.293790546802595e-06| +|npm|content-disposition|2.293790546802595e-06| +|npm|archive-type|2.293790546802595e-06| +|npm|watch|2.293790546802595e-06| +|npm|unminified-webpack-plugin|2.293790546802595e-06| +|npm|jsonpath|2.293790546802595e-06| +|npm|jest-cli|2.293790546802595e-06| +|npm|globify|2.293790546802595e-06| +|npm|codeclimate-test-reporter|2.293790546802595e-06| +|npm|codacy-coverage|2.293790546802595e-06| +|npm|cash-cat|2.293790546802595e-06| +|npm|biased-opener|2.293790546802595e-06| +|npm|[webpack-dev-server](https://github.com/webpack/webpack-dev-server#readme)|2.293790546802595e-06| +|npm|[wallaby-webpack](https://github.com/jeffling/wallaby-webpack#readme)|2.293790546802595e-06| +|npm|package-yaml|2.293790546802595e-06| +|npm|json-loader|2.293790546802595e-06| +|npm|isparta-loader|2.293790546802595e-06| +|npm|isparta|2.293790546802595e-06| +|npm|gh-pages|2.293790546802595e-06| +|npm|gatsby|2.293790546802595e-06| +|npm|expect|2.293790546802595e-06| +|npm|enzyme-adapter-react-16|2.293790546802595e-06| +|npm|enzyme|2.293790546802595e-06| +|npm|conventional-changelog|2.293790546802595e-06| +|npm|chai-enzyme|2.293790546802595e-06| +|npm|babel-plugin-__coverage__|2.293790546802595e-06| +|npm|add-stream|2.293790546802595e-06| +|npm|karma-webpack|2.293790546802595e-06| +|npm|karma-sinon|2.293790546802595e-06| +|npm|karma-mocha-reporter|2.293790546802595e-06| +|npm|lodash.isequal|2.293790546802595e-06| +|npm|classnames|2.293790546802595e-06| +|npm|clamp|2.293790546802595e-06| +|pypi|[anndata](http://anndata.readthedocs.io)|2.2891566265060336e-06| +|pypi|[scikit_learn](http://scikit-learn.org)|2.2590361445783305e-06| +|pypi|[sphinxcontrib_bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|2.259036144578323e-06| +|cran|[shinycssloaders](https://github.com/daattali/shinycssloaders)|2.225745085605591e-06| +|cran|numbers|2.1972098922003832e-06| +|rubygems|letter_opener|2.190804032456356e-06| +|rubygems|rspec-rails|2.190804032456356e-06| +|pypi|[python-slugify](https://github.com/un33k/python-slugify)|2.1905805038335176e-06| +|pypi|[nempy](https://github.com/UNSW-CEEM/nempy)|2.1686746987952216e-06| +|pypi|[cffconvert](https://github.com/citation-file-format/cff-converter-python)|2.1686746987952216e-06| +|cran|Rd2md|2.1686746987952216e-06| +|pypi|[bakta](https://github.com/oschwengers/bakta)|2.168674698795191e-06| +|pypi|[ogb](https://github.com/snap-stanford/ogb)|2.168674698795191e-06| +|pypi|[RagTag](https://github.com/malonge/RagTag)|2.168674698795191e-06| +|pypi|[tripoli](https://github.com/DDMAL/tripoli)|2.168674698795191e-06| +|pypi|[TPOT](https://github.com/EpistasisLab/tpot)|2.168674698795191e-06| +|pypi|[update_checker](https://github.com/bboe/update_checker)|2.168674698795191e-06| +|pypi|[foolbox](https://github.com/bethgelab/foolbox)|2.168674698795191e-06| +|pypi|[sphinxcontrib-programoutput](https://sphinxcontrib-programoutput.readthedocs.org/)|2.168674698795191e-06| +|pypi|[kiwipy](https://github.com/aiidateam/kiwipy.git)|2.168674698795191e-06| +|pypi|[sphinx_argparse](https://pypi.org/project/sphinx_argparse)|2.168674698795191e-06| +|pypi|[charset_normalizer](https://github.com/ousret/charset_normalizer)|2.168674698795191e-06| +|pypi|[dateparser](https://github.com/scrapinghub/dateparser)|2.168674698795191e-06| +|cran|[digitTests](https://koenderks.github.io/digitTests/)|2.168674698795191e-06| +|cran|[jfa](https://koenderks.github.io/jfa/)|2.168674698795191e-06| +|cran|[leafletR](https://github.com/chgrl/leafletR)|2.168674698795191e-06| +|cran|[phonTools](http://www.santiagobarreda.com/rscripts.html)|2.168674698795191e-06| +|cran|[hash](http://www.johnhughes.org)|2.168674698795191e-06| +|npm|[remark-sectionize](https://github.com/jake-low/remark-sectionize#readme)|2.168674698795191e-06| +|pypi|[pyinstrument](https://pypi.org/project/pyinstrument)|2.1686746987951806e-06| +|pypi|[ipywidgets-bokeh](https://pypi.org/project/ipywidgets-bokeh)|2.1686746987951806e-06| +|pypi|[ipympl](https://pypi.org/project/ipympl)|2.1686746987951806e-06| +|pypi|[hvplot](https://pypi.org/project/hvplot)|2.1686746987951806e-06| +|pypi|[boatswain](https://github.com/nlesc-sherlock/boatswain)|2.1686746987951606e-06| +|cran|[uchardet](https://artemklevtsov.gitlab.io/uchardet)|2.1686746987951606e-06| +|cran|textshaping|2.160079341757273e-06| +|pypi|[vcrpy](https://pypi.org/project/vcrpy)|2.159947637633027e-06| +|cran|[fda](http://www.functionaldata.org)|2.1514629948365067e-06| +|cran|R.cache|2.146987951807229e-06| +|cran|tidymodels|2.104890148830617e-06| +|cran|DiagrammeRsvg|2.0644114921223355e-06| +|cran|rapportools|2.0447504302925985e-06| +|cran|suncalc|2.033132530120482e-06| +|cran|fftw|2.033132530120482e-06| +|cran|manipulate|2.033132530120482e-06| +|cran|Gmedian|2.033132530120482e-06| +|cran|fasttime|2.033132530120482e-06| +|npm|should-util|2.0331325301204817e-06| +|npm|mocha-better-spec-reporter|2.0331325301204817e-06| +|npm|should-equal|2.0331325301204817e-06| +|npm|eslint-config-shouldjs|2.0331325301204817e-06| +|npm|should-type|2.0331325301204817e-06| +|npm|should-format|2.0331325301204817e-06| +|npm|should-type-adaptors|2.0331325301204817e-06| +|npm|[compression](https://github.com/expressjs/compression#readme)|2.000860585197954e-06| +|cran|[ratelimitr](https://github.com/tarakc02/ratelimitr)|1.987951807228943e-06| +|cran|[kSamples](NA)|1.9578313253012093e-06| +|pypi|[multipledispatch](http://github.com/mrocklin/multipledispatch/)|1.9324440619621485e-06| +|pypi|[cyvcf2](https://github.com/brentp/cyvcf2/)|1.9277108433734914e-06| +|pypi|[mxnet](https://pypi.org/project/mxnet)|1.92382432957637e-06| +|pypi|[ml-datasets](https://pypi.org/project/ml-datasets)|1.92382432957637e-06| +|npm|[react-scripts](https://github.com/facebook/create-react-app#readme)|1.918443002780352e-06| +|cran|graphlayouts|1.9169535283993112e-06| +|npm|[which](https://github.com/isaacs/node-which#readme)|1.911641069773603e-06| +|pypi|[rpy2](https://rpy2.github.io)|1.9066265060241107e-06| +|npm|webpack-manifest-plugin|1.89328743545611e-06| +|npm|script-loader|1.89328743545611e-06| +|npm|recursive-readdir|1.89328743545611e-06| +|npm|react-dev-utils|1.89328743545611e-06| +|npm|output-file-sync|1.89328743545611e-06| +|npm|npm-release|1.89328743545611e-06| +|npm|jest-canvas-mock|1.89328743545611e-06| +|npm|imports-loader|1.89328743545611e-06| +|npm|fs-promise|1.89328743545611e-06| +|npm|flow-typed|1.89328743545611e-06| +|npm|flow-bin|1.89328743545611e-06| +|npm|find-cache-dir|1.89328743545611e-06| +|npm|filesize|1.89328743545611e-06| +|npm|fake-xml-http-request|1.89328743545611e-06| +|npm|eslint-plugin-flowtype|1.89328743545611e-06| +|npm|eslint-loader|1.89328743545611e-06| +|npm|eslint-config-react-app|1.89328743545611e-06| +|npm|dmd-clear|1.89328743545611e-06| +|npm|dagre|1.89328743545611e-06| +|npm|child-process-promise|1.89328743545611e-06| +|npm|case-sensitive-paths-webpack-plugin|1.89328743545611e-06| +|npm|babel-plugin-flow-react-proptypes|1.89328743545611e-06| +|pypi|[starry](https://pypi.org/project/starry)|1.8767377201112142e-06| +|pypi|[rtds-action](https://pypi.org/project/rtds-action)|1.8767377201112142e-06| +|npm|gulp-marked|1.8767377201112142e-06| +|npm|gulp-mocha-phantomjs|1.8767377201112142e-06| +|npm|humanize|1.8767377201112142e-06| +|npm|chai-jquery|1.8767377201112142e-06| +|npm|gulp-iife|1.8767377201112142e-06| +|npm|gulp-cache|1.8767377201112142e-06| +|npm|gulp-closure-compiler|1.8767377201112142e-06| +|npm|drool|1.8767377201112142e-06| +|npm|gulp-file|1.8767377201112142e-06| +|npm|gulp-imagemin|1.8767377201112142e-06| +|npm|escodegen|1.8767377201112142e-06| +|npm|gulp-zip|1.8767377201112142e-06| +|npm|gulp-csso|1.8767377201112142e-06| +|npm|gulp-shell|1.8767377201112142e-06| +|npm|merge-stream|1.8767377201112142e-06| +|npm|swig|1.8767377201112142e-06| +|npm|vinyl-paths|1.8767377201112142e-06| +|npm|gulp-connect|1.8767377201112142e-06| +|npm|gulp-css-inline-images|1.8767377201112142e-06| +|npm|gulp-front-matter|1.8767377201112142e-06| +|npm|gulp-jscs|1.8767377201112142e-06| +|npm|gulp-open|1.8767377201112142e-06| +|npm|gulp-flatten|1.8767377201112142e-06| +|npm|gulp-load-plugins|1.8767377201112142e-06| +|npm|gulp-sass|1.8767377201112142e-06| +|npm|gulp-header|1.8767377201112142e-06| +|npm|gulp-size|1.8767377201112142e-06| +|npm|gulp-replace|1.8767377201112142e-06| +|npm|gulp-sourcemaps|1.8767377201112142e-06| +|npm|gulp-subtree|1.8767377201112142e-06| +|npm|gulp-tap|1.8767377201112142e-06| +|pypi|[sagemaker](https://pypi.org/project/sagemaker)|1.8637048192771084e-06| +|pypi|[ftfy](https://pypi.org/project/ftfy)|1.8637048192771084e-06| +|pypi|[fairscale](https://pypi.org/project/fairscale)|1.8637048192771084e-06| +|pypi|[onnxruntime-tools](https://pypi.org/project/onnxruntime-tools)|1.8637048192771084e-06| +|pypi|[onnxruntime](https://pypi.org/project/onnxruntime)|1.8637048192771084e-06| +|pypi|[unidic](https://pypi.org/project/unidic)|1.8637048192771084e-06| +|pypi|[unidic-lite](https://pypi.org/project/unidic-lite)|1.8637048192771084e-06| +|pypi|[ipadic](https://pypi.org/project/ipadic)|1.8637048192771084e-06| +|pypi|[fugashi](https://pypi.org/project/fugashi)|1.8637048192771084e-06| +|pypi|[faiss-cpu](https://pypi.org/project/faiss-cpu)|1.8637048192771084e-06| +|pypi|[rouge-score](https://pypi.org/project/rouge-score)|1.8637048192771084e-06| +|pypi|[sacrebleu](https://pypi.org/project/sacrebleu)|1.8637048192771084e-06| +|pypi|[datasets](https://pypi.org/project/datasets)|1.8637048192771084e-06| +|pypi|[deepspeed](https://pypi.org/project/deepspeed)|1.8637048192771084e-06| +|pypi|[codecarbon](https://pypi.org/project/codecarbon)|1.8637048192771084e-06| +|pypi|[timm](https://pypi.org/project/timm)|1.8637048192771084e-06| +|pypi|[sigopt](https://pypi.org/project/sigopt)|1.8637048192771084e-06| +|pypi|[optuna](https://pypi.org/project/optuna)|1.8637048192771084e-06| +|pypi|[pyctcdecode](https://pypi.org/project/pyctcdecode)|1.8637048192771084e-06| +|pypi|[torchaudio](https://pypi.org/project/torchaudio)|1.8637048192771084e-06| +|pypi|[optax](https://pypi.org/project/optax)|1.8637048192771084e-06| +|pypi|[flax](https://pypi.org/project/flax)|1.8637048192771084e-06| +|pypi|[tf2onnx](https://pypi.org/project/tf2onnx)|1.8637048192771084e-06| +|pypi|[onnxconverter-common](https://pypi.org/project/onnxconverter-common)|1.8637048192771084e-06| +|pypi|[tokenizers](https://pypi.org/project/tokenizers)|1.8637048192771084e-06| +|pypi|[sacremoses](https://pypi.org/project/sacremoses)|1.8637048192771084e-06| +|pypi|[huggingface-hub](https://pypi.org/project/huggingface-hub)|1.8637048192771084e-06| +|cran|leafsync|1.8637048192771084e-06| +|cran|leaflet.extras2|1.8637048192771084e-06| +|cran|satellite|1.8637048192771084e-06| +|cran|leafpop|1.8637048192771084e-06| +|npm|[uglifyjs-webpack-plugin](https://github.com/webpack-contrib/uglifyjs-webpack-plugin)|1.8637048192771084e-06| +|npm|node-libs-browser|1.8637048192771084e-06| +|npm|module-alias|1.8637048192771084e-06| +|npm|mocha-phantomjs-istanbul|1.8637048192771084e-06| +|npm|mocha-phantomjs-core|1.8637048192771084e-06| +|npm|get-port|1.8637048192771084e-06| +|npm|eslint-config-airbnb-base|1.8637048192771084e-06| +|npm|connect|1.8637048192771084e-06| +|npm|babel-plugin-module-resolver|1.8637048192771084e-06| +|npm|asap|1.8637048192771084e-06| +|npm|a-sync-waterfall|1.8637048192771084e-06| +|npm|[closurecompiler](https://github.com/dcodeIO/ClosureCompiler.js#readme)|1.8607228915662646e-06| +|npm|[metascript](https://github.com/dcodeIO/MetaScript)|1.8607228915662646e-06| +|npm|[testjs](https://github.com/dcodeIO/test.js)|1.8607228915662646e-06| +|pypi|[cogapp](https://pypi.org/project/cogapp)|1.8450677710843372e-06| +|pypi|[falcon](https://pypi.org/project/falcon)|1.8256700270469633e-06| +|pypi|[pyramid](https://pypi.org/project/pyramid)|1.8256700270469633e-06| +|pypi|[bottle](https://pypi.org/project/bottle)|1.8256700270469633e-06| +|pypi|[webtest-aiohttp](https://pypi.org/project/webtest-aiohttp)|1.8256700270469633e-06| +|pypi|[webtest](https://pypi.org/project/webtest)|1.8256700270469633e-06| +|pypi|[GridDataFormats](https://github.com/MDAnalysis/GridDataFormats)|1.820934877103222e-06| +|pypi|[gsd](https://gsd.readthedocs.io)|1.820934877103222e-06| +|cran|[posterior](https://mc-stan.org/posterior/)|1.819866880107847e-06| +|cran|[tarchetypes](https://docs.ropensci.org/tarchetypes/)|1.819866880107847e-06| +|rubygems|method_source|1.8074133267764936e-06| +|pypi|[pystokes](https://github.com/rajeshrinet/pystokes)|1.8072289156626644e-06| +|pypi|[fhirclient](https://github.com/smart-on-fhir/client-py/)|1.8072289156626644e-06| +|pypi|[Requests](https://requests.readthedocs.io)|1.8072289156626644e-06| +|pypi|[AMAT](https://github.com/athulpg007/AMAT)|1.8072289156626644e-06| +|pypi|[pyemgpipeline](https://github.com/aalhossary/pyemgpipeline)|1.8072289156626644e-06| +|cran|[osqp](https://osqp.org)|1.8072289156626644e-06| +|cran|[rstackdeque](https://github.com/oneilsh/rstackdeque)|1.8072289156626644e-06| +|cran|[nplr](https://github.com/fredcommo/nplr)|1.8072289156626644e-06| +|cran|[ipaddress](https://davidchall.github.io/ipaddress/)|1.8072289156626644e-06| +|cran|[biblio](https://github.com/kamapu/biblio)|1.8072289156626644e-06| +|cran|[spiderbar](https://gitlab.com/hrbrmstr/spiderbar)|1.8072289156626644e-06| +|cran|[wdman](https://github.com/ropensci/wdman)|1.8072289156626644e-06| +|rubygems|[github-pages](https://github.com/github/pages-gem)|1.8072289156626644e-06| +|npm|[html-entities](https://github.com/mdevils/html-entities#readme)|1.8072289156626508e-06| +|npm|[long](https://github.com/dcodeIO/long.js#readme)|1.8072289156626508e-06| +|npm|[mnemonist](https://github.com/yomguithereal/mnemonist#readme)|1.8072289156626508e-06| +|npm|[obliterator](https://github.com/yomguithereal/obliterator#readme)|1.8072289156626508e-06| +|npm|[pandemonium](https://github.com/yomguithereal/pandemonium#readme)|1.8072289156626508e-06| +|npm|its-set|1.8072289156626504e-06| +|npm|babel-plugin-transform-es2015-modules-umd|1.8072289156626504e-06| +|npm|babel-preset-stage-2|1.8072289156626504e-06| +|npm|gulp-eslint|1.8072289156626504e-06| +|npm|eslint-plugin-babel|1.8072289156626504e-06| +|npm|pretty-hrtime|1.7712650602409637e-06| +|npm|utf8|1.7712650602409637e-06| +|cran|[fasterize](https://github.com/ecohealthalliance/fasterize)|1.6867469879517992e-06| +|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|1.6643317455869995e-06| +|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|1.6643317455869995e-06| +|pypi|[colorful](https://pypi.org/project/colorful)|1.6643317455869995e-06| +|pypi|[dm-tree](https://pypi.org/project/dm-tree)|1.6643317455869995e-06| +|pypi|[gpustat](https://pypi.org/project/gpustat)|1.6643317455869995e-06| +|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|1.6643317455869995e-06| +|pypi|[opencensus](https://pypi.org/project/opencensus)|1.6643317455869995e-06| +|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|1.6643317455869995e-06| +|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|1.6643317455869995e-06| +|pypi|[py-spy](https://pypi.org/project/py-spy)|1.6643317455869995e-06| +|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|1.6643317455869995e-06| +|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|1.6643317455869995e-06| +|pypi|[mercantile](https://github.com/mapbox/mercantile)|1.6521084337349466e-06| +|pypi|[nbsphinx-link](https://github.com/vidartf/nbsphinx-link)|1.6515291936978682e-06| +|npm|[babel-plugin-transform-undefined-to-void](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-simplify-comparison-operators](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-remove-debugger](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-remove-console](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-regexp-constructors](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-minify-booleans](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-merge-sibling-variables](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-member-expression-literals](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-inline-consecutive-adds](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-minify-simplify](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|babel-plugin-minify-replace|1.6502469505350594e-06| +|npm|babel-plugin-minify-numeric-literals|1.6502469505350594e-06| +|npm|babel-plugin-minify-mangle-names|1.6502469505350594e-06| +|npm|babel-plugin-minify-infinity|1.6502469505350594e-06| +|npm|babel-plugin-minify-guarded-expressions|1.6502469505350594e-06| +|npm|babel-plugin-minify-flip-comparisons|1.6502469505350594e-06| +|npm|babel-plugin-minify-dead-code-elimination|1.6502469505350594e-06| +|npm|babel-plugin-minify-constant-folding|1.6502469505350594e-06| +|npm|babel-plugin-minify-builtins|1.6502469505350594e-06| +|npm|babel-helper-evaluate-path|1.6337444810297089e-06| +|npm|esutils|1.6337444810297089e-06| +|npm|babel-helper-is-void-0|1.6337444810297089e-06| +|cran|whitening|1.6265060240963854e-06| +|cran|randtoolbox|1.6265060240963854e-06| +|cran|mc2d|1.6265060240963854e-06| +|cran|ggExtra|1.6265060240963854e-06| +|cran|DiceDesign|1.6265060240963854e-06| +|cran|condMVNorm|1.6265060240963854e-06| +|npm|[proxyquire](https://github.com/thlorenz/proxyquire#readme)|1.6258605851979326e-06| +|cran|showtextdb|1.6200595063179546e-06| +|cran|sysfonts|1.6200595063179546e-06| +|pypi|[restructuredtext-lint](https://pypi.org/project/restructuredtext-lint)|1.6102409638554219e-06| +|pypi|[pytest-datadir](https://pypi.org/project/pytest-datadir)|1.6102409638554219e-06| +|cran|rematch2|1.6102409638554216e-06| +|cran|diffobj|1.6102409638554216e-06| +|rubygems|[puma](https://puma.io)|1.6064468539067399e-06| +|rubygems|[uglifier](http://github.com/lautis/uglifier)|1.606446853906736e-06| +|cran|[UpSetR](http://github.com/hms-dbmi/UpSetR)|1.5722891566265128e-06| +|pypi|[pytest-freezegun](https://pypi.org/project/pytest-freezegun)|1.5582977069568596e-06| +|pypi|[coverage-enable-subprocess](https://pypi.org/project/coverage-enable-subprocess)|1.5582977069568596e-06| +|pypi|[sphinx-argparse](https://pypi.org/project/sphinx-argparse)|1.5582977069568596e-06| +|pypi|[proselint](https://pypi.org/project/proselint)|1.5582977069568596e-06| +|pypi|[optimade](https://github.com/Materials-Consortia/optimade-python-tools)|1.549053356282288e-06| +|pypi|[bed-reader](https://pypi.org/project/bed-reader)|1.549053356282288e-06| +|pypi|[PyQT5](https://www.riverbankcomputing.com/software/pyqt/)|1.549053356282288e-06| +|pypi|[emn_sdk](https://www.energy.gov/eere/energy-materials-network/energy-materials-network)|1.549053356282288e-06| +|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|1.549053356282288e-06| +|pypi|[Eir](https://github.com/mjacob1002/Eir)|1.549053356282288e-06| +|pypi|[physical-validation](https://physical-validation.readthedocs.io)|1.549053356282288e-06| +|pypi|[qimage2ndarray](https://github.com/hmeine/qimage2ndarray)|1.549053356282288e-06| +|pypi|[singularity-hpc](https://github.com/singularityhub/singularity-hpc)|1.549053356282288e-06| +|cran|RISmed|1.549053356282288e-06| +|cran|[tidytree](https://yulab-smu.top/treedata-book/)|1.549053356282288e-06| +|cran|sde|1.549053356282288e-06| +|cran|[phylocomr](https://github.com/ropensci/phylocomr)|1.549053356282288e-06| +|cran|[rsdmx](https://github.com/opensdmx/rsdmx)|1.549053356282288e-06| +|cran|[httr2](https://httr2.r-lib.org)|1.549053356282288e-06| +|cran|[itsadug](NA)|1.549053356282288e-06| +|cran|[CORElearn](http://lkm.fri.uni-lj.si/rmarko/software/)|1.549053356282288e-06| +|npm|[path](http://nodejs.org/docs/latest/api/path.html)|1.549053356282288e-06| +|npm|[react-grid-gallery](https://benhowell.github.io/react-grid-gallery/)|1.549053356282288e-06| +|npm|[js-logger](http://github.com/jonnyreeves/js-logger)|1.549053356282288e-06| +|npm|[d3-cloud](https://www.jasondavies.com/wordcloud/)|1.549053356282288e-06| +|npm|[atob](https://git.coolaj86.com/coolaj86/atob.js.git)|1.549053356282272e-06| +|npm|[node-html-parser](https://github.com/taoqf/node-fast-html-parser)|1.549053356282272e-06| +|npm|[serve-favicon](https://github.com/expressjs/serve-favicon#readme)|1.5465708989805449e-06| +|pypi|[usort](https://pypi.org/project/usort)|1.5248493975903614e-06| +|pypi|[sphinx-autodoc-typehints>=1.15.2](https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2)|1.5139017608897125e-06| +|pypi|[typing_extensions>=3.10](https://pypi.org/project/typing_extensions>=3.10)|1.5139017608897125e-06| +|pypi|[get_version](https://pypi.org/project/get_version)|1.5139017608897125e-06| +|pypi|[sphinx>=3.0](https://pypi.org/project/sphinx>=3.0)|1.5139017608897125e-06| +|rubygems|[redis](https://github.com/redis/redis-rb)|1.5100015909978455e-06| +|rubygems|[stackprof](http://github.com/tmm1/stackprof)|1.5100015909978455e-06| +|go|golang.org/x/sys|1.5046120690132533e-06| +|pypi|[nodeenv](https://pypi.org/project/nodeenv)|1.4760542168674698e-06| +|pypi|[identify](https://pypi.org/project/identify)|1.4760542168674698e-06| +|pypi|[cfgv](https://pypi.org/project/cfgv)|1.4760542168674698e-06| +|npm|assume|1.4598338408579371e-06| +|npm|spawn-sync|1.4598338408579371e-06| +|pypi|[connexion](https://github.com/zalando/connexion)|1.445783132530107e-06| +|cran|[contentid](https://github.com/cboettig/contentid)|1.445783132530107e-06| +|npm|[morgan](https://github.com/expressjs/morgan#readme)|1.423350745639908e-06| +|pypi|[furl](https://pypi.org/project/furl)|1.4199655765920826e-06| +|pypi|[pyodbc](https://pypi.org/project/pyodbc)|1.4199655765920826e-06| +|pypi|[pymysql](https://pypi.org/project/pymysql)|1.4199655765920826e-06| +|pypi|[pg8000](https://pypi.org/project/pg8000)|1.4199655765920826e-06| +|pypi|[psycopg2cffi](https://pypi.org/project/psycopg2cffi)|1.4199655765920826e-06| +|pypi|[flexmock](https://pypi.org/project/flexmock)|1.4199655765920826e-06| +|pypi|[phonenumbers](https://pypi.org/project/phonenumbers)|1.4199655765920826e-06| +|pypi|[pendulum](https://pypi.org/project/pendulum)|1.4199655765920826e-06| +|pypi|[intervals](https://pypi.org/project/intervals)|1.4199655765920826e-06| +|pypi|[colour](https://pypi.org/project/colour)|1.4199655765920826e-06| +|pypi|[arrow](https://pypi.org/project/arrow)|1.4199655765920826e-06| +|rubygems|xpath|1.3851535172949861e-06| +|rubygems|mini_mime|1.3851535172949861e-06| +|rubygems|matrix|1.3851535172949861e-06| +|rubygems|webdrivers|1.3851535172949861e-06| +|rubygems|sinatra|1.3851535172949861e-06| +|rubygems|selenium-webdriver|1.3851535172949861e-06| +|rubygems|selenium_statistics|1.3851535172949861e-06| +|rubygems|sauce_whisk|1.3851535172949861e-06| +|rubygems|rubocop-rake|1.3851535172949861e-06| +|rubygems|rubocop-minitest|1.3851535172949861e-06| +|rubygems|rspec-instafail|1.3851535172949861e-06| +|rubygems|launchy|1.3851535172949861e-06| +|rubygems|irb|1.3851535172949861e-06| +|rubygems|erubi|1.3851535172949861e-06| +|rubygems|cucumber|1.3851535172949861e-06| +|cran|thematic|1.383800828313253e-06| +|npm|grunt-contrib-clean|1.3692525202852223e-06| +|npm|grunt-contrib-watch|1.3692525202852223e-06| +|npm|grunt-eslint|1.3692525202852223e-06| +|npm|grunt-release|1.3692525202852223e-06| +|npm|grunt-jsdoc|1.3692525202852223e-06| +|npm|grunt-mocha-istanbul|1.3692525202852223e-06| +|npm|help-me-test|1.3692525202852223e-06| +|npm|require-dir|1.3692525202852223e-06| +|pypi|[questionary](https://github.com/tmbo/questionary)|1.3554216867469906e-06| +|pypi|[iPython](https://ipython.org)|1.3554216867469906e-06| +|pypi|[nodepy](https://github.com/ketch/nodepy)|1.3554216867469906e-06| +|pypi|[pywdpa](https://ecology.ghislainv.fr/pywdpa)|1.3554216867469906e-06| +|pypi|[astro-virgo](https://github.com/0xCoto/Virgo)|1.3554216867469906e-06| +|pypi|[dna-features-viewer](https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer)|1.3554216867469906e-06| +|pypi|[parasail](https://github.com/jeffdaily/parasail-python)|1.3554216867469906e-06| +|pypi|[pypiwin32](https://pypi.org/project/pypiwin32)|1.3554216867469906e-06| +|pypi|[piecewise-regression](https://github.com/chasmani/piecewise-regression)|1.3554216867469906e-06| +|pypi|[pystream-protobuf](https://github.com/cartoonist/pystream-protobuf)|1.3554216867469906e-06| +|cran|Rlabkey|1.3554216867469906e-06| +|cran|[fishtree](https://fishtreeoflife.org/)|1.3554216867469906e-06| +|cran|[LiblineaR]()|1.3554216867469906e-06| +|npm|[svgr](https://github.com/smooth-code/svgr#readme)|1.3554216867469906e-06| +|npm|[clsx](https://github.com/lukeed/clsx#readme)|1.3554216867469906e-06| +|npm|[deep-filter](https://github.com/IndigoUnited/js-deep-filter#readme)|1.3554216867469906e-06| +|npm|[kebabcase-keys](https://github.com/mattii/kebabcase-keys#readme)|1.3554216867469906e-06| +|npm|[camera-controls](https://github.com/yomotsu/camera-controls#readme)|1.355421686746988e-06| +|npm|[daisyui](https://github.com/saadeghi/daisyui)|1.355421686746988e-06| +|npm|[github-current-user](https://github.com/beaugunderson/github-current-user)|1.3418674698795263e-06| +|pypi|[opt_einsum](https://github.com/dgasmith/opt_einsum)|1.3155563430191375e-06| +|pypi|[percy](https://pypi.org/project/percy)|1.3139461149371045e-06| +|pypi|[diskcache](https://pypi.org/project/diskcache)|1.3139461149371045e-06| +|pypi|[fire](https://pypi.org/project/fire)|1.3139461149371045e-06| +|pypi|[preconditions](https://pypi.org/project/preconditions)|1.3139461149371045e-06| +|pypi|[mimesis](https://pypi.org/project/mimesis)|1.3139461149371045e-06| +|pypi|[flask-talisman](https://pypi.org/project/flask-talisman)|1.3139461149371045e-06| +|pypi|[dash-dangerously-set-inner-html](https://pypi.org/project/dash-dangerously-set-inner-html)|1.3139461149371045e-06| +|pypi|[dash-flow-example](https://pypi.org/project/dash-flow-example)|1.3139461149371045e-06| +|npm|karma-tap-reporter|1.2887082543860917e-06| +|npm|karma-spec-reporter|1.2887082543860917e-06| +|npm|karma-rollup-preprocessor|1.2887082543860917e-06| +|npm|karma-html-reporter|1.2887082543860917e-06| +|npm|karma-firefox-launcher|1.2887082543860917e-06| +|npm|karma-chai-sinon|1.2887082543860917e-06| +|npm|eslint-plugin-mocha|1.2887082543860917e-06| +|npm|eslint-config-nfl|1.2887082543860917e-06| +|npm|cz-conventional-changelog|1.2887082543860917e-06| +|npm|conventional-changelog-cli|1.2887082543860917e-06| +|npm|babel-plugin-transform-class-properties|1.2887082543860917e-06| +|npm|react-side-effect|1.2887082543860917e-06| +|npm|react-fast-compare|1.2887082543860917e-06| +|rubygems|webpacker|1.2887082543860917e-06| +|rubygems|sassc|1.2887082543860917e-06| +|rubygems|rubocop-discourse|1.2887082543860917e-06| +|rubygems|mini_racer|1.2887082543860917e-06| +|rubygems|listen|1.2887082543860917e-06| +|rubygems|dalli|1.2887082543860917e-06| +|go|github.com/gorilla/mux|1.2524405924091624e-06| +|go|golang.org/x/crypto|1.2524405924091624e-06| +|cran|pheatmap|1.248414711477493e-06| |cran|[shinyalert](https://github.com/daattali/shinyalert -https://daattali.com/shiny/shinyalert-demo/)|1.2749470151889833e-06| -|npm|tslint-config-semistandard|1.2688758389261745e-06| -|npm|optimist|1.2688758389261745e-06| -|npm|eslint-plugin-dependencies|1.2688758389261745e-06| -|npm|eslint-config-semistandard|1.2688758389261745e-06| -|npm|doctoc|1.2688758389261745e-06| -|npm|snappy|1.2688758389261745e-06| -|npm|retry|1.2688758389261745e-06| -|npm|optional|1.2688758389261745e-06| -|npm|nested-error-stacks|1.2688758389261745e-06| -|npm|denque|1.2688758389261745e-06| -|npm|buffermaker|1.2688758389261745e-06| -|npm|buffer-crc32|1.2688758389261745e-06| -|npm|binary|1.2688758389261745e-06| -|cran|[RNiftyReg](https://github.com/jonclayden/RNiftyReg)|1.2666140281616032e-06| -|rubygems|racc|1.2561870805369127e-06| -|rubygems|ruby_memcheck|1.2561870805369127e-06| -|rubygems|rubocop-shopify|1.2561870805369127e-06| -|rubygems|rexical|1.2561870805369127e-06| -|rubygems|minitest-reporters|1.2561870805369127e-06| -|rubygems|hoe-markdown|1.2561870805369127e-06| -|cran|[ggiraph](https://davidgohel.github.io/ggiraph/)|1.245805369127513e-06| -|cran|[goodpractice](https://github.com/mangothecat/goodpractice)|1.2416107382550256e-06| -|npm|[react-mdl](https://github.com/react-mdl/react-mdl#readme)|1.2304250559284157e-06| -|npm|[react-sigma](https://github.com/dunnock/react-sigma)|1.2304250559284157e-06| -|npm|[react-simple-file-input](https://github.com/greena13/react-simple-file-input#readme)|1.2304250559284157e-06| -|pypi|[pymc3-ext](https://github.com/exoplanet-dev/pymc3-ext)|1.2304250559284157e-06| -|pypi|[pygam](https://github.com/dswah/pyGAM)|1.2304250559284157e-06| -|pypi|[grpcio-reflection](https://grpc.io)|1.2304250559284157e-06| -|pypi|[modAL](https://modAL-python.github.io/)|1.2304250559284157e-06| -|pypi|[easywebdav](http://github.com/amnong/easywebdav)|1.2304250559284157e-06| -|pypi|[stanza](https://github.com/stanfordnlp/stanza)|1.2304250559284157e-06| -|pypi|[dca](https://github.com/theislab/dca)|1.2304250559284157e-06| -|cran|[fitdistrplus](https://lbbe.univ-lyon1.fr/fr/fitdistrplus)|1.2304250559284157e-06| -|cran|[kinship2](https://cran.r-project.org/package=kinship2)|1.2304250559284157e-06| -|cran|[corrr](https://github.com/tidymodels/corrr)|1.2304250559284157e-06| +https://daattali.com/shiny/shinyalert-demo/)|1.248414711477493e-06| +|npm|tslint-config-semistandard|1.2424698795180723e-06| +|npm|optimist|1.2424698795180723e-06| +|npm|eslint-plugin-dependencies|1.2424698795180723e-06| +|npm|eslint-config-semistandard|1.2424698795180723e-06| +|npm|doctoc|1.2424698795180723e-06| +|npm|snappy|1.2424698795180723e-06| +|npm|optional|1.2424698795180723e-06| +|npm|nested-error-stacks|1.2424698795180723e-06| +|npm|denque|1.2424698795180723e-06| +|npm|buffermaker|1.2424698795180723e-06| +|npm|buffer-crc32|1.2424698795180723e-06| +|npm|binary|1.2424698795180723e-06| +|cran|[RNiftyReg](https://github.com/jonclayden/RNiftyReg)|1.2402551381998611e-06| +|cran|[ggiraph](https://davidgohel.github.io/ggiraph/)|1.2198795180722854e-06| +|cran|[goodpractice](https://github.com/mangothecat/goodpractice)|1.2157721796275937e-06| +|pypi|[transformers](https://github.com/huggingface/transformers)|1.2048192771084378e-06| +|pypi|[stanza](https://github.com/stanfordnlp/stanza)|1.2048192771084378e-06| +|pypi|[easywebdav](http://github.com/amnong/easywebdav)|1.2048192771084378e-06| +|pypi|[retriever](https://github.com/weecology/retriever)|1.2048192771084378e-06| +|pypi|[yabox](https://github.com/pablormier/yabox)|1.2048192771084378e-06| +|pypi|[modAL](https://modAL-python.github.io/)|1.2048192771084378e-06| +|pypi|[funsies](https://github.com/aspuru-guzik-group/funsies)|1.2048192771084378e-06| +|pypi|[dca](https://github.com/theislab/dca)|1.2048192771084378e-06| +|pypi|[python-markdown-math](https://github.com/mitya57/python-markdown-math)|1.2048192771084378e-06| +|pypi|[injector](https://github.com/alecthomas/injector)|1.2048192771084378e-06| +|cran|[fitdistrplus](https://lbbe.univ-lyon1.fr/fr/fitdistrplus)|1.2048192771084378e-06| +|cran|[kinship2](https://cran.r-project.org/package=kinship2)|1.2048192771084378e-06| +|cran|[corrr](https://github.com/tidymodels/corrr)|1.2048192771084378e-06| +|cran|[spocc](https://github.com/ropensci/spocc (devel))|1.2048192771084378e-06| +|cran|[RcppProgress](https://github.com/kforner/rcpp_progress)|1.2048192771084378e-06| +|cran|[rematch](https://github.com/MangoTheCat/rematch)|1.2048192771084378e-06| +|cran|treeman|1.2048192771084378e-06| +|cran|[treemapify](https://wilkox.org/treemapify/)|1.2048192771084378e-06| +|cran|[restez](https://github.com/ropensci/restez#readme)|1.2048192771084378e-06| |cran|[babette](https://docs.ropensci.org/babette/ (website) -https://github.com/ropensci/babette/)|1.2304250559284157e-06| -|cran|[spocc](https://github.com/ropensci/spocc (devel))|1.2304250559284157e-06| -|cran|[RcppProgress](https://github.com/kforner/rcpp_progress)|1.2304250559284157e-06| -|cran|treeman|1.2304250559284157e-06| -|cran|[treemapify](https://wilkox.org/treemapify/)|1.2304250559284157e-06| -|cran|[restez](https://github.com/ropensci/restez#readme)|1.2304250559284157e-06| -|cran|[rematch](https://github.com/MangoTheCat/rematch)|1.2304250559284157e-06| -|pypi|[tinydb](https://github.com/msiemens/tinydb)|1.2242729306487753e-06| -|pypi|[re-assert](https://pypi.org/project/re-assert)|1.1926875138284532e-06| -|pypi|[devpi-server](https://pypi.org/project/devpi-server)|1.1926875138284532e-06| -|pypi|[devpi-client](https://pypi.org/project/devpi-client)|1.1926875138284532e-06| -|pypi|[pyproject-api](https://pypi.org/project/pyproject-api)|1.1926875138284532e-06| -|pypi|[sphinx-autodoc-typehints>=1.15.2](https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2)|1.1595573051109964e-06| -|pypi|[typing_extensions>=3.10](https://pypi.org/project/typing_extensions>=3.10)|1.1595573051109964e-06| -|pypi|[get_version](https://pypi.org/project/get_version)|1.1595573051109964e-06| -|pypi|[sphinx>=3.0](https://pypi.org/project/sphinx>=3.0)|1.1595573051109964e-06| -|npm|taper|1.141988255033557e-06| -|npm|server-destroy|1.141988255033557e-06| -|npm|phantomjs-prebuilt|1.141988255033557e-06| -|npm|karma-tap|1.141988255033557e-06| -|npm|karma-phantomjs-launcher|1.141988255033557e-06| -|npm|karma-browserify|1.141988255033557e-06| -|npm|function-bind|1.141988255033557e-06| -|npm|buffer-equal|1.141988255033557e-06| -|npm|tunnel-agent|1.141988255033557e-06| -|npm|tough-cookie|1.141988255033557e-06| -|npm|qs|1.141988255033557e-06| -|npm|performance-now|1.141988255033557e-06| -|npm|oauth-sign|1.141988255033557e-06| -|npm|isstream|1.141988255033557e-06| -|npm|is-typedarray|1.141988255033557e-06| -|npm|http-signature|1.141988255033557e-06| -|npm|har-validator|1.141988255033557e-06| -|npm|forever-agent|1.141988255033557e-06| -|npm|extend|1.141988255033557e-06| -|npm|caseless|1.141988255033557e-06| -|npm|aws4|1.141988255033557e-06| -|npm|aws-sign2|1.141988255033557e-06| -|rubygems|rspec-extra-formatters|1.1186823722777703e-06| -|rubygems|paranoia|1.1186823722777703e-06| -|rubygems|paper_trail|1.1186823722777703e-06| -|rubygems|discard|1.1186823722777703e-06| -|rubygems|database_cleaner|1.1186823722777703e-06| -|rubygems|after_commit_action|1.1186823722777703e-06| -|go|golang.org/x/net|1.1185682326621923e-06| -|pypi|[sparse](https://github.com/pydata/sparse/)|1.1180304594734164e-06| -|pypi|[pypka](https://pypka.org)|1.1073825503355913e-06| -|pypi|[streamlit](https://streamlit.io)|1.1073825503355913e-06| -|cran|gdata|1.1073825503355913e-06| -|npm|[node-gzip](https://github.com/Rebsos/node-gzip#readme)|1.1073825503355758e-06| -|pypi|[yabox](https://github.com/pablormier/yabox)|1.1073825503355758e-06| -|pypi|[louvain](https://github.com/vtraag/louvain-igraph)|1.1073825503355758e-06| -|pypi|[update_checker](https://github.com/bboe/update_checker)|1.1073825503355758e-06| -|pypi|[xgboost](https://github.com/dmlc/xgboost)|1.1073825503355758e-06| -|pypi|[h5xplorer](https://github.com/DeepRank/h5xplorer)|1.1073825503355758e-06| -|pypi|[sphinx-rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|1.1073825503355758e-06| -|cran|[jmvcore](https://www.jamovi.org)|1.1073825503355758e-06| -|cran|[mlr3proba](https://mlr3proba.mlr-org.com)|1.1073825503355758e-06| -|cran|ggm|1.1073825503355758e-06| -|cran|googlePolylines|1.1073825503355758e-06| -|cran|[analogue](https://github.com/gavinsimpson/analogue)|1.1073825503355758e-06| -|cran|[scrapeR](http://www.ryanacton.com)|1.1073825503355758e-06| -|cran|[C50](https://topepo.github.io/C5.0/)|1.1073825503355758e-06| -|npm|[react-dnd](https://github.com/react-dnd/react-dnd#readme)|1.1073825503355705e-06| -|npm|[react-dnd-html5-backend](https://github.com/react-dnd/react-dnd#readme)|1.1073825503355705e-06| -|npm|[react-plotly.js](https://github.com/plotly/react-plotly.js#readme)|1.1073825503355705e-06| -|pypi|[OpenPIV](https://pypi.org/project/OpenPIV)|1.1073825503355604e-06| -|pypi|[pssmgen](https://github.com/DeepRank/PSSMGen)|1.1073825503355604e-06| -|cran|[cowsay](https://github.com/sckott/cowsay)|1.1073825503355604e-06| -|cran|[rworldmap](https://github.com/AndySouth/rworldmap/)|1.1073825503355604e-06| +https://github.com/ropensci/babette/)|1.2048192771084378e-06| +|npm|[react-mdl](https://github.com/react-mdl/react-mdl#readme)|1.2048192771084378e-06| +|npm|[react-sigma](https://github.com/dunnock/react-sigma)|1.2048192771084378e-06| +|npm|[react-simple-file-input](https://github.com/greena13/react-simple-file-input#readme)|1.2048192771084378e-06| +|npm|[js-sha256](https://github.com/emn178/js-sha256)|1.2048192771084378e-06| +|pypi|[python-sat](https://github.com/pysathq/pysat)|1.1927710843373567e-06| +|pypi|[re-assert](https://pypi.org/project/re-assert)|1.1678670726863496e-06| +|pypi|[devpi-server](https://pypi.org/project/devpi-server)|1.1678670726863496e-06| +|pypi|[devpi-client](https://pypi.org/project/devpi-client)|1.1678670726863496e-06| +|pypi|[pyproject-api](https://pypi.org/project/pyproject-api)|1.1678670726863496e-06| +|npm|taper|1.1182228915662649e-06| +|npm|server-destroy|1.1182228915662649e-06| +|npm|karma-tap|1.1182228915662649e-06| +|npm|karma-phantomjs-launcher|1.1182228915662649e-06| +|npm|karma-browserify|1.1182228915662649e-06| +|npm|function-bind|1.1182228915662649e-06| +|npm|buffer-equal|1.1182228915662649e-06| +|npm|tunnel-agent|1.1182228915662649e-06| +|npm|tough-cookie|1.1182228915662649e-06| +|npm|qs|1.1182228915662649e-06| +|npm|performance-now|1.1182228915662649e-06| +|npm|oauth-sign|1.1182228915662649e-06| +|npm|isstream|1.1182228915662649e-06| +|npm|is-typedarray|1.1182228915662649e-06| +|npm|http-signature|1.1182228915662649e-06| +|npm|har-validator|1.1182228915662649e-06| +|npm|forever-agent|1.1182228915662649e-06| +|npm|extend|1.1182228915662649e-06| +|npm|caseless|1.1182228915662649e-06| +|npm|aws4|1.1182228915662649e-06| +|npm|aws-sign2|1.1182228915662649e-06| +|pypi|[sparse](https://github.com/pydata/sparse/)|1.1114457831325397e-06| +|pypi|[CacheControl](https://github.com/ionrock/cachecontrol)|1.0972461273666183e-06| +|rubygems|rspec-extra-formatters|1.095402016228178e-06| +|rubygems|paranoia|1.095402016228178e-06| +|rubygems|paper_trail|1.095402016228178e-06| +|rubygems|discard|1.095402016228178e-06| +|rubygems|database_cleaner|1.095402016228178e-06| +|rubygems|after_commit_action|1.095402016228178e-06| +|go|golang.org/x/net|1.095290251916758e-06| +|pypi|[clldutils](https://github.com/clld/clldutils)|1.0843373493976108e-06| +|pypi|[pypka](https://pypka.org)|1.0843373493976108e-06| +|cran|gdata|1.0843373493976108e-06| +|pypi|[sphinx-rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|1.0843373493975956e-06| +|pypi|[slab](http://github.com/DrMarc/slab.git)|1.0843373493975956e-06| +|pypi|[louvain](https://github.com/vtraag/louvain-igraph)|1.0843373493975956e-06| +|pypi|[pyvcf](https://github.com/jamescasbon/PyVCF)|1.0843373493975956e-06| +|cran|[mlr3proba](https://mlr3proba.mlr-org.com)|1.0843373493975956e-06| +|cran|ggm|1.0843373493975956e-06| +|cran|[analogue](https://github.com/gavinsimpson/analogue)|1.0843373493975956e-06| +|cran|googlePolylines|1.0843373493975956e-06| +|cran|[C50](https://topepo.github.io/C5.0/)|1.0843373493975956e-06| +|cran|[scrapeR](http://www.ryanacton.com)|1.0843373493975956e-06| +|cran|[jmvcore](https://www.jamovi.org)|1.0843373493975956e-06| +|npm|[node-gzip](https://github.com/Rebsos/node-gzip#readme)|1.0843373493975956e-06| +|npm|[react-dnd](https://github.com/react-dnd/react-dnd#readme)|1.0843373493975903e-06| +|npm|[react-dnd-html5-backend](https://github.com/react-dnd/react-dnd#readme)|1.0843373493975903e-06| +|cran|[cowsay](https://github.com/sckott/cowsay)|1.0843373493975803e-06| +|cran|[rworldmap](https://github.com/AndySouth/rworldmap/)|1.0843373493975803e-06| |cran|[osmdata](https://docs.ropensci.org/osmdata/ (website) -https://github.com/ropensci/osmdata/ (devel))|1.1073825503355604e-06| -|pypi|[langdetect](https://github.com/Mimino666/langdetect)|1.0650647171620401e-06| -|pypi|[CacheControl](https://github.com/ionrock/cachecontrol)|1.049579615015864e-06| -|go|github.com/opencontainers/go-digest|1.0332335783099554e-06| -|go|github.com/opencontainers/image-spec|1.0332335783099554e-06| -|go|github.com/spf13/cobra|1.0332335783099554e-06| -|pypi|[imgaug](https://github.com/aleju/imgaug)|1.0067114093959864e-06| -|cran|[mvnfast](https://github.com/mfasiolo/mvnfast/)|1.0067114093959864e-06| -|pypi|[pythutils](https://github.com/JolleJolles)|1.006711409395973e-06| -|pypi|[python-crontab](https://gitlab.com/doctormo/python-crontab/)|1.006711409395973e-06| -|pypi|[cron-descriptor](https://github.com/Salamek/cron-descriptor)|1.006711409395973e-06| -|npm|[angular-toastr](https://github.com/Foxandxss/angular-toastr#readme)|1.006711409395971e-06| -|npm|[dialog-polyfill](https://github.com/GoogleChrome/dialog-polyfill)|1.006711409395971e-06| -|npm|[grunt-contrib-imagemin](https://github.com/gruntjs/grunt-contrib-imagemin#readme)|1.006711409395971e-06| -|npm|[material-design-lite](https://github.com/google/material-design-lite#readme)|1.006711409395971e-06| -|pypi|[twiggy](https://github.com/wearpants/twiggy/)|1.006711409395971e-06| -|pypi|[nano-CAT](https://github.com/nlesc-nano/nano-CAT)|1.006711409395971e-06| -|pypi|[data-CAT](https://github.com/nlesc-nano/data-CAT)|1.006711409395971e-06| -|pypi|[scikit_image](https://scikit-image.org)|1.006711409395971e-06| -|pypi|[webdav](https://github.com/kamikaze/webdav)|1.006711409395971e-06| -|pypi|[libfmp](http://audiolabs-erlangen.de/FMP)|1.006711409395971e-06| -|pypi|[Flask-Cors](https://github.com/corydolphin/flask-cors)|1.006711409395971e-06| -|pypi|[python-slugify](https://github.com/un33k/python-slugify)|1.006711409395971e-06| -|pypi|[overrides](https://github.com/mkorpela/overrides)|1.006711409395971e-06| -|cran|[haldensify](https://github.com/nhejazi/haldensify)|1.006711409395971e-06| -|cran|lspline|1.006711409395971e-06| -|cran|pbs|1.006711409395971e-06| -|cran|[BFpack](https://github.com/jomulder/BFpack)|1.006711409395971e-06| -|cran|[sofa](https://github.com/ropensci/sofa)|1.006711409395971e-06| -|cran|[elastic](https://docs.ropensci.org/elastic (website))|1.006711409395971e-06| +https://github.com/ropensci/osmdata/ (devel))|1.0843373493975803e-06| +|pypi|[pytest-lazy-fixture](https://github.com/tvorog/pytest-lazy-fixture)|1.0734939759036118e-06| +|go|github.com/opencontainers/go-digest|1.0117314556507122e-06| +|go|github.com/opencontainers/image-spec|1.0117314556507122e-06| +|go|github.com/spf13/cobra|1.0117314556507122e-06| +|pypi|[grpcio-reflection](https://grpc.io)|1.0030120481927786e-06| +|pypi|[imgaug](https://github.com/aleju/imgaug)|9.857612267250953e-07| +|cran|[mvnfast](https://github.com/mfasiolo/mvnfast/)|9.857612267250953e-07| +|pypi|[libfmp](http://audiolabs-erlangen.de/FMP)|9.8576122672508e-07| +|pypi|[impedance](https://impedancepy.readthedocs.io/en/latest/)|9.8576122672508e-07| +|pypi|[pvpumpingsystem](https://github.com/tylunel/pvpumpingsystem)|9.8576122672508e-07| +|pypi|[nano-CAT](https://github.com/nlesc-nano/nano-CAT)|9.8576122672508e-07| +|pypi|[data-CAT](https://github.com/nlesc-nano/data-CAT)|9.8576122672508e-07| +|pypi|[overrides](https://github.com/mkorpela/overrides)|9.8576122672508e-07| +|pypi|[wandb](https://github.com/wandb/client)|9.8576122672508e-07| +|pypi|[Flask-Cors](https://github.com/corydolphin/flask-cors)|9.8576122672508e-07| +|pypi|[FitBenchmarking](http://fitbenchmarking.com)|9.8576122672508e-07| +|pypi|[pyvolcans](https://github.com/BritishGeologicalSurvey/pyvolcans)|9.8576122672508e-07| +|cran|[BFpack](https://github.com/jomulder/BFpack)|9.8576122672508e-07| +|cran|[haldensify](https://github.com/nhejazi/haldensify)|9.8576122672508e-07| +|cran|lspline|9.8576122672508e-07| +|cran|[sofa](https://github.com/ropensci/sofa)|9.8576122672508e-07| +|cran|[elastic](https://docs.ropensci.org/elastic (website))|9.8576122672508e-07| |cran|[mongolite](https://github.com/jeroen/mongolite/ (devel) https://jeroen.github.io/mongolite/ (user manual) -http://mongoc.org/ (upstream))|1.006711409395971e-06| -|cran|[keyATM](https://keyatm.github.io/keyATM/)|1.006711409395971e-06| -|cran|[irr](https://www.r-project.org)|1.006711409395971e-06| -|pypi|[django-filter](https://github.com/carltongibson/django-filter/tree/main)|9.381991051454168e-07| -|npm|[color-blend](https://github.com/Loilo/color-blend#readme)|9.228187919463158e-07| -|pypi|[lightkurve](https://docs.lightkurve.org)|9.228187919463158e-07| -|pypi|[k2sc](https://github.com/OxES/k2sc)|9.228187919463158e-07| -|pypi|[cosmospectra](https://github.com/sambit-giri/cosmospectra.git)|9.228187919463158e-07| -|cran|rje|9.228187919463158e-07| -|cran|[usefun](https://github.com/bblodfon/usefun)|9.228187919463158e-07| -|cran|rCAT|9.228187919463158e-07| -|cran|[strex](https://rorynolan.github.io/strex/)|9.228187919463158e-07| -|cran|[gdalUtilities](https://github.com/JoshOBrien/gdalUtilities/)|9.228187919463158e-07| -|npm|[css-loader](https://github.com/webpack-contrib/css-loader)|9.135906040268456e-07| -|npm|[less-loader](https://github.com/webpack-contrib/less-loader)|9.135906040268456e-07| -|npm|[style-loader](https://github.com/webpack-contrib/style-loader)|9.135906040268456e-07| -|rubygems|[activerecord-jdbcmysql-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|8.859060402684575e-07| -|pypi|[lcapy](https://github.com/mph-/lcapy)|8.518327310273826e-07| -|cran|[repr](https://github.com/IRkernel/repr/)|8.518327310273826e-07| -|pypi|[healpy](http://github.com/healpy)|8.518327310273672e-07| -|pypi|[GridDataFormats](https://github.com/MDAnalysis/GridDataFormats)|8.518327310273672e-07| -|pypi|[mmtf-python](https://github.com/rcsb/mmtf-python.git)|8.518327310273672e-07| -|pypi|[flat-table](https://github.com/metinsenturk/flat_table)|8.518327310273672e-07| -|pypi|[tikzplotlib](https://pypi.org/project/tikzplotlib)|8.518327310273672e-07| -|pypi|[linuxdoc](https://github.com/return42/linuxdoc)|8.518327310273672e-07| -|pypi|[opencv-contrib-python-headless](https://github.com/skvark/opencv-python)|8.518327310273672e-07| -|pypi|[tableone](https://github.com/tompollard/tableone)|8.518327310273672e-07| -|pypi|[entsoe-py](https://github.com/EnergieID/entsoe-py)|8.518327310273672e-07| -|pypi|[quandl](https://github.com/quandl/quandl-python)|8.518327310273672e-07| -|pypi|[pybamm](https://github.com/pybamm-team/PyBaMM)|8.518327310273672e-07| -|pypi|[Ipython](https://ipython.org)|8.518327310273672e-07| -|pypi|[scikit-spatial](https://github.com/ajhynes7/scikit-spatial)|8.518327310273672e-07| -|cran|[waiter](https://waiter.john-coene.com/)|8.518327310273672e-07| -|cran|[pwr](https://github.com/heliosdrm/pwr)|8.518327310273672e-07| -|cran|[likert](http://jason.bryer.org/likert)|8.518327310273672e-07| -|cran|[plumber](https://www.rplumber.io)|8.518327310273672e-07| -|cran|[tictoc](https://github.com/collectivemedia/tictoc)|8.518327310273672e-07| -|cran|R2jags|8.518327310273672e-07| -|cran|[bib2df](https://github.com/ropensci/bib2df)|8.518327310273672e-07| -|npm|[aws-amplify](https://aws-amplify.github.io/)|8.51832731027362e-07| -|npm|[aws-amplify-react](https://github.com/aws-amplify/amplify-js#readme)|8.51832731027362e-07| -|npm|[cors](https://github.com/expressjs/cors#readme)|7.969798657718174e-07| -|npm|[cpx](https://github.com/mysticatea/cpx)|7.909875359539872e-07| -|npm|tls|7.909875359539872e-07| -|pypi|[gitdb2](https://github.com/gitpython-developers/gitdb)|7.909875359539872e-07| -|pypi|[nibabel](https://nipy.org/nibabel)|7.909875359539872e-07| -|pypi|[smmap2](https://github.com/gitpython-developers/smmap)|7.909875359539872e-07| -|pypi|[sphinx_automodapi](https://github.com/astropy/sphinx-automodapi)|7.909875359539872e-07| -|pypi|[rdkit-pypi](https://github.com/kuelumbus/rdkit-pypi)|7.909875359539872e-07| -|pypi|[fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy)|7.909875359539872e-07| -|cran|[shinyFiles](https://github.com/thomasp85/shinyFiles)|7.909875359539872e-07| -|cran|[bestglm](http://www.stats.uwo.ca/faculty/aim)|7.909875359539872e-07| -|cran|[GGMncv](https://donaldrwilliams.github.io/GGMncv/)|7.909875359539872e-07| -|cran|[RcppEigen](http://dirk.eddelbuettel.com/code/rcpp.eigen.html)|7.909875359539872e-07| -|cran|[ggwordcloud](https://github.com/lepennec/ggwordcloud)|7.909875359539872e-07| -|cran|[akmedoids](https://cran.r-project.org/package=akmedoids)|7.909875359539872e-07| -|cran|[depmixS4](https://depmix.github.io/)|7.909875359539872e-07| -|cran|GeoLight|7.909875359539872e-07| -|cran|[anomalize](https://github.com/business-science/anomalize)|7.909875359539872e-07| -|cran|[outsider](https://github.com/ropensci/outsider#readme)|7.909875359539872e-07| -|cran|[MultinomialCI](http://decsai.ugr.es/~pjvi)|7.909875359539872e-07| -|go|github.com/docker/distribution|7.757027526505204e-07| -|go|github.com/sirupsen/logrus|7.757027526505204e-07| -|go|golang.org/x/sync|7.757027526505204e-07| -|pypi|[WTForms](https://wtforms.readthedocs.io/)|7.674776286353497e-07| -|pypi|[velociraptor](https://github.com/swiftsim/velociraptor-python)|7.382550335570401e-07| -|pypi|[swiftsimio](https://github.com/swiftsim/swiftsimio)|7.382550335570401e-07| -|pypi|[iminuit](http://github.com/scikit-hep/iminuit)|7.382550335570401e-07| -|cran|[cmdfun](https://snystrom.github.io/cmdfun/)|7.382550335570401e-07| -|cran|[sjlabelled](https://strengejacke.github.io/sjlabelled/)|7.382550335570401e-07| -|cran|[qdapRegex](http://trinker.github.com/qdapRegex/)|7.382550335570401e-07| -|cran|[iotools](http://www.rforge.net/iotools)|7.382550335570401e-07| -|pypi|[pytest-lazy-fixture](https://github.com/tvorog/pytest-lazy-fixture)|7.308724832214748e-07| -|cran|[biomartr](https://docs.ropensci.org/biomartr/)|6.921140939597407e-07| -|npm|express-flash|6.921140939597329e-07| -|npm|[passport-local](https://www.passportjs.org/packages/passport-local/?utm_source=github&utm_medium=referral&utm_campaign=passport-local)|6.921140939597329e-07| -|pypi|[qcg-pilotjob](http://github.com/vecma-project/QCG-PilotJob)|6.921140939597329e-07| -|pypi|[ymmsl](https://github.com/multiscale/ymmsl-python)|6.921140939597329e-07| -|pypi|[django-tables2](https://github.com/jieter/django-tables2/)|6.921140939597329e-07| -|pypi|[keras-tuner](https://github.com/keras-team/keras-tuner)|6.921140939597329e-07| -|pypi|[flask-cors](https://github.com/corydolphin/flask-cors)|6.921140939597329e-07| -|pypi|[flask-migrate](https://github.com/miguelgrinberg/flask-migrate)|6.921140939597329e-07| -|pypi|[flask-sqlalchemy](https://github.com/pallets/flask-sqlalchemy)|6.921140939597329e-07| -|pypi|[sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils)|6.921140939597329e-07| -|pypi|[webargs](https://github.com/marshmallow-code/webargs)|6.921140939597329e-07| -|pypi|[diffeqpy](http://github.com/SciML/diffeqpy)|6.921140939597329e-07| -|pypi|[pebble](https://github.com/noxdafox/pebble)|6.921140939597329e-07| -|cran|[esquisse](https://dreamrs.github.io/esquisse/)|6.921140939597329e-07| -|cran|[ggnetwork](https://github.com/briatte/ggnetwork)|6.921140939597329e-07| -|cran|randomcoloR|6.921140939597329e-07| -|cran|[osmextract](https://docs.ropensci.org/osmextract/)|6.921140939597329e-07| -|cran|[smoothr](https://strimas.com/smoothr/)|6.921140939597329e-07| -|cran|ggnewscale|6.921140939597329e-07| -|cran|[ggpointdensity](https://github.com/LKremer/ggpointdensity)|6.921140939597329e-07| -|cran|[scattermore](https://github.com/exaexa/scattermore)|6.921140939597329e-07| -|cran|[sortable](https://rstudio.github.io/sortable/)|6.921140939597329e-07| -|cran|[BSDA](https://github.com/alanarnholt/BSDA)|6.921140939597329e-07| -|cran|[UNF](https://github.com/leeper/UNF)|6.921140939597329e-07| -|cran|[dplR](https://github.com/AndyBunn/dplR)|6.921140939597329e-07| -|cran|[lunar](http://statistics.lazaridis.eu)|6.921140939597329e-07| -|cran|[codemeta](https://github.com/cboettig/codemeta)|6.921140939597329e-07| +http://mongoc.org/ (upstream))|9.8576122672508e-07| +|cran|pbs|9.8576122672508e-07| +|cran|[keyATM](https://keyatm.github.io/keyATM/)|9.8576122672508e-07| +|cran|[irr](https://www.r-project.org)|9.8576122672508e-07| +|npm|[angular-toastr](https://github.com/Foxandxss/angular-toastr#readme)|9.8576122672508e-07| +|npm|[dialog-polyfill](https://github.com/GoogleChrome/dialog-polyfill)|9.8576122672508e-07| +|npm|[grunt-contrib-imagemin](https://github.com/gruntjs/grunt-contrib-imagemin#readme)|9.8576122672508e-07| +|npm|[material-design-lite](https://github.com/google/material-design-lite#readme)|9.8576122672508e-07| +|pypi|[django-filter](https://github.com/carltongibson/django-filter/tree/main)|9.186746987951836e-07| +|pypi|[lightkurve](https://docs.lightkurve.org)|9.036144578313322e-07| +|pypi|[k2sc](https://github.com/OxES/k2sc)|9.036144578313322e-07| +|pypi|[pyphe](https://github.com/Bahler-Lab/pyphe)|9.036144578313322e-07| +|pypi|[iScore](https://github.com/DeepRank/iScore)|9.036144578313322e-07| +|pypi|[deeprank](https://github.com/DeepRank/deeprank)|9.036144578313322e-07| +|pypi|[grpc4bmi](https://github.com/eWaterCycle/grpc4bmi)|9.036144578313322e-07| +|pypi|[cosmospectra](https://github.com/sambit-giri/cosmospectra.git)|9.036144578313322e-07| +|cran|rCAT|9.036144578313322e-07| +|cran|rje|9.036144578313322e-07| +|cran|[usefun](https://github.com/bblodfon/usefun)|9.036144578313322e-07| +|cran|[gdalUtilities](https://github.com/JoshOBrien/gdalUtilities/)|9.036144578313322e-07| +|cran|[strex](https://rorynolan.github.io/strex/)|9.036144578313322e-07| +|npm|[color-blend](https://github.com/Loilo/color-blend#readme)|9.036144578313322e-07| +|npm|[css-loader](https://github.com/webpack-contrib/css-loader)|8.94578313253012e-07| +|npm|[less-loader](https://github.com/webpack-contrib/less-loader)|8.94578313253012e-07| +|npm|[style-loader](https://github.com/webpack-contrib/style-loader)|8.94578313253012e-07| +|rubygems|[activerecord-jdbcmysql-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|8.674698795180734e-07| +|pypi|[geopy](https://github.com/geopy/geopy)|8.643419833178922e-07| +|pypi|[mcalf](https://github.com/ConorMacBride/mcalf/)|8.341056533827822e-07| +|cran|[repr](https://github.com/IRkernel/repr/)|8.341056533827822e-07| +|pypi|[healpy](http://github.com/healpy)|8.341056533827669e-07| +|pypi|[kalmus](https://github.com/KALMUS-Color-Toolkit/KALMUS)|8.341056533827669e-07| +|pypi|[transbigdata](https://github.com/ni1o1/transbigdata)|8.341056533827669e-07| +|pypi|[opencv-contrib-python-headless](https://github.com/skvark/opencv-python)|8.341056533827669e-07| +|pypi|[linuxdoc](https://github.com/return42/linuxdoc)|8.341056533827669e-07| +|cran|[pwr](https://github.com/heliosdrm/pwr)|8.341056533827669e-07| +|cran|[waiter](https://waiter.john-coene.com/)|8.341056533827669e-07| +|cran|[likert](http://jason.bryer.org/likert)|8.341056533827669e-07| +|cran|R2jags|8.341056533827669e-07| +|cran|[bib2df](https://github.com/ropensci/bib2df)|8.341056533827669e-07| +|cran|[plumber](https://www.rplumber.io)|8.341056533827669e-07| +|cran|[tictoc](https://github.com/collectivemedia/tictoc)|8.341056533827669e-07| +|npm|[aws-amplify](https://aws-amplify.github.io/)|8.341056533827619e-07| +|npm|[aws-amplify-react](https://github.com/aws-amplify/amplify-js#readme)|8.341056533827619e-07| +|pypi|[outcome](https://github.com/python-trio/outcome)|8.251290877796827e-07| +|npm|[cors](https://github.com/expressjs/cors#readme)|7.803943044906954e-07| +|pypi|[plotnine](https://github.com/has2k1/plotnine)|7.74526678141144e-07| +|pypi|[gitdb2](https://github.com/gitpython-developers/gitdb)|7.74526678141144e-07| +|pypi|[nibabel](https://nipy.org/nibabel)|7.74526678141144e-07| +|pypi|[smmap2](https://github.com/gitpython-developers/smmap)|7.74526678141144e-07| +|pypi|[kineticstoolkit](https://kineticstoolkit.uqam.ca)|7.74526678141144e-07| +|pypi|[cloudnetpy](https://github.com/actris-cloudnet/cloudnetpy)|7.74526678141144e-07| +|pypi|[cloudnetpy_qc](https://github.com/actris-cloudnet/cloudnetpy-qc)|7.74526678141144e-07| +|pypi|[rejected-article-tracker](https://github.com/sagepublishing/rejected_article_tracker_pkg)|7.74526678141144e-07| +|cran|[MultinomialCI](http://decsai.ugr.es/~pjvi)|7.74526678141144e-07| +|cran|[RcppEigen](http://dirk.eddelbuettel.com/code/rcpp.eigen.html)|7.74526678141144e-07| +|cran|[ggwordcloud](https://github.com/lepennec/ggwordcloud)|7.74526678141144e-07| +|cran|[akmedoids](https://cran.r-project.org/package=akmedoids)|7.74526678141144e-07| +|cran|[bestglm](http://www.stats.uwo.ca/faculty/aim)|7.74526678141144e-07| +|cran|[GGMncv](https://donaldrwilliams.github.io/GGMncv/)|7.74526678141144e-07| +|cran|[depmixS4](https://depmix.github.io/)|7.74526678141144e-07| +|cran|GeoLight|7.74526678141144e-07| +|cran|[outsider](https://github.com/ropensci/outsider#readme)|7.74526678141144e-07| +|cran|[anomalize](https://github.com/business-science/anomalize)|7.74526678141144e-07| +|cran|[shinyFiles](https://github.com/thomasp85/shinyFiles)|7.74526678141144e-07| +|npm|[cpx](https://github.com/mysticatea/cpx)|7.74526678141144e-07| +|npm|tls|7.74526678141144e-07| +|go|github.com/docker/distribution|7.595599790466213e-07| +|go|github.com/sirupsen/logrus|7.595599790466213e-07| +|go|golang.org/x/sync|7.595599790466213e-07| +|npm|[angular-cesium](https://github.com/articodeltd/angular-cesium#readme)|7.228915662650602e-07| +|npm|[angular2-uuid](https://github.com/wulfsolter/angular2-uuid#readme)|7.228915662650602e-07| +|npm|[cesium](http://cesium.com/cesiumjs/)|7.228915662650602e-07| +|pypi|[gobbli](https://github.com/RTIInternational/gobbli/)|7.228915662650535e-07| +|pypi|[pyrice](https://github.com/SouthGreenPlatform/PyRice)|7.228915662650535e-07| +|pypi|[trio-websocket](https://github.com/HyperionGray/trio-websocket)|7.228915662650535e-07| +|cran|[sjlabelled](https://strengejacke.github.io/sjlabelled/)|7.228915662650535e-07| +|cran|[qdapRegex](http://trinker.github.com/qdapRegex/)|7.228915662650535e-07| +|cran|[iotools](http://www.rforge.net/iotools)|7.228915662650535e-07| +|cran|[cmdfun](https://snystrom.github.io/cmdfun/)|7.228915662650535e-07| +|pypi|[pyvinecopulib](https://github.com/vinecopulib/pyvinecopulib/)|7.15662650602408e-07| +|cran|[biomartr](https://docs.ropensci.org/biomartr/)|6.777108433735029e-07| +|pypi|[django-tables2](https://github.com/jieter/django-tables2/)|6.777108433734953e-07| +|pypi|[diffeqpy](http://github.com/SciML/diffeqpy)|6.777108433734953e-07| +|pypi|[pebble](https://github.com/noxdafox/pebble)|6.777108433734953e-07| +|pypi|[qcg-pilotjob](http://github.com/vecma-project/QCG-PilotJob)|6.777108433734953e-07| +|pypi|[ymmsl](https://github.com/multiscale/ymmsl-python)|6.777108433734953e-07| +|pypi|[frites](https://github.com/brainets/frites)|6.777108433734953e-07| +|pypi|[keras-tuner](https://github.com/keras-team/keras-tuner)|6.777108433734953e-07| +|pypi|[pirecorder](https://github.com/jollejolles)|6.777108433734953e-07| +|pypi|[elmada](https://github.com/DrafProject/elmada)|6.777108433734953e-07| +|cran|[UNF](https://github.com/leeper/UNF)|6.777108433734953e-07| +|cran|[BSDA](https://github.com/alanarnholt/BSDA)|6.777108433734953e-07| +|cran|ggnewscale|6.777108433734953e-07| +|cran|[ggpointdensity](https://github.com/LKremer/ggpointdensity)|6.777108433734953e-07| +|cran|[scattermore](https://github.com/exaexa/scattermore)|6.777108433734953e-07| +|cran|[esquisse](https://dreamrs.github.io/esquisse/)|6.777108433734953e-07| +|cran|[ggnetwork](https://github.com/briatte/ggnetwork)|6.777108433734953e-07| +|cran|randomcoloR|6.777108433734953e-07| +|cran|[dplR](https://github.com/AndyBunn/dplR)|6.777108433734953e-07| +|cran|[lunar](http://statistics.lazaridis.eu)|6.777108433734953e-07| +|cran|[sortable](https://rstudio.github.io/sortable/)|6.777108433734953e-07| |cran|[rplos](https://docs.ropensci.org/rplos (website) -https://github.com/ropensci/rplos)|6.921140939597329e-07| -|cran|[microdemic](https://github.com/ropensci/microdemic (devel))|6.921140939597329e-07| -|cran|[aRxiv](https://docs.ropensci.org/aRxiv/)|6.921140939597329e-07| -|npm|[ng-bootstrap](https://github.com/valor-software/ngx-bootstrap#readme)|6.921140939597316e-07| -|go|github.com/davecgh/go-spew|6.638459293843011e-07| -|go|github.com/onsi/ginkgo|6.638459293843011e-07| -|go|github.com/onsi/gomega|6.638459293843011e-07| -|npm|[react-helmet](https://github.com/nfl/react-helmet#readme)|6.51401500197403e-07| -|npm|[root](https://github.com/mafintosh/root#readme)|6.514015001973953e-07| -|pypi|[trimesh](https://github.com/mikedh/trimesh)|6.514015001973953e-07| -|pypi|[meshcut](https://github.com/julienr/meshcut)|6.514015001973953e-07| -|pypi|[pygmsh](https://pypi.org/project/pygmsh)|6.514015001973953e-07| -|pypi|[pacopy](https://github.com/sigma-py/pacopy)|6.514015001973953e-07| -|pypi|[dmsh](https://pypi.org/project/dmsh)|6.514015001973953e-07| -|pypi|[glvis](https://github.com/glvis/pyglvis)|6.514015001973953e-07| -|cran|[leaflet.extras](https://github.com/bhaskarvk/leaflet.extras)|6.514015001973953e-07| -|cran|[slippymath](https://www.github.com/milesmcbain/slippymath)|6.514015001973953e-07| -|cran|[biwavelet](https://github.com/tgouhier/biwavelet)|6.514015001973874e-07| -|pypi|[tinydb-serialization](https://tinydb.readthedocs.org)|6.152125279642079e-07| -|pypi|[Flask-Script](http://github.com/smurfix/flask-script)|6.152125279642079e-07| -|pypi|[flask_bootstrap](http://github.com/mbr/flask-bootstrap)|6.152125279642079e-07| -|pypi|[flask-wtf](https://github.com/wtforms/flask-wtf/)|6.152125279642079e-07| -|pypi|[cellmlmanip](https://github.com/ModellingWebLab/cellmlmanip)|6.152125279642079e-07| -|pypi|[pymunk](http://www.pymunk.org)|6.152125279642079e-07| -|pypi|[Keras-Applications](https://github.com/keras-team/keras-applications)|6.152125279642079e-07| -|pypi|[Keras-Preprocessing](https://github.com/keras-team/keras-preprocessing)|6.152125279642079e-07| -|cran|[dataRetrieval](https://pubs.usgs.gov/tm/04/a10/)|6.152125279642079e-07| -|cran|[rnoaa](https://docs.ropensci.org/rnoaa/ (docs))|6.152125279642079e-07| -|cran|[uwot](https://github.com/jlmelville/uwot)|6.152125279642079e-07| -|cran|[fossil](http://matthewvavrek.com/programs-and-code/fossil/)|6.152125279642079e-07| -|cran|[FedData](https://github.com/ropensci/FedData)|6.152125279642079e-07| -|cran|minpack.lm|6.152125279642079e-07| -|cran|smoother|6.152125279642079e-07| -|cran|[ptw](https://github.com/rwehrens/ptw)|6.152125279642079e-07| -|go|github.com/bradfitz/gomemcache|6.152125279642058e-07| -|go|github.com/docker/libtrust|6.152125279642058e-07| -|go|github.com/phayes/permbits|6.152125279642058e-07| -|go|github.com/spf13/afero|6.152125279642058e-07| -|go|github.com/spf13/viper|6.152125279642058e-07| -|go|github.com/sylabs/sif|6.152125279642058e-07| -|go|github.com/vmihailenco/msgpack|6.152125279642058e-07| -|go|google.golang.org/appengine|6.152125279642058e-07| -|cran|[longitudinalData](http:www.r-project.org)|6.090604026845674e-07| -|pypi|[sos-bash](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[sos-matlab](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[sos-sas](https://github.com/vatlab/sos-sas)|5.828329212292504e-07| -|pypi|[sos-julia](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[sos-javascript](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[sos-r](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[chart-studio](https://plot.ly/python/)|5.828329212292504e-07| -|pypi|[markov-clustering](https://github.com/guyallard/markov_clustering.git)|5.828329212292504e-07| -|cran|[rvcheck](https://github.com/GuangchuangYu/rvcheck)|5.828329212292504e-07| -|cran|[turner](http://www.gastonsanchez.com)|5.828329212292504e-07| -|cran|[shinyjqui](https://github.com/yang-tang/shinyjqui)|5.828329212292504e-07| -|cran|[blocksdesign]()|5.828329212292504e-07| -|cran|shinyhelper|5.828329212292504e-07| -|cran|[bsplus](https://github.com/ijlyttle/bsplus)|5.828329212292504e-07| +https://github.com/ropensci/rplos)|6.777108433734953e-07| +|cran|[microdemic](https://github.com/ropensci/microdemic (devel))|6.777108433734953e-07| +|cran|[aRxiv](https://docs.ropensci.org/aRxiv/)|6.777108433734953e-07| +|cran|[codemeta](https://github.com/cboettig/codemeta)|6.777108433734953e-07| +|cran|[osmextract](https://docs.ropensci.org/osmextract/)|6.777108433734953e-07| +|cran|[smoothr](https://strimas.com/smoothr/)|6.777108433734953e-07| +|npm|express-flash|6.777108433734953e-07| +|npm|[passport-local](https://www.passportjs.org/packages/passport-local/?utm_source=github&utm_medium=referral&utm_campaign=passport-local)|6.777108433734953e-07| +|npm|[ng-bootstrap](https://github.com/valor-software/ngx-bootstrap#readme)|6.77710843373494e-07| +|pypi|[plato-draw](https://plato-draw.readthedocs.io/)|6.709337349397555e-07| +|go|github.com/davecgh/go-spew|6.500309538549455e-07| +|go|github.com/onsi/ginkgo|6.500309538549455e-07| +|go|github.com/onsi/gomega|6.500309538549455e-07| +|npm|[react-helmet](https://github.com/nfl/react-helmet#readme)|6.378454996456498e-07| +|pypi|[WRFpy](https://github.com/ERA-URBAN/wrfpy)|6.378454996456422e-07| +|pypi|[pygmsh](https://pypi.org/project/pygmsh)|6.378454996456422e-07| +|pypi|[pacopy](https://github.com/sigma-py/pacopy)|6.378454996456422e-07| +|pypi|[dmsh](https://pypi.org/project/dmsh)|6.378454996456422e-07| +|pypi|[glvis](https://github.com/glvis/pyglvis)|6.378454996456422e-07| +|pypi|[simsopt](https://github.com/hiddenSymmetries/simsopt)|6.378454996456422e-07| +|cran|[leaflet.extras](https://github.com/bhaskarvk/leaflet.extras)|6.378454996456422e-07| +|cran|[slippymath](https://www.github.com/milesmcbain/slippymath)|6.378454996456422e-07| +|npm|[root](https://github.com/mafintosh/root#readme)|6.378454996456422e-07| +|pypi|[pylustrator](https://github.com/rgerum/pylustrator)|6.378454996456346e-07| +|cran|[biwavelet](https://github.com/tgouhier/biwavelet)|6.378454996456346e-07| +|pypi|[Keras-Applications](https://github.com/keras-team/keras-applications)|6.024096385542189e-07| +|pypi|[Keras-Preprocessing](https://github.com/keras-team/keras-preprocessing)|6.024096385542189e-07| +|pypi|[pymunk](http://www.pymunk.org)|6.024096385542189e-07| +|pypi|[TRUNAJOD](https://github.com/dpalmasan/TRUNAJOD2.0)|6.024096385542189e-07| +|pypi|[cellmlmanip](https://github.com/ModellingWebLab/cellmlmanip)|6.024096385542189e-07| +|cran|[FedData](https://github.com/ropensci/FedData)|6.024096385542189e-07| +|cran|[uwot](https://github.com/jlmelville/uwot)|6.024096385542189e-07| +|cran|[fossil](http://matthewvavrek.com/programs-and-code/fossil/)|6.024096385542189e-07| +|cran|minpack.lm|6.024096385542189e-07| +|cran|smoother|6.024096385542189e-07| +|cran|[ptw](https://github.com/rwehrens/ptw)|6.024096385542189e-07| +|cran|[dataRetrieval](https://pubs.usgs.gov/tm/04/a10/)|6.024096385542189e-07| +|cran|[rnoaa](https://docs.ropensci.org/rnoaa/ (docs))|6.024096385542189e-07| +|npm|[nunjucks](https://github.com/mozilla/nunjucks#readme)|6.024096385542189e-07| +|npm|[xml-js](https://github.com/nashwaan/xml-js#readme)|6.024096385542189e-07| +|go|github.com/bradfitz/gomemcache|6.024096385542169e-07| +|go|github.com/docker/libtrust|6.024096385542169e-07| +|go|github.com/phayes/permbits|6.024096385542169e-07| +|go|github.com/spf13/afero|6.024096385542169e-07| +|go|github.com/spf13/viper|6.024096385542169e-07| +|go|github.com/sylabs/sif|6.024096385542169e-07| +|go|github.com/vmihailenco/msgpack|6.024096385542169e-07| +|go|google.golang.org/appengine|6.024096385542169e-07| +|cran|[longitudinalData](http:www.r-project.org)|5.963855421686783e-07| +|pypi|[sos-bash](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-matlab](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-sas](https://github.com/vatlab/sos-sas)|5.707038681039977e-07| +|pypi|[sos-julia](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-javascript](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-r](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[qmctorch](https://github.com/NLESC-JCER/QMCTorch)|5.707038681039977e-07| +|pypi|[chart-studio](https://plot.ly/python/)|5.707038681039977e-07| +|pypi|[markov-clustering](https://github.com/guyallard/markov_clustering.git)|5.707038681039977e-07| +|cran|[rvcheck](https://github.com/GuangchuangYu/rvcheck)|5.707038681039977e-07| |cran|[nabor](https://github.com/jefferis/nabor -https://github.com/ethz-asl/libnabo)|5.828329212292504e-07| -|pypi|[ratelimiter](https://github.com/RazerM/ratelimiter)|5.536912751677879e-07| -|pypi|[yte](https://github.com/koesterlab/yte)|5.536912751677879e-07| -|pypi|[retry](https://github.com/invl/retry)|5.536912751677879e-07| -|cran|[sensitivity](NA)|5.536912751677879e-07| -|cran|[EasyABC](http://easyabc.r-forge.r-project.org/)|5.536912751677879e-07| -|cran|[summarytools](https://github.com/dcomtois/summarytools)|5.273250239693222e-07| -|cran|[pastecs](https://github.com/phgrosjean/pastecs)|5.273250239693222e-07| -|cran|[desplot](https://kwstat.github.io/desplot/)|5.273250239693222e-07| -|cran|[agricolae](http://tarwi.lamolina.edu.pe/~fmendiburu)|5.273250239693222e-07| -|cran|PairedData|5.273250239693222e-07| -|go|github.com/antchfx/jsonquery|5.033557046979866e-07| -|go|github.com/bhmj/jsonslice|5.033557046979866e-07| -|go|github.com/codegangsta/negroni|5.033557046979866e-07| -|go|github.com/evanphx/json-patch/v5|5.033557046979866e-07| -|go|github.com/gorilla/context|5.033557046979866e-07| -|go|github.com/grandcat/zeroconf|5.033557046979866e-07| -|go|github.com/justinas/alice|5.033557046979866e-07| -|go|github.com/kelseyhightower/envconfig|5.033557046979866e-07| -|go|github.com/linksmart/go-sec|5.033557046979866e-07| -|go|github.com/linksmart/service-catalog/v3|5.033557046979866e-07| -|go|github.com/miekg/dns|5.033557046979866e-07| -|go|github.com/rs/cors|5.033557046979866e-07| -|go|github.com/satori/go.uuid|5.033557046979866e-07| -|go|github.com/syndtr/goleveldb|5.033557046979866e-07| -|go|github.com/xeipuuv/gojsonschema|5.033557046979866e-07| -|pypi|[duecredit](https://github.com/duecredit/duecredit)|5.033557046979855e-07| -|pypi|[GromacsWrapper](https://github.com/Becksteinlab/GromacsWrapper)|5.033557046979855e-07| -|pypi|[heat](https://github.com/helmholtz-analytics/heat)|5.033557046979855e-07| -|cran|harmonicmeanp|5.033557046979855e-07| -|cran|NBPSeq|5.033557046979855e-07| -|cran|[rmdformats](https://github.com/juba/rmdformats)|5.033557046979855e-07| -|pypi|[typing-utils](https://github.com/bojiang/typing_utils)|4.983221476510083e-07| -|cran|[dams](https://github.com/jsta/dams)|4.814706740589413e-07| -|cran|[reservoir](https://cran.r-project.org/package=reservoir)|4.814706740589413e-07| -|cran|[DescTools](https://andrisignorell.github.io/DescTools/)|4.814706740589413e-07| -|cran|[coloc](https://github.com/chr1swallace/coloc)|4.814706740589413e-07| -|npm|[bcryptjs](https://github.com/dcodeIO/bcrypt.js#readme)|4.614093959731579e-07| -|npm|[hypertimer](https://github.com/enmasseio/hypertimer#readme)|4.614093959731579e-07| -|npm|[jwt-simple](https://github.com/hokaccha/node-jwt-simple#readme)|4.614093959731579e-07| -|npm|[kafka-node](https://github.com/SOHU-Co/kafka-node#readme)|4.614093959731579e-07| -|npm|[mqtt-router](https://github.com/wolfeidau/mqtt-router)|4.614093959731579e-07| -|pypi|[PyQt6](https://www.riverbankcomputing.com/software/pyqt/)|4.614093959731579e-07| -|pypi|[Pyside6](https://www.pyside.org)|4.614093959731579e-07| -|pypi|[pyqtgraph](http://www.pyqtgraph.org)|4.614093959731579e-07| -|pypi|[PyQtWebEngine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.614093959731579e-07| -|cran|[ucminf](NA)|4.567953020134256e-07| -|pypi|[pyrfc3339](https://github.com/kurtraschke/pyRFC3339)|4.5222734899328963e-07| -|rubygems|[net-ldap](http://github.com/ruby-ldap/ruby-net-ldap)|4.4295302013423654e-07| -|pypi|[applaunchservices](https://github.com/impact27/applaunchservices)|4.4295302013422876e-07| -|pypi|[python-lsp-black](https://github.com/python-lsp/python-lsp-black)|4.4295302013422876e-07| -|pypi|[pyls-spyder](https://github.com/spyder-ide/pyls-spyder)|4.4295302013422876e-07| -|pypi|[pyqtwebengine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.4295302013422876e-07| -|rubygems|[rack-openid](https://github.com/grosser/rack-openid)|4.4295302013422876e-07| -|rubygems|[activerecord-jdbcpostgresql-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|4.4295302013422876e-07| -|rubygems|[activerecord-jdbcsqlite3-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|4.4295302013422876e-07| -|rubygems|[tiny_tds](http://github.com/rails-sqlserver/tiny_tds)|4.4295302013422876e-07| -|rubygems|[shoulda](https://github.com/thoughtbot/shoulda)|4.4295302013422876e-07| -|rubygems|[capybara](https://github.com/teamcapybara/capybara)|4.4295302013422876e-07| -|pypi|[amqp](http://github.com/celery/py-amqp)|4.276156613578519e-07| -|pypi|[empyre](https://iffgit.fz-juelich.de/empyre/empyre)|4.259163655136913e-07| -|npm|[benchmark](https://benchmarkjs.com/)|4.259163655136836e-07| -|npm|[binary-split](https://github.com/maxogden/binary-split#readme)|4.259163655136836e-07| -|npm|[download](https://github.com/kevva/download#readme)|4.259163655136836e-07| -|npm|[ftp](https://github.com/mscdex/node-ftp)|4.259163655136836e-07| -|npm|[ndjson](https://github.com/ndjson/ndjson.js)|4.259163655136836e-07| -|npm|pipeline|4.259163655136836e-07| -|pypi|[ncempy](https://github.com/ercius/openNCEM)|4.259163655136836e-07| -|pypi|[fspath](https://github.com/return42/fspath)|4.216572018585473e-07| -|go|github.com/containernetworking/cni|4.180210503457495e-07| -|go|github.com/containernetworking/plugins|4.180210503457495e-07| -|go|github.com/containers/common|4.180210503457495e-07| -|go|github.com/containers/image/v5|4.180210503457495e-07| -|go|github.com/cyphar/filepath-securejoin|4.180210503457495e-07| -|go|github.com/docker/docker|4.180210503457495e-07| -|go|github.com/google/uuid|4.180210503457495e-07| -|go|github.com/moby/term|4.180210503457495e-07| -|go|github.com/opencontainers/runc|4.180210503457495e-07| -|go|github.com/opencontainers/runtime-spec|4.180210503457495e-07| -|go|github.com/opencontainers/runtime-tools|4.180210503457495e-07| -|go|github.com/opencontainers/selinux|4.180210503457495e-07| -|go|github.com/pkg/errors|4.180210503457495e-07| -|go|github.com/spf13/pflag|4.180210503457495e-07| -|go|gopkg.in/yaml.v2|4.180210503457495e-07| -|npm|[filesaver](https://github.com/jacoborus/node-filesaver)|4.101416853094719e-07| -|cran|[audio](http://www.rforge.net/audio/)|3.915388302972175e-07| -|pypi|[sphinxcontrib-spelling](https://github.com/sphinx-contrib/spelling)|3.572201775276051e-07| -|pypi|[yatiml](https://github.com/yatiml/yatiml)|3.425964765100692e-07| -|pypi|[nixio](https://github.com/G-Node/nixpy)|3.425964765100692e-07| -|npm|[d3-v4-grid](https://github.com/finnfiddle/d3-v4-grid#readme)|3.3557046979865957e-07| -|npm|[errorhandler](https://github.com/expressjs/errorhandler#readme)|3.3557046979865957e-07| -|npm|[parallelshell](https://github.com/darkguy2008/parallelshell)|3.3557046979865957e-07| -|npm|[save-svg-as-png](https://github.com/exupero/saveSvgAsPng)|3.3557046979865957e-07| -|npm|[url](https://github.com/defunctzombie/node-url#readme)|3.3557046979865957e-07| -|npm|[method-override](https://github.com/expressjs/method-override#readme)|3.355704697986557e-07| -|npm|[dedent](https://github.com/dmnd/dedent)|3.132310642377771e-07| -|pypi|[tox-pyenv](https://github.com/samstav/tox-pyenv)|3.045302013422837e-07| -|npm|[jsx-to-string](https://github.com/alansouzati/jsx-to-string#readme)|2.914164606146252e-07| -|npm|[pretty-checkbox](https://lokesh-coder.github.io/pretty-checkbox)|2.914164606146252e-07| -|pypi|[convertdate](https://github.com/fitnr/convertdate)|2.74077181208053e-07| -|go|github.com/Netflix/go-expect|2.57530825659435e-07| -|go|github.com/ProtonMail/go-crypto|2.57530825659435e-07| -|go|github.com/adigunhammedolalekan/registry-auth|2.57530825659435e-07| -|go|github.com/apex/log|2.57530825659435e-07| -|go|github.com/blang/semver/v4|2.57530825659435e-07| -|go|github.com/buger/jsonparser|2.57530825659435e-07| -|go|github.com/containerd/containerd|2.57530825659435e-07| -|go|github.com/fatih/color|2.57530825659435e-07| -|go|github.com/go-log/log|2.57530825659435e-07| -|go|github.com/gosimple/slug|2.57530825659435e-07| -|go|github.com/opencontainers/umoci|2.57530825659435e-07| -|go|github.com/pelletier/go-toml|2.57530825659435e-07| -|go|github.com/seccomp/libseccomp-golang|2.57530825659435e-07| -|go|github.com/sylabs/json-resp|2.57530825659435e-07| -|go|github.com/sylabs/scs-build-client|2.57530825659435e-07| -|go|github.com/sylabs/scs-key-client|2.57530825659435e-07| -|go|github.com/sylabs/scs-library-client|2.57530825659435e-07| -|go|github.com/sylabs/sif/v2|2.57530825659435e-07| -|go|github.com/vbauerster/mpb/v4|2.57530825659435e-07| -|go|github.com/vbauerster/mpb/v6|2.57530825659435e-07| -|go|golang.org/x/term|2.57530825659435e-07| -|go|gotest.tools/v3|2.57530825659435e-07| -|go|mvdan.cc/sh/v3|2.57530825659435e-07| -|go|oras.land/oras-go|2.57530825659435e-07| -|pypi|[spacy-transformers](https://spacy.io)|2.549555174028418e-07| -|pypi|[django-datatables-view](https://bitbucket.org/pigletto/django-datatables-view)|2.460850111856839e-07| -|pypi|[django-dirtyfields](https://github.com/romgar/django-dirtyfields)|2.460850111856839e-07| -|pypi|[django-guardian](http://github.com/django-guardian/django-guardian)|2.460850111856839e-07| -|pypi|[django-notifications-hq](http://github.com/django-notifications/django-notifications)|2.460850111856839e-07| -|pypi|[django-rq](https://github.com/rq/django-rq)|2.460850111856839e-07| -|pypi|[django-user-agents](https://github.com/selwin/django-user_agents)|2.460850111856839e-07| -|pypi|[google](http://breakingcode.wordpress.com/)|2.460850111856839e-07| -|rubygems|[coffee-rails](https://github.com/rails/coffee-rails)|2.2599643884399465e-07| -|rubygems|[fastimage](http://github.com/sdsykes/fastimage)|2.2599643884399465e-07| -|rubygems|[image_processing](https://github.com/janko/image_processing)|2.2599643884399465e-07| -|rubygems|[jquery-rails](https://github.com/rails/jquery-rails)|2.2599643884399465e-07| -|rubygems|[rotp](https://github.com/mdp/rotp)|2.2599643884399465e-07| -|rubygems|[sass-rails](https://github.com/rails/sass-rails)|2.2599643884399465e-07| -|rubygems|[tzinfo-data](https://tzinfo.github.io)|2.2599643884399465e-07| -|rubygems|[reverse_markdown](http://github.com/xijo/reverse_markdown)|2.2599643884399465e-07| -|rubygems|[groupdate](https://github.com/ankane/groupdate)|2.2599643884399465e-07| -|rubygems|[diffy](http://github.com/samg/diffy)|2.2599643884399465e-07| -|rubygems|[jbuilder](https://github.com/rails/jbuilder)|2.2599643884399465e-07| -|rubygems|[rqrcode](https://github.com/whomwah/rqrcode)|2.2599643884399465e-07| -|rubygems|[will_paginate-bootstrap](https://github.com/bootstrap-ruby/will_paginate-bootstrap)|2.2599643884399465e-07| -|rubygems|[aws-sdk-s3](https://github.com/aws/aws-sdk-ruby)|2.2599643884399465e-07| -|rubygems|[whenever](https://github.com/javan/whenever)|2.2599643884399465e-07| -|rubygems|[flamegraph](https://github.com/SamSaffron/flamegraph)|2.2599643884399465e-07| -|rubygems|[rack-mini-profiler](https://miniprofiler.com)|2.2599643884399465e-07| -|rubygems|[thwait](https://github.com/ruby/thwait)|2.2599643884399465e-07| -|rubygems|[rmagick](https://github.com/rmagick/rmagick)|2.2599643884399465e-07| -|rubygems|[minitest-ci](https://github.com/circleci/minitest-ci)|2.2599643884399465e-07| -|rubygems|[spring](https://github.com/rails/spring)|2.2599643884399465e-07| -|rubygems|[web-console](https://github.com/rails/web-console)|2.2599643884399465e-07| -|rubygems|[counter_culture](https://github.com/magnusvk/counter_culture)|2.2599643884399078e-07| -|rubygems|[rails-html-sanitizer](https://github.com/rails/rails-html-sanitizer)|2.2599643884399078e-07| -|rubygems|[devise](https://github.com/heartcombo/devise)|2.2599643884399078e-07| -|rubygems|[omniauth](https://github.com/omniauth/omniauth)|2.2599643884399078e-07| -|rubygems|[premailer-rails](https://github.com/fphilipe/premailer-rails)|2.2599643884399078e-07| -|rubygems|[rails-controller-testing](https://github.com/rails/rails-controller-testing)|2.2599643884399078e-07| -|rubygems|[letter_opener_web](https://github.com/fgrehm/letter_opener_web)|2.2599643884399078e-07| -|cran|[enviPick](NA)|2.2147651006711438e-07| -|npm|[abbrev](https://github.com/isaacs/abbrev-js#readme)|1.8769195768399622e-07| -|npm|[aproba](https://github.com/iarna/aproba)|1.8769195768399622e-07| -|npm|[chownr](https://github.com/isaacs/chownr#readme)|1.8769195768399622e-07| -|npm|concat-map|1.8769195768399622e-07| -|npm|[console-control-strings](https://github.com/iarna/console-control-strings#readme)|1.8769195768399622e-07| -|npm|[deep-extend](https://github.com/unclechu/node-deep-extend)|1.8769195768399622e-07| -|pypi|[pytest-param-files](https://pypi.org/project/pytest-param-files)|1.661073825503348e-07| -|go|github.com/BurntSushi/toml|1.6049022468631456e-07| -|go|github.com/blang/semver|1.6049022468631456e-07| -|go|github.com/buger/goterm|1.6049022468631456e-07| -|go|github.com/checkpoint-restore/checkpointctl|1.6049022468631456e-07| -|go|github.com/checkpoint-restore/go-criu/v5|1.6049022468631456e-07| -|go|github.com/container-orchestrated-devices/container-device-interface|1.6049022468631456e-07| -|go|github.com/containers/buildah|1.6049022468631456e-07| -|go|github.com/containers/conmon|1.6049022468631456e-07| -|go|github.com/containers/ocicrypt|1.6049022468631456e-07| -|go|github.com/containers/psgo|1.6049022468631456e-07| -|go|github.com/containers/storage|1.6049022468631456e-07| -|go|github.com/coreos/go-systemd/v22|1.6049022468631456e-07| -|go|github.com/coreos/stream-metadata-go|1.6049022468631456e-07| -|go|github.com/digitalocean/go-qemu|1.6049022468631456e-07| -|go|github.com/docker/go-connections|1.6049022468631456e-07| -|go|github.com/docker/go-plugins-helpers|1.6049022468631456e-07| -|go|github.com/docker/go-units|1.6049022468631456e-07| -|go|github.com/dtylman/scp|1.6049022468631456e-07| -|go|github.com/fsnotify/fsnotify|1.6049022468631456e-07| -|go|github.com/ghodss/yaml|1.6049022468631456e-07| -|go|github.com/godbus/dbus/v5|1.6049022468631456e-07| -|go|github.com/google/gofuzz|1.6049022468631456e-07| -|go|github.com/google/shlex|1.6049022468631456e-07| -|go|github.com/gorilla/handlers|1.6049022468631456e-07| -|go|github.com/gorilla/schema|1.6049022468631456e-07| -|go|github.com/hashicorp/go-multierror|1.6049022468631456e-07| -|go|github.com/json-iterator/go|1.6049022468631456e-07| -|go|github.com/mattn/go-isatty|1.6049022468631456e-07| -|go|github.com/mrunalp/fileutils|1.6049022468631456e-07| -|go|github.com/nxadm/tail|1.6049022468631456e-07| -|go|github.com/pmezard/go-difflib|1.6049022468631456e-07| -|go|github.com/rootless-containers/rootlesskit|1.6049022468631456e-07| -|go|github.com/stretchr/testify|1.6049022468631456e-07| -|go|github.com/syndtr/gocapability|1.6049022468631456e-07| -|go|github.com/uber/jaeger-client-go|1.6049022468631456e-07| -|go|github.com/ulikunitz/xz|1.6049022468631456e-07| -|go|github.com/vbauerster/mpb/v7|1.6049022468631456e-07| -|go|github.com/vishvananda/netlink|1.6049022468631456e-07| -|go|go.etcd.io/bbolt|1.6049022468631456e-07| -|go|golang.org/x/text|1.6049022468631456e-07| -|go|google.golang.org/protobuf|1.6049022468631456e-07| -|go|gopkg.in/inf.v0|1.6049022468631456e-07| -|pypi|[scikit-misc](https://github.com/has2k1/scikit-misc)|1.5661553211888854e-07| -|pypi|[django-timezone-field](https://github.com/mfogel/django-timezone-field/)|1.5596937328669952e-07| -|pypi|[firebase-admin](https://firebase.google.com/docs/admin/setup/)|1.5596937328669952e-07| -|pypi|[sphinx-click](https://github.com/stephenfin/sphinx-click)|1.5226510067114186e-07| -|pypi|[watermark](https://github.com/rasbt/watermark)|1.0963087248322238e-07| -|npm|text-table|1.0541430046463682e-07| -|npm|[utfx](https://github.com/dcodeIO/utfx)|9.135906040268434e-08| -|pypi|[xattr](http://github.com/xattr/xattr)|7.027620030975756e-08| -|pypi|[skia-pathops](https://github.com/fonttools/skia-pathops)|7.027620030975756e-08| -|pypi|[zopfli](https://github.com/fonttools/py-zopfli)|7.027620030975756e-08| -|cran|[uroot](https://jalobe.com)|6.809370961690815e-08| -|pypi|[sphinx-toggleprompt](https://github.com/jurasofish/sphinx-toggleprompt)|4.894235378715219e-08| -|npm|[babel-plugin-transform-remove-undefined](https://github.com/babel/minify#readme)|1.6853193130184607e-08| -|npm|[babel-plugin-transform-property-literals](https://github.com/babel/minify#readme)|1.6853193130184607e-08| -|npm|[babel-plugin-minify-type-constructors](https://github.com/babel/minify#readme)|1.6853193130184607e-08| +https://github.com/ethz-asl/libnabo)|5.707038681039977e-07| +|cran|shinyhelper|5.707038681039977e-07| +|cran|[bsplus](https://github.com/ijlyttle/bsplus)|5.707038681039977e-07| +|cran|[turner](http://www.gastonsanchez.com)|5.707038681039977e-07| +|cran|[shinyjqui](https://github.com/yang-tang/shinyjqui)|5.707038681039977e-07| +|cran|[blocksdesign]()|5.707038681039977e-07| +|cran|[sensitivity](NA)|5.421686746987978e-07| +|cran|[EasyABC](http://easyabc.r-forge.r-project.org/)|5.421686746987978e-07| +|pypi|[rsudp](https://github.com/raspishake/rsudp)|5.163511187607602e-07| +|cran|[summarytools](https://github.com/dcomtois/summarytools)|5.163511187607602e-07| +|cran|[pastecs](https://github.com/phgrosjean/pastecs)|5.163511187607602e-07| +|cran|[desplot](https://kwstat.github.io/desplot/)|5.163511187607602e-07| +|cran|[agricolae](http://tarwi.lamolina.edu.pe/~fmendiburu)|5.163511187607602e-07| +|cran|PairedData|5.163511187607602e-07| +|go|github.com/antchfx/jsonquery|4.928806133625411e-07| +|go|github.com/bhmj/jsonslice|4.928806133625411e-07| +|go|github.com/codegangsta/negroni|4.928806133625411e-07| +|go|github.com/evanphx/json-patch/v5|4.928806133625411e-07| +|go|github.com/gorilla/context|4.928806133625411e-07| +|go|github.com/grandcat/zeroconf|4.928806133625411e-07| +|go|github.com/justinas/alice|4.928806133625411e-07| +|go|github.com/kelseyhightower/envconfig|4.928806133625411e-07| +|go|github.com/linksmart/go-sec|4.928806133625411e-07| +|go|github.com/linksmart/service-catalog/v3|4.928806133625411e-07| +|go|github.com/miekg/dns|4.928806133625411e-07| +|go|github.com/rs/cors|4.928806133625411e-07| +|go|github.com/satori/go.uuid|4.928806133625411e-07| +|go|github.com/syndtr/goleveldb|4.928806133625411e-07| +|go|github.com/xeipuuv/gojsonschema|4.928806133625411e-07| +|pypi|[starry-process](https://github.com/rodluger/starry_process)|4.9288061336254e-07| +|cran|harmonicmeanp|4.9288061336254e-07| +|cran|NBPSeq|4.9288061336254e-07| +|cran|[rmdformats](https://github.com/juba/rmdformats)|4.9288061336254e-07| +|pypi|[typing-utils](https://github.com/bojiang/typing_utils)|4.879518072289172e-07| +|cran|[DescTools](https://andrisignorell.github.io/DescTools/)|4.7145102147721085e-07| +|cran|[coloc](https://github.com/chr1swallace/coloc)|4.7145102147721085e-07| +|cran|[dams](https://github.com/jsta/dams)|4.7145102147721085e-07| +|cran|[reservoir](https://cran.r-project.org/package=reservoir)|4.7145102147721085e-07| +|pypi|[yte](https://github.com/koesterlab/yte)|4.518072289156661e-07| +|pypi|[ratelimiter](https://github.com/RazerM/ratelimiter)|4.518072289156661e-07| +|pypi|[retry](https://github.com/invl/retry)|4.518072289156661e-07| +|pypi|[swiftemulator](https://github.com/SWIFTSIM/emulator)|4.518072289156661e-07| +|pypi|[PyQt6](https://www.riverbankcomputing.com/software/pyqt/)|4.518072289156661e-07| +|pypi|[Pyside6](https://www.pyside.org)|4.518072289156661e-07| +|pypi|[pyqtgraph](http://www.pyqtgraph.org)|4.518072289156661e-07| +|pypi|[PyQtWebEngine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.518072289156661e-07| +|npm|[bcryptjs](https://github.com/dcodeIO/bcrypt.js#readme)|4.518072289156661e-07| +|npm|[hypertimer](https://github.com/enmasseio/hypertimer#readme)|4.518072289156661e-07| +|npm|[jwt-simple](https://github.com/hokaccha/node-jwt-simple#readme)|4.518072289156661e-07| +|npm|[kafka-node](https://github.com/SOHU-Co/kafka-node#readme)|4.518072289156661e-07| +|npm|[mqtt-router](https://github.com/wolfeidau/mqtt-router)|4.518072289156661e-07| +|cran|[ucminf](NA)|4.4728915662650875e-07| +|pypi|[empyre](https://iffgit.fz-juelich.de/empyre/empyre)|4.337349397590443e-07| +|rubygems|[net-ldap](http://github.com/ruby-ldap/ruby-net-ldap)|4.337349397590443e-07| +|pypi|[applaunchservices](https://github.com/impact27/applaunchservices)|4.337349397590367e-07| +|pypi|[python-lsp-black](https://github.com/python-lsp/python-lsp-black)|4.337349397590367e-07| +|pypi|[pyls-spyder](https://github.com/spyder-ide/pyls-spyder)|4.337349397590367e-07| +|pypi|[pyqtwebengine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.337349397590367e-07| +|pypi|[ncempy](https://github.com/ercius/openNCEM)|4.337349397590367e-07| +|pypi|[atlite](https://github.com/PyPSA/atlite)|4.337349397590367e-07| +|rubygems|[i18n](https://github.com/ruby-i18n/i18n)|4.337349397590367e-07| +|rubygems|[rack-openid](https://github.com/grosser/rack-openid)|4.337349397590367e-07| +|rubygems|[activerecord-jdbcpostgresql-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|4.337349397590367e-07| +|rubygems|[activerecord-jdbcsqlite3-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|4.337349397590367e-07| +|rubygems|[tiny_tds](http://github.com/rails-sqlserver/tiny_tds)|4.337349397590367e-07| +|rubygems|[shoulda](https://github.com/thoughtbot/shoulda)|4.337349397590367e-07| +|rubygems|[capybara](https://github.com/teamcapybara/capybara)|4.337349397590367e-07| +|pypi|[amqp](http://github.com/celery/py-amqp)|4.187167593142602e-07| +|pypi|[python-box](https://github.com/cdgriffith/Box)|4.1705282669138347e-07| +|npm|[benchmark](https://benchmarkjs.com/)|4.1705282669138347e-07| +|npm|[binary-split](https://github.com/maxogden/binary-split#readme)|4.1705282669138347e-07| +|npm|[download](https://github.com/kevva/download#readme)|4.1705282669138347e-07| +|npm|[ftp](https://github.com/mscdex/node-ftp)|4.1705282669138347e-07| +|npm|[ndjson](https://github.com/ndjson/ndjson.js)|4.1705282669138347e-07| +|npm|pipeline|4.1705282669138347e-07| +|pypi|[fspath](https://github.com/return42/fspath)|4.128822984244702e-07| +|go|github.com/containernetworking/cni|4.0932181709649515e-07| +|go|github.com/containernetworking/plugins|4.0932181709649515e-07| +|go|github.com/containers/common|4.0932181709649515e-07| +|go|github.com/containers/image/v5|4.0932181709649515e-07| +|go|github.com/cyphar/filepath-securejoin|4.0932181709649515e-07| +|go|github.com/docker/docker|4.0932181709649515e-07| +|go|github.com/google/uuid|4.0932181709649515e-07| +|go|github.com/moby/term|4.0932181709649515e-07| +|go|github.com/opencontainers/runc|4.0932181709649515e-07| +|go|github.com/opencontainers/runtime-spec|4.0932181709649515e-07| +|go|github.com/opencontainers/runtime-tools|4.0932181709649515e-07| +|go|github.com/opencontainers/selinux|4.0932181709649515e-07| +|go|github.com/pkg/errors|4.0932181709649515e-07| +|go|github.com/spf13/pflag|4.0932181709649515e-07| +|go|gopkg.in/yaml.v2|4.0932181709649515e-07| +|pypi|[geobo](https://github.com/sebhaan/geobo)|4.0160642570281263e-07| +|pypi|[scikit_image](https://scikit-image.org)|4.0160642570281263e-07| +|npm|[filesaver](https://github.com/jacoborus/node-filesaver)|4.0160642570281263e-07| +|pypi|[webargs](https://github.com/marshmallow-code/webargs)|3.87263339070572e-07| +|pypi|[flask-cors](https://github.com/corydolphin/flask-cors)|3.87263339070572e-07| +|pypi|[flask-migrate](https://github.com/miguelgrinberg/flask-migrate)|3.87263339070572e-07| +|pypi|[flask-sqlalchemy](https://github.com/pallets/flask-sqlalchemy)|3.87263339070572e-07| +|pypi|[sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils)|3.87263339070572e-07| +|npm|[zeit](https://github.com/daviddenton/zeit#readme)|3.87263339070572e-07| +|cran|[audio](http://www.rforge.net/audio/)|3.833907056798603e-07| +|pypi|[epimargin](https://github.com/COVID-IWG/epimargin)|3.739094308267568e-07| +|npm|[sendgrid](https://sendgrid.com)|3.675719828466432e-07| +|npm|[stoplight](https://github.com/andrewhao/stoplight)|3.675719828466432e-07| +|npm|[cache-manager-redis-store](https://github.com/dabroek/node-cache-manager-redis-store#readme)|3.675719828466432e-07| +|npm|[cron](https://github.com/kelektiv/node-cron#readme)|3.675719828466432e-07| +|npm|[email-validator](http://github.com/manishsaraan/email-validator)|3.675719828466432e-07| +|pypi|[sphinxcontrib-spelling](https://github.com/sphinx-contrib/spelling)|3.3885542168674765e-07| +|pypi|[nixio](https://github.com/G-Node/nixpy)|3.3546686746988156e-07| +|npm|[tap-spec](https://github.com/scottcorgan/tap-spec#readme)|3.3546686746988156e-07| +|npm|[d3-v4-grid](https://github.com/finnfiddle/d3-v4-grid#readme)|3.285870755750292e-07| +|npm|[errorhandler](https://github.com/expressjs/errorhandler#readme)|3.285870755750292e-07| +|npm|[parallelshell](https://github.com/darkguy2008/parallelshell)|3.285870755750292e-07| +|npm|[save-svg-as-png](https://github.com/exupero/saveSvgAsPng)|3.285870755750292e-07| +|npm|[url](https://github.com/defunctzombie/node-url#readme)|3.285870755750292e-07| +|npm|[method-override](https://github.com/expressjs/method-override#readme)|3.285870755750254e-07| +|pypi|[reorientexpress](https://github.com/angelrure/reorientexpress)|3.189227498228211e-07| +|npm|[dedent](https://github.com/dmnd/dedent)|3.0671256454389125e-07| +|pypi|[tox-pyenv](https://github.com/samstav/tox-pyenv)|2.9819277108433917e-07| +|npm|[jsx-to-string](https://github.com/alansouzati/jsx-to-string#readme)|2.8535193405199885e-07| +|npm|[pretty-checkbox](https://lokesh-coder.github.io/pretty-checkbox)|2.8535193405199885e-07| +|pypi|[ukbcc](https://github.com/tool-bin/ukbcc/)|2.7803521779425314e-07| +|pypi|[flask_bootstrap](http://github.com/mbr/flask-bootstrap)|2.7803521779425314e-07| +|pypi|[Flask-Script](http://github.com/smurfix/flask-script)|2.7803521779425314e-07| +|pypi|[flask-wtf](https://github.com/wtforms/flask-wtf/)|2.7803521779425314e-07| +|pypi|[tinydb-serialization](https://tinydb.readthedocs.org)|2.7803521779425314e-07| +|pypi|[vflow](https://github.com/Yu-Group/pcs-pipeline)|2.710843373493989e-07| +|pypi|[pytest-datadir-ng](https://github.com/Tblue/pytest-datadir-ng)|2.6837349397590295e-07| +|pypi|[convertdate](https://github.com/fitnr/convertdate)|2.6837349397590295e-07| +|pypi|[cellocity](https://github.com/oftatkofta/cellocity)|2.644725242433119e-07| +|pypi|[deeplc](http://compomics.github.io/projects/DeepLC)|2.581755593803801e-07| +|pypi|[desk](https://github.com/s-goldman/Dusty_Evolved_Star_Kit)|2.5217147660409084e-07| +|go|github.com/Netflix/go-expect|2.521714766040908e-07| +|go|github.com/ProtonMail/go-crypto|2.521714766040908e-07| +|go|github.com/adigunhammedolalekan/registry-auth|2.521714766040908e-07| +|go|github.com/apex/log|2.521714766040908e-07| +|go|github.com/blang/semver/v4|2.521714766040908e-07| +|go|github.com/buger/jsonparser|2.521714766040908e-07| +|go|github.com/containerd/containerd|2.521714766040908e-07| +|go|github.com/fatih/color|2.521714766040908e-07| +|go|github.com/go-log/log|2.521714766040908e-07| +|go|github.com/gosimple/slug|2.521714766040908e-07| +|go|github.com/opencontainers/umoci|2.521714766040908e-07| +|go|github.com/pelletier/go-toml|2.521714766040908e-07| +|go|github.com/seccomp/libseccomp-golang|2.521714766040908e-07| +|go|github.com/sylabs/json-resp|2.521714766040908e-07| +|go|github.com/sylabs/scs-build-client|2.521714766040908e-07| +|go|github.com/sylabs/scs-key-client|2.521714766040908e-07| +|go|github.com/sylabs/scs-library-client|2.521714766040908e-07| +|go|github.com/sylabs/sif/v2|2.521714766040908e-07| +|go|github.com/vbauerster/mpb/v4|2.521714766040908e-07| +|go|github.com/vbauerster/mpb/v6|2.521714766040908e-07| +|go|golang.org/x/term|2.521714766040908e-07| +|go|gotest.tools/v3|2.521714766040908e-07| +|go|mvdan.cc/sh/v3|2.521714766040908e-07| +|go|oras.land/oras-go|2.521714766040908e-07| +|pypi|[django-datatables-view](https://bitbucket.org/pigletto/django-datatables-view)|2.4096385542168833e-07| +|pypi|[django-dirtyfields](https://github.com/romgar/django-dirtyfields)|2.4096385542168833e-07| +|pypi|[django-guardian](http://github.com/django-guardian/django-guardian)|2.4096385542168833e-07| +|pypi|[django-notifications-hq](http://github.com/django-notifications/django-notifications)|2.4096385542168833e-07| +|pypi|[django-rq](https://github.com/rq/django-rq)|2.4096385542168833e-07| +|pypi|[django-user-agents](https://github.com/selwin/django-user_agents)|2.4096385542168833e-07| +|pypi|[google](http://breakingcode.wordpress.com/)|2.4096385542168833e-07| +|rubygems|[coffee-rails](https://github.com/rails/coffee-rails)|2.2129333661175382e-07| +|rubygems|[fastimage](http://github.com/sdsykes/fastimage)|2.2129333661175382e-07| +|rubygems|[image_processing](https://github.com/janko/image_processing)|2.2129333661175382e-07| +|rubygems|[jquery-rails](https://github.com/rails/jquery-rails)|2.2129333661175382e-07| +|rubygems|[rotp](https://github.com/mdp/rotp)|2.2129333661175382e-07| +|rubygems|[sass-rails](https://github.com/rails/sass-rails)|2.2129333661175382e-07| +|rubygems|[tzinfo-data](https://tzinfo.github.io)|2.2129333661175382e-07| +|rubygems|[reverse_markdown](http://github.com/xijo/reverse_markdown)|2.2129333661175382e-07| +|rubygems|[groupdate](https://github.com/ankane/groupdate)|2.2129333661175382e-07| +|rubygems|[diffy](http://github.com/samg/diffy)|2.2129333661175382e-07| +|rubygems|[jbuilder](https://github.com/rails/jbuilder)|2.2129333661175382e-07| +|rubygems|[rqrcode](https://github.com/whomwah/rqrcode)|2.2129333661175382e-07| +|rubygems|[will_paginate-bootstrap](https://github.com/bootstrap-ruby/will_paginate-bootstrap)|2.2129333661175382e-07| +|rubygems|[aws-sdk-s3](https://github.com/aws/aws-sdk-ruby)|2.2129333661175382e-07| +|rubygems|[whenever](https://github.com/javan/whenever)|2.2129333661175382e-07| +|rubygems|[flamegraph](https://github.com/SamSaffron/flamegraph)|2.2129333661175382e-07| +|rubygems|[rack-mini-profiler](https://miniprofiler.com)|2.2129333661175382e-07| +|rubygems|[thwait](https://github.com/ruby/thwait)|2.2129333661175382e-07| +|rubygems|[rmagick](https://github.com/rmagick/rmagick)|2.2129333661175382e-07| +|rubygems|[minitest-ci](https://github.com/circleci/minitest-ci)|2.2129333661175382e-07| +|rubygems|[spring](https://github.com/rails/spring)|2.2129333661175382e-07| +|rubygems|[web-console](https://github.com/rails/web-console)|2.2129333661175382e-07| +|rubygems|[counter_culture](https://github.com/magnusvk/counter_culture)|2.2129333661175e-07| +|rubygems|[rails-html-sanitizer](https://github.com/rails/rails-html-sanitizer)|2.2129333661175e-07| +|rubygems|[devise](https://github.com/heartcombo/devise)|2.2129333661175e-07| +|rubygems|[omniauth](https://github.com/omniauth/omniauth)|2.2129333661175e-07| +|rubygems|[premailer-rails](https://github.com/fphilipe/premailer-rails)|2.2129333661175e-07| +|rubygems|[rails-controller-testing](https://github.com/rails/rails-controller-testing)|2.2129333661175e-07| +|rubygems|[letter_opener_web](https://github.com/fgrehm/letter_opener_web)|2.2129333661175e-07| +|cran|[enviPick](NA)|2.1686746987951834e-07| +|pypi|[jupyterlab-thredds](https://github.com/eWaterCycle/jupyterlab_thredds)|2.045919527165259e-07| +|npm|[vx](https://github.com/vxjs/vx)|1.93631669535286e-07| +|npm|[abbrev](https://github.com/isaacs/abbrev-js#readme)|1.837859914233216e-07| +|npm|[aproba](https://github.com/iarna/aproba)|1.837859914233216e-07| +|npm|[chownr](https://github.com/isaacs/chownr#readme)|1.837859914233216e-07| +|npm|concat-map|1.837859914233216e-07| +|npm|[console-control-strings](https://github.com/iarna/console-control-strings#readme)|1.837859914233216e-07| +|npm|[deep-extend](https://github.com/unclechu/node-deep-extend)|1.837859914233216e-07| +|pypi|[flowTorch](https://flowtorch.ai/users)|1.6942771084337382e-07| +|pypi|[pytest-param-files](https://pypi.org/project/pytest-param-files)|1.6265060240963782e-07| +|go|github.com/BurntSushi/toml|1.5715034049240438e-07| +|go|github.com/blang/semver|1.5715034049240438e-07| +|go|github.com/buger/goterm|1.5715034049240438e-07| +|go|github.com/checkpoint-restore/checkpointctl|1.5715034049240438e-07| +|go|github.com/checkpoint-restore/go-criu/v5|1.5715034049240438e-07| +|go|github.com/container-orchestrated-devices/container-device-interface|1.5715034049240438e-07| +|go|github.com/containers/buildah|1.5715034049240438e-07| +|go|github.com/containers/conmon|1.5715034049240438e-07| +|go|github.com/containers/ocicrypt|1.5715034049240438e-07| +|go|github.com/containers/psgo|1.5715034049240438e-07| +|go|github.com/containers/storage|1.5715034049240438e-07| +|go|github.com/coreos/go-systemd/v22|1.5715034049240438e-07| +|go|github.com/coreos/stream-metadata-go|1.5715034049240438e-07| +|go|github.com/digitalocean/go-qemu|1.5715034049240438e-07| +|go|github.com/docker/go-connections|1.5715034049240438e-07| +|go|github.com/docker/go-plugins-helpers|1.5715034049240438e-07| +|go|github.com/docker/go-units|1.5715034049240438e-07| +|go|github.com/dtylman/scp|1.5715034049240438e-07| +|go|github.com/fsnotify/fsnotify|1.5715034049240438e-07| +|go|github.com/ghodss/yaml|1.5715034049240438e-07| +|go|github.com/godbus/dbus/v5|1.5715034049240438e-07| +|go|github.com/google/gofuzz|1.5715034049240438e-07| +|go|github.com/google/shlex|1.5715034049240438e-07| +|go|github.com/gorilla/handlers|1.5715034049240438e-07| +|go|github.com/gorilla/schema|1.5715034049240438e-07| +|go|github.com/hashicorp/go-multierror|1.5715034049240438e-07| +|go|github.com/json-iterator/go|1.5715034049240438e-07| +|go|github.com/mattn/go-isatty|1.5715034049240438e-07| +|go|github.com/mrunalp/fileutils|1.5715034049240438e-07| +|go|github.com/nxadm/tail|1.5715034049240438e-07| +|go|github.com/pmezard/go-difflib|1.5715034049240438e-07| +|go|github.com/rootless-containers/rootlesskit|1.5715034049240438e-07| +|go|github.com/stretchr/testify|1.5715034049240438e-07| +|go|github.com/syndtr/gocapability|1.5715034049240438e-07| +|go|github.com/uber/jaeger-client-go|1.5715034049240438e-07| +|go|github.com/ulikunitz/xz|1.5715034049240438e-07| +|go|github.com/vbauerster/mpb/v7|1.5715034049240438e-07| +|go|github.com/vishvananda/netlink|1.5715034049240438e-07| +|go|go.etcd.io/bbolt|1.5715034049240438e-07| +|go|golang.org/x/text|1.5715034049240438e-07| +|go|google.golang.org/protobuf|1.5715034049240438e-07| +|go|gopkg.in/inf.v0|1.5715034049240438e-07| +|pypi|[django-timezone-field](https://github.com/mfogel/django-timezone-field/)|1.5272357033768825e-07| +|pypi|[firebase-admin](https://firebase.google.com/docs/admin/setup/)|1.5272357033768825e-07| +|pypi|[GromacsWrapper](https://github.com/Becksteinlab/GromacsWrapper)|1.5272357033768825e-07| +|pypi|[heat](https://github.com/helmholtz-analytics/heat)|1.5272357033768825e-07| +|pypi|[duecredit](https://github.com/duecredit/duecredit)|1.5272357033768825e-07| +|pypi|[sphinx-click](https://github.com/stephenfin/sphinx-click)|1.4909638554216958e-07| +|pypi|[liionpack](https://liionpack.readthedocs.io/en/latest/)|1.3064305414428825e-07| +|pypi|[scikit-mdr](https://github.com/EpistasisLab/scikit-mdr)|1.262934089298379e-07| +|rubygems|[coffee-script](http://github.com/josh/ruby-coffee-script)|1.0954020162281803e-07| +|npm|text-table|1.0322057460611754e-07| +|pypi|[typeguard](https://pypi.org/project/typeguard)|9.939759036144639e-08| +|pypi|[pika](https://pika.readthedocs.io)|9.334730225248915e-08| +|npm|[utfx](https://github.com/dcodeIO/utfx)|8.9457831325301e-08| +|pypi|[scikit-misc](https://github.com/has2k1/scikit-misc)|7.667814113597281e-08| +|pypi|[aiohttp-remotes](https://github.com/aio-libs/aiohttp-remotes)|6.815834767641975e-08| +|cran|[uroot](https://jalobe.com)|6.66766444660634e-08| +|npm|[babel-plugin-transform-remove-undefined](https://github.com/babel/minify#readme)|1.6502469505350535e-08| +|npm|[babel-plugin-transform-property-literals](https://github.com/babel/minify#readme)|1.6502469505350535e-08| +|npm|[babel-plugin-minify-type-constructors](https://github.com/babel/minify#readme)|1.6502469505350535e-08| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/docs/language-counts.json b/docs/language-counts.json index 745343bd..cd8b0687 100644 --- a/docs/language-counts.json +++ b/docs/language-counts.json @@ -1,17 +1,17 @@ { "unknown": 34, - "Python": 511, + "Python": 505, "Jupyter Notebook": 90, "Modelica": 1, "Shell": 15, - "HTML": 40, + "HTML": 39, "Perl": 9, - "R": 464, - "C++": 123, + "R": 461, + "C++": 120, "Java": 44, "C": 40, "Rust": 5, - "JavaScript": 50, + "JavaScript": 49, "AMPL": 1, "MATLAB": 20, "Haskell": 1, @@ -30,7 +30,7 @@ "Pascal": 1, "TSQL": 2, "Kotlin": 2, - "Go": 5, + "Go": 4, "PostScript": 2, "Nextflow": 5, "CSS": 1, diff --git a/docs/meta.json b/docs/meta.json index 97d1a0a2..84c43096 100644 --- a/docs/meta.json +++ b/docs/meta.json @@ -7575,67 +7575,7 @@ "microbiology", "whole-genome-sequencing" ], - "github/gromacs/gromacs": [], - "github/ECP-copa/Cabana": [ - "particles", - "exascale-computing", - "exascale", - "kokkos", - "co-design" - ], - "github/theosanderson/chronumental": [ - "phylogenetics", - "timetree", - "jax", - "numpyro" - ], - "github/mishioo/tesliper": [ - "python", - "chemistry", - "spectroscopy", - "chemical-computing", - "optical-spectroscopy", - "spectral-simulations", - "gaussian", - "workflow-automation", - "batch-processing" - ], - "github/OSS-Lab/ChemChaste": [], - "github/ModellingWebLab/chaste-codegen": [], - "github/SWIFTSIM/emulator": [], - "github/datngu/Circall": [], - "github/sylabs/singularity": [ - "containers", - "hpc", - "linux" - ], - "github/aalhossary/pyemgpipeline": [], - "github/cinemascience/cinema_snap": [], - "github/leishenggit/CircleBase": [ - "eccdna", - "function-regulation", - "pagerank" - ], - "github/spokenlanguage/platalea": [ - "visually-grounded-speech", - "multi-tasking", - "spoken-language-understanding", - "deep-neural-networks", - "speech-processing", - "weakly-supervised-learning", - "multimodal-learning", - "pytorch", - "flickr8k", - "spokencoco" - ], - "github/laurazara/IgIDivA": [], - "github/lasseignelab/CINmetrics": [], - "github/chainsawriot/sweater": [ - "r", - "wordembedding", - "bias-detection", - "textanalysis" - ] + "github/gromacs/gromacs": [] }, "language": { "gitlab/chiemotono/mdcontactcom": "unknown", @@ -9208,22 +9148,7 @@ "github/BU-ISCIII/taranis": "Python", "github/BU-ISCIII/iSkyLIMS": "JavaScript", "github/BU-ISCIII/plasmidID": "Shell", - "github/gromacs/gromacs": "C++", - "github/ECP-copa/Cabana": "C++", - "github/theosanderson/chronumental": "Python", - "github/mishioo/tesliper": "Python", - "github/OSS-Lab/ChemChaste": "C++", - "github/ModellingWebLab/chaste-codegen": "Python", - "github/SWIFTSIM/emulator": "Python", - "github/datngu/Circall": "C++", - "github/sylabs/singularity": "Go", - "github/aalhossary/pyemgpipeline": "Python", - "github/cinemascience/cinema_snap": "JavaScript", - "github/leishenggit/CircleBase": "HTML", - "github/spokenlanguage/platalea": "Python", - "github/laurazara/IgIDivA": "R", - "github/lasseignelab/CINmetrics": "R", - "github/chainsawriot/sweater": "R" + "github/gromacs/gromacs": "C++" }, "url": { "gitlab/chiemotono/mdcontactcom": "https://gitlab.com/chiemotono/mdcontactcom", @@ -10796,22 +10721,7 @@ "github/BU-ISCIII/taranis": "https://github.com/BU-ISCIII/taranis", "github/BU-ISCIII/iSkyLIMS": "https://github.com/BU-ISCIII/iSkyLIMS", "github/BU-ISCIII/plasmidID": "https://github.com/BU-ISCIII/plasmidID", - "github/gromacs/gromacs": "https://github.com/gromacs/gromacs", - "github/ECP-copa/Cabana": "https://github.com/ECP-copa/Cabana", - "github/theosanderson/chronumental": "https://github.com/theosanderson/chronumental", - "github/mishioo/tesliper": "https://github.com/mishioo/tesliper", - "github/OSS-Lab/ChemChaste": "https://github.com/OSS-Lab/ChemChaste", - "github/ModellingWebLab/chaste-codegen": "https://github.com/ModellingWebLab/chaste-codegen", - "github/SWIFTSIM/emulator": "https://github.com/SWIFTSIM/emulator", - "github/datngu/Circall": "https://github.com/datngu/Circall", - "github/sylabs/singularity": "https://github.com/sylabs/singularity", - "github/aalhossary/pyemgpipeline": "https://github.com/aalhossary/pyemgpipeline", - "github/cinemascience/cinema_snap": "https://github.com/cinemascience/cinema_snap", - "github/leishenggit/CircleBase": "https://github.com/leishenggit/CircleBase", - "github/spokenlanguage/platalea": "https://github.com/spokenlanguage/platalea", - "github/laurazara/IgIDivA": "https://github.com/laurazara/IgIDivA", - "github/lasseignelab/CINmetrics": "https://github.com/lasseignelab/CINmetrics", - "github/chainsawriot/sweater": "https://github.com/chainsawriot/sweater" + "github/gromacs/gromacs": "https://github.com/gromacs/gromacs" }, "description": { "gitlab/chiemotono/mdcontactcom": "", @@ -10885,7 +10795,7 @@ "github/Filter-Bubble/stroll": "Graph based Sematic Role Labeller", "github/tbrown122387/pf": "PF: a header only template library for fast particle filtering!", "github/deezer/spleeter": "Deezer source separation library including pretrained models.", - "github/dmey/synthia": "\ud83d\udcc8 \ud83d\udc0d Multidimensional synthetic data generation in Python", + "github/dmey/synthia": " Multidimensional synthetic data generation in Python", "github/spinicist/riesling": "Radial Interstices Enable Speedy Low-Volume Imaging", "github/hcdenbakker/sepia": "taxonomic classifier based on the kraken2 algorithms and more", "github/onnela-lab/beiwe-backend": "Beiwe is a smartphone-based digital phenotyping research platform. This is the Beiwe backend code", @@ -10950,7 +10860,7 @@ "github/wangjun1996/VisFeature": "A stand-alone program for visualizing and analyzing statistical features of biological sequences", "github/hpgem/nanomesh": "Python workflow tool for generating meshes from 2D and 3D microscopy image data", "github/ylab-hi/ScanITD": null, - "github/csinva/imodels": "Interpretable ML package \ud83d\udd0d for concise, transparent, and accurate predictive modeling (sklearn-compatible).", + "github/csinva/imodels": "Interpretable ML package for concise, transparent, and accurate predictive modeling (sklearn-compatible).", "github/koenderks/jaspAudit": "The Audit module is developed to facilitate statistical auditing in both Bayesian and classical manifestations. The main feature is a workflow that helps guide auditors through the sampling process. Additionally, there are stand-alone analyses for planning, selecting, and evaluating a sample. The module is based on the R package jfa.", "github/donaldRwilliams/GGMnonreg": null, "github/donaldRwilliams/BGGM": "Bayesian Gaussian Graphical Models", @@ -10973,7 +10883,7 @@ "github/MD-Studio/cerulean": "A Python 3 library for talking to HPC clusters and supercomputers", "github/MD-Studio/cerise": "A REST service for running CWL workflows on remote clusters", "github/TPI-Immunogenetics/igmat": "Antibody Multispecies Annotation Tool", - "github/climate-machine/Oceananigans.jl": "\ud83c\udf0a Fast and friendly fluid dynamics on CPUs and GPUs", + "github/climate-machine/Oceananigans.jl": " Fast and friendly fluid dynamics on CPUs and GPUs", "github/WGLab/InterVar": "A bioinformatics software tool for clinical interpretation of genetic variants by the 2015 ACMG-AMP guideline", "github/nlesc-ave/ave-rest-service": "visualize (clustered) single-nucleotide variants across genomes", "github/gtayana/CVRMS": "Marker selection for genome-wide prediction", @@ -11188,7 +11098,7 @@ "github/CAMI-challenge/CAMITAX": "CAMITAX: Taxon labels for microbial genomes", "github/PCMSolver/pcmsolver": "An API for the Polarizable Continuum Model", "github/bokunoBike/m6AGE": "A predictor for m6A sites.", - "github/vbaliga/gaussplotR": "\ud83d\udd14 Fit, predict, and plot 2D Gaussians in R", + "github/vbaliga/gaussplotR": " Fit, predict, and plot 2D Gaussians in R", "github/tobias-dv-lnu/s4rdm3x": null, "github/SMTG-UCL/surfaxe": "Dealing with slabs for first principles calculations of surfaces", "github/dynamicslab/pysindy": "A package for the sparse identification of nonlinear dynamical systems from data", @@ -11265,7 +11175,7 @@ "github/asancpt/caffsim": "R package for simulation of caffeine concentration . https://asancpt.github.io/caffsim", "github/radifar/PyPLIF-HIPPOS": "HIPPOS Is PyPLIF On Steroids. A Molecular Interaction Fingerprinting Tool for Docking Results of Autodock Vina and PLANTS", "github/pymatting/pymatting": "A Python library for alpha matting", - "github/tlverse/hal9001": "\ud83e\udd20 \ud83d\udcff The Highly Adaptive Lasso", + "github/tlverse/hal9001": " The Highly Adaptive Lasso", "github/pratheesh3780/grapesAgri1": "Collection of shiny apps for Agricultural research Data Analysis. Allows user to have graphical user interface to perform analysis of Agricultural experimental data. On using the functions in this package a Graphical User Interface will pop up. Apps Works by simple upload of files in CSV format.", "github/clawpack/clawpack": "Package for solving hyperbolic systems of partial differential equations", "github/clawpack/pyclaw": "PyClaw is a Python-based interface to the algorithms of Clawpack and SharpClaw. It also contains the PetClaw package, which adds parallelism through PETSc.", @@ -11296,7 +11206,7 @@ "github/gerthmicha/wolbachia-mlst": "Data from Bleidorn & Gerth (2017) A critical re-evaluation of multilocus sequence typing (MLST) efforts in Wolbachia. https://doi.org/10.1093/femsec/fix163", "github/Social-Evolution-and-Behavior/anTraX": "anTraX: high throughput tracking of color-tagged insects", "github/logological/gpp": "GPP, a generic preprocessor", - "github/0xCoto/Virgo": "\ud83d\udce1 Virgo: A Versatile Spectrometer for Radio Astronomy", + "github/0xCoto/Virgo": " Virgo: A Versatile Spectrometer for Radio Astronomy", "github/churchmanlab/genewalk": "GeneWalk identifies relevant gene functions for a biological context using network representation learning", "github/multiscale/muscle3": "The third major version of the MUltiScale Coupling Library and Environment", "github/darioizzo/dcgp": "Implementation of a differentiable CGP (Cartesian Genetic Programming)", @@ -11317,13 +11227,13 @@ "github/Circuitscape/Omniscape.jl": "Functions to compute omnidirectional landscape connectivity using circuit theory and the Omniscape algorithm.", "github/yanzhanglab/Graph2GO": "Graph-based representation learning method for protein function prediction", "github/equipeGST/RiboDoc": "Docker based tool for ribosome profiling (RiboSeq) analysis", - "github/aspuru-guzik-group/funsies": "funsies is a lightweight workflow engine \ud83d\udd27", + "github/aspuru-guzik-group/funsies": "funsies is a lightweight workflow engine ", "github/gridap/Gridap.jl": "Grid-based approximation of partial differential equations in Julia", "github/numba/numba": "NumPy aware dynamic Python compiler using LLVM", "github/linDing-groups/Deep-4mCW2V": "A sequence-based deep learning approach to predict N4-methylcytosine sites in Escherichia coli ", "github/arviz-devs/arviz": "Exploratory analysis of Bayesian models with Python", "github/JannisHoch/copro": "(ML) model for computing conflict risk from climate, environmental, and societal drivers.", - "github/ShixiangWang/sigminer": "\ud83c\udf32 An easy-to-use and scalable toolkit for genomic alteration (mutational) signature analysis and visualization in R", + "github/ShixiangWang/sigminer": " An easy-to-use and scalable toolkit for genomic alteration (mutational) signature analysis and visualization in R", "github/algo-cancer/CAMMiQ": "Metagenomics microbial abundance quantification", "github/lkmklsmn/DrivAER": "DrivAER: Identification of Driving transcriptional programs using AutoEncoder based Relevance scores", "github/jonschwenk/RivGraph": "Extracting and quantifying graphical representations of river and delta channel networks from binary masks", @@ -11518,9 +11428,9 @@ "github/SwissClinicalTrialOrganisation/secuTrialR": "Handling of data from the clinical data management system secuTrial", "github/coleygroup/pyscreener": "pythonic interface to virtual screening software", "github/msalibian/RBF": "A Robust backfitting algorithm", - "github/IndrajeetPatil/ggstatsplot": "Enhancing `ggplot2` plots with statistical analysis \ud83d\udcca\ud83c\udfa8\ud83d\udce3", - "github/IndrajeetPatil/statsExpressions": "Expressions and dataframes with statistical details \ud83d\udcc9 \ud83d\udcdc\ud83d\udd23\u2705", - "github/potassco/clingo": "\ud83e\udd14 A grounder and solver for logic programs.", + "github/IndrajeetPatil/ggstatsplot": "Enhancing `ggplot2` plots with statistical analysis ", + "github/IndrajeetPatil/statsExpressions": "Expressions and dataframes with statistical details ", + "github/potassco/clingo": " A grounder and solver for logic programs.", "github/refresh-bio/whisper": null, "github/vwesselkamp/ernie-extension": "Contains the source code of the extension ERNIE from the WPES 2021 paper \"In-Depth Technical and Legal Analysis of Tracking on Health Related Websites with ERNIE Extension\"", "github/ChengF-Lab/AOPEDF": null, @@ -11562,7 +11472,7 @@ "github/icbm-iupui/STAFF": null, "github/davek44/Glimmer-MG": "Gene prediction in metagenomic sequences using Glimmer augmented by phylogenetic classification and clustering", "github/dpseidel/stmove": "Build reproducible reports for spatial-temporal animal movement analysis", - "github/ml-evs/matador": "\u2697\ufe0f matador is an aggregator, manipulator and runner of first-principles calculations, written with a bent towards battery \ud83d\udd0b electrode materials.", + "github/ml-evs/matador": " matador is an aggregator, manipulator and runner of first-principles calculations, written with a bent towards battery electrode materials.", "github/openscm/openscm-twolayermodel": "Implementations of two-layer models by Held et al. and Geoffroy et al.", "github/DrafProject/elmada": "elmada: Dynamic electricity carbon emission factors and prices for Europe", "github/nlesc-nano/swan": "Screening Workflows And statistical models to predict new materials", @@ -11687,9 +11597,9 @@ "github/esteinig/nanoq": "Minimal but speedy quality control for nanopore reads in Rust :bear:", "github/benvanwerkhoven/kernel_tuner": "Kernel Tuner", "github/benjaminbolling/DynaGUI": "A Dynamic Graphical User Interface package, which gives users a method to construct temporary, permanent and/or a set of GUI:s for users in a simple and fast manner combined with diagnostics tools (with advance 1D and 2D plotting methods).", - "github/biolab/orange3": "\ud83c\udf4a :bar_chart: :bulb: Orange: Interactive data analysis https://orange.biolab.si", + "github/biolab/orange3": " :bar_chart: :bulb: Orange: Interactive data analysis https://orange.biolab.si", "github/biolab/orange-bio": null, - "github/biolab/orange3-network": "\ud83c\udf4a \ud83d\udd78 Network analysis add-on for Orange data mining suite.", + "github/biolab/orange3-network": " Network analysis add-on for Orange data mining suite.", "github/LindaNab/mecor": "measurement error correction", "github/LQYoLH/CnnCrispr": "A deep learning method for sgRNA off-target propensity prediction.", "github/NKI-CCB/PRECISE": null, @@ -11896,8 +11806,8 @@ "github/ropensci/osfr": "R interface to the Open Science Framework (OSF)", "github/ropensci/popler": "The R package to browse and query the popler database", "github/ropensci/rAltmetric": "Query and visualize metrics from altmetric.com", - "github/ropensci/qualtRics": "Download \u2b07\ufe0f Qualtrics survey data directly into R!", - "github/ropensci/workloopR": "\ud83d\udcaa Analysis of work loops and other data from muscle physiology experiments", + "github/ropensci/qualtRics": "Download Qualtrics survey data directly into R!", + "github/ropensci/workloopR": " Analysis of work loops and other data from muscle physiology experiments", "github/ropensci/solrium": "A general purpose R interface to Solr", "github/ropensci/camsRad": "R Client for CAMS Radiation Service", "github/ropensci/mauricer": "Install BEAST2 packages from R", @@ -11969,13 +11879,13 @@ "github/ropensci/rentrez": "talk with NCBI entrez using R", "github/ropensci/ijtiff": "An R Package for general purpose TIFF file I/O which plays nice with ImageJ", "github/ropensci/rorcid": "A programmatic interface the Orcid.org API", - "github/ropensci/NLMR": "\ud83d\udce6 R package to simulate neutral landscape models \ud83c\udfd4", + "github/ropensci/NLMR": " R package to simulate neutral landscape models ", "github/ropensci/bowerbird": "Keep a collection of sparkly data resources", "github/ropensci/vcr": "Record HTTP calls and replay them", "github/ropensci/bomrang": "Australian government Bureau of Meteorology (BOM) data client for R", "github/ropensci/getCRUCLdata": "CRU CL v. 2.0 Climatology Client for R", "github/ropensci/cRegulome": "An R package to access, manage and visualize regulome (microRNA/transcription factors)-gene correlations in cancer", - "github/ropensci/rtweet": "\ud83d\udc26 R client for interacting with Twitter's [stream and REST] APIs", + "github/ropensci/rtweet": " R client for interacting with Twitter's [stream and REST] APIs", "github/ropensci/rusda": "Interface to USDA Databases", "github/ropensci/robotstxt": "robots.txt file parsing and checking for R", "github/ropensci/DataSpaceR": "R Interface to the CAVD DataSpace", @@ -12002,7 +11912,7 @@ "github/ropensci/rromeo": ":package: An R client for SHERPA/RoMEO API", "github/ropensci/aRxiv": "Programmatic interface to the Arxiv API", "github/ropensci/wateRinfo": "R package to download time series data from waterinfo.be", - "github/ropensci/landscapetools": "\ud83d\udce6 R package for some of the less-glamorous tasks involved in landscape analysis \ud83c\udf0f", + "github/ropensci/landscapetools": " R package for some of the less-glamorous tasks involved in landscape analysis ", "github/ropensci/datapack": "An R package to handle data packages", "github/ropensci/timefuzz": "Time Travel to Test Time Dependent Code", "github/ropensci/bibtex": "bibtex parser for R", @@ -12040,7 +11950,7 @@ "github/ropensci/namext": "extract scientific names from papers/articles/text using gnfinder (https://github.com/gnames/gnfinder)", "github/ropensci/stats19": "R package for working with open road traffic casualty data from Great Britain", "github/ropensci/ruODK": "ruODK: An R Client for the ODK Central API", - "github/ropensci/mctq": "\u2600 Tools to process the Munich ChronoType Questionnaire (MCTQ)", + "github/ropensci/mctq": " Tools to process the Munich ChronoType Questionnaire (MCTQ)", "github/ropensci/dbparser": "Source code for the R package, \"dbparser\" (i.e. DrugBank Parser)", "github/ropensci/internetarchive": "Search the Internet Archive, retrieve metadata, and download files", "github/ropensci/excluder": "Checks for Exclusion Criteria in Online Data", @@ -12051,7 +11961,7 @@ "github/ropensci/tacmagic": "tacmagic: PET Analysis in R", "github/ropensci/taxa": "taxonomic classes for R", "github/ropensci/assertr": "Assertive programming for R analysis pipelines", - "github/ropensci/pathviewr": "\ud83d\udc26 Tools to import, clean, and visualize animal movement data in R", + "github/ropensci/pathviewr": " Tools to import, clean, and visualize animal movement data in R", "github/ropensci/rWBclimate": "R interface for the World Bank climate data", "github/ropensci/rAvis": "rAvis: an R-package to download the information stored in \u201cproyectoavis\u201d, a citizen science bird project. ", "github/ropensci/weathercan": "R package for downloading weather data from Environment and Climate Change Canada", @@ -12200,7 +12110,7 @@ "github/Leo-Simpson/c-lasso": "c-lasso: a Python package for constrained sparse regression and classification", "github/labsquare/CutePeaks": "CutePeaks is a standalone Sanger trace viewer steered by a modern and user-friendly UI.", "github/tbep-tech/tbeptools": "R package for Tampa Bay Estuary Program functions", - "github/quadram-institute-bioscience/dadaist2": "\ud83c\udfa8 dadaist2 - Highway to R", + "github/quadram-institute-bioscience/dadaist2": " dadaist2 - Highway to R", "github/CRG-CNAG/anubis": "Python package for the analysis of tn-seq data", "github/swiftsim/swiftsimio": "Python library for reading SWIFT data. Uses unyt and h5py.", "github/sheryl-ai/MetaPred": "MetaPred: Meta-Learning for Clinical Risk Prediction with Limited Patient Electronic Health Records (KDD 2019)", @@ -12330,7 +12240,7 @@ "github/arcaldwell49/SimplyAgree": "A simple R package for calculating absolute agreement and estimating required sample sizes for studies of absolute agreement", "github/moranegg/deposit-template": "This is a deposit template repository to help researchers in starting their project in a online VCS", "github/moranegg/AffectationRO": "Projet en recherche op\u00e9rationelle ", - "github/chainsawriot/oolong": "oolong \ud83c\udf75 : create and administrate validation tests for typical automated content analysis tools.", + "github/chainsawriot/oolong": "oolong : create and administrate validation tests for typical automated content analysis tools.", "github/vgl-hub/gfastats": "A single fast and exhaustive tool for summary statistics and simultaneous *fa* (fasta, fastq, gfa [.gz]) genome assembly file manipulation.", "github/davemlz/eemont": "A python package that extends Google Earth Engine.", "github/cjneely10/EukMetaSanity": "Structural and functional annotation of eukaryotic metagenome-assembled genomes", @@ -12384,21 +12294,6 @@ "github/BU-ISCIII/taranis": "cg/wgMLST allele calling software, schema evaluation and allele distance estimation for outbreak reserch.", "github/BU-ISCIII/iSkyLIMS": "is an open-source LIMS (laboratory Information Management System) for Next Generation Sequencing sample management, statistics and reports, and bioinformatics analysis service management.", "github/BU-ISCIII/plasmidID": "PlasmidID is a mapping-based, assembly-assisted plasmid identification tool that analyzes and gives graphic solution for plasmid identification.", - "github/gromacs/gromacs": "Public/backup repository of the GROMACS molecular simulation toolkit. Please do not mine the metadata blindly; we use https://gitlab.com/gromacs/gromacs for code review and issue tracking.", - "github/ECP-copa/Cabana": "Performance-portable library for particle-based simulations", - "github/theosanderson/chronumental": "Estimating time trees from very large phylogenies", - "github/mishioo/tesliper": "Theoretical Spectroscopist's Little Helper", - "github/OSS-Lab/ChemChaste": null, - "github/ModellingWebLab/chaste-codegen": "Code generation for Chaste based on cellmlmanip", - "github/SWIFTSIM/emulator": "The SWIFT simulation cosmological emulator (swift-emulator)", - "github/datngu/Circall": "Circall is a novel method to discover circular RNA from paired-end RNA sequencing data", - "github/sylabs/singularity": "SingularityCE is the Community Edition of Singularity, an open source container platform designed to be simple, fast, and secure.", - "github/aalhossary/pyemgpipeline": null, - "github/cinemascience/cinema_snap": "React-based web viewer", - "github/leishenggit/CircleBase": "An integrated resource and analysis platform for human eccDNAs", - "github/spokenlanguage/platalea": "Library for training visually-grounded models of spoken language understanding.", - "github/laurazara/IgIDivA": null, - "github/lasseignelab/CINmetrics": "CINmetrics R package", - "github/chainsawriot/sweater": "\ud83d\udc5a Speedy Word Embedding Association Test & Extras using R" + "github/gromacs/gromacs": "Public/backup repository of the GROMACS molecular simulation toolkit. Please do not mine the metadata blindly; we use https://gitlab.com/gromacs/gromacs for code review and issue tracking." } } \ No newline at end of file diff --git a/pages/dependencies.md b/pages/dependencies.md index ceb89fe3..572879e4 100644 --- a/pages/dependencies.md +++ b/pages/dependencies.md @@ -4,5165 +4,5591 @@ description: "Most used dependencies across the RSEPedia database" layout: table permalink: /analysis/dependencies/ tipue_search_active: true -exclude_from_search: true --- # Software Credit |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.05777276092877925| -|cran|R|0.03533006904725826| -|cran|jsonlite|0.02879856430804844| -|cran|[testthat](https://testthat.r-lib.org)|0.024700835546651145| -|cran|httr|0.021154696928265777| -|cran|knitr|0.017386677936369877| -|cran|rmarkdown|0.01639302903109129| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.015281456659348339| -|cran|utils|0.014368883534828231| -|cran|methods|0.013946721882875374| -|cran|covr|0.012883966935941637| -|pypi|[pytest](https://pypi.org/project/pytest)|0.008399578587235066| -|cran|[tidyr](https://tidyr.tidyverse.org)|0.007511597760965775| -|cran|[magrittr](https://magrittr.tidyverse.org)|0.0065909630367401145| -|cran|[rlang](https://rlang.r-lib.org)|0.0061523657566324415| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.00550768394938294| -|cran|stats|0.0054872911729297895| -|cran|withr|0.005218314148500931| -|pypi|[six](https://pypi.org/project/six)|0.004835400500538387| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.004770630339835103| -|cran|yaml|0.00470901210249988| -|cran|[tibble](https://tibble.tidyverse.org/)|0.0046539916612070775| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.004606914717616353| -|cran|tools|0.0044227943014975325| -|pypi|[pyyaml](https://pyyaml.org/)|0.004375524244180643| -|cran|curl|0.004212596202834122| -|pypi|[h5py](http://www.h5py.org)|0.004180644538806693| -|pypi|[colorama](https://pypi.org/project/colorama)|0.004096243250007074| -|cran|Rcpp|0.004019271636367624| -|pypi|[biopython](https://biopython.org/)|0.003825454663904328| -|pypi|[pytz](https://pypi.org/project/pytz)|0.0038173719175205113| -|cran|vctrs|0.0037142928829996427| -|cran|R6|0.003667131872228372| -|cran|grDevices|0.00346932185352625| -|cran|graphics|0.003260806974008083| -|cran|crayon|0.0032569098637255994| -|pypi|[docutils](https://pypi.org/project/docutils)|0.0031935085681930684| -|cran|ggplot2|0.0031340809344300737| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.0031017075941401225| -|cran|spelling|0.0029778040319842955| -|cran|[dplyr](https://dplyr.tidyverse.org)|0.002879102263329457| -|cran|pryr|0.0028604987367301074| -|cran|glue|0.0027441782081080684| -|pypi|[numba](https://numba.pydata.org)|0.002658432613303744| -|pypi|[requests](https://pypi.org/project/requests)|0.002612132306701284| -|cran|digest|0.0024897002221839926| -|cran|roxygen2|0.002484675311517972| -|cran|htmltools|0.0024576748007048895| -|pypi|[joblib](https://joblib.readthedocs.io)|0.002180326501552901| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.00215672257652793| -|pypi|[tomli](https://pypi.org/project/tomli)|0.002139932535067916| -|pypi|[lxml](https://pypi.org/project/lxml)|0.0021285423543913723| -|cran|tinytest|0.00204739633626539| -|cran|rstudioapi|0.0020377719203584165| -|pypi|[scipy](https://www.scipy.org)|0.0020353354895301956| -|cran|mockery|0.0020295306553659276| -|pypi|[flake8](https://pypi.org/project/flake8)|0.0020285166385252246| -|pypi|[packaging](https://github.com/pypa/packaging)|0.001995781565124874| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.001935052799707555| -|pypi|[certifi](https://pypi.org/project/certifi)|0.00192847806003327| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.0019134484738302629| -|pypi|[pandas](https://pypi.org/project/pandas)|0.00189418507646699| -|cran|stringi|0.0018792865971571442| -|cran|MASS|0.0018740563092225968| -|cran|xml2|0.0018652575182091546| -|pypi|[idna](https://pypi.org/project/idna)|0.0018218607751848486| -|cran|cli|0.00181805467529622| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.0017968201854886906| -|cran|pillar|0.0017909545332665878| -|cran|[shiny](https://shiny.rstudio.com/)|0.0017696688352009022| -|cran|bit64|0.0017602415438596462| -|cran|lifecycle|0.0017348598352865787| -|cran|callr|0.0016835612563628937| -|cran|[purrr](http://purrr.tidyverse.org)|0.0016784147404825783| -|pypi|[mock](https://pypi.org/project/mock)|0.0016245994743111054| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.0016043292532208298| -|cran|lattice|0.001528648987564493| -|cran|tidyselect|0.0015250171163935485| -|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.0014826071644628812| -|cran|processx|0.0014629403427837192| -|cran|DBI|0.0014410242661488202| -|cran|rbenchmark|0.0014212236287276033| -|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.0014143032917865131| -|cran|bitops|0.0013995216427452122| -|cran|markdown|0.0013920523505496463| -|cran|sp|0.0013823500639142043| -|cran|zoo|0.0013785080926663712| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.0013753669953375052| -|cran|parallel|0.0013548254294957348| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.001354591113892932| -|cran|pracma|0.0013302424681573826| -|cran|htmlwidgets|0.001328703947314803| -|pypi|[chardet](https://pypi.org/project/chardet)|0.0013264339874787547| -|pypi|[mypy](https://pypi.org/project/mypy)|0.0012967165851270838| -|cran|RSQLite|0.0012904587727909384| -|cran|grid|0.0012695738954177013| -|cran|hms|0.0012684631206731326| -|cran|[stringr](http://stringr.tidyverse.org)|0.0012384626065441457| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.0012150183168725148| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.0012083065293401114| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.0011198969092342864| -|pypi|[wheel](https://pypi.org/project/wheel)|0.0011154705312621399| -|pypi|[pygments](https://pypi.org/project/pygments)|0.001104632617424174| -|cran|R.utils|0.001092062524157772| -|pypi|[click](https://pypi.org/project/click)|0.0010779600183615018| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.0010678781299155687| -|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.0010552394165299264| -|cran|mime|0.0010515546348688015| -|cran|microbenchmark|0.0010457274576255286| -|cran|nycflights13|0.0010363281818280318| -|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.0010074118168970764| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.000983328033094653| -|cran|webmockr|0.0009697700026580884| -|cran|ellipsis|0.0009662255247796665| -|cran|unix|0.0009652389688257852| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.0009539644750817741| -|cran|bench|0.0009427423193022542| -|cran|xts|0.0009372221793349775| -|cran|Matrix|0.0009313694089573009| -|pypi|[attrs](https://www.attrs.org/)|0.000926436527750089| -|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.000924703978906999| -|cran|nanotime|0.000919082772397013| -|pypi|[cython](http://cython.org/)|0.0009140227141366075| -|cran|broom|0.0009108660728628793| -|pypi|[nose](https://pypi.org/project/nose)|0.0009094078380532392| -|cran|rgl|0.0008992960710982815| -|cran|httpcode|0.0008972858823321059| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.0008945975413342185| -|cran|generics|0.0008942500042131119| -|cran|bit|0.0008873137566238423| -|cran|evaluate|0.0008831113789207016| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.0008823248919902035| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.0008823248919902035| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.0008794397256745245| -|cran|maptools|0.0008712231134505579| -|cran|scales|0.0008705085591019529| -|pypi|[pybind11-global](https://github.com/pybind/pybind11)|0.000869738255033557| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.0008576742240038596| -|pypi|[ipywidgets](http://ipython.org)|0.0008505606075298682| -|pypi|[twine](https://pypi.org/project/twine)|0.0008495512776882432| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.000846453420987166| -|cran|fs|0.0008434565968477982| -|cran|RColorBrewer|0.0008415193889540235| -|cran|rgeos|0.0008357278392135957| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.000835152840920098| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.0008290316382473019| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.0008290316382473019| -|cran|sf|0.0008239979363907693| -|cran|tcltk|0.0008191718292752264| -|cran|fauxpas|0.000787101920412059| -|cran|urltools|0.0007854232864548289| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.000781747141936602| -|cran|ncdf4|0.0007786038260800137| -|cran|plyr|0.0007721282130303474| -|cran|pkgload|0.000765958893552795| -|pypi|[Babel](http://babel.pocoo.org/)|0.0007535313903245689| -|cran|blob|0.0007382465193532396| -|cran|httpuv|0.0007295668522611416| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.0007201561360113606| -|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.0007172464046021092| -|cran|[rcrossref](https://github.com/ropensci/rcrossref)|0.0007151845637583891| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.0007150004320307109| -|pypi|[py](https://pypi.org/project/py)|0.0007130047011748988| -|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.0007009217558990556| -|cran|[data.table](https://r-datatable.com)|0.0006961433590055966| -|cran|usethis|0.0006925307674534126| -|pypi|[black](https://pypi.org/project/black)|0.0006924821823447922| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.0006779191582520679| -|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.0006760484001453374| -|cran|[numDeriv](http://optimizer.r-forge.r-project.org/)|0.0006755678249809401| -|cran|pkgconfig|0.0006754061049656539| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.0006675050480658141| -|pypi|[future](https://python-future.org)|0.0006615739625685539| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.0006605423635537497| -|cran|maps|0.0006576988252327968| -|cran|[lubridate](https://lubridate.tidyverse.org)|0.0006524215438850761| -|cran|dbplyr|0.0006522380239938767| -|cran|XML|0.0006521870376721014| -|cran|png|0.0006419287613486073| -|cran|brio|0.0006411145695851919| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.0006391166094239714| -|pypi|[ipython](https://pypi.org/project/ipython)|0.0006373491646451627| -|cran|[igraph](https://igraph.org)|0.0006179733829369578| -|npm|core-js|0.0006133821165049088| -|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.0006104009597216739| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.0006101657548267367| -|pypi|[py-make](https://pypi.org/project/py-make)|0.0006101657548267367| -|cran|[rgdal](http://rgdal.r-forge.r-project.org)|0.0006008290668166192| -|cran|[RCurl](http://www.omegahat.net/RCurl)|0.0006001762894602047| -|cran|RPostgreSQL|0.0005974789484667003| -|cran|waldo|0.000595536078941603| -|pypi|[ujson](https://pypi.org/project/ujson)|0.0005920237874835961| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.0005864441286678035| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.0005814951328780803| -|cran|simplermarkdown|0.0005807159855250664| -|cran|nlme|0.0005797017885599392| -|pypi|[decorator](https://pypi.org/project/decorator)|0.0005796382671775322| -|cran|mockr|0.0005794770417031327| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.0005785382583755284| -|cran|xfun|0.0005774590380088829| -|pypi|[enum34](https://pypi.org/project/enum34)|0.0005724116066613644| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.0005707544812745533| -|cran|rprojroot|0.0005610763178946831| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.0005580422518087392| -|cran|foreach|0.0005574511685055245| -|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.0005542700420384984| -|pypi|[apyori](https://github.com/ymoch/apyori)|0.0005536912751677852| -|pypi|[http](https://github.com/franckcuny/http)|0.0005536912751677852| -|pypi|[llist](https://github.com/ajakubek/python-llist)|0.0005536912751677852| -|npm||0.0005528838413299876| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.0005512602520697536| -|pypi|[isal](https://github.com/pycompression/python-isal)|0.0005481543624161073| -|cran|pkgbuild|0.0005459226233918479| -|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.0005408313529062852| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.0005404916638861274| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.0005396227226415738| -|cran|DiagrammeR|0.0005262988128677493| -|npm|[angular](http://angularjs.org)|0.0005241607409182912| -|pypi|[pygraphviz](http://pygraphviz.github.io)|0.0005237448694697488| -|pypi|[keras](https://keras.io/)|0.0005141076413786989| -|cran|crul|0.0005139454104610558| -|cran|Lahman|0.0005102978417699357| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.0005072421300207649| -|cran|pkgKitten|0.0005041807812161426| -|cran|formattable|0.0005005072767106925| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.0005003257525277464| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.0004993700047295304| -|pypi|[docopt](https://pypi.org/project/docopt)|0.0004984656633009748| -|cran|rappdirs|0.0004979599721146637| -|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.0004935669697682071| -|pypi|[bmipy](http://csdms.colorado.edu)|0.0004921700223713646| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.0004918193042611235| -|cran|inline|0.00049047692215574| -|npm|fs|0.00048736938752295364| -|npm|[express](http://expressjs.com/)|0.0004854105783059223| -|cran|ragg|0.00048447818542231514| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.0004828567112075004| -|cran|[webutils](https://github.com/jeroen/webutils)|0.0004814347923935762| -|cran|RMySQL|0.0004808597148713003| -|cran|lobstr|0.0004808597148713003| -|pypi|[pycparser](https://pypi.org/project/pycparser)|0.00047778961409395966| -|pypi|[commonmark](https://pypi.org/project/commonmark)|0.0004775325398489933| -|pypi|[psutil](https://pypi.org/project/psutil)|0.000476804431299652| -|pypi|[pulp](https://github.com/coin-or/pulp)|0.0004706375838926174| -|cran|fansi|0.0004679766841061359| -|cran|survival|0.00046377452407825103| -|cran|abind|0.00045468770937886387| -|cran|bslib|0.0004471446705996979| -|cran|chron|0.00044566079471251933| -|npm|[nuxt](https://github.com/nuxt/nuxt.js#readme)|0.0004429530201342282| -|cran|datasets|0.0004417247853305143| -|pypi|[pyfaidx](http://mattshirley.com)|0.0004394375199744327| -|cran|devtools|0.0004386008137089213| -|cran|winch|0.00043615816410589166| -|npm|[papaparse](http://papaparse.com)|0.00043615052732502393| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.0004348999145275404| -|pypi|[hunter](https://pypi.org/project/hunter)|0.0004348999145275404| -|pypi|[fields](https://pypi.org/project/fields)|0.0004348999145275404| -|pypi|[pyproj](https://pypi.org/project/pyproj)|0.00042905571296624937| -|pypi|[PyQt5-sip](https://pypi.org/project/PyQt5-sip)|0.00042824162548860535| -|cran|doParallel|0.00042680284296969437| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.00042646091464438907| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.0004257116393738053| -|cran|iterators|0.0004247057832181703| -|pypi|[seaborn](https://seaborn.pydata.org)|0.00042450137825877644| -|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.0004237364678272083| -|cran|ps|0.00042024214481972835| -|pypi|[pybedtools](https://github.com/daler/pybedtools)|0.00041966283157558325| -|pypi|[isort](https://pypi.org/project/isort)|0.0004181276841482904| -|pypi|[typing](https://docs.python.org/3/library/typing.html)|0.0004166526845637583| -|npm|[lodash](https://lodash.com/)|0.0004158133508173084| -|npm|[serve-static](https://github.com/expressjs/serve-static#readme)|0.000413758389261745| -|cran|SnowballC|0.00041044667748359024| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.0004104272191853122| -|pypi|[threadpoolctl](https://github.com/joblib/threadpoolctl)|0.00040458779468374387| -|cran|itertools|0.0004011999520613613| -|pypi|[python-magic](http://github.com/ahupp/python-magic)|0.00039988814317673375| -|pypi|[pillow](https://pypi.org/project/pillow)|0.0003967325126196687| -|cran|gtable|0.0003890123142987885| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.0003875874540846411| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.0003875874540846411| -|cran|ape|0.0003874785543638321| -|cran|timeDate|0.000384266632161941| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.00038159123620619694| -|pypi|[et-xmlfile](https://foss.heptapod.net/openpyxl/et_xmlfile)|0.0003804298126370274| -|cran|[readr](https://readr.tidyverse.org)|0.00038018827019402134| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.0003787204370713132| -|cran|tis|0.0003774572612002502| -|pypi|[dill](https://pypi.org/project/dill)|0.00037588254418959114| -|pypi|[llvmlite](http://llvmlite.readthedocs.io)|0.00037370347773032337| -|cran|vdiffr|0.00037223126691740083| -|pypi|[Cython](http://cython.org/)|0.0003718959731543624| -|pypi|[execnet](https://pypi.org/project/execnet)|0.00036957558650827687| -|pypi|[tenacity](https://pypi.org/project/tenacity)|0.0003694142355292857| -|npm|[finalhandler](https://github.com/pillarjs/finalhandler#readme)|0.0003691275167785235| -|pypi|[conan](https://conan.io)|0.0003691275167785235| -|pypi|[readthedocs-sphinx-search](https://github.com/readthedocs/readthedocs-sphinx-search)|0.0003691275167785235| -|pypi|[ruamel.YAML](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.0003691275167785235| -|pypi|[jmetalpy](https://github.com/jMetal/jMetalPy)|0.0003691275167785235| -|pypi|[pyMSA](https://github.com/benhid/pyMSA)|0.0003691275167785235| -|pypi|[rdflib-jsonld](https://github.com/RDFLib/rdflib-jsonld)|0.0003691275167785235| -|cran|[raster](https://rspatial.org/raster)|0.00036790812930434367| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.00036780694355349335| -|cran|[sys](https://github.com/jeroen/sys)|0.0003661023177888863| -|pypi|[pint](https://pypi.org/project/pint)|0.0003614813039309683| -|cran|assertthat|0.00036095877096687734| -|npm|[axios](https://axios-http.com)|0.00035740918291253857| -|cran|munsell|0.0003533423614865891| -|pypi|[babel](https://pypi.org/project/babel)|0.0003518654363318807| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.00035064359162510994| -|pypi|[Biopython](https://biopython.org/)|0.000345364932885906| -|pypi|[shiboken2](https://www.pyside.org)|0.0003442409395973154| -|cran|hexbin|0.0003434199090874799| -|cran|terra|0.0003427239769501481| -|cran|mvtnorm|0.0003414878099627521| -|cran|mapproj|0.0003412877435701779| -|cran|rpart|0.0003412412282486144| -|pypi|[pexpect](https://pypi.org/project/pexpect)|0.00034069124105178217| -|cran|[DT](https://github.com/rstudio/DT)|0.0003395290003106146| -|pypi|[typing_extensions](https://typing.readthedocs.io/)|0.00033930414394726493| -|cran|vroom|0.00033918834659520515| -|cran|[mgcv](NA)|0.00033828215139618744| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.00033544833464501717| -|pypi|[argparse](https://github.com/ThomasWaldmann/argparse/)|0.000335245040655653| -|cran|[lwgeom](https://github.com/r-spatial/lwgeom/)|0.000333955271806614| -|pypi|[scikit-image](https://scikit-image.org)|0.0003336244188412618| -|cran|clipr|0.00033172517863060315| -|pypi|[more_itertools](https://github.com/more-itertools/more-itertools)|0.0003313758389261745| -|pypi|[futures](https://pypi.org/project/futures)|0.00033135940847716934| -|cran|gstat|0.0003274310157449384| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.0003245015851975735| -|cran|patchwork|0.00032400678749781723| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.00032360229932752304| -|pypi|[dask](https://pypi.org/project/dask)|0.00032358333939925177| -|pypi|[intervaltree](https://github.com/chaimleib/intervaltree)|0.0003211409395973154| -|npm|[node-fetch](https://github.com/node-fetch/node-fetch)|0.00032101924920716865| -|cran|whoami|0.0003198908642654914| -|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.0003194372741352607| -|pypi|[PyQt5-Qt5](https://pypi.org/project/PyQt5-Qt5)|0.0003192989121616638| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.00031897736111774456| -|cran|sass|0.00031804442454589813| -|pypi|[tartiflette](https://tartiflette.io)|0.00031639501438159153| -|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.00031639501438159153| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.00031415503370436687| -|pypi|[codecov](https://github.com/codecov/codecov-python)|0.000311242683979163| -|pypi|[quantities](http://python-quantities.readthedocs.io/)|0.0003111052852348993| -|pypi|[appdirs](https://pypi.org/project/appdirs)|0.0003087163507633306| -|pypi|[nlppln](https://github.com/nlppln/nlppln)|0.00030760626398210287| -|cran|graph|0.0003073254794042697| -|pypi|[statsmodels](https://www.statsmodels.org/)|0.0003054183151798596| -|pypi|[jupyter](http://jupyter.org)|0.0003044354234272439| -|pypi|[semver](https://github.com/python-semver/python-semver)|0.00030415279211839613| -|cran|cachem|0.0003040501175478525| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.00030317877791751234| -|pypi|[redis](https://pypi.org/project/redis)|0.00030011748675907936| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.00029822846803783455| -|pypi|[python-levenshtein](http://github.com/ztane/python-Levenshtein)|0.00029756951102588683| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.0002965239755025653| -|npm|[d3-dispatch](https://d3js.org/d3-dispatch/)|0.0002950383509108341| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.00029380926373416663| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.0002922961901140167| -|npm|[three](https://threejs.org/)|0.0002878640939597315| -|pypi|[rtree](https://pypi.org/project/rtree)|0.00028731518153916685| -|cran|tzdb|0.0002854483888581654| -|cran|desc|0.0002850476729165221| -|cran|future|0.00028400615581542133| -|pypi|[sphinxcontrib-moderncmakedomain](https://github.com/scikit-build/moderncmakedomain)|0.0002838732576148683| -|pypi|[pydot](https://pypi.org/project/pydot)|0.00028372266660923535| -|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.0002828891988653006| -|pypi|[tornado](https://pypi.org/project/tornado)|0.00028268650329161296| -|pypi|[pycosat](https://github.com/ContinuumIO/pycosat)|0.0002814215985356925| -|pypi|[mappy](https://github.com/lh3/minimap2)|0.0002812400127836369| -|pypi|[pyhocon](http://github.com/chimpler/pyhocon/)|0.0002812400127836369| -|pypi|[Django](https://pypi.org/project/Django)|0.0002806242742637474| -|npm|file-type|0.00027918817759421785| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.00027795781339513516| -|cran|[insight](https://easystats.github.io/insight/)|0.00027746882241930687| -|npm|[quasar](https://quasar.dev)|0.0002768456375838926| -|npm|[midi-parser-js](https://github.com/colxi/midi-parser-js#readme)|0.0002768456375838926| -|npm|[plotly.js-dist-min](https://github.com/plotly/plotly.js#readme)|0.0002768456375838926| -|npm|[yargs](https://yargs.js.org/)|0.0002768456375838926| -|pypi|[shortuuid](https://github.com/skorokithakis/shortuuid/)|0.0002768456375838926| -|pypi|[ruamel_yaml_conda](https://pypi.org/project/ruamel_yaml_conda)|0.0002768456375838926| -|pypi|[menuinst](https://github.com/ContinuumIO/menuinst)|0.0002768456375838926| -|pypi|[lazyarray](http://github.com/NeuralEnsemble/lazyarray/)|0.0002768456375838926| -|pypi|[cherrypy](https://www.cherrypy.org)|0.0002768456375838926| -|pypi|[django-tastypie](https://github.com/django-tastypie/django-tastypie)|0.0002768456375838926| -|pypi|[South](http://south.aeracode.org/)|0.0002768456375838926| -|pypi|[pyxdg](http://freedesktop.org/wiki/Software/pyxdg)|0.0002768456375838926| -|pypi|[earthengine-api](http://code.google.com/p/earthengine-api/)|0.0002768456375838926| -|pypi|[openbabel](http://openbabel.org/)|0.0002768456375838926| -|pypi|[bitarray](https://github.com/ilanschnell/bitarray)|0.0002768456375838926| -|cran|Hmisc|0.00027592370562568453| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.0002750315881386112| -|cran|forcats|0.0002743385447109134| -|cran|parameters|0.00027381945507739435| -|pypi|[umap-learn](https://pypi.org/project/umap-learn)|0.0002735117231761527| -|cran|RUnit|0.0002733949683352677| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.00027317510566403927| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.00027008556972975327| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.00027008556972975327| -|cran|askpass|0.00026809497447142084| -|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.0002666479828895936| -|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.0002666479828895936| -|cran|SparseM|0.00026534750858842786| -|cran|R.methodsS3|0.0002626877976964874| -|rubygems|rake|0.0002612412122583962| -|pypi|[tzdata](https://github.com/python/tzdata)|0.0002600855826635081| -|cran|deldir|0.00025815588273280063| -|pypi|[bump2version](https://pypi.org/project/bump2version)|0.00025528507397998593| -|pypi|[cycler](https://github.com/matplotlib/cycler)|0.000250441253377495| +|cran|R|0.03459483212294504| +|pypi|[numpy](https://www.numpy.org)|0.03433503389896354| +|cran|[jsonlite](https://arxiv.org/abs/1403.2805 (paper))|0.028199251359688197| +|cran|[testthat](https://testthat.r-lib.org)|0.024186798443270662| +|cran|[httr](https://httr.r-lib.org/)|0.020714456795037903| +|cran|[knitr](https://yihui.org/knitr/)|0.01702485221808837| +|cran|[rmarkdown](https://github.com/rstudio/rmarkdown)|0.016051881658045594| +|pypi|[matplotlib](https://matplotlib.org)|0.014927141170386085| +|cran|utils|0.014069859671562381| +|cran|methods|0.013656483420909757| +|cran|[covr](https://covr.r-lib.org)|0.012615844951513489| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.009975448288340467| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.007907778054217511| +|cran|[tidyr](https://tidyr.tidyverse.org)|0.007355277544691568| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.006605534932474608| +|cran|[magrittr](https://magrittr.tidyverse.org)|0.006453801703007305| +|cran|[rlang](https://rlang.r-lib.org)|0.006024331858082589| +|cran|stats|0.005373097818838152| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.005163570417434633| +|cran|[withr](https://withr.r-lib.org)|0.005109718344753375| +|pypi|[six](https://pypi.org/project/six)|0.005088112536986267| +|cran|[yaml](https://github.com/vubiostat/r-yaml/)|0.004611015136511384| +|cran|[tibble](https://tibble.tidyverse.org/)|0.004557139698925646| +|cran|tools|0.00433075367528893| +|cran|[curl](https://github.com/jeroen/curl (devel) https://curl.se/libcurl/ +(upstream))|0.004124929907265835| +|pypi|[biopython](https://biopython.org/)|0.004053039927086237| +|pypi|[h5py](http://www.h5py.org)|0.0039924377163693195| +|cran|[Rcpp](http://www.rcpp.org)|0.003935628524548365| +|cran|[vctrs](https://vctrs.r-lib.org/)|0.0036369965360368906| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.003605360116434573| +|cran|[R6](https://r6.r-lib.org)|0.003590816970177616| +|cran|grDevices|0.0033971234797945987| +|cran|graphics|0.0031929479022598296| +|cran|[crayon](https://github.com/r-lib/crayon#readme)|0.00318913189284851| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.003123330437733351| +|cran|[ggplot2](https://ggplot2.tidyverse.org)|0.0030688590968022803| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002996679591096132| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.0029804931957098353| +|pypi|[lxml](https://pypi.org/project/lxml)|0.00297719496186923| +|cran|[spelling](https://github.com/ropensci/spelling#readme)|0.0029158343971456297| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.002874249236735988| +|cran|[dplyr](https://dplyr.tidyverse.org)|0.002819186663106828| +|cran|[pryr](https://github.com/hadley/pryr)|0.0028009702854728544| +|cran|[glue](https://github.com/tidyverse/glue)|0.0026870704469316663| +|pypi|[numba](https://numba.pydata.org)|0.002592841877361804| +|pypi|[requests](https://pypi.org/project/requests)|0.0024464921106993782| +|cran|[digest](https://github.com/eddelbuettel/digest)|0.002437888278896484| +|cran|[roxygen2](https://roxygen2.r-lib.org/)|0.0024329679392081807| +|pypi|[pytz](https://pypi.org/project/pytz)|0.00243056943790324| +|cran|[htmltools](https://github.com/rstudio/htmltools)|0.0024065293229246117| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.0023665400845621497| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.0020282067065196586| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.0020095230085622686| +|cran|[tinytest](https://github.com/markvanderloo/tinytest)|0.002004788964535879| +|pypi|[scipy](https://www.scipy.org)|0.0019985565482753486| +|cran|[rstudioapi](https://github.com/rstudio/rstudioapi)|0.0019953648376784504| +|cran|[mockery](https://github.com/r-lib/mockery)|0.001987295077652944| +|pypi|[contextlib2](http://contextlib2.readthedocs.org)|0.0019740591929706132| +|pypi|[packaging](https://pypi.org/project/packaging)|0.0019431336991752688| +|cran|[stringi](https://stringi.gagolewski.com/ https://icu.unicode.org/)|0.0018401776756390867| +|cran|[MASS](http://www.stats.ox.ac.uk/pub/MASS4/)|0.0018350562326889391| +|cran|[xml2](https://xml2.r-lib.org/)|0.0018264405490459833| +|cran|[cli](https://cli.r-lib.org)|0.001780220021593451| +|cran|[pillar](https://pillar.r-lib.org/)|0.0017536838474702416| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.0017491067121146373| +|cran|[shiny](https://shiny.rstudio.com/)|0.0017328411157388917| +|cran|[bit64](https://github.com/truecluster/bit64)|0.0017236100111834868| +|pypi|[flake8](https://pypi.org/project/flake8)|0.00170725682323388| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.001701601468879362| +|cran|[lifecycle](https://lifecycle.r-lib.org/)|0.0016987565090319841| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.0016610681458322926| +|cran|[callr](https://callr.r-lib.org)|0.0016485254799435123| +|cran|[purrr](http://purrr.tidyverse.org)|0.0016434860657080221| +|pypi|[tomli](https://pypi.org/project/tomli)|0.0016257850092868842| +|pypi|[pandas](https://pandas.pydata.org)|0.0015964186009441942| +|cran|[lattice](http://lattice.r-forge.r-project.org/)|0.0014968370152055382| +|cran|[tidyselect](https://tidyselect.r-lib.org)|0.0014932807251432992| +|cran|[processx](https://processx.r-lib.org)|0.001432495801148572| +|cran|[DBI](https://dbi.r-dbi.org)|0.0014110358093505399| +|cran|[rbenchmark](http://rbenchmark.googlecode.com)|0.0013916472333871596| +|pypi|[mypy](https://pypi.org/project/mypy)|0.001386410358590583| +|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.0013860499139414803| +|pypi|[mock](https://pypi.org/project/mock)|0.0013758679272941334| +|pypi|[idna](https://github.com/kjd/idna)|0.0013722420272384128| +|cran|[bitops](https://github.com/mmaechler/R-bitops)|0.0013703968769049509| +|cran|[markdown](https://github.com/rstudio/markdown)|0.0013630830245250647| +|pypi|[certifi](https://pypi.org/project/certifi)|0.0013557745777998105| +|cran|[sp](https://github.com/edzer/sp/ https://edzer.github.io/sp/)|0.0013535826474691114| +|cran|[zoo](http://zoo.R-Forge.R-project.org/)|0.0013498206296207406| +|pypi|[Sphinx](https://www.sphinx-doc.org/)|0.0013475386411156566| +|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.001329632394806558| +|cran|parallel|0.0013266308148621984| +|cran|[pracma](NA)|0.0013025594376042716| +|cran|[htmlwidgets](https://github.com/ramnathv/htmlwidgets)|0.0013010529341724356| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.0012755314630039723| +|cran|[RSQLite](https://rsqlite.r-dbi.org)|0.001263603661418508| +|pypi|[future](https://pypi.org/project/future)|0.0012596786494052182| +|pypi|[click](https://pypi.org/project/click)|0.0012475231161994547| +|cran|grid|0.0012431534090946617| +|cran|[hms](https://hms.tidyverse.org/)|0.0012420657501443385| +|pypi|[Babel](https://pypi.org/project/Babel)|0.001215691431796665| +|cran|[stringr](http://stringr.tidyverse.org)|0.0012126895621582309| +|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.0011912143488102443| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.0011649850025011361| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.0011333704585880183| +|pypi|[defusedxml](https://github.com/tiran/defusedxml)|0.0010732230703202734| +|cran|[R.utils](https://github.com/HenrikBengtsson/R.utils)|0.0010693361408510929| +|pypi|[pygments](https://pypi.org/project/pygments)|0.0010673443322513263| +|pypi|[chardet](https://pypi.org/project/chardet)|0.0010383126653483712| +|cran|[mime](https://github.com/yihui/mime)|0.0010296712415911373| +|pypi|[isal](https://github.com/pycompression/python-isal)|0.001025114909638554| +|cran|[microbenchmark](https://github.com/joshuaulrich/microbenchmark/)|0.0010239653309060486| +|cran|[nycflights13](https://github.com/hadley/nycflights13)|0.0010147616588765179| +|pypi|[wheel](https://pypi.org/project/wheel)|0.0009681764600550026| +|pypi|[docopt](https://pypi.org/project/docopt)|0.0009573461366382111| +|pypi|[joblib](https://joblib.readthedocs.io)|0.0009568826020326367| +|cran|[webmockr](https://github.com/ropensci/webmockr (devel) +https://books.ropensci.org/http-testing/ (user manual) +https://docs.ropensci.org/webmockr/ (documentation))|0.0009495885896783475| +|cran|ellipsis|0.000946117874209225| +|cran|[unix](https://github.com/jeroen/unix)|0.0009451518489926089| +|cran|bench|0.000923123366326633| +|cran|[xts](https://github.com/joshuaulrich/xts)|0.0009177181033137677| +|cran|[Matrix](http://Matrix.R-forge.R-project.org/)|0.0009119871321005778| +|cran|[nanotime](https://github.com/eddelbuettel/nanotime)|0.0008999561867721025| +|cran|[broom](https://broom.tidymodels.org/)|0.0008919104809851197| +|cran|[rgl](https://github.com/dmurdoch/rgl)|0.0008805812569133232| +|cran|[httpcode](https://github.com/sckott/httpcode)|0.000878612901210189| +|cran|[generics](https://generics.r-lib.org)|0.0008756402012776802| +|cran|[bit](https://github.com/truecluster/bit)|0.0008688483005714295| +|cran|evaluate|0.000864733376511619| +|pypi|[nose](https://pypi.org/project/nose)|0.0008568863946821556| +|pypi|[smmap](https://pypi.org/project/smmap)|0.0008531900334658528| +|cran|[maptools](http://maptools.r-forge.r-project.org/)|0.0008530925119658258| +|cran|[scales](https://scales.r-lib.org)|0.000852392827861058| +|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.0008386559520540929| +|cran|[fs](https://fs.r-lib.org)|0.0008259038308673948| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.0008252971675909484| +|cran|RColorBrewer|0.0008240069372671377| +|cran|[rgeos](https://r-forge.r-project.org/projects/rgeos/ https://libgeos.org +http://rgeos.r-forge.r-project.org/index.html)|0.0008183359126582197| +|cran|[sf](https://r-spatial.github.io/sf/)|0.0008068501151515312| +|pypi|[attrs](https://pypi.org/project/attrs)|0.0008031259150515656| +|cran|tcltk|0.0008021244418094772| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.000801119488848297| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.000800794187174928| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.0007999503925123647| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.0007869074201137029| +|cran|[fauxpas](https://docs.ropensci.org/fauxpas)|0.0007707219242589057| +|cran|[urltools](https://github.com/Ironholds/urltools/)|0.0007690782235384633| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.0007644574513828009| +|cran|[ncdf4](http://cirrus.ucsd.edu/~pierce/ncdf/)|0.0007624006796446137| +|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.0007590408386793929| +|cran|[plyr](http://had.co.nz/plyr)|0.000756059827436069| +|pypi|[cffi](http://cffi.readthedocs.org)|0.0007523718700279258| +|cran|[pkgload](https://github.com/r-lib/pkgload)|0.0007500188946727266| +|pypi|[wrapt](https://pypi.org/project/wrapt)|0.0007464547014487439| +|cran|[blob](https://blob.tidyverse.org)|0.000722883229246218| +|cran|[httpuv](https://github.com/rstudio/httpuv)|0.0007143841904944806| +|pypi|[pillow](https://python-pillow.org)|0.0007082898750348318| +|cran|[rcrossref](https://github.com/ropensci/rcrossref)|0.0007003012048192771| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.0006874024824985347| +|pypi|[pywin32](https://pypi.org/project/pywin32)|0.0006828569569169535| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.0006823512424975742| +|cran|[data.table](https://r-datatable.com)|0.0006816562573395442| +|cran|[usethis](https://usethis.r-lib.org)|0.0006781188456772734| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.0006676271248038155| +|cran|[numDeriv](http://optimizer.r-forge.r-project.org/)|0.0006615089107699457| +|cran|pkgconfig|0.0006613505562314294| +|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.0006561550773210914| +|pypi|[enum34](https://pypi.org/project/enum34)|0.000650072511570503| +|pypi|[ipython](https://pypi.org/project/ipython)|0.0006480233169906701| +|cran|[maps](NA)|0.0006440117741052799| +|pypi|[brotli](https://pypi.org/project/brotli)|0.0006408575100120244| +|cran|[lubridate](https://lubridate.tidyverse.org)|0.0006388443156990783| +|cran|[dbplyr](https://dbplyr.tidyverse.org/)|0.0006386646149512879| +|cran|[XML](http://www.omegahat.net/RSXML/)|0.0006386146896811155| +|pypi|[twine](https://pypi.org/project/twine)|0.000638464203166059| +|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.0006324779881070101| +|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.0006291951270158665| +|cran|[png](http://www.rforge.net/png/)|0.0006285698933687352| +|cran|[brio](https://brio.r-lib.org)|0.0006277726453550514| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.0006267790053583557| +|pypi|[semver](https://github.com/python-semver/python-semver)|0.0006245165718162186| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.0006238071761345054| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.0006208286422394833| +|pypi|[sphinxext-opengraph](https://github.com/wpilibsuite/sphinxext-opengraph)|0.00061293306857163| +|pypi|[msgpack](https://msgpack.org/)|0.000608285249185799| +|npm|[core-js](https://github.com/zloirock/core-js#readme)|0.0006059147586586949| +|cran|[igraph](https://igraph.org)|0.0006051130387137356| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.0005967276358337615| +|pypi|[ujson](https://pypi.org/project/ujson)|0.0005926731153208985| +|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.000591890743507558| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.0005900121717688252| +|cran|[rgdal](http://rgdal.r-forge.r-project.org)|0.0005883255046375217| +|cran|[RCurl](http://www.omegahat.net/RCurl)|0.0005876863119139356| +|cran|RPostgreSQL|0.0005850451039750607| +|cran|[waldo](https://github.com/r-lib/waldo)|0.0005831426665649431| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.0005822260068689227| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.0005822260068689227| +|pypi|[keras](https://pypi.org/project/keras)|0.000578077126250281| +|pypi|[statsmodels](https://pypi.org/project/statsmodels)|0.0005757174908433794| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.0005724222081952403| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.0005709056535037952| +|cran|[simplermarkdown](https://github.com/djvanderlaan/simplermarkdown)|0.0005686309869215876| +|cran|[nlme](https://svn.r-project.org/R-packages/trunk/nlme/)|0.0005676378959173998| +|cran|mockr|0.0005674178261583798| +|cran|[xfun](https://github.com/yihui/xfun)|0.0005654418181598482| +|npm|[nuxt](https://github.com/nuxt/nuxt.js#readme)|0.0005596385542168675| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.0005588979202748989| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.0005508144707133262| +|cran|[rprojroot](https://rprojroot.r-lib.org/)|0.0005494000308848267| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.00054615121690258| +|cran|[foreach](https://github.com/RevolutionAnalytics/foreach)|0.0005458503227206338| +|pypi|[openphi](https://gitlab.com/BioimageInformaticsGroup/openphi)|0.0005421686746987952| +|pypi|[apyori](https://github.com/ymoch/apyori)|0.0005421686746987952| +|pypi|[http](https://github.com/franckcuny/http)|0.0005421686746987952| +|pypi|[llist](https://github.com/ajakubek/python-llist)|0.0005403614457831326| +|pypi|[check-manifest](https://github.com/mgedmin/check-manifest)|0.0005372447594087619| +|pypi|[markdown2](https://github.com/trentm/python-markdown2)|0.0005361528878014535| +|pypi|[olefile](https://www.decalage.info/python/olefileio)|0.0005361528878014535| +|cran|pkgbuild|0.0005345616925655117| +|pypi|[sphinx-copybutton](https://github.com/executablebooks/sphinx-copybutton)|0.0005299915716575908| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.0005264157587362016| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.000525506886207626| +|pypi|[black](https://pypi.org/project/black)|0.0005238315283381097| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.0005234145191879192| +|npm|[angular](http://angularjs.org)|0.0005197587101653367| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.000519068102324283| +|cran|[DiagrammeR](https://github.com/rich-iannone/DiagrammeR)|0.0005153462636404906| +|pypi|[SQLAlchemy](https://www.sqlalchemy.org)|0.0005104093907090021| +|pypi|[py](https://pypi.org/project/py)|0.000508908223164955| +|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.0005039298608444769| +|cran|[crul](https://docs.ropensci.org/crul/ (website) +https://github.com/ropensci/crul (devel) +https://books.ropensci.org/http-testing/ (user manual))|0.0005032499418972444| +|pypi|[psutil](https://pypi.org/project/psutil)|0.0005017764539983165| +|cran|Lahman|0.0004996782809883057| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.0004995317499309193| +|pypi|[tornado](http://www.tornadoweb.org/)|0.0004939191301162527| +|cran|[pkgKitten](https://github.com/eddelbuettel/pkgkitten)|0.000493688519613616| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.0004926265504378866| +|pypi|[sphinx-issues](https://github.com/sloria/sphinx-issues)|0.0004917624041242013| +|cran|formattable|0.0004900914626279948| +|cran|[rappdirs](https://rappdirs.r-lib.org)|0.0004875971687519269| +|pypi|[munkres](https://pypi.org/project/munkres)|0.00048616148660063087| +|pypi|[pyroma](https://github.com/regebro/pyroma)|0.0004859732584259239| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.00048576092928461227| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.0004827130644229694| +|cran|[inline](https://github.com/eddelbuettel/inline)|0.0004802698449148208| +|pypi|[PyQt5-sip](https://pypi.org/project/PyQt5-sip)|0.00047854385596685377| +|npm|[fs](https://github.com/npm/security-holder#readme)|0.00047722697967745957| +|npm|[express](http://expressjs.com/)|0.00047717263910788005| +|npm|[lodash](https://lodash.com/)|0.0004753510570591012| +|cran|[ragg](https://ragg.r-lib.org)|0.0004743959449808873| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.00047156332354667576| +|cran|[webutils](https://github.com/jeroen/webutils)|0.0004714158865277734| +|cran|RMySQL|0.0004708527766647788| +|cran|lobstr|0.0004708527766647788| +|pypi|[sphinx-removed-in](https://github.com/MrSenko/sphinx-removed-in)|0.00046973044804241737| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.00046879152153420317| +|pypi|[commonmark](https://pypi.org/project/commonmark)|0.00045975792896862174| +|cran|fansi|0.0004582378484018461| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.00045632039534226145| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.00045632039534226145| +|cran|[survival](https://github.com/therneau/survival)|0.0004541231374873564| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.00045238431627529687| +|pypi|[bmipy](http://csdms.colorado.edu)|0.00045180722891566266| +|pypi|[pulp](https://github.com/coin-or/pulp)|0.0004518072289156626| +|pypi|[pyasn1](https://pypi.org/project/pyasn1)|0.000447487035488207| +|cran|[abind](NA)|0.00044522542407963235| +|pypi|[sympy](https://pypi.org/project/sympy)|0.00044471923956674626| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.0004404602109796653| +|cran|[bslib](https://rstudio.github.io/bslib/)|0.0004378393598205147| +|pypi|[toml](https://pypi.org/project/toml)|0.00043761500460807415| +|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.00043755046706991533| +|cran|chron|0.0004363863641544278| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.00043620031424988905| +|pypi|[pysqlite3](https://github.com/coleifer/pysqlite3)|0.0004330120481927711| +|cran|datasets|0.00043253226515386594| +|cran|[devtools](https://devtools.r-lib.org/)|0.0004294733049898964| +|cran|[winch](https://r-prof.github.io/winch/)|0.0004270814881825485| +|npm|[papaparse](http://papaparse.com)|0.0004270740103270224| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.00042679931100491204| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.00042679931100491204| +|cran|[doParallel](https://github.com/RevolutionAnalytics/doparallel)|0.0004179208560951882| +|cran|iterators|0.00041586743723663123| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.00041283031506921425| +|cran|[ps](https://github.com/r-lib/ps#readme)|0.00041149668945108077| +|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.0004112912555437086| +|npm|[serve-static](https://github.com/expressjs/serve-static#readme)|0.0004070115690032859| +|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.00040696296686746996| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.0004061248487153894| +|npm|nestjs|0.0004043291811313049| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.000403216193252284| +|cran|[SnowballC](https://r-forge.r-project.org/projects/r-temis/)|0.0004019050708327817| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.00039785231970105184| +|pypi|[typing](https://pypi.org/project/typing)|0.0003960445539024231| +|cran|itertools|0.00039285077452667807| +|pypi|[et-xmlfile](https://pypi.org/project/et-xmlfile)|0.00039225071812548553| +|pypi|[python-magic](http://github.com/ahupp/python-magic)|0.000391566265060241| +|pypi|[isort](https://pypi.org/project/isort)|0.00039146263957103223| +|pypi|[python-levenshtein](http://github.com/ztane/python-Levenshtein)|0.00039113597246127365| +|npm|[axios](https://axios-http.com)|0.0003867285121113996| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.00038649192506106137| +|pypi|[babel](https://pypi.org/project/babel)|0.0003854164072449969| +|pypi|[pyfaidx](http://mattshirley.com)|0.0003838209982788296| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.00038268495576706683| +|npm|[react-dom](https://reactjs.org/)|0.0003824039160564474| +|npm|[react](https://reactjs.org/)|0.0003824039160564474| +|cran|gtable|0.00038091676777997493| +|cran|[ape](http://ape-package.ird.fr/)|0.00037941492617882353| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.00037856498026064557| +|npm|[node-fetch](https://github.com/node-fetch/node-fetch)|0.0003773788392534563| +|cran|timeDate|0.00037626984573140796| +|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.0003739541494308567| +|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.0003731474454316688| +|pypi|[py-make](https://pypi.org/project/py-make)|0.0003731474454316688| +|cran|[readr](https://readr.tidyverse.org)|0.00037227635657552594| +|pypi|[PyQt5-Qt5](https://pypi.org/project/PyQt5-Qt5)|0.0003718682965864752| +|cran|tis|0.00036960218128480164| +|pypi|[llvmlite](https://pypi.org/project/llvmlite)|0.0003659265159812805| +|cran|vdiffr|0.0003644849426332493| +|pypi|[ruamel.yaml.clib](https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree)|0.00036290211709287393| +|pypi|[conan](https://conan.io)|0.00036144578313253013| +|pypi|[readthedocs-sphinx-search](https://github.com/readthedocs/readthedocs-sphinx-search)|0.00036144578313253013| +|pypi|[ruamel.YAML](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.00036144578313253013| +|pypi|[udatetime](https://github.com/freach/udatetime)|0.00036144578313253013| +|npm|[finalhandler](https://github.com/pillarjs/finalhandler#readme)|0.00036144578313253013| +|cran|[raster](https://rspatial.org/raster)|0.0003602517717394123| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.00035944485061267285| +|cran|[sys](https://github.com/jeroen/sys)|0.00035848354009119875| +|pypi|[multidict](https://pypi.org/project/multidict)|0.0003540979491259669| +|pypi|[pint](https://github.com/hgrecco/pint)|0.0003539586919104992| +|cran|assertthat|0.00035344703312638364| +|pypi|[locket](https://pypi.org/project/locket)|0.0003525691346487214| +|pypi|[types-setuptools](https://github.com/python/typeshed)|0.0003516203821201967| +|pypi|[futures](https://pypi.org/project/futures)|0.0003495726283393894| +|pypi|[pybedtools](https://github.com/daler/pybedtools)|0.0003476764199655766| +|pypi|[networkx](https://pypi.org/project/networkx)|0.00034715757196684065| +|cran|munsell|0.00034598912504820464| +|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.0003443322296563426| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.00034419414952032893| +|pypi|[codecov](https://pypi.org/project/codecov)|0.00034256332984919895| +|pypi|[pyproj](https://github.com/pyproj4/pyproj)|0.0003390131102316537| +|pypi|[typing_extensions](https://pypi.org/project/typing_extensions)|0.0003373205027103714| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.00033707732239264624| +|pypi|[shiboken2](https://www.pyside.org)|0.00033707710843373494| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.0003370151533057934| +|cran|[hexbin](https://github.com/edzer/hexbin)|0.00033627316399146467| +|cran|[terra](https://rspatial.org/terra/)|0.00033559171456016694| +|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.0003350184305862606| +|cran|[mvtnorm](http://mvtnorm.R-forge.R-project.org)|0.0003343812728441407| +|cran|mapproj|0.0003341853699361873| +|cran|[rpart](https://github.com/bethatkinson/rpart)|0.0003341398226224113| +|pypi|[dask](https://pypi.org/project/dask)|0.00033274066961726007| +|pypi|[pexpect](https://pypi.org/project/pexpect)|0.0003325002614798056| +|cran|[DT](https://github.com/rstudio/DT)|0.0003324632270292328| +|cran|[vroom](https://vroom.r-lib.org)|0.0003321296624930047| +|cran|[mgcv](NA)|0.000331242325682576| +|pypi|[mappy](https://github.com/lh3/minimap2)|0.0003296041308089501| +|cran|[lwgeom](https://github.com/r-spatial/lwgeom/)|0.00032700549068468007| +|pypi|[gitdb](https://pypi.org/project/gitdb)|0.0003252384215235783| +|cran|[clipr](https://github.com/mdlincoln/clipr)|0.00032482180689568356| +|pypi|[more_itertools](https://github.com/more-itertools/more-itertools)|0.00032447973713033954| +|pypi|[argparse](https://pypi.org/project/argparse)|0.0003221190698645483| +|cran|[gstat](https://github.com/r-spatial/gstat/)|0.00032061700775024634| +|npm|[d3](https://d3js.org)|0.00031949379149250057| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.00031744876952075453| +|pypi|[hunter](https://pypi.org/project/hunter)|0.00031744876952075453| +|pypi|[fields](https://pypi.org/project/fields)|0.00031744876952075453| +|cran|[patchwork](https://patchwork.data-imaginist.com)|0.0003172640394556942| +|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.0003156449288964685| +|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.00031523563484708064| +|pypi|[intervaltree](https://github.com/chaimleib/intervaltree)|0.0003139156626506024| +|cran|[whoami](https://github.com/r-lib/whoami#readme)|0.0003132337707046541| +|cran|[sass](https://github.com/rstudio/sass)|0.0003114257563461479| +|pypi|[entrypoints](https://github.com/takluyver/entrypoints)|0.0003061361126353894| +|pypi|[quantities](http://python-quantities.readthedocs.io/)|0.00030463102409638556| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.00030412235341611076| +|pypi|[pydot](https://pypi.org/project/pydot)|0.00030193148822005024| +|pypi|[pytest-timeout](https://github.com/pytest-dev/pytest-timeout)|0.00030188312250042416| +|pypi|[nlppln](https://github.com/nlppln/nlppln)|0.0003012048192771084| +|cran|graph|0.000300929877970884| +|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.0002998865077645738| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.0002996697086565557| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.00029886169618719517| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.00029886169618719517| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.0002988616961871951| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.0002988616961871951| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.0002988616961871951| +|pypi|[rdflib-jsonld](https://github.com/RDFLib/rdflib-jsonld)|0.0002979216867469879| +|cran|cachem|0.0002977226780808108| +|pypi|[scikit-image](https://scikit-image.org)|0.0002953022763800905| +|pypi|[tzdata](https://pypi.org/project/tzdata)|0.0002947500421807956| +|pypi|[async-generator](https://github.com/python-trio/async_generator)|0.00029362759729793515| +|pypi|[sqlparse](https://pypi.org/project/sqlparse)|0.00028943053814082685| +|npm|[d3-dispatch](https://d3js.org/d3-dispatch/)|0.00028889845094664374| +|npm|[mocha](https://mochajs.org/)|0.00028854750485385637| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.00028583416836748906| +|pypi|[jupyter](https://pypi.org/project/jupyter)|0.00028413975789256477| +|npm|[three](https://threejs.org/)|0.00028322891566265063| +|pypi|[greenlet](https://pypi.org/project/greenlet)|0.00028121157968105567| +|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.00027990574253886384| +|cran|tzdb|0.0002795080609410732| +|pypi|[rtree](https://github.com/Toblerity/rtree)|0.00027929901423877324| +|cran|[desc](https://github.com/r-lib/desc#readme)|0.00027911568410445866| +|npm|[ajv](https://ajv.js.org)|0.000278930849448213| +|cran|[future](https://future.futureverse.org)|0.00027809584151039073| +|pypi|[pycosat](https://pypi.org/project/pycosat)|0.000275565070198148| +|pypi|[pyhocon](http://github.com/chimpler/pyhocon/)|0.0002753872633390706| +|pypi|[astropy](https://pypi.org/project/astropy)|0.0002750918303615278| +|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.00027467753366406804| +|pypi|[Django](https://pypi.org/project/Django)|0.00027341508613446853| +|npm|[file-type](https://github.com/sindresorhus/file-type#readme)|0.0002733781278962002| +|pypi|[redis](https://pypi.org/project/redis)|0.00027275415915418874| +|pypi|[umap-learn](http://github.com/lmcinnes/umap)|0.00027229269498300164| +|cran|[insight](https://easystats.github.io/insight/)|0.00027169455338757974| +|pypi|[sphinxcontrib-moderncmakedomain](https://github.com/scikit-build/moderncmakedomain)|0.0002710843373493976| +|pypi|[dymos](https://github.com/OpenMDAO/dymos)|0.0002710843373493976| +|pypi|[openmdao](http://openmdao.org)|0.0002710843373493976| +|pypi|[pyDOE2](https://github.com/clicumu/pyDOE2)|0.0002710843373493976| +|pypi|[Cactus](http://github.com/koenbok/Cactus)|0.0002710843373493976| +|pypi|[cigar](https://github.com/brentp/cigar)|0.0002710843373493976| +|pypi|[django-tastypie](https://github.com/django-tastypie/django-tastypie)|0.0002710843373493976| +|pypi|[South](http://south.aeracode.org/)|0.0002710843373493976| +|pypi|[sphinx_bootstrap_theme](https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html)|0.0002710843373493976| +|pypi|[cherrypy](https://www.cherrypy.org)|0.0002710843373493976| +|pypi|[ruamel_yaml_conda](https://pypi.org/project/ruamel_yaml_conda)|0.0002710843373493976| +|pypi|[menuinst](https://github.com/ContinuumIO/menuinst)|0.0002710843373493976| +|pypi|[PyNN](http://neuralensemble.org/PyNN/)|0.0002710843373493976| +|pypi|[lazyarray](http://github.com/NeuralEnsemble/lazyarray/)|0.0002710843373493976| +|npm|[midi-parser-js](https://github.com/colxi/midi-parser-js#readme)|0.0002710843373493976| +|npm|[yargs](https://yargs.js.org/)|0.0002710843373493976| +|npm|[plotly.js-dist-min](https://github.com/plotly/plotly.js#readme)|0.0002710843373493976| +|npm|[docusaurus](https://github.com/facebook/docusaurus)|0.0002710843373493976| +|npm|[quasar](https://quasar.dev)|0.0002710843373493976| +|cran|[Hmisc](https://hbiostat.org/R/Hmisc/)|0.0002701815912698378| +|cran|[forcats](https://forcats.tidyverse.org)|0.0002686294183697225| +|cran|[parameters](https://easystats.github.io/parameters/)|0.00026812113125869723| +|pypi|[Flask](https://palletsprojects.com/p/flask)|0.00026806674609633556| +|cran|RUnit|0.00026770547830419424| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.0002655952030197885| +|pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.0002646750192369238| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.00026427816187691287| +|pypi|[fs](https://pypi.org/project/fs)|0.0002641045390301291| +|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.0002635506732813607| +|cran|[askpass](https://github.com/jeroen/askpass#readme)|0.00026251578004101903| +|pypi|[bump2version](https://pypi.org/project/bump2version)|0.00026056547930853853| +|npm|[vows](https://github.com/cloudhead/vows)|0.0002603519127463744| +|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.0002602409638554217| +|cran|[SparseM](http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html)|0.00025982549033740906| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.0002595164773231884| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.00025832426604619814| +|cran|[R.methodsS3](https://github.com/HenrikBengtsson/R.methodsS3)|0.00025722112939831305| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.00025663835689503594| +|pypi|[Markdown](https://pypi.org/project/Markdown)|0.00025387832321019615| +|cran|[deldir](https://www.stat.auckland.ac.nz/~rolf/)|0.00025278352591798876| +|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.00025023127354824624| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.00024952823099439803| +|pypi|[decorator](https://pypi.org/project/decorator)|0.00024823438579295336| +|pypi|[oauthlib](https://pypi.org/project/oauthlib)|0.0002480934092226953| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.0002474486395554112| |cran|[magick](https://docs.ropensci.org/magick/ (website) -https://github.com/ropensci/magick (devel))|0.00024894580437966675| -|pypi|[sqlparse](https://github.com/andialbrecht/sqlparse)|0.00024817871644188536| -|cran|fields|0.0002479339570968096| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.00024731818007016956| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.0002457262509000701| -|cran|R.oo|0.00024526412397884604| -|cran|gridExtra|0.0002449821483591109| -|cran|base64enc|0.000244042097179113| -|cran|[outsider.base](https://docs.ropensci.org/outsider.base)|0.00024331993509845858| -|pypi|[freesasa](http://freesasa.github.io/)|0.00024284705051218648| -|pypi|[pip](https://pypi.org/project/pip)|0.00024258337059406167| -|cran|interp|0.00024239455427847774| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.00024217240995824414| -|cran|googleCloudStorageR|0.0002412667579471512| -|pypi|[furo](https://pypi.org/project/furo)|0.00024087125499354953| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.00024069062806199906| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.0002387562702328291| -|npm|mocha|0.00023874770140721574| -|cran|lme4|0.00023852033022217349| -|cran|fastmatch|0.0002371445754742854| -|cran|lintr|0.00023711847944911417| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.00023679994905220387| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.00023679994905220387| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.00023679994905220387| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.00023679994905220387| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.00023679994905220387| -|cran|googleAuthR|0.00023634040935342697| -|cran|promises|0.00023632204819679334| -|pypi|[networkx](https://networkx.org/)|0.0002361996257695595| -|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.00023504056551534627| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.0002349781261468131| -|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.0002348993288590604| -|cran|nnet|0.000234635977971278| -|pypi|[pep517](https://pypi.org/project/pep517)|0.00023395544679907893| -|npm|[react](https://reactjs.org/)|0.00023233356144403253| -|npm|react-dom|0.00023233356144403253| -|cran|aws.s3|0.00023128837441016673| -|cran|Cairo|0.0002309561857800544| -|cran|quantreg|0.00023048098832884948| -|cran|triebeard|0.00023046707214765101| -|cran|svglite|0.00023045538252815795| -|pypi|[django](https://www.djangoproject.com/)|0.00022992033432691882| -|cran|backports|0.00022949679730592613| -|pypi|[smmap](https://pypi.org/project/smmap)|0.00022931924954240388| -|cran|tinytex|0.00022830118467653292| -|pypi|[python](http://www.python.org/2.5)|0.0002274089165867689| -|cran|codetools|0.00022698404396421617| -|rubygems|rspec|0.00022583423819540094| -|cran|ggplot2movies|0.00022391510796975292| -|pypi|[editdistance](https://www.github.com/roy-ht/editdistance)|0.00022371364653243848| -|pypi|[toml](https://pypi.org/project/toml)|0.00022174493602184237| -|npm|[remark-directive](https://github.com/remarkjs/remark-directive#readme)|0.0002214765100671141| -|pypi|[chemparse](https://pypi.org/project/chemparse)|0.0002214765100671141| -|pypi|[pysqlite3](https://github.com/coleifer/pysqlite3)|0.0002214765100671141| -|pypi|[cigar](https://github.com/brentp/cigar)|0.0002214765100671141| -|pypi|[pymbar](http://github.com/choderalab/pymbar)|0.0002214765100671141| -|pypi|[udatetime](https://github.com/freach/udatetime)|0.0002214765100671141| -|pypi|[jq](http://github.com/mwilliamson/jq.py)|0.0002214765100671141| -|pypi|[segments](https://github.com/cldf/segments)|0.0002214765100671141| -|pypi|[dlinfo](https://code.grasp-open.com/grasp-tools/python-dlinfo)|0.0002214765100671141| -|cran|tuneR|0.0002214765100671141| -|pypi|[music21](https://github.com/cuthbertLab/music21)|0.0002204697986577181| -|pypi|[pysoundfile](https://github.com/bastibe/PySoundFile)|0.0002204697986577181| -|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.00022038276813244402| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.00022033381743453572| -|cran|multcomp|0.00021838241711211818| -|pypi|[wmi](https://pypi.org/project/wmi)|0.00021785970032114555| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.00021785970032114555| -|pypi|[msgpack](https://pypi.org/project/msgpack)|0.00021779963431874425| -|cran|jquerylib|0.00021752873111117118| -|cran|expm|0.00021662936257503377| -|pypi|[Flask](https://pypi.org/project/Flask)|0.00021546910874326323| -|cran|isoband|0.00021516252665844678| -|cran|rasterVis|0.00021457636463178794| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.00021340404004369516| -|rubygems|[liquid](http://www.liquidmarkup.org)|0.00021309443162751676| -|pypi|[plotly](https://plotly.com/python/)|0.00021299764315415285| -|cran|rjson|0.00021225578582491337| -|cran|stats4|0.00021176825891397393| -|pypi|[pretty_midi](https://github.com/craffel/pretty-midi)|0.00021140939597315435| -|cran|testit|0.00020986079533027587| -|cran|downlit|0.00020980189025650685| -|cran|prettyunits|0.0002089287165753457| -|cran|profvis|0.00020813490662747105| -|pypi|[watchdog](https://pypi.org/project/watchdog)|0.00020782632516093684| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.00020490377231690153| -|cran|pdftools|0.0002042247045238722| -|npm|[ajv](https://ajv.js.org)|0.00020356296881168573| -|pypi|[torchsummary](https://github.com/sksq96/pytorch-summary)|0.0002030201342281879| -|pypi|[rich](https://pypi.org/project/rich)|0.00020271999552134352| -|cran|spatstat.linnet|0.00020073992832618504| -|pypi|[astropy](http://astropy.org)|0.00020039224897806327| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.00019875387530751476| -|rubygems|jekyll|0.00019866381157118896| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.00019859470374488695| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.00019859470374488695| -|cran|memoise|0.00019836528804566318| -|cran|future.apply|0.00019770338042820066| -|cran|performance|0.00019713837019653908| -|pypi|[sphinx-autoapi](http://github.com/readthedocs/sphinx-autoapi)|0.00019630992329817834| -|cran|qs|0.00019569321154356138| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.00019535141801925492| -|npm|[body-parser](https://github.com/expressjs/body-parser#readme)|0.00019435600316210634| -|pypi|[tqdm](https://tqdm.github.io)|0.00019353831809636123| -|pypi|[orjson](https://pypi.org/project/orjson)|0.0001932408881978299| -|pypi|[glob2](https://pypi.org/project/glob2)|0.00019201729478575115| -|npm|[pg](https://github.com/brianc/node-postgres)|0.00019175455417066154| -|npm|[cytoscape](http://js.cytoscape.org)|0.00019175455417066154| -|pypi|[backports.zoneinfo](https://github.com/pganssle/zoneinfo)|0.0001912040322452266| -|pypi|[tox](https://pypi.org/project/tox)|0.00019111349634329602| -|cran|asciicast|0.00019077174459679073| -|pypi|[gym](https://pypi.org/project/gym)|0.00019058354143905104| -|cran|dygraphs|0.00018909905646051598| -|npm|[react-select](https://github.com/JedWatson/react-select)|0.0001881826556125806| -|cran|[exactextractr](https://isciences.gitlab.io/exactextractr/)|0.0001878505904419729| -|cran|uuid|0.00018728919054616014| -|cran|spatstat.utils|0.0001856656833597421| -|cran|DBItest|0.00018558828111781624| -|cran|[sfheaders](https://dcooley.github.io/sfheaders/)|0.0001846831003683706| -|npm|jshint|0.00018463474445018068| -|pypi|[wsgiref](http://cheeseshop.python.org/pypi/wsgiref)|0.00018456375838926174| -|pypi|[pycairo](https://pycairo.readthedocs.io)|0.00018456375838926174| -|pypi|[pygobject](https://pygobject.readthedocs.io)|0.00018456375838926174| -|pypi|[PyCap](https://github.com/redcap-tools/PyCap)|0.00018456375838926174| -|pypi|[sh](https://github.com/amoffat/sh)|0.00018456375838926174| -|pypi|[pydub](http://pydub.com)|0.00018456375838926174| -|pypi|[gofish](https://github.com/richteague/gofish)|0.00018456375838926174| -|cran|[taxa](https://docs.ropensci.org/taxa/)|0.00018456375838926174| -|cran|[vegdata](http://germansl.infinitenature.org)|0.00018456375838926174| -|rubygems|[faraday](https://lostisland.github.io/faraday)|0.00018456375838926174| -|cran|tidyverse|0.00018366567429232885| -|npm|d3|0.00018346673400903982| -|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.0001830531137223513| -|cran|spatstat.geom|0.0001821875533712425| -|cran|mapview|0.00018199783919221397| -|npm|[dotenv](https://github.com/motdotla/dotenv#readme)|0.0001818672099712368| -|cran|praise|0.00018133627390624216| -|cran|viridisLite|0.00018085619794622752| -|cran|webp|0.00018054808691200526| -|cran|diffviewer|0.00017941900113061543| -|cran|commonmark|0.00017861351143154516| -|cran|jpeg|0.00017843567154660682| -|rubygems|bundler|0.00017799995027283444| -|pypi|[webencodings](https://pypi.org/project/webencodings)|0.0001773280893585335| -|cran|spatstat|0.00017696096105646421| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.00017695648597935827| -|pypi|[gdal](http://www.gdal.org)|0.00017686975671140937| -|pypi|[jmespath](https://github.com/jmespath/jmespath.py)|0.00017645975928874417| -|cran|reshape2|0.000175932767461021| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.00017560044657489229| -|cran|splines|0.00017226373839443484| -|npm|requirejs|0.00017177359134154435| -|pypi|[texext](https://pypi.org/project/texext)|0.0001717090451430688| -|cran|getPass|0.0001712917854619771| -|pypi|[pygame](https://www.pygame.org)|0.00017089325663151165| -|cran|V8|0.00016956711409395973| -|cran|nleqslv|0.00016953863193043938| -|pypi|[zipp](https://github.com/jaraco/zipp)|0.00016924113652734888| -|cran|later|0.00016762024845269247| -|cran|whisker|0.0001673400627115333| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.00016656601792881286| -|cran|[openssl](https://github.com/jeroen/openssl)|0.0001664837003397051| -|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.00016610738255033557| -|npm|[react-images](https://jossmac.github.io/react-images/)|0.00016565538967264757| -|pypi|[build](https://pypi.org/project/build)|0.00016523859355181757| -|cran|tesseract|0.00016458712165341857| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.00016458288199121786| -|cran|gh|0.00016432939431513909| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.00016384148413624606| -|pypi|[django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms)|0.00016303131991051453| -|cran|WikidataR|0.0001624140792093812| -|cran|dichromat|0.00016236451822816908| -|cran|KernSmooth|0.00016195901693305098| -|cran|xtable|0.00016081498132297162| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.00016073082632889947| -|cran|showtext|0.00016034756020861786| -|pypi|[prospector](https://pypi.org/project/prospector)|0.00016031516363859753| -|npm|[pako](https://github.com/nodeca/pako#readme)|0.00015977948226270373| -|cran|RPostgres|0.0001596699471435967| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.0001588793753273525| -|npm|[choices.js](https://github.com/jshjohnson/Choices#readme)|0.00015819750719079577| -|npm|[filepond](https://pqina.nl/filepond/)|0.00015819750719079577| -|npm|[vue](https://github.com/vuejs/core/tree/main/packages/vue#readme)|0.00015819750719079577| -|npm|[vue-router](https://github.com/vuejs/router#readme)|0.00015819750719079577| -|npm|[cytoscape-cola](https://github.com/cytoscape/cytoscape.js-cola)|0.00015819750719079577| -|npm|[modernizr](https://github.com/Modernizr/Modernizr)|0.00015819750719079577| -|pypi|[fluids](https://github.com/CalebBell/fluids)|0.00015819750719079577| -|pypi|[mamba](http://nestorsalceda.github.io/mamba)|0.00015819750719079577| -|pypi|[pywgsim](https://github.com/ialbert/pywgsim)|0.00015819750719079577| -|pypi|[limitedinteraction](https://felixchenier.uqam.ca/limitedinteraction/)|0.00015819750719079577| -|pypi|[ultranest](https://github.com/JohannesBuchner/ultranest)|0.00015819750719079577| -|pypi|[bcbio_gff](https://github.com/chapmanb/bcbb/tree/master/gff)|0.00015819750719079577| -|pypi|[qtawesome](https://github.com/spyder-ide/qtawesome)|0.00015819750719079577| -|pypi|[drug2ways](https://github.com/drug2ways/drug2ways)|0.00015819750719079577| -|pypi|[matplotlib_venn](https://github.com/konstantint/matplotlib-venn)|0.00015819750719079577| -|pypi|[mdtraj](http://mdtraj.org)|0.00015819750719079577| -|pypi|[openmm](https://github.com/rmcgibbo/openmm-cmd)|0.00015819750719079577| -|pypi|[universal-divergence](https://github.com/slaypni/universal-divergence)|0.00015819750719079577| -|cran|[shinyjs](https://deanattali.com/shinyjs/)|0.0001579156797014923| -|cran|spatstat.random|0.00015657024762274856| -|cran|selectr|0.00015613163386159833| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.00015573997193482451| -|cran|rvest|0.00015488584999543583| -|cran|rprintf|0.00015468377601975496| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.00015441163791964457| -|pypi|[soupsieve](https://facelessuser.github.io/soupsieve/)|0.00015403212716326756| -|pypi|[bcrypt](https://github.com/pyca/bcrypt/)|0.00015341962960649803| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.0001528566744368398| -|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.00015226510067114092| -|npm|[rc-slider](http://github.com/react-component/slider/)|0.00015218415165430354| -|cran|WRS2|0.0001519881624341943| -|cran|combinat|0.0001511903893451165| -|cran|cluster|0.0001508959360170009| -|pypi|[pybtex](https://pybtex.org/)|0.00015084208061579463| -|pypi|[bz2file](https://github.com/nvawda/bz2file)|0.0001507424496644295| -|pypi|[boto](https://github.com/boto/boto/)|0.0001507424496644295| -|pypi|[torch-geometric](https://github.com/pyg-team/pytorch_geometric)|0.00015056517131755562| -|cran|igraphdata|0.00015025215570223956| -|pypi|[whoosh](http://bitbucket.org/mchaput/whoosh)|0.00014916774060402683| -|cran|sfsmisc|0.0001470676535129438| -|npm|[moment](https://momentjs.com)|0.00014552332954994077| -|cran|fastmap|0.00014543392486505297| -|cran|labeling|0.0001452074548591181| -|pypi|[jellyfish](http://github.com/jamesturk/jellyfish)|0.00014496644295302014| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.00014467141016471626| -|pypi|[chevron](https://github.com/noahmorrison/chevron)|0.00014438625636108856| -|cran|gifski|0.00014387350781909446| -|pypi|[pathlib2](https://pypi.org/project/pathlib2)|0.00014383044531783432| -|cran|[readxl](https://readxl.tidyverse.org)|0.00014378697089484268| -|cran|[phangorn](https://github.com/KlausVigo/phangorn)|0.0001437396746809393| -|pypi|[cartopy](https://scitools.org.uk/cartopy/docs/latest/)|0.00014334451901565993| -|pypi|[siphon](https://pypi.org/project/siphon)|0.00014331705417066154| -|pypi|[nrel-pysam](https://pypi.org/project/nrel-pysam)|0.00014331705417066154| -|cran|units|0.00014292385021213769| -|cran|crosstalk|0.0001417004918914554| -|pypi|[psycopg2](https://pypi.org/project/psycopg2)|0.0001411771945993635| -|pypi|[xlsxwriter](https://github.com/jmcnamara/XlsxWriter)|0.00014062000639181846| -|cran|[reticulate](https://rstudio.github.io/reticulate/)|0.0001402890729560472| -|npm|[d3-array](https://d3js.org/d3-array/)|0.0001402684563758389| -|npm|[d3-scale](https://d3js.org/d3-scale/)|0.0001402684563758389| -|cran|lazyeval|0.00014000903777523297| -|npm|react-redux|0.00013987990109501944| -|cran|rsconnect|0.0001387777864653966| -|npm|[d3-brush](https://d3js.org/d3-brush/)|0.0001384228187919463| -|npm|[d3-fetch](https://d3js.org/d3-fetch/)|0.0001384228187919463| -|npm|[d3-format](https://d3js.org/d3-format/)|0.0001384228187919463| -|npm|[fflate](https://101arrowz.github.io/fflate)|0.0001384228187919463| -|npm|[ajv-formats](https://github.com/ajv-validator/ajv-formats#readme)|0.0001384228187919463| -|npm|[js-yaml](https://github.com/nodeca/js-yaml#readme)|0.0001384228187919463| -|pypi|[gemmi](https://project-gemmi.github.io/)|0.0001384228187919463| -|pypi|[protfasta](https://pypi.org/project/protfasta)|0.0001384228187919463| -|pypi|[alphaPredict](https://pypi.org/project/alphaPredict)|0.0001384228187919463| -|pypi|[ee_extra](https://github.com/r-earthengine/ee_extra)|0.0001384228187919463| -|npm|mkdirp|0.0001383939388091717| -|cran|R.rsp|0.00013815391691279018| -|cran|listenv|0.00013765108807462892| -|pypi|[grapheme](https://github.com/alvinlindstam/grapheme)|0.00013703859060402684| -|pypi|[about-time](https://github.com/rsalmei/about-time)|0.00013703859060402684| -|cran|rstan|0.00013674625709860608| -|cran|rJava|0.00013657559166372306| -|pypi|[requests-oauthlib](https://pypi.org/project/requests-oauthlib)|0.000136434364014062| -|pypi|[yapf](https://pypi.org/project/yapf)|0.0001361650652382342| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.00013613345016046102| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.0001348689546882847| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.0001348689546882847| -|pypi|[lockfile](https://pypi.org/project/lockfile)|0.00013479529896207393| -|pypi|[brotli](https://pypi.org/project/brotli)|0.00013451348589847177| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.00013439700591470185| -|cran|rstanarm|0.00013432406048054587| -|pypi|[sos](https://github.com/vatlab/SoS)|0.0001342555634051572| -|pypi|[flaky](https://pypi.org/project/flaky)|0.00013226044375040088| -|cran|visNetwork|0.00013219949888038565| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.00013206182681929594| -|cran|randomForest|0.00013037376432671008| -|pypi|[dnspython](https://pypi.org/project/dnspython)|0.0001302192893096836| -|cran|styler|0.0001295769740226627| -|pypi|[notebook](https://pypi.org/project/notebook)|0.00012948671858379327| -|pypi|[sos-notebook](https://github.com/vatlab/SOS)|0.0001294471918050159| -|cran|hunspell|0.00012919119104907675| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.00012915149878911817| -|pypi|[pandoc](https://pypi.org/project/pandoc)|0.00012901059443911792| -|pypi|[gunicorn](https://gunicorn.org)|0.00012860449854133234| -|cran|boot|0.00012817672748099176| -|cran|tufte|0.00012813084669623852| -|cran|katex|0.00012813084669623852| -|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.00012796007656924917| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.0001276913797547658| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.00012691236424324754| -|cran|[viridis](https://sjmgarnier.github.io/viridis/)|0.00012672478007283243| -|cran|formatR|0.0001265368757684473| -|cran|sodium|0.00012649308857362924| -|cran|qpdf|0.00012642086456629632| -|cran|progress|0.00012606843463039375| -|pypi|[backoff](https://github.com/litl/backoff)|0.00012596476510067113| -|pypi|[ratelimit](https://github.com/tomasbasham/ratelimit)|0.00012596476510067113| -|pypi|[voluptuous](https://github.com/alecthomas/voluptuous)|0.00012596476510067113| -|cran|webshot|0.00012576474972083906| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.00012571967672941908| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.00012571967672941908| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.00012571967672941908| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.00012571967672941908| -|pypi|[asgiref](https://github.com/django/asgiref/)|0.0001256385391395518| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.00012382000952891402| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.0001235824862242264| -|npm|[babyparse](https://github.com/Rich-Harris/BabyParse#readme)|0.00012304250559284116| -|npm|[colormap](https://github.com/bpostlethwaite/colormap#readme)|0.00012304250559284116| -|pypi|[yamlreader](https://github.com/ImmobilienScout24/yamlreader)|0.00012304250559284116| -|pypi|[lda](https://pypi.org/project/lda)|0.00012304250559284116| -|pypi|[voevent-parse](https://github.com/timstaley/voevent-parse)|0.00012304250559284116| -|pypi|[cwl-runner](https://github.com/common-workflow-language/common-workflow-language)|0.00012304250559284116| -|pypi|[KafNafParserPy](https://github.com/cltl/KafNafParserPy)|0.00012304250559284116| -|pypi|[kaggle](https://github.com/Kaggle/kaggle-api)|0.00012304250559284116| -|cran|txtplot|0.00012304250559284116| -|pypi|[numpy-stl](https://github.com/WoLpH/numpy-stl/)|0.00012216739044611133| -|pypi|[s3transfer](https://github.com/boto/s3transfer)|0.00012189352579402589| -|cran|prettydoc|0.00012188067038513397| -|pypi|[nestle](http://github.com/kbarbary/nestle)|0.00012181208053691274| -|pypi|[photutils](https://github.com/astropy/photutils)|0.00012181208053691274| -|pypi|[markdown2](https://pypi.org/project/markdown2)|0.00012155454326634983| -|pypi|[olefile](https://pypi.org/project/olefile)|0.00012155454326634983| -|cran|see|0.00012118946000319947| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.00012111163860034594| -|cran|[effectsize](https://easystats.github.io/effectsize/)|0.00012095231188059523| -|cran|cowplot|0.00012095145491099329| -|cran|cellranger|0.00012061950563597305| -|rubygems|rubocop-jekyll|0.0001203881299436721| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.00011999767444305904| -|pypi|[wget](http://bitbucket.org/techtonik/python-wget/)|0.00011996644295302013| -|npm|[webpack](https://github.com/webpack/webpack)|0.00011978683631106029| -|cran|globals|0.00011937927599409204| -|cran|odbc|0.00011908008370725676| -|cran|jose|0.00011863471813798922| -|pypi|[sympy](https://pypi.org/project/sympy)|0.00011853477825199274| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.00011807769816754786| +https://github.com/ropensci/magick (devel))|0.00024376511403660693| +|cran|[fields](https://github.com/dnychka/fieldsRPackage)|0.0002427743238165913| +|pypi|[lz4](https://pypi.org/project/lz4)|0.0002426061738341034| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.0002409418420885164| +|cran|[R.oo](https://github.com/HenrikBengtsson/R.oo)|0.00024016005130020636| +|pypi|[pox](https://github.com/uqfoundation/pox)|0.00023998885814752223| +|cran|[gridExtra](https://github.com/baptiste/gridextra)|0.0002398839437382751| +|cran|[base64enc](http://www.rforge.net/base64enc)|0.00023896345550725856| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.00023874520744787903| +|cran|[outsider.base](https://docs.ropensci.org/outsider.base)|0.00023825632199126176| +|cran|interp|0.00023735019882251815| +|cran|[googleCloudStorageR](https://code.markedmondson.me/googleCloudStorageR/)|0.0002362458725134208| +|pypi|[xattr](https://pypi.org/project/xattr)|0.0002358324236455136| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.0002358324236455136| +|pypi|[texext](https://pypi.org/project/texext)|0.0002343292777211977| +|pypi|[tenacity](https://pypi.org/project/tenacity)|0.00023407609762189733| +|cran|[lme4](https://github.com/lme4/lme4/)|0.00023355659936322357| +|cran|[fastmatch](http://www.rforge.net/fastmatch)|0.00023220947477985878| +|cran|[lintr](https://github.com/jimhester/lintr)|0.00023218392182640526| +|cran|[googleAuthR](https://code.markedmondson.me/googleAuthR/)|0.00023142204376994934| +|cran|[promises](https://rstudio.github.io/promises)|0.0002314040647184373| +|pypi|[rsa](https://pypi.org/project/rsa)|0.00023008377068938784| +|cran|[nnet](http://www.stats.ox.ac.uk/pub/MASS4/)|0.00022975308248228104| +|pypi|[deap](https://www.github.com/deap)|0.00022949681077250177| +|pypi|[text-unidecode](https://github.com/kmike/text-unidecode/)|0.00022891566265060239| +|pypi|[shortuuid](https://pypi.org/project/shortuuid)|0.0002288397774411394| +|pypi|[inflection](https://github.com/jpvanhal/inflection)|0.00022875| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.0002268224421445151| +|cran|[aws.s3](https://github.com/cloudyr/aws.s3)|0.0002264751442745773| +|cran|[Cairo](http://www.rforge.net/Cairo/)|0.0002261498686608638| +|cran|quantreg|0.00022568456031324361| +|cran|triebeard|0.00022567093373493976| +|cran|svglite|0.00022565948738244597| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.00022550718770319758| +|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.00022539865343727854| +|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.00022539865343727854| +|cran|[backports](https://github.com/r-lib/backports)|0.0002247208508121555| +|cran|tinytex|0.00022355011949706512| +|pypi|[python](http://www.python.org/2.5)|0.00022267641996557658| +|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.00022261533229692967| +|cran|[codetools](https://gitlab.com/luke-tierney/codetools)|0.00022226038916101779| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.00022197961771168359| +|cran|ggplot2movies|0.00021925531930444583| +|pypi|[editdistance](https://www.github.com/roy-ht/editdistance)|0.00021905805038335157| +|pypi|[execnet](https://pypi.org/project/execnet)|0.000218852158133064| +|pypi|[zipp](https://pypi.org/project/zipp)|0.00021855879561180692| +|pypi|[chemparse](https://pypi.org/project/chemparse)|0.0002168674698795181| +|pypi|[jq](http://github.com/mwilliamson/jq.py)|0.0002168674698795181| +|cran|tuneR|0.0002168674698795181| +|npm|[remark-directive](https://github.com/remarkjs/remark-directive#readme)|0.0002168674698795181| +|pypi|[python-utils](https://pypi.org/project/python-utils)|0.00021618549078918618| +|pypi|[music21](https://github.com/cuthbertLab/music21)|0.00021588170865279298| +|pypi|[pysoundfile](https://github.com/bastibe/PySoundFile)|0.00021588170865279298| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.00021443732783680555| +|cran|multcomp|0.00021383776659171261| +|cran|jquerylib|0.00021300184623591138| +|cran|[expm](http://R-Forge.R-project.org/projects/expm/)|0.00021212119402199366| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.00021170791775440033| +|cran|isoband|0.00021068488371593796| +|cran|rasterVis|0.00021011092002280222| +|pypi|[libclang](https://pypi.org/project/libclang)|0.00020983849563921953| +|pypi|[gast](https://pypi.org/project/gast)|0.00020983849563921953| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.00020855466770276125| +|cran|[rjson](https://github.com/alexcb/rjson)|0.00020783863365550118| +|pypi|[pybind11-global](https://github.com/pybind/pybind11)|0.0002075421686746988| +|cran|stats4|0.0002073612524305505| +|pypi|[pretty_midi](https://github.com/craffel/pretty-midi)|0.00020700985761226725| +|cran|[testit](https://github.com/yihui/testit)|0.00020549348414596554| +|cran|[downlit](https://downlit.r-lib.org/)|0.00020543580491710529| +|cran|prettyunits|0.00020458080242974702| +|cran|profvis|0.00020380351207553016| +|pypi|[torchsummary](https://github.com/sksq96/pytorch-summary)|0.00020286144578313253| +|pypi|[Biopython](https://pypi.org/project/Biopython)|0.0002026355421686747| +|pypi|[tqdm](https://tqdm.github.io)|0.00020256339685995636| +|pypi|[gdal](https://pypi.org/project/gdal)|0.00020043175069037422| +|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.00020009557368777362| +|pypi|[soupsieve](https://pypi.org/project/soupsieve)|0.00020008578890038942| +|pypi|[munch](https://pypi.org/project/munch)|0.0002000053000063916| +|cran|[pdftools](https://docs.ropensci.org/pdftools/ (website) +https://github.com/ropensci/pdftools#readme (devel) +https://poppler.freedesktop.org (upstream))|0.0001999746832906262| +|cran|[spatstat.linnet](http://spatstat.org/)|0.00019656242707952832| +|npm|[js-yaml](https://github.com/nodeca/js-yaml#readme)|0.0001957831325301205| +|cran|[memoise](https://github.com/r-lib/memoise)|0.0001942372042856767| +|pypi|[pathlib2](https://pypi.org/project/pathlib2)|0.0001935944422852701| +|cran|[future.apply](https://future.apply.futureverse.org)|0.00019358907130647467| +|pypi|[pymbar](http://github.com/choderalab/pymbar)|0.00019324440619621343| +|cran|[performance](https://easystats.github.io/performance/)|0.00019303581922859358| +|pypi|[cython](http://cython.org/)|0.00019274658767142217| +|cran|[qs](https://github.com/traversc/qs)|0.0001916207350711324| +|pypi|[uritemplate](https://pypi.org/project/uritemplate)|0.0001912230677857693| +|npm|[body-parser](https://github.com/expressjs/body-parser#readme)|0.00019031135468447217| +|pypi|[pybtex](https://pypi.org/project/pybtex)|0.0001885864175279418| +|pypi|[glob2](https://pypi.org/project/glob2)|0.00018820481927710845| +|npm|[pg](https://github.com/brianc/node-postgres)|0.00018776404318572994| +|npm|[cytoscape](http://js.cytoscape.org)|0.00018776404318572994| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.00018757539167448044| +|pypi|[sphinx-autoapi](https://pypi.org/project/sphinx-autoapi)|0.0001875387263339071| +|cran|asciicast|0.00018680168638502835| +|pypi|[orjson](https://pypi.org/project/orjson)|0.0001865473165715535| +|cran|[dygraphs](https://github.com/rstudio/dygraphs)|0.00018516380774994675| +|rubygems|[liquid](http://www.liquidmarkup.org)|0.0001844503012048193| +|npm|[react-select](https://github.com/JedWatson/react-select)|0.00018426647767540752| +|cran|[exactextractr](https://isciences.gitlab.io/exactextractr/)|0.00018394132295194274| +|cran|[uuid](http://www.rforge.net/uuid)|0.00018339160607696293| +|pypi|[sh](https://pypi.org/project/sh)|0.0001833604689026376| +|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|0.00018241863558128617| +|pypi|[gym](https://pypi.org/project/gym)|0.00018238722331185206| +|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.00018209348771032125| +|cran|[spatstat.utils](http://spatstat.org/)|0.00018180188491085362| +|cran|[DBItest](https://dbitest.r-dbi.org)|0.0001817260934494279| +|cran|[sfheaders](https://dcooley.github.io/sfheaders/)|0.000180839749977353| +|npm|[jshint](http://jshint.com/)|0.00018079240037071362| +|pypi|[nnde](https://github.com/elwinter/nnde)|0.00018072289156626507| +|pypi|[clawpack](http://www.clawpack.org)|0.00018072289156626507| +|pypi|[wsgiref](http://cheeseshop.python.org/pypi/wsgiref)|0.00018072289156626507| +|pypi|[cellpylib](http://github.com/lantunes/cellpylib)|0.00018072289156626507| +|pypi|[PyCap](https://github.com/redcap-tools/PyCap)|0.00018072289156626507| +|pypi|[tartiflette](https://tartiflette.io)|0.00018072289156626507| +|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.00018072289156626507| +|pypi|[PyEscape](https://github.com/qaviton/escape)|0.00018072289156626507| +|cran|[taxa](https://docs.ropensci.org/taxa/)|0.00018072289156626507| +|cran|[vegdata](http://germansl.infinitenature.org)|0.00018072289156626507| +|rubygems|[faraday](https://lostisland.github.io/faraday)|0.00018072289156626507| +|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|0.00018012405064675368| +|cran|[tidyverse](http://tidyverse.tidyverse.org)|0.00017984349706171086| +|rubygems|rake|0.00017976237647188126| +|pypi|[django](https://pypi.org/project/django)|0.0001787037271924721| +|cran|[spatstat.geom](http://spatstat.org/)|0.00017839613659790873| +|cran|[mapview](https://github.com/r-spatial/mapview)|0.00017821037046860815| +|npm|[dotenv](https://github.com/motdotla/dotenv#readme)|0.00017808245970896575| +|cran|[praise](https://github.com/gaborcsardi/praise)|0.00017756257269680226| +|pypi|[jmespath](https://pypi.org/project/jmespath)|0.00017751091435283387| +|pypi|[bleach](https://pypi.org/project/bleach)|0.0001773851694418113| +|pypi|[earthengine-api](http://code.google.com/p/earthengine-api/)|0.00017724745134383688| +|cran|[viridisLite](https://github.com/sjmgarnier/viridisLite)|0.00017709248736465214| +|cran|[webp](https://github.com/jeroen/webp#readme +https://developers.google.com/speed/webp)|0.0001767907882796634| +|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.00017655414356323033| +|cran|diffviewer|0.00017568519935462232| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.00017541944259141248| +|cran|[commonmark](https://docs.ropensci.org/commonmark/ (docs) +https://github.com/r-lib/commonmark (devel) +https://github.github.com/gfm/ (spec))|0.0001748964723108449| +|cran|[jpeg](http://www.rforge.net/jpeg/)|0.00017472233336546163| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.00017366505705818002| +|cran|[spatstat](http://spatstat.org/)|0.00017327831235977977| +|cran|[reshape2](https://github.com/hadley/reshape)|0.00017227151600235797| +|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.00017192781287120315| +|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|0.00017176303635173324| +|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.00017084998251141| +|pypi|[tox](https://pypi.org/project/tox)|0.00016990184492878134| +|pypi|[wmi](https://pypi.org/project/wmi)|0.00016877187408562822| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.00016875207794097096| +|cran|splines|0.00016867884131941375| +|npm|[requirejs](http://github.com/jrburke/r.js)|0.00016819889447901496| +|cran|[getPass](https://github.com/wrathematics/getPass)|0.00016772711522782864| +|pypi|[pygame](https://www.pygame.org)|0.00016733687998748238| +|pypi|[tensorboard-data-server](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server)|0.00016731044469350633| +|pypi|[tensorboard-plugin-wit](https://whatif-tool.dev)|0.00016731044469350633| +|pypi|[prospector](https://pypi.org/project/prospector)|0.00016609489950649277| +|cran|[V8](https://github.com/jeroen/v8 (devel) https://v8.dev (upstream))|0.00016603833515881712| +|cran|[nleqslv](NA)|0.00016601044572378182| +|cran|later|0.00016413198479376463| +|cran|[whisker](http://github.com/edwindj/whisker)|0.00016385762986211478| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.00016351119197106505| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.00016351119197106505| +|cran|[openssl](https://github.com/jeroen/openssl)|0.000163019088832088| +|npm|[react-images](https://jossmac.github.io/react-images/)|0.00016220801573641505| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.00016166767474174435| +|cran|[tesseract](https://docs.ropensci.org/tesseract/ (website) +https://github.com/ropensci/tesseract (devel))|0.00016116197892459606| +|cran|[gh](https://gh.r-lib.org/)|0.00016090961502490073| +|pypi|[django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms)|0.00015963855421686747| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.00015936960283913744| +|cran|[WikidataR](https://github.com/TS404/WikidataR/issues)|0.00015903415861247185| +|cran|dichromat|0.00015898562902079205| +|cran|KernSmooth|0.0001585885664163719| +|cran|[xtable](http://xtable.r-forge.r-project.org/)|0.00015746833877627235| +|cran|[showtext](https://github.com/yixuan/showtext)|0.00015701064493593028| +|npm|[pako](https://github.com/nodeca/pako#readme)|0.00015645438898450947| +|cran|[RPostgres](https://rpostgres.r-dbi.org)|0.00015634713334761825| +|npm|[react-redux](https://github.com/reduxjs/react-redux)|0.0001563320952984872| +|pypi|[numexpr](https://pypi.org/project/numexpr)|0.00015611505033848953| +|pypi|[argon2-cffi](https://pypi.org/project/argon2-cffi)|0.0001557953461745254| +|pypi|[notebook](https://pypi.org/project/notebook)|0.00015499435454412923| +|pypi|[pywgsim](https://github.com/ialbert/pywgsim)|0.0001549053356282272| +|pypi|[mdtraj](http://mdtraj.org)|0.0001549053356282272| +|pypi|[openmm](https://github.com/rmcgibbo/openmm-cmd)|0.0001549053356282272| +|pypi|[mamba](http://nestorsalceda.github.io/mamba)|0.0001549053356282272| +|pypi|[universal-divergence](https://github.com/slaypni/universal-divergence)|0.0001549053356282272| +|pypi|[drug2ways](https://github.com/drug2ways/drug2ways)|0.0001549053356282272| +|pypi|[matplotlib_venn](https://github.com/konstantint/matplotlib-venn)|0.0001549053356282272| +|npm|[choices.js](https://github.com/jshjohnson/Choices#readme)|0.0001549053356282272| +|npm|[filepond](https://pqina.nl/filepond/)|0.0001549053356282272| +|npm|[cytoscape-cola](https://github.com/cytoscape/cytoscape.js-cola)|0.0001549053356282272| +|npm|[modernizr](https://github.com/Modernizr/Modernizr)|0.0001549053356282272| +|npm|[vue](https://github.com/vuejs/core/tree/main/packages/vue#readme)|0.0001549053356282272| +|npm|[vue-router](https://github.com/vuejs/router#readme)|0.0001549053356282272| +|cran|[shinyjs](https://deanattali.com/shinyjs/)|0.0001546293731140571| +|pypi|[unittest2](https://pypi.org/project/unittest2)|0.0001534362458584337| +|cran|[spatstat.random](http://spatstat.org/)|0.00015331194016948217| +|cran|selectr|0.00015288245418649385| +|pypi|[plotly](https://pypi.org/project/plotly)|0.0001527394749385988| +|pypi|[pip](https://pypi.org/project/pip)|0.0001522827219401618| +|pypi|[netcdf4](http://github.com/Unidata/netcdf4-python)|0.00015216734002356126| +|cran|[rvest](http://rvest.tidyverse.org/)|0.00015166259572389879| +|pypi|[freesasa](http://freesasa.github.io/)|0.00015149809765377297| +|cran|rprintf|0.00015146472701167682| +|pypi|[imageio](https://github.com/imageio/imageio)|0.00015143540467354522| +|pypi|[clickclick](https://codeberg.org/hjacobs/python-clickclick)|0.00015139414802065404| +|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.00015090200225956999| +|pypi|[rich](https://pypi.org/project/rich)|0.00015044921876338583| +|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.00015017250934586655| +|pypi|[gunicorn](https://pypi.org/project/gunicorn)|0.00014952845620972672| +|npm|[rc-slider](http://github.com/react-component/slider/)|0.00014901712111604312| +|cran|WRS2|0.00014882521053249695| +|cran|combinat|0.00014804403951208561| +|cran|[cluster](https://svn.r-project.org/R-packages/trunk/cluster/)|0.0001477557139093087| +|pypi|[torch-geometric](https://github.com/pyg-team/pytorch_geometric)|0.00014743183259353202| +|cran|igraphdata|0.0001471253309943069| +|npm|[moment](https://momentjs.com)|0.00014675481087834914| +|pypi|[xlsxwriter](https://github.com/jmcnamara/XlsxWriter)|0.00014408347676419966| +|cran|sfsmisc|0.00014400709993490888| +|npm|[tape](https://github.com/substack/tape)|0.00014284953607989173| +|cran|fastmap|0.00014240737002120196| +|cran|labeling|0.00014218561297267424| +|pypi|[pyxenon](https://pypi.org/project/pyxenon)|0.00014195180722891565| +|pypi|[jellyfish](http://github.com/jamesturk/jellyfish)|0.00014194961664841182| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.00014170441516354898| +|pypi|[cvxopt](http://cvxopt.org)|0.00014096385542168674| +|cran|[gifski](https://gif.ski/ (upstream))|0.00014087942605725136| +|cran|[readxl](https://readxl.tidyverse.org)|0.00014079469001094125| +|cran|[phangorn](https://github.com/KlausVigo/phangorn)|0.0001407483780555966| +|pypi|[lockfile](https://pypi.org/project/lockfile)|0.00014066136275484232| +|cran|[units](https://github.com/r-quantities/units/)|0.00013994953131396613| +|npm|[chai](http://chaijs.com)|0.0001392719139047955| +|pypi|[jax](https://pypi.org/project/jax)|0.00013877458362863217| +|cran|[crosstalk](https://rstudio.github.io/crosstalk/)|0.0001387516317097055| +|pypi|[nrel-pysam](https://nrel-pysam.readthedocs.io)|0.0001385918674698795| +|cran|[reticulate](https://rstudio.github.io/reticulate/)|0.00013736958512892245| +|npm|[d3-array](https://d3js.org/d3-array/)|0.00013734939759036145| +|npm|[d3-scale](https://d3js.org/d3-scale/)|0.00013734939759036145| +|pypi|[psycopg2](https://pypi.org/project/psycopg2)|0.00013717425032120433| +|cran|[lazyeval](NA)|0.00013709537762437922| +|pypi|[asgiref](https://pypi.org/project/asgiref)|0.0001364883799703055| +|cran|rsconnect|0.00013588974928813207| +|pypi|[pvrpm](https://github.com/FSEC-Photovoltaics/pvrpm-lcoe)|0.0001355421686746988| +|pypi|[NREL-PySAM-stubs](http://www.github.com/nrel/pysam)|0.0001355421686746988| +|pypi|[beamshapes](https://github.com/thejasvibr/bat_beamshapes.git)|0.0001355421686746988| +|pypi|[equadratures](https://github.com/Effective-Quadratures/equadratures)|0.0001355421686746988| +|pypi|[simframe](https://github.com/stammler/simframe)|0.0001355421686746988| +|pypi|[maxsmooth](https://github.com/htjb/maxsmooth)|0.0001355421686746988| +|pypi|[progressbar](http://code.google.com/p/python-progressbar)|0.0001355421686746988| +|pypi|[gemmi](https://project-gemmi.github.io/)|0.0001355421686746988| +|pypi|[epitopepredict](https://github.com/dmnfarrell/epitopepredict)|0.0001355421686746988| +|npm|[d3-brush](https://d3js.org/d3-brush/)|0.0001355421686746988| +|npm|[d3-fetch](https://d3js.org/d3-fetch/)|0.0001355421686746988| +|npm|[d3-format](https://d3js.org/d3-format/)|0.0001355421686746988| +|npm|[fflate](https://101arrowz.github.io/fflate)|0.0001355421686746988| +|npm|[ajv-formats](https://github.com/ajv-validator/ajv-formats#readme)|0.0001355421686746988| +|npm|[mkdirp](https://github.com/isaacs/node-mkdirp#readme)|0.00013551388969923277| +|pypi|[chevron](https://github.com/noahmorrison/chevron)|0.00013539156626506024| +|cran|[R.rsp](https://github.com/HenrikBengtsson/R.rsp)|0.00013527886278207494| +|npm|eslint|0.00013485577235418814| +|cran|[listenv](https://github.com/HenrikBengtsson/listenv)|0.0001347864980708853| +|npm|[webpack](https://github.com/webpack/webpack)|0.0001345880573696775| +|pypi|[bz2file](https://github.com/nvawda/bz2file)|0.0001341867469879518| +|pypi|[boto](https://github.com/boto/boto/)|0.0001341867469879518| +|pypi|[grapheme](https://github.com/alvinlindstam/grapheme)|0.00013391837349397591| +|pypi|[about-time](https://github.com/rsalmei/about-time)|0.00013391837349397591| +|cran|[rstan](https://mc-stan.org/rstan)|0.00013390049709326816| +|cran|[rJava](http://www.rforge.net/rJava/)|0.00013373338329394132| +|pypi|[cartopy](https://scitools.org.uk/cartopy/docs/latest/)|0.00013184165232358003| +|cran|rstanarm|0.00013152870763374376| +|pypi|[sos](https://github.com/vatlab/SoS)|0.0001314616360177552| +|pypi|[jupyter-client](https://jupyter.org)|0.00013128400274007234| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.00013077617191454896| +|cran|[visNetwork](http://datastorm-open.github.io/visNetwork/)|0.00012944835925417827| +|pypi|[wasabi](https://pypi.org/project/wasabi)|0.00012904409206204766| +|pypi|[voluptuous](https://pypi.org/project/voluptuous)|0.00012840413080895008| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.000128258159458051| +|pypi|[pandoc](https://pypi.org/project/pandoc)|0.00012820006850143047| +|rubygems|rspec|0.00012801697621194944| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.00012785232802716608| +|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.00012784117474608008| +|pypi|[yapf](https://pypi.org/project/yapf)|0.0001276787023871885| +|cran|[randomForest](https://www.stat.berkeley.edu/~breiman/RandomForests/)|0.0001276606191764281| +|pypi|[bcrypt](https://pypi.org/project/bcrypt)|0.00012735923000351508| +|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.00012712488076768442| +|cran|styler|0.00012688041048878473| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.00012681071461305548| +|pypi|[sos-notebook](https://github.com/vatlab/SOS)|0.00012675332910589725| +|cran|[hunspell](https://github.com/ropensci/hunspell#readme (devel) +https://hunspell.github.io (upstream))|0.00012650265585747493| +|pypi|[dlinfo](https://code.grasp-open.com/grasp-tools/python-dlinfo)|0.00012632530120481927| +|pypi|[segments](https://github.com/cldf/segments)|0.00012632530120481927| +|npm|[nyc](https://istanbul.js.org/)|0.00012552070576261087| +|cran|boot|0.00012550930379847384| +|cran|tufte|0.00012546437781647018| +|cran|katex|0.00012546437781647018| +|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.0001251078400779589| +|cran|[viridis](https://sjmgarnier.github.io/viridis/)|0.00012408757216332114| +|cran|[formatR](https://github.com/yihui/formatR)|0.00012390357824424084| +|cran|[sodium](https://github.com/jeroen/sodium#readme (devel) +https://download.libsodium.org/doc/ (upstream))|0.00012386070228348798| +|cran|[qpdf](https://github.com/ropensci/qpdf (devel))|0.0001237899812949276| +|pypi|[mistune](https://pypi.org/project/mistune)|0.00012365293316425805| +|cran|[progress](https://github.com/r-lib/progress#readme)|0.00012344488560741735| +|pypi|[ratelimit](https://pypi.org/project/ratelimit)|0.00012334337349397591| +|pypi|[backoff](https://pypi.org/project/backoff)|0.00012334337349397591| +|cran|webshot|0.00012314752053716336| +|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.00012239770214880806| +|pypi|[KafNafParserPy](https://github.com/cltl/KafNafParserPy)|0.00012048192771084337| +|pypi|[cwl-runner](https://github.com/common-workflow-language/common-workflow-language)|0.00012048192771084337| +|pypi|[voevent-parse](https://github.com/timstaley/voevent-parse)|0.00012048192771084337| +|pypi|[kaggle](https://github.com/Kaggle/kaggle-api)|0.00012048192771084337| +|pypi|[solcore](https://github.com/qpv-research-group/solcore5)|0.00012048192771084337| +|pypi|[tmm](http://pypi.python.org/pypi/tmm)|0.00012048192771084337| +|pypi|[yamlreader](https://github.com/ImmobilienScout24/yamlreader)|0.00012048192771084337| +|pypi|[lda](https://pypi.org/project/lda)|0.00012048192771084337| +|pypi|[pyxdg](http://freedesktop.org/wiki/Software/pyxdg)|0.00012048192771084337| +|pypi|[html2text](https://github.com/Alir3z4/html2text/)|0.00012048192771084337| +|pypi|[metapredict](https://github.com/idptools/metapredict.git)|0.00012048192771084337| +|pypi|[alphaPredict](https://pypi.org/project/alphaPredict)|0.00012048192771084337| +|pypi|[protfasta](https://pypi.org/project/protfasta)|0.00012048192771084337| +|pypi|[theano](http://deeplearning.net/software/theano/)|0.00012048192771084337| +|pypi|[pycairo](https://pycairo.readthedocs.io)|0.00012048192771084337| +|pypi|[pygobject](https://pygobject.readthedocs.io)|0.00012048192771084337| +|pypi|[genicam](https://www.emva.org)|0.00012048192771084337| +|cran|txtplot|0.00012048192771084337| +|npm|[babyparse](https://github.com/Rich-Harris/BabyParse#readme)|0.00012048192771084337| +|npm|[colormap](https://github.com/bpostlethwaite/colormap#readme)|0.00012048192771084337| +|npm|[apexcharts](https://apexcharts.com)|0.00012048192771084337| +|npm|[idb](https://github.com/jakearchibald/idb#readme)|0.00012048192771084337| +|npm|[lodash.debounce](https://lodash.com/)|0.00012048192771084337| +|npm|[nanoid](https://github.com/ai/nanoid#readme)|0.00012048192771084337| +|npm|vue-apexcharts|0.00012048192771084337| +|npm|[vuex-persist](https://github.com/championswimmer/vuex-persist#readme)|0.00012048192771084337| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.00012046412924424975| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.00011971861830470065| +|pypi|[s3transfer](https://pypi.org/project/s3transfer)|0.00011935685877312065| +|cran|prettydoc|0.00011934427089190555| +|pypi|[nestle](http://github.com/kbarbary/nestle)|0.00011927710843373494| +|pypi|[photutils](https://github.com/astropy/photutils)|0.00011927710843373494| +|cran|see|0.0001186674449538448| +|cran|[effectsize](https://easystats.github.io/effectsize/)|0.00011843523200575261| +|cran|[cowplot](https://wilkelab.org/cowplot/)|0.00011843439287012925| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.0001183552940869932| +|cran|cellranger|0.00011810935163040516| +|pypi|[wget](http://bitbucket.org/techtonik/python-wget/)|0.00011746987951807229| +|pypi|[tabulate](https://pypi.org/project/tabulate)|0.0001173756530753558| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.00011735002950187367| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.00011693871638870514| +|pypi|[absl-py](https://pypi.org/project/absl-py)|0.00011690758242592681| +|cran|[globals](https://github.com/HenrikBengtsson/globals)|0.00011689493180582504| +|cran|[odbc](https://github.com/r-dbi/odbc)|0.00011660196586449895| +|cran|[jose](https://datatracker.ietf.org/wg/jose/documents/ +https://www.w3.org/TR/WebCryptoAPI/#jose +https://github.com/r-lib/jose)|0.00011616586858199605| +|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.00011582016606457226| |cran|[psych](https://personality-project.org/r/psych/ -https://personality-project.org/r/psych-manual.pdf)|0.00011801270767033414| -|cran|flashClust|0.00011790127163546448| -|npm|eslint|0.00011778689949577505| -|npm|[vows](https://github.com/cloudhead/vows)|0.00011723308845995803| -|pypi|[shapely](https://pypi.org/project/shapely)|0.00011695643547451425| -|cran|e1071|0.00011693555166184772| -|cran|targets|0.00011634102411742353| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.00011627202121943254| -|pypi|[nlesc-CAT](https://github.com/nlesc-nano/CAT)|0.00011609539789069991| -|rubygems|minitest|0.00011591917545443082| -|cran|s2|0.00011581495939246348| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.00011507523978887671| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.00011449189367078043| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.00011388581280175865| -|pypi|[libcst](https://pypi.org/project/libcst)|0.0001136647096485729| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.0001136647096485729| -|cran|statnet.common|0.00011281742227092178| -|cran|bayestestR|0.00011246035371751032| -|pypi|[coloredlogs](https://pypi.org/project/coloredlogs)|0.00011242638957959063| -|cran|MatrixModels|0.00011223138608909254| -|pypi|[gitdb](https://github.com/gitpython-developers/gitdb)|0.00011177059182428308| -|npm|tape|0.0001116258405379655| -|npm|chai|0.0001113091689998836| -|npm|[auspice](https://www.npmjs.com/package/auspice)|0.00011073825503355705| -|npm|[heroku-ssl-redirect](https://github.com/paulomcnally/node-heroku-ssl-redirect)|0.00011073825503355705| -|npm|[react-file-drop](https://github.com/sarink/react-file-drop#readme)|0.00011073825503355705| -|pypi|[tmm](http://pypi.python.org/pypi/tmm)|0.00011073825503355705| -|pypi|[simpleitk](http://simpleitk.org/)|0.00011073825503355705| -|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.00011073825503355705| -|pypi|[pyroaring](https://github.com/Ezibenroc/PyRoaringBitMap)|0.00011073825503355705| -|pypi|[blosc](http://github.com/blosc/python-blosc)|0.00011073825503355705| -|pypi|[deap](https://www.github.com/deap)|0.00011073825503355705| -|pypi|[Cerberus](http://docs.python-cerberus.org)|0.00011073825503355705| -|pypi|[CoolProp](http://www.coolprop.org)|0.00011073825503355705| -|pypi|[ansicolors](http://github.com/jonathaneunice/colors/)|0.00011073825503355705| -|pypi|[libsvm](https://github.com/ocampor/libsvm)|0.00011073825503355705| -|pypi|[area](https://github.com/scisco/area)|0.00011073825503355705| -|pypi|[StringDist](https://github.com/obulkin/string-dist)|0.00011073825503355705| -|cran|gee|0.00011034941262134079| -|pypi|[keyring](https://pypi.org/project/keyring)|0.00011023145781626786| -|pypi|[igraph](https://igraph.org/python)|0.00010990494966442953| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.00010964455413037698| -|pypi|[pandoc-min](https://github.com/boisgera/pandoc)|0.00010963087248322147| -|pypi|[CommonMark](https://github.com/rtfd/CommonMark-py)|0.00010963087248322147| -|cran|gamm4|0.00010863418469520304| -|cran|survminer|0.00010861886259272341| -|cran|[ggrepel](http://github.com/slowkow/ggrepel)|0.00010816852274977837| -|pypi|[tzlocal](https://pypi.org/project/tzlocal)|0.00010807776845637583| -|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.00010716313720439848| -|pypi|[imageio](https://pypi.org/project/imageio)|0.00010663747909075867| -|cran|modelbased|0.0001065521056125083| -|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.0001064370837050414| -|pypi|[numexpr](https://pypi.org/project/numexpr)|0.00010636726807867747| -|cran|stars|0.00010617886956029931| -|cran|spdep|0.00010609819042569553| -|pypi|[distro](https://github.com/python-distro/distro)|0.0001059010620252231| -|pypi|[dash-renderer](https://pypi.org/project/dash-renderer)|0.00010570441127223182| -|pypi|[pybtex-docutils](https://github.com/mcmtroffaes/pybtex-docutils)|0.00010554981056505738| -|npm|rollup|0.0001055195931119931| -|pypi|[cwltool](https://github.com/common-workflow-language/cwltool)|0.00010520134228187922| -|cran|RMariaDB|0.00010518317735170239| -|cran|mapdata|0.0001049158191179886| -|cran|highr|0.00010460883484196329| -|cran|[checkmate](https://github.com/mllg/checkmate)|0.00010436255036784753| -|npm|[jquery](https://jquery.com)|0.00010408584703886716| -|pypi|[python-dotenv](https://github.com/theskumar/python-dotenv)|0.00010318331340020111| -|pypi|[python-utils](https://pypi.org/project/python-utils)|0.000103157812944486| -|npm|[nodemon](https://nodemon.io)|0.00010276845637583891| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.00010271644866000095| -|cran|tikzDevice|0.00010253307230105349| -|cran|palmerpenguins|0.00010247317725827156| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.00010223147373780214| -|cran|coda|0.00010192685724592611| -|npm|nyc|0.00010192264190297959| -|pypi|[gitpython](https://pypi.org/project/gitpython)|0.0001016730725847386| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.00010086809819786019| -|npm|[angular-animate](http://angularjs.org)|0.00010067114093959731| -|npm|[angular-sanitize](http://angularjs.org)|0.00010067114093959731| -|npm|[angular-touch](http://angularjs.org)|0.00010067114093959731| -|npm|[colorbrewer](http://colorbrewer2.org/)|0.00010067114093959731| -|npm|[dc](http://dc-js.github.io/dc.js/)|0.00010067114093959731| -|pypi|[pyscf](http://www.pyscf.org)|0.00010067114093959731| -|pypi|[filetype](https://github.com/h2non/filetype.py)|0.00010067114093959731| -|pypi|[Flask-RESTful](https://www.github.com/flask-restful/flask-restful/)|0.00010067114093959731| -|pypi|[functools32](https://github.com/MiCHiLU/python-functools32)|0.00010067114093959731| -|pypi|[edlib](https://github.com/Martinsos/edlib)|0.00010067114093959731| -|cran|JuliaCall|0.0001001703379802944| -|cran|vcr|9.917026272305514e-05| -|rubygems|rubocop|9.916562216830334e-05| -|cran|forecast|9.881021740578786e-05| -|pypi|[cffi](http://cffi.readthedocs.org)|9.874179768511693e-05| -|pypi|[pyrsistent](http://github.com/tobgu/pyrsistent/)|9.864730387603304e-05| -|pypi|[setuptools_scm_git_archive](https://github.com/Changaco/setuptools_scm_git_archive/)|9.781879194630872e-05| -|pypi|[tensorboard](https://pypi.org/project/tensorboard)|9.676258055655149e-05| -|pypi|[alembic](https://alembic.sqlalchemy.org)|9.563388274772995e-05| -|npm|[bootstrap](https://getbootstrap.com/)|9.538917863153738e-05| -|npm|[react-bootstrap](https://react-bootstrap.github.io/)|9.538917863153738e-05| -|pypi|[bleach](https://pypi.org/project/bleach)|9.49650069320846e-05| -|cran|class|9.488314251875246e-05| -|cran|[leaflet](https://rstudio.github.io/leaflet/)|9.454976194652797e-05| -|npm|react-router-bootstrap|9.428179608120181e-05| -|npm|react-router-dom|9.428179608120181e-05| -|cran|rnaturalearth|9.417374332283248e-05| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|9.407006854198436e-05| -|cran|poorman|9.400393869219698e-05| -|cran|here|9.381559109646304e-05| -|npm|babel-cli|9.361926237712431e-05| -|pypi|[pyroma](https://pypi.org/project/pyroma)|9.313267756666262e-05| -|pypi|[path](https://pypi.org/project/path)|9.24261313516072e-05| -|npm|[ProtVista](https://github.com/ebi-uniprot/ProtVista)|9.228187919463087e-05| -|npm|[downloadjs](http://danml.com/download.html)|9.228187919463087e-05| -|npm|[events](https://github.com/Gozala/events#readme)|9.228187919463087e-05| -|npm|[litemol](https://webchemdev.ncbr.muni.cz/LiteMol/)|9.228187919463087e-05| -|npm|[semantic-ui-button](http://www.semantic-ui.com)|9.228187919463087e-05| -|npm|[semantic-ui-dropdown](http://www.semantic-ui.com)|9.228187919463087e-05| -|npm|[semantic-ui-label](http://www.semantic-ui.com)|9.228187919463087e-05| -|npm|[semantic-ui-transition](http://www.semantic-ui.com)|9.228187919463087e-05| -|pypi|[gpytorch](https://gpytorch.ai)|9.228187919463087e-05| -|pypi|[cached_property](https://github.com/pydanny/cached-property)|9.228187919463087e-05| -|pypi|[bidict](https://bidict.readthedocs.io)|9.228187919463087e-05| -|cran|classInt|9.220946604896775e-05| -|pypi|[reno](https://pypi.org/project/reno)|9.216824065196548e-05| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|9.20648561437998e-05| -|pypi|[cachetools](https://pypi.org/project/cachetools)|9.196242705674764e-05| -|pypi|[pympler](https://pypi.org/project/pympler)|9.158199863174945e-05| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|9.137274204984006e-05| -|pypi|[libclang](https://pypi.org/project/libclang)|9.137274204984006e-05| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|9.137274204984006e-05| -|pypi|[gast](https://pypi.org/project/gast)|9.137274204984006e-05| -|pypi|[astunparse](https://pypi.org/project/astunparse)|9.137274204984006e-05| -|cran|colorspace|9.10006608880982e-05| -|pypi|[pretend](https://pypi.org/project/pretend)|9.084953787152443e-05| -|cran|Seurat|9.073870395726246e-05| -|cran|network|9.073076977474572e-05| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|9.07085271299387e-05| -|cran|shape|9.068108733882635e-05| -|cran|[kableExtra](http://haozhu233.github.io/kableExtra/)|9.054432691479983e-05| -|pypi|[pyglet](https://pypi.org/project/pyglet)|8.987989870119946e-05| -|cran|spatstat.data|8.955932309281037e-05| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|8.940528835844724e-05| -|npm|[winston](https://github.com/winstonjs/winston#readme)|8.873257614868353e-05| -|cran|slam|8.859823830926277e-05| -|rubygems|[activerecord-jdbc-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|8.814765100671138e-05| -|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|8.763749209185319e-05| -|pypi|[pooch](https://pypi.org/project/pooch)|8.763083601019138e-05| -|cran|tmap|8.718110669676464e-05| -|cran|pool|8.718110669676464e-05| -|cran|polyclip|8.69748727047336e-05| -|pypi|[gmsh](https://gmsh.info)|8.663639952625345e-05| -|pypi|[boto3](https://pypi.org/project/boto3)|8.57982724121163e-05| -|cran|taxize|8.551014701182491e-05| -|pypi|[yt](https://github.com/yt-project/yt)|8.518327310273619e-05| -|pypi|[sphinx-math-dollar](https://github.com/sympy/sphinx-math-dollar/)|8.518327310273619e-05| -|pypi|[pypi-publisher](https://github.com/wdm0006/ppp)|8.518327310273619e-05| -|pypi|[hdmedians](http://github.com/daleroberts/hdmedians)|8.518327310273619e-05| -|pypi|[textwrapper](https://github.com/tusharsadhwani/textwrapper)|8.518327310273619e-05| -|npm|tap|8.481980040775967e-05| -|pypi|[pickleshare](https://pypi.org/project/pickleshare)|8.4518572902926e-05| -|pypi|[jedi](https://pypi.org/project/jedi)|8.4518572902926e-05| -|npm|ava|8.438975035032081e-05| -|cran|gapminder|8.425372747796316e-05| -|pypi|[Six](https://pypi.org/project/Six)|8.409186241610738e-05| -|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|8.407561988279178e-05| -|pypi|[backcall](https://pypi.org/project/backcall)|8.407561988279178e-05| -|cran|animation|8.405532223102254e-05| -|pypi|[email-validator](https://github.com/JoshData/python-email-validator)|8.382193791946308e-05| -|cran|[spatstat.core](http://spatstat.org/)|8.369380957080819e-05| -|cran|gplots|8.325853191315927e-05| -|npm|esm|8.292645690988063e-05| -|pypi|[locket](https://pypi.org/project/locket)|8.288372701124378e-05| -|pypi|[retrying](https://pypi.org/project/retrying)|8.187877411649929e-05| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|8.160131656445012e-05| -|cran|tseries|8.152339175192137e-05| -|npm|[prop-types](https://facebook.github.io/react/)|8.12313198246176e-05| -|npm|webpack-cli|8.103227868328538e-05| -|cran|argon2|8.095065316395015e-05| -|pypi|[types-toml](https://pypi.org/project/types-toml)|8.065431532650612e-05| -|cran|dendextend|8.042954995445165e-05| -|pypi|[pyjsparser](https://pypi.org/project/pyjsparser)|8.039597315436241e-05| -|cran|ade4|8.019876329535652e-05| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|8.009956020499716e-05| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|8.009956020499716e-05| -|cran|shinydisconnect|8.000786887520816e-05| -|npm|[coveralls](https://github.com/nickmerwin/node-coveralls#readme)|7.985844774207411e-05| -|cran|irlba|7.98013153531373e-05| -|pypi|[dash](https://plotly.com/dash)|7.973472130130556e-05| -|cran|rex|7.953146150558868e-05| -|pypi|[webcolors](https://pypi.org/project/webcolors)|7.943218526440003e-05| -|cran|datawizard|7.936599403963283e-05| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|7.917628775826286e-05| -|npm|[concurrently](https://github.com/open-cli-tools/concurrently#readme)|7.909875359539788e-05| -|npm|[cors-anywhere](https://github.com/Rob--W/cors-anywhere#readme)|7.909875359539788e-05| -|npm|[dotenv-webpack](https://github.com/mrsteele/dotenv-webpack#readme)|7.909875359539788e-05| -|npm|net|7.909875359539788e-05| -|pypi|[ipdb](https://github.com/gotcha/ipdb)|7.909875359539788e-05| -|pypi|[thermo](https://github.com/CalebBell/thermo)|7.909875359539788e-05| -|pypi|[colorpalette](https://github.com/yoelcortes/colorpalette)|7.909875359539788e-05| -|pypi|[free_properties](https://github.com/yoelcortes/free_properties)|7.909875359539788e-05| -|pypi|[flexsolve](https://github.com/yoelcortes/flexsolve)|7.909875359539788e-05| -|pypi|[oaiharvest](http://github.com/bloomonkey/oai-harvest)|7.909875359539788e-05| -|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|7.909875359539788e-05| -|cran|poibin|7.909875359539788e-05| -|cran|fANCOVA|7.909875359539788e-05| -|cran|gert|7.905699665770379e-05| -|pypi|[dicttoxml](https://github.com/quandyfactory/dicttoxml)|7.878963202962276e-05| -|pypi|[jax](https://pypi.org/project/jax)|7.843575223713646e-05| -|npm|supertest|7.835368804852865e-05| -|npm|[bcrypt](https://github.com/kelektiv/node.bcrypt.js#readme)|7.834731543624161e-05| -|npm|spc|7.83077660594439e-05| -|npm|process|7.83077660594439e-05| -|npm|util|7.83077660594439e-05| -|pypi|[imageio-ffmpeg](https://github.com/imageio/imageio-ffmpeg)|7.820617844453217e-05| -|pypi|[traittypes](https://pypi.org/project/traittypes)|7.79239044611133e-05| -|cran|[mmand](https://github.com/jonclayden/mmand)|7.719560139492038e-05| -|cran|[RNifti](https://github.com/jonclayden/RNifti)|7.719560139492038e-05| -|cran|lavaan|7.719014034188011e-05| -|cran|shinytest|7.715566053332647e-05| -|cran|conflicted|7.704405816176596e-05| -|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|7.696152265759171e-05| -|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|7.696152265759171e-05| -|pypi|[asdf](https://pypi.org/project/asdf)|7.696152265759171e-05| -|pypi|[jplephem](https://pypi.org/project/jplephem)|7.696152265759171e-05| -|pypi|[async-generator](https://pypi.org/project/async-generator)|7.610209731543624e-05| -|cran|zeallot|7.585570469798657e-05| -|pypi|[pylint](https://pypi.org/project/pylint)|7.567002225150972e-05| -|pypi|[fsspec](http://github.com/fsspec/filesystem_spec)|7.55989358532483e-05| -|rubygems|rouge|7.524941275167784e-05| -|cran|pingr|7.507385674693677e-05| -|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|7.502217918899471e-05| -|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|7.495786656265245e-05| -|cran|[circlize](https://github.com/jokergoo/circlize)|7.453573757574111e-05| -|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|7.451882348429672e-05| -|cran|pbkrtest|7.426828757323172e-05| -|pypi|[pyDOE](https://github.com/tisimst/pyDOE)|7.38255033557047e-05| -|pypi|[SciencePlots](https://github.com/garrettj403/SciencePlots/)|7.38255033557047e-05| -|pypi|[bdata](https://github.com/dfujim/bdata)|7.38255033557047e-05| -|pypi|[testpath](https://pypi.org/project/testpath)|7.367912137704382e-05| -|cran|[caret](https://github.com/topepo/caret/)|7.366139034343734e-05| -|cran|reactlog|7.341314463788317e-05| -|cran|sourcetools|7.341314463788317e-05| -|cran|fontawesome|7.341314463788317e-05| -|cran|pbdMPI|7.308724832214765e-05| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|7.287012476469295e-05| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|7.286107716366225e-05| -|pypi|[backports.functools-lru-cache](https://pypi.org/project/backports.functools-lru-cache)|7.235637583892617e-05| -|cran|sna|7.228761800280259e-05| -|npm|xo|7.20026827199646e-05| -|cran|RcppTOML|7.195012787723785e-05| -|cran|janitor|7.166281890637783e-05| -|pypi|[netifaces](https://github.com/al45tair/netifaces)|7.142617449664428e-05| -|npm|rxjs|7.084792868636917e-05| -|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|7.07952053518529e-05| -|pypi|[bokeh](https://pypi.org/project/bokeh)|7.076495645065044e-05| -|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|7.072229364595136e-05| -|npm|uglify-js|7.068387506848377e-05| -|cran|car|7.05659786815834e-05| -|cran|RhpcBLASctl|7.046795503552629e-05| -|cran|gtools|7.043239609821169e-05| -|pypi|[psycopg2-binary](https://pypi.org/project/psycopg2-binary)|7.019863060131517e-05| -|pypi|[autocommand](https://pypi.org/project/autocommand)|7.006315140762286e-05| -|pypi|[qtconsole](https://pypi.org/project/qtconsole)|6.999332562916752e-05| -|pypi|[deprecated](https://pypi.org/project/deprecated)|6.996708173404263e-05| -|pypi|[tifffile](https://pypi.org/project/tifffile)|6.941906926393429e-05| -|npm|[express-handlebars](https://github.com/express-handlebars/express-handlebars)|6.921140939597315e-05| -|npm|[express-session](https://github.com/expressjs/session#readme)|6.921140939597315e-05| -|npm|[helmet](https://helmetjs.github.io/)|6.921140939597315e-05| -|npm|[mongoose](https://mongoosejs.com)|6.921140939597315e-05| -|npm|[node-cmd](https://github.com/RIAEvangelist/node-cmd)|6.921140939597315e-05| -|npm|[passport](https://www.passportjs.org/)|6.921140939597315e-05| -|npm|[passport-local-mongoose](https://github.com/saintedlama/passport-local-mongoose#readme)|6.921140939597315e-05| -|pypi|[sphinx-fortran](http://sphinx-fortran.readthedocs.org)|6.921140939597315e-05| -|pypi|[dogpile.cache](https://github.com/sqlalchemy/dogpile.cache)|6.921140939597315e-05| -|pypi|[julia](http://julialang.org)|6.921140939597315e-05| -|cran|paletteer|6.921140939597315e-05| -|cran|statsExpressions|6.921140939597315e-05| -|cran|geoaxe|6.921140939597315e-05| -|cran|spbabel|6.921140939597315e-05| -|cran|colorRamps|6.921140939597315e-05| -|cran|[Rdpack](https://geobosh.github.io/Rdpack/ (website))|6.891469888442463e-05| -|pypi|[argon2-cffi](https://argon2-cffi.readthedocs.io/)|6.884219889962102e-05| -|pypi|[dash-table-experiments](https://pypi.org/project/dash-table-experiments)|6.866059928140465e-05| -|npm|babel-preset-env|6.831274120386409e-05| -|cran|latticeExtra|6.820353351226912e-05| -|rubygems|[mysql2](https://github.com/brianmario/mysql2)|6.801362827009998e-05| -|rubygems|jekyll-seo-tag|6.77237101510067e-05| -|pypi|[types-backports](https://pypi.org/project/types-backports)|6.722504194630871e-05| -|pypi|[PyLD](https://github.com/digitalbazaar/pyld)|6.715576132550335e-05| -|cran|timeSeries|6.679695463490941e-05| -|cran|fts|6.679695463490941e-05| -|pypi|[async-timeout](https://github.com/aio-libs/async-timeout)|6.674065168612148e-05| -|cran|pbapply|6.627513039250623e-05| -|cran|[zip](https://github.com/r-lib/zip#readme)|6.622909944765511e-05| -|npm|[istanbul](https://github.com/gotwarlost/istanbul#readme)|6.619597241540495e-05| -|npm|[babel-preset-minify](https://github.com/babel/minify#readme)|6.563543964035632e-05| -|cran|miniUI|6.559862072199762e-05| -|pypi|[coveralls](https://pypi.org/project/coveralls)|6.556730626890552e-05| -|cran|lpSolve|6.549376797698945e-05| -|npm|[d3-dsv](https://d3js.org/d3-dsv/)|6.514015001973943e-05| -|npm|[diff2html](https://diff2html.xyz/)|6.514015001973943e-05| -|npm|[difflib-ts](https://github.com/mailmangroup/difflib-ts#readme)|6.514015001973943e-05| -|npm|[react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form#readme)|6.514015001973943e-05| -|npm|react-schemaorg|6.514015001973943e-05| -|pypi|[BoltzTraP2](https://www.boltztrap.org)|6.514015001973943e-05| -|cran|nortest|6.514015001973943e-05| -|cran|openair|6.514015001973943e-05| -|cran|brew|6.512600837483205e-05| -|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|6.450966062188162e-05| -|pypi|[ffmpeg](https://github.com/jiashaokun/ffmpeg)|6.42897091722595e-05| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|6.415659250700045e-05| -|cran|[plotly](https://plotly-r.com)|6.391662811940254e-05| -|cran|fstcore|6.348425400103252e-05| -|cran|parallelly|6.345453221673434e-05| -|cran|lars|6.344936942252378e-05| -|cran|IRdisplay|6.340665099283007e-05| -|npm|sax|6.289146925833238e-05| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|6.286612476689178e-05| -|pypi|[anyjson](http://bitbucket.org/runeh/anyjson/)|6.279410630255343e-05| -|rubygems|html-proofer|6.255811661073824e-05| -|pypi|[kombu](https://kombu.readthedocs.io)|6.255602922303338e-05| -|pypi|[markdown](https://pypi.org/project/markdown)|6.238180667207515e-05| -|cran|emmeans|6.236423493582664e-05| -|cran|ggforce|6.218964240821916e-05| -|rubygems|rubocop-github|6.20708682885906e-05| -|cran|rsvg|6.177242110667948e-05| -|cran|futile.logger|6.172597997639945e-05| -|cran|graphql|6.16599122354156e-05| -|cran|TTR|6.159815436241611e-05| -|pypi|[svn](https://github.com/dsoprea/PySvn)|6.152125279642058e-05| -|pypi|[binaryornot](https://github.com/audreyr/binaryornot)|6.152125279642058e-05| -|pypi|[Pint](https://github.com/hgrecco/pint)|6.152125279642058e-05| -|pypi|[pyclipper](https://github.com/greginvm/pyclipper)|6.152125279642058e-05| -|pypi|[quantiphy](https://quantiphy.readthedocs.io)|6.152125279642058e-05| -|pypi|[Theano](http://deeplearning.net/software/theano/)|6.152125279642058e-05| -|pypi|[cdsapi](https://github.com/ecmwf/cdsapi)|6.152125279642058e-05| -|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|6.14565849778218e-05| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|6.14565849778218e-05| -|rubygems|activesupport|6.143430694425422e-05| -|pypi|[patsy](https://pypi.org/project/patsy)|6.140333820813196e-05| +https://personality-project.org/r/psych-manual.pdf)|0.00011555680247237536| +|cran|flashClust|0.00011544768547875711| +|npm|[esm](https://github.com/standard-things/esm#readme)|0.00011474740139916023| +|cran|e1071|0.00011450206263493085| +|cran|[targets](https://docs.ropensci.org/targets/)|0.00011391990751476081| +|pypi|[nlesc-CAT](https://github.com/nlesc-nano/CAT)|0.00011367939289626036| +|cran|[s2](https://r-spatial.github.io/s2/)|0.00011340479046753817| +|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.00011283015711728818| +|pypi|[dash-renderer](https://pypi.org/project/dash-renderer)|0.00011280656159496033| +|pypi|[fluids](https://github.com/CalebBell/fluids)|0.00011251760287904865| +|npm|react-router-dom|0.00011168291032329228| +|pypi|[pbr](https://pypi.org/project/pbr)|0.00011145768072289155| +|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.00011122848101625793| +|cran|statnet.common|0.00011046963363658716| +|cran|[bayestestR](https://easystats.github.io/bayestestR/)|0.00011011999586358622| +|pypi|[pep517](https://pypi.org/project/pep517)|0.00011000933565100276| +|cran|MatrixModels|0.00010989579316938526| +|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.00010946813951828316| +|pypi|[fastprogress](https://github.com/fastai/fastprogress)|0.00010946670695320466| +|npm|[fs-extra](https://github.com/jprichardson/node-fs-extra)|0.00010917867900172117| +|pypi|[email-validator](https://pypi.org/project/email-validator)|0.00010882397722759168| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.00010874122848111948| +|pypi|[disksurf](https://github.com/richteague/disksurf)|0.00010843373493975904| +|pypi|[gofish](https://github.com/richteague/gofish)|0.00010843373493975904| +|pypi|[simpleitk](http://simpleitk.org/)|0.00010843373493975904| +|pypi|[Cerberus](http://docs.python-cerberus.org)|0.00010843373493975904| +|pypi|[CoolProp](http://www.coolprop.org)|0.00010843373493975904| +|pypi|[snipgenie](https://github.com/dmnfarrell/snipgenie)|0.00010843373493975904| +|pypi|[bcbio_gff](https://github.com/chapmanb/bcbb/tree/master/gff)|0.00010843373493975904| +|pypi|[sisyphe](https://sisyphe.readthedocs.io)|0.00010843373493975904| +|pypi|[pykeops](http://www.kernel-operations.io/)|0.00010843373493975904| +|pypi|[keopscore](http://www.kernel-operations.io/)|0.00010843373493975904| +|pypi|[ansicolors](http://github.com/jonathaneunice/colors/)|0.00010843373493975904| +|npm|[auspice](https://www.npmjs.com/package/auspice)|0.00010843373493975904| +|npm|[heroku-ssl-redirect](https://github.com/paulomcnally/node-heroku-ssl-redirect)|0.00010843373493975904| +|npm|[react-file-drop](https://github.com/sarink/react-file-drop#readme)|0.00010843373493975904| +|pypi|[Unidecode](https://pypi.org/project/Unidecode)|0.00010843373493975903| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.00010816635291468834| +|cran|gee|0.00010805298453831179| +|pypi|[igraph](https://igraph.org/python)|0.00010761777108433734| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.00010750013664760912| +|pypi|[pandoc-min](https://github.com/boisgera/pandoc)|0.00010734939759036145| +|pypi|[CommonMark](https://github.com/rtfd/CommonMark-py)|0.00010734939759036145| +|npm|[rxjs](https://rxjs.dev)|0.0001068536366697835| +|pypi|[shapely](https://github.com/shapely/shapely)|0.0001068045650784742| +|pypi|[cftime](https://pypi.org/project/cftime)|0.00010659449428921172| +|cran|gamm4|0.00010637345138829301| +|cran|[survminer](http://www.sthda.com/english/rpkgs/survminer/)|0.0001063584481466536| +|pypi|[backports.functools-lru-cache](https://pypi.org/project/backports.functools-lru-cache)|0.00010627590361445783| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.00010621760418839992| +|npm|rollup|0.00010612287808249586| +|cran|[ggrepel](http://github.com/slowkow/ggrepel)|0.00010591748010766908| +|pypi|[websocket-client](https://github.com/websocket-client/websocket-client.git)|0.00010513369787615319| +|npm|[mongoose](https://mongoosejs.com)|0.00010452828262201348| +|npm|[passport](https://www.passportjs.org/)|0.00010452828262201348| +|cran|modelbased|0.00010433470144313518| +|npm|[prop-types](https://facebook.github.io/react/)|0.00010413207627326819| +|cran|[stars](https://r-spatial.github.io/stars/)|0.00010396923262530951| +|cran|[spdep](https://github.com/r-spatial/spdep/)|0.00010389023246502937| +|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.00010332421024163106| +|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.00010314338891955964| +|rubygems|[minitest](https://github.com/seattlerb/minitest)|0.0001030514537034624| +|pypi|[cwltool](https://github.com/common-workflow-language/cwltool)|0.0001030120481927711| +|cran|[RMariaDB](https://rmariadb.r-dbi.org)|0.00010299426128414236| +|npm|[nodemon](https://nodemon.io)|0.00010292358244165474| +|npm|[semver](https://github.com/npm/node-semver#readme)|0.00010282075552295657| +|cran|mapdata|0.00010273246691290449| +|cran|highr|0.00010243187113769464| +|pypi|[freezegun](https://pypi.org/project/freezegun)|0.00010237212020767529| +|cran|[checkmate](https://github.com/mllg/checkmate)|0.0001021907119702691| +|npm|[jquery](https://jquery.com)|0.00010191976698000794| +|pypi|[nptyping](https://pypi.org/project/nptyping)|0.00010147562741917898| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.00010133459020625362| +|cran|tikzDevice|0.00010039930628383552| +|cran|palmerpenguins|0.00010034065768772701| +|cran|coda|9.98057068760766e-05| +|pypi|[brotlipy](https://pypi.org/project/brotlipy)|9.948095949843667e-05| +|pypi|[cymem](https://pypi.org/project/cymem)|9.922481495361393e-05| +|pypi|[murmurhash](https://pypi.org/project/murmurhash)|9.922481495361393e-05| +|pypi|[websockets](https://pypi.org/project/websockets)|9.871122664530301e-05| +|pypi|[edlib](https://github.com/Martinsos/edlib)|9.85761226725082e-05| +|pypi|[bxa](https://github.com/JohannesBuchner/BXA/)|9.85761226725082e-05| +|pypi|[ultranest](https://github.com/JohannesBuchner/ultranest)|9.85761226725082e-05| +|pypi|[panoptes-ui](https://github.com/panoptes-organization/panoptes)|9.85761226725082e-05| +|pypi|[Flask-RESTful](https://www.github.com/flask-restful/flask-restful/)|9.85761226725082e-05| +|pypi|[functools32](https://github.com/MiCHiLU/python-functools32)|9.85761226725082e-05| +|pypi|[filetype](https://github.com/h2non/filetype.py)|9.85761226725082e-05| +|npm|[angular-animate](http://angularjs.org)|9.85761226725082e-05| +|npm|[angular-sanitize](http://angularjs.org)|9.85761226725082e-05| +|npm|[angular-touch](http://angularjs.org)|9.85761226725082e-05| +|npm|[colorbrewer](http://colorbrewer2.org/)|9.85761226725082e-05| +|npm|[dc](http://dc-js.github.io/dc.js/)|9.85761226725082e-05| +|rubygems|bundler|9.823495732199935e-05| +|pypi|[gitpython](https://github.com/gitpython-developers/GitPython)|9.820980405137033e-05| +|cran|JuliaCall|9.808574168059499e-05| +|pypi|[pyOpenSSL](https://pyopenssl.org/)|9.755594994623384e-05| +|cran|[vcr](https://github.com/ropensci/vcr/ (devel) +https://books.ropensci.org/http-testing/ (user manual))|9.7106478504284e-05| +|pypi|[distro](https://github.com/python-distro/distro)|9.681583476764199e-05| +|cran|[forecast](https://pkg.robjhyndman.com/forecast/)|9.675392591541552e-05| +|pypi|[dnspython](https://pypi.org/project/dnspython)|9.611876075731496e-05| +|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|9.608050954119436e-05| +|pypi|[tinycss2](https://pypi.org/project/tinycss2)|9.596877007815212e-05| +|pypi|[pylint](https://pypi.org/project/pylint)|9.564998438878588e-05| +|pypi|[pyamg](https://pypi.org/project/pyamg)|9.54566832134151e-05| +|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|9.506247621991591e-05| +|npm|[uglify-js](https://github.com/mishoo/UglifyJS#readme)|9.493203374723383e-05| +|npm|[babel-cli](https://babeljs.io/)|9.44701993563483e-05| +|pypi|[libsvm](https://github.com/ocampor/libsvm)|9.425091671031955e-05| +|pypi|[webcolors](https://pypi.org/project/webcolors)|9.419906490847272e-05| +|npm|[bootstrap](https://getbootstrap.com/)|9.340408071916147e-05| +|npm|[react-bootstrap](https://react-bootstrap.github.io/)|9.340408071916147e-05| +|pypi|[build](https://pypi.org/project/build)|9.32268324338652e-05| +|pypi|[tzlocal](https://pypi.org/project/tzlocal)|9.300616394148021e-05| +|cran|class|9.290857547838413e-05| +|pypi|[pyzmq](https://pypi.org/project/pyzmq)|9.290603936777794e-05| +|pypi|[blinker](https://pypi.org/project/blinker)|9.265009618305152e-05| +|cran|[leaflet](https://rstudio.github.io/leaflet/)|9.25821327274874e-05| +|npm|react-router-bootstrap|9.231974336976388e-05| +|pypi|[furo](https://pypi.org/project/furo)|9.222237659761461e-05| +|cran|[rnaturalearth](https://github.com/ropenscilabs/rnaturalearth)|9.22139392449203e-05| +|pypi|[wsaccel](https://pypi.org/project/wsaccel)|9.209811531841652e-05| +|cran|poorman|9.204766833606146e-05| +|cran|[here](https://here.r-lib.org/)|9.186324035075354e-05| +|pypi|[markdown](https://pypi.org/project/markdown)|9.151315728920269e-05| +|pypi|[timeout-decorator](https://pypi.org/project/timeout-decorator)|9.132153614457831e-05| +|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|9.081894272981869e-05| +|pypi|[scikit-bio](http://scikit-bio.org)|9.036144578313253e-05| +|pypi|[hdmedians](http://github.com/daleroberts/hdmedians)|9.036144578313253e-05| +|pypi|[gpytorch](https://gpytorch.ai)|9.036144578313253e-05| +|npm|[ProtVista](https://github.com/ebi-uniprot/ProtVista)|9.036144578313253e-05| +|npm|[downloadjs](http://danml.com/download.html)|9.036144578313253e-05| +|npm|[events](https://github.com/Gozala/events#readme)|9.036144578313253e-05| +|npm|[litemol](https://webchemdev.ncbr.muni.cz/LiteMol/)|9.036144578313253e-05| +|npm|[semantic-ui-button](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-dropdown](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-label](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-transition](http://www.semantic-ui.com)|9.036144578313253e-05| +|cran|[classInt](https://r-spatial.github.io/classInt/)|9.029053959230796e-05| +|pypi|[berkeleydb](https://pypi.org/project/berkeleydb)|8.995481927710843e-05| +|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|8.958252860646646e-05| +|pypi|[terminado](https://pypi.org/project/terminado)|8.958252860646646e-05| +|pypi|[retrying](https://pypi.org/project/retrying)|8.947674821355301e-05| +|pypi|[terminaltables](https://github.com/matthewdeanmartin/terminaltables)|8.94578313253012e-05| +|pypi|[dash](https://plotly.com/dash)|8.93235607657325e-05| +|pypi|[oset](https://gitorious.com/sleipnir/python-oset)|8.922939837787268e-05| +|cran|[colorspace](https://colorspace.R-Forge.R-project.org/)|8.910689028911262e-05| +|cran|[Seurat](https://satijalab.org/seurat)|8.885038481685941e-05| +|cran|[network](http://statnet.org/)|8.884261574876522e-05| +|cran|shape|8.879396722991323e-05| +|npm|[xlsx](https://sheetjs.com/)|8.877615726062143e-05| +|cran|[kableExtra](http://haozhu233.github.io/kableExtra/)|8.86600528607131e-05| +|pypi|[invoke](https://pypi.org/project/invoke)|8.836108050965129e-05| +|pypi|[coloredlogs](https://coloredlogs.readthedocs.io)|8.801575334385276e-05| +|pypi|[pybtex-docutils](https://pypi.org/project/pybtex-docutils)|8.771749984869575e-05| +|cran|spatstat.data|8.769554747532581e-05| +|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|8.761343580087189e-05| +|npm|[coveralls](https://github.com/nickmerwin/node-coveralls#readme)|8.75494416343128e-05| +|npm|[winston](https://github.com/winstonjs/winston#readme)|8.688600556070436e-05| +|cran|[slam](NA)|8.675446336087725e-05| +|pypi|[theano-pymc](http://deeplearning.net/software/theano/)|8.667900441892963e-05| +|rubygems|[activerecord-jdbc-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|8.631325301204817e-05| +|pypi|[pyglet](https://pypi.org/project/pyglet)|8.59724612736661e-05| +|pypi|[limitedinteraction](https://felixchenier.uqam.ca/limitedinteraction/)|8.59724612736661e-05| +|pypi|[qtconsole](https://pypi.org/project/qtconsole)|8.587237147694355e-05| +|pypi|[patsy](https://pypi.org/project/patsy)|8.53980282787203e-05| +|cran|[tmap](https://github.com/mtennekes/tmap)|8.53668229867553e-05| +|cran|pool|8.53668229867553e-05| +|cran|polyclip|8.516488083026489e-05| +|pypi|[aiosignal](https://github.com/aio-libs/aiosignal)|8.51175964806073e-05| +|pypi|[tensorflow](https://pypi.org/project/tensorflow)|8.504314852694429e-05| +|pypi|[dash-table](https://pypi.org/project/dash-table)|8.485364267892334e-05| +|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|8.485364267892334e-05| +|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|8.485364267892334e-05| +|pypi|[gmsh](https://gmsh.info)|8.48334514528703e-05| +|pypi|[pooch](https://pypi.org/project/pooch)|8.462039089852167e-05| +|pypi|[flaky](https://pypi.org/project/flaky)|8.419634086845127e-05| +|pypi|[oaiharvest](http://github.com/bloomonkey/oai-harvest)|8.384251290877796e-05| +|cran|[taxize](https://docs.ropensci.org/taxize/ (website))|8.373063683304652e-05| +|pypi|[contextvars](https://pypi.org/project/contextvars)|8.361160401976572e-05| +|pypi|[yt](https://github.com/yt-project/yt)|8.341056533827618e-05| +|pypi|[21cmFAST](https://github.com/21cmFAST/21cmFAST)|8.341056533827618e-05| +|pypi|[bidict](https://bidict.readthedocs.io)|8.341056533827618e-05| +|pypi|[cached-property](https://github.com/pydanny/cached-property)|8.341056533827618e-05| +|pypi|[sphinx-math-dollar](https://github.com/sympy/sphinx-math-dollar/)|8.341056533827618e-05| +|pypi|[keyring](https://pypi.org/project/keyring)|8.339942331920394e-05| +|npm|[tap](http://www.node-tap.org/)|8.305465669719293e-05| +|pypi|[whoosh](https://pypi.org/project/whoosh)|8.281047108433734e-05| +|npm|[ava](https://avajs.dev)|8.263355620283331e-05| +|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|8.255090255718619e-05| +|pypi|[trio](https://pypi.org/project/trio)|8.251464620602642e-05| +|cran|[gapminder](https://github.com/jennybc/gapminder)|8.250036403647214e-05| +|pypi|[bokeh](https://pypi.org/project/bokeh)|8.234493016791757e-05| +|cran|animation|8.230608770485669e-05| +|cran|[spatstat.core](http://spatstat.org/)|8.19520983092032e-05| +|pypi|[coveralls](https://pypi.org/project/coveralls)|8.165442089478441e-05| +|cran|[gplots](https://github.com/talgalili/gplots)|8.152587900368497e-05| +|pypi|[qtpy](https://pypi.org/project/qtpy)|8.109164627676152e-05| +|npm|[uuid](https://github.com/uuidjs/uuid#readme)|8.082758698231184e-05| +|pypi|[boto3](https://github.com/boto/boto3)|8.079076509333158e-05| +|pypi|[typed-ast](https://pypi.org/project/typed-ast)|8.06793792727888e-05| +|pypi|[tomli-w](https://pypi.org/project/tomli-w)|7.999720320487907e-05| +|cran|tseries|7.982684800242904e-05| +|npm|[tslib](https://www.typescriptlang.org/)|7.939513464549202e-05| +|npm|[webpack-cli](https://github.com/webpack/webpack-cli/tree/master/packages/webpack-cli)|7.93459552495697e-05| +|cran|[argon2](https://github.com/wrathematics/argon2)|7.926602839931153e-05| +|pypi|[nbclient](https://pypi.org/project/nbclient)|7.91135344981651e-05| +|cran|[dendextend](http://talgalili.github.io/dendextend/)|7.875576961585957e-05| +|pypi|[alembic](https://pypi.org/project/alembic)|7.86144578313253e-05| +|npm|[supertest](https://github.com/visionmedia/supertest#readme)|7.858681228410144e-05| +|cran|ade4|7.852978574594603e-05| +|npm|[swagger-ui-express](https://github.com/scottie1984/swagger-ui-express)|7.846248095380217e-05| +|cran|shinydisconnect|7.83428639369508e-05| +|npm|[zone.js](https://github.com/angular/angular#readme)|7.831844326458376e-05| +|cran|[irlba](NA)|7.814060890000519e-05| +|cran|[rex](https://github.com/kevinushey/rex)|7.787637084994117e-05| +|pypi|[pickleshare](https://pypi.org/project/pickleshare)|7.772253385102416e-05| +|pypi|[jedi](https://pypi.org/project/jedi)|7.772253385102416e-05| +|cran|[datawizard](https://easystats.github.io/datawizard/)|7.771434684713227e-05| +|pypi|[torch](https://pytorch.org/)|7.770335112539593e-05| +|pypi|[area](https://github.com/scisco/area)|7.74526678141136e-05| +|pypi|[StringDist](https://github.com/obulkin/string-dist)|7.74526678141136e-05| +|pypi|[py-grama](https://github.com/zdelrosario/py_grama)|7.74526678141136e-05| +|pypi|[thermo](https://github.com/CalebBell/thermo)|7.74526678141136e-05| +|pypi|[colorpalette](https://github.com/yoelcortes/colorpalette)|7.74526678141136e-05| +|pypi|[free_properties](https://github.com/yoelcortes/free_properties)|7.74526678141136e-05| +|pypi|[flexsolve](https://github.com/yoelcortes/flexsolve)|7.74526678141136e-05| +|pypi|[Sequoya](https://github.com/benhid/Sequoya)|7.74526678141136e-05| +|pypi|[jmetalpy](https://github.com/jMetal/jMetalPy)|7.74526678141136e-05| +|pypi|[pyMSA](https://github.com/benhid/pyMSA)|7.74526678141136e-05| +|pypi|[pyoai](http://www.infrae.com/download/oaipmh)|7.74526678141136e-05| +|cran|poibin|7.74526678141136e-05| +|cran|fANCOVA|7.74526678141136e-05| +|npm|[concurrently](https://github.com/open-cli-tools/concurrently#readme)|7.74526678141136e-05| +|npm|[cors-anywhere](https://github.com/Rob--W/cors-anywhere#readme)|7.74526678141136e-05| +|npm|[dotenv-webpack](https://github.com/mrsteele/dotenv-webpack#readme)|7.74526678141136e-05| +|npm|net|7.74526678141136e-05| +|npm|[typescript](https://www.typescriptlang.org/)|7.741717855330557e-05| +|cran|[gert](https://docs.ropensci.org/gert/)|7.741177985978884e-05| +|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|7.728879891126511e-05| +|pypi|[backcall](https://pypi.org/project/backcall)|7.728879891126511e-05| +|pypi|[dicttoxml](https://pypi.org/project/dicttoxml)|7.714997922725385e-05| +|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|7.679888022079867e-05| +|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|7.671734258766596e-05| +|npm|[bcrypt](https://github.com/kelektiv/node.bcrypt.js#readme)|7.671686746987951e-05| +|npm|process|7.667814113597246e-05| +|npm|util|7.667814113597246e-05| +|npm|spc|7.667814113597246e-05| +|pypi|[debugpy](https://pypi.org/project/debugpy)|7.657848633849347e-05| +|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|7.657848633849347e-05| +|npm|[debug](https://github.com/debug-js/debug#readme)|7.657352985933303e-05| +|pypi|[dash-table-experiments](https://pypi.org/project/dash-table-experiments)|7.653365040131356e-05| +|pypi|[testpath](https://pypi.org/project/testpath)|7.650172918055462e-05| +|pypi|[distributed](https://distributed.dask.org)|7.644976552110939e-05| +|pypi|[rfc3986](https://pypi.org/project/rfc3986)|7.616882038638084e-05| +|pypi|[uncertainties](https://pypi.org/project/uncertainties)|7.57979589392744e-05| +|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|7.571188451074769e-05| +|cran|[mmand](https://github.com/jonclayden/mmand)|7.558912119064493e-05| +|cran|[RNifti](https://github.com/jonclayden/RNifti)|7.558912119064493e-05| +|cran|[lavaan](https://lavaan.ugent.be)|7.55837737849297e-05| +|cran|[shinytest](https://github.com/rstudio/shinytest)|7.55500115189418e-05| +|cran|conflicted|7.544073165018484e-05| +|pypi|[localconfig](https://github.com/maxzheng/localconfig)|7.522590361445783e-05| +|pypi|[cron-descriptor](https://github.com/Salamek/cron-descriptor)|7.522590361445783e-05| +|pypi|[python-crontab](https://gitlab.com/doctormo/python-crontab/)|7.522590361445783e-05| +|pypi|[pythutils](https://github.com/JolleJolles)|7.522590361445783e-05| +|npm|[mathjs](https://mathjs.org)|7.515060240963855e-05| +|npm|husky|7.502417829260794e-05| +|pypi|[cupy](https://pypi.org/project/cupy)|7.46864124016605e-05| +|pypi|[netifaces](https://github.com/al45tair/netifaces)|7.466313253012049e-05| +|pypi|[python-socks](https://pypi.org/project/python-socks)|7.438546471600689e-05| +|cran|[zeallot](https://github.com/nteetor/zeallot)|7.427710843373494e-05| +|npm|expect.js|7.417545180722892e-05| +|pypi|[typer](https://pypi.org/project/typer)|7.413796558130117e-05| +|npm|[commander](https://github.com/tj/commander.js#readme)|7.40323795180723e-05| +|npm|eslint-plugin-import|7.353473842648069e-05| +|npm|[semantic-release](https://github.com/semantic-release/semantic-release#readme)|7.351439656932816e-05| +|cran|[pingr](https://github.com/r-lib/pingr#readme)|7.35115311410312e-05| +|cran|[circlize](https://github.com/jokergoo/circlize)|7.298461050680455e-05| +|pypi|[sgp4](https://pypi.org/project/sgp4)|7.293564925506809e-05| +|pypi|[skyfield](https://pypi.org/project/skyfield)|7.293564925506809e-05| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|7.293564925506809e-05| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|7.293564925506809e-05| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|7.293564925506809e-05| +|pypi|[asdf](https://pypi.org/project/asdf)|7.293564925506809e-05| +|pypi|[jplephem](https://pypi.org/project/jplephem)|7.293564925506809e-05| +|pypi|[qtawesome](https://github.com/spyder-ide/qtawesome)|7.280550774526678e-05| +|cran|pbkrtest|7.272272627652701e-05| +|pypi|[SciencePlots](https://github.com/garrettj403/SciencePlots/)|7.228915662650602e-05| +|pypi|[scikit-video](http://scikit-video.org/)|7.228915662650602e-05| +|pypi|[h11](https://github.com/python-hyper/h11)|7.228915662650602e-05| +|pypi|[blosc](http://github.com/blosc/python-blosc)|7.228915662650602e-05| +|pypi|[pyroaring](https://github.com/Ezibenroc/PyRoaringBitMap)|7.228915662650602e-05| +|cran|[caret](https://github.com/topepo/caret/)|7.212845889050712e-05| +|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|7.206442942402239e-05| +|pypi|[plac](https://pypi.org/project/plac)|7.202591357164195e-05| +|cran|reactlog|7.1885379305879e-05| +|cran|sourcetools|7.1885379305879e-05| +|cran|fontawesome|7.1885379305879e-05| +|cran|pbdMPI|7.156626506024095e-05| +|npm|[istanbul](https://github.com/gotwarlost/istanbul#readme)|7.137208742923167e-05| +|pypi|[Theano](http://deeplearning.net/software/theano/)|7.108433734939759e-05| +|pypi|[paramiko](https://paramiko.org)|7.103508651145939e-05| +|cran|[sna](http://statnet.org)|7.07832754594803e-05| +|npm|[xo](https://github.com/xojs/xo#readme)|7.050426982655898e-05| +|cran|RcppTOML|7.04528086771639e-05| +|pypi|[pyrsistent](https://pypi.org/project/pyrsistent)|7.042960486743736e-05| +|pypi|[pyfiglet](https://github.com/pwaller/pyfiglet)|7.033925174381738e-05| +|cran|[janitor](https://github.com/sfirke/janitor)|7.017147875389024e-05| +|pypi|[markupsafe](https://pypi.org/project/markupsafe)|6.976030884099779e-05| +|pypi|[srsly](https://pypi.org/project/srsly)|6.940553784518021e-05| +|npm|babel-preset-env|6.918490843974291e-05| +|cran|[car](https://r-forge.r-project.org/projects/car/)|6.909746433881224e-05| +|cran|RhpcBLASctl|6.90014806152908e-05| +|cran|[gtools](https://github.com/r-gregmisc/gtools)|6.896666167776697e-05| +|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|6.88614292835078e-05| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|6.879668923292209e-05| +|pypi|[psycopg2-binary](https://pypi.org/project/psycopg2-binary)|6.873776096120017e-05| +|pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|6.845801582445934e-05| +|pypi|[deprecated](https://pypi.org/project/deprecated)|6.824846123624935e-05| +|pypi|[Six](https://pypi.org/project/Six)|6.796471600688467e-05| +|pypi|[bfit](https://github.com/dfujim/bfit)|6.77710843373494e-05| +|pypi|[bdata](https://github.com/dfujim/bdata)|6.77710843373494e-05| +|pypi|[mud-py](https://github.com/dfujim/mudpy)|6.77710843373494e-05| +|pypi|[julia](http://julialang.org)|6.77710843373494e-05| +|pypi|[sphinx-fortran](http://sphinx-fortran.readthedocs.org)|6.77710843373494e-05| +|pypi|[objsize](https://github.com/liran-funaro/objsize)|6.77710843373494e-05| +|cran|geoaxe|6.77710843373494e-05| +|cran|spbabel|6.77710843373494e-05| +|cran|colorRamps|6.77710843373494e-05| +|cran|paletteer|6.77710843373494e-05| +|cran|statsExpressions|6.77710843373494e-05| +|npm|[express-handlebars](https://github.com/express-handlebars/express-handlebars)|6.77710843373494e-05| +|npm|[express-session](https://github.com/expressjs/session#readme)|6.77710843373494e-05| +|npm|[helmet](https://helmetjs.github.io/)|6.77710843373494e-05| +|npm|[node-cmd](https://github.com/RIAEvangelist/node-cmd)|6.77710843373494e-05| +|npm|[passport-local-mongoose](https://github.com/saintedlama/passport-local-mongoose#readme)|6.77710843373494e-05| +|cran|[Rdpack](https://geobosh.github.io/Rdpack/ (website))|6.748054852428875e-05| +|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|6.729514332860793e-05| +|pypi|[miniball](https://github.com/marmakoide/miniball)|6.70933734939759e-05| +|cran|latticeExtra|6.678418286962606e-05| +|pypi|[randomgen](https://github.com/bashtage/randomgen)|6.665485471296952e-05| +|rubygems|[mysql2](https://github.com/brianmario/mysql2)|6.65982296533071e-05| +|pypi|[libcst](https://pypi.org/project/libcst)|6.622286359724613e-05| +|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|6.622286359724613e-05| +|pypi|[PyLD](https://github.com/digitalbazaar/pyld)|6.575821536144577e-05| +|pypi|[tblib](https://pypi.org/project/tblib)|6.558173226468698e-05| +|pypi|[rdflib](https://github.com/RDFLib/rdflib)|6.552710843373498e-05| +|cran|timeSeries|6.540687562279192e-05| +|cran|fts|6.540687562279192e-05| +|cran|[pbapply](https://github.com/psolymos/pbapply)|6.489591081150118e-05| +|cran|[zip](https://github.com/r-lib/zip#readme)|6.48508377943085e-05| +|pypi|[hiredis](https://pypi.org/project/hiredis)|6.43361660929432e-05| +|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|6.428475664329213e-05| +|npm|[babel-preset-minify](https://github.com/babel/minify#readme)|6.426953235320761e-05| +|cran|miniUI|6.423347965549382e-05| +|pypi|[google-pasta](https://pypi.org/project/google-pasta)|6.41967268835245e-05| +|cran|lpSolve|6.413080895008606e-05| +|npm|sax|6.387645595419487e-05| +|cran|nortest|6.378454996456414e-05| +|cran|openair|6.378454996456414e-05| +|npm|[d3-dsv](https://d3js.org/d3-dsv/)|6.378454996456414e-05| +|npm|[diff2html](https://diff2html.xyz/)|6.378454996456414e-05| +|npm|[difflib-ts](https://github.com/mailmangroup/difflib-ts#readme)|6.378454996456414e-05| +|npm|[react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form#readme)|6.378454996456414e-05| +|npm|react-schemaorg|6.378454996456414e-05| +|cran|brew|6.37707026145672e-05| +|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|6.3519016040151e-05| +|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|6.3519016040151e-05| +|pypi|[astunparse](https://pypi.org/project/astunparse)|6.3519016040151e-05| +|pypi|[pkginfo](https://pypi.org/project/pkginfo)|6.315677219360976e-05| +|pypi|[spacy-legacy](https://spacy.io)|6.300098066685345e-05| +|pypi|[ffmpeg](https://github.com/jiashaokun/ffmpeg)|6.295180722891566e-05| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|6.28165128553404e-05| +|pypi|[autopep8](https://github.com/hhatto/autopep8)|6.278062464833389e-05| +|pypi|[types-backports](https://pypi.org/project/types-backports)|6.277635542168675e-05| +|cran|[plotly](https://plotly-r.com)|6.25864901848257e-05| +|npm|[sinon](https://sinonjs.org/)|6.246059901768941e-05| +|pypi|[pyasn1-modules](https://pypi.org/project/pyasn1-modules)|6.244732765944571e-05| +|pypi|[pretend](https://pypi.org/project/pretend)|6.234416330869697e-05| +|cran|fstcore|6.21631139944393e-05| +|npm|[colors](https://github.com/Marak/colors.js)|6.21342512908778e-05| +|cran|parallelly|6.213401073577272e-05| +|cran|lars|6.212895538196743e-05| +|cran|[IRdisplay](https://github.com/IRkernel/IRdisplay)|6.20871259447865e-05| +|pypi|[click-plugins](https://pypi.org/project/click-plugins)|6.156107431693461e-05| +|pypi|[mccabe](https://pypi.org/project/mccabe)|6.1532714455126e-05| +|pypi|[anyjson](http://bitbucket.org/runeh/anyjson/)|6.14873286248442e-05| +|pypi|[kombu](https://pypi.org/project/kombu)|6.125420605190783e-05| +|npm|[date-fns](https://github.com/date-fns/date-fns#readme)|6.10684496226665e-05| +|cran|[emmeans](https://github.com/rvlenth/emmeans)|6.106640310255095e-05| +|cran|[ggforce](https://ggforce.data-imaginist.com)|6.089544393532084e-05| +|pypi|[isodate](https://github.com/gweis/isodate/)|6.0724397590361455e-05| +|npm|[plotly.js](https://github.com/plotly/plotly.js#readme)|6.060814687320711e-05| +|cran|rsvg|6.048690522384607e-05| +|cran|[futile.logger](NA)|6.0441430557394424e-05| +|cran|[graphql](http://graphql.org (upstream) https://github.com/ropensci/graphql +(devel))|6.0376737720111215e-05| +|cran|[TTR](https://github.com/joshuaulrich/TTR)|6.0316265060240964e-05| +|pypi|[pyclipper](https://github.com/greginvm/pyclipper)|6.0240963855421684e-05| +|pypi|[quantiphy](https://quantiphy.readthedocs.io)|6.0240963855421684e-05| +|pypi|[Pint](https://github.com/hgrecco/pint)|6.0240963855421684e-05| +|npm|[ajv-errors](https://github.com/epoberezkin/ajv-errors#readme)|6.0240963855421684e-05| +|npm|[heta-parser](https://github.com/hetalang/heta-parser#readme)|6.0240963855421684e-05| +|npm|[inquirer](https://github.com/SBoudrias/Inquirer.js#readme)|6.0240963855421684e-05| +|npm|[markdown-it](https://github.com/markdown-it/markdown-it#readme)|6.0240963855421684e-05| +|npm|[mathjs-mathml](https://github.com/insysbio/mathjs-mathml#readme)|6.0240963855421684e-05| +|npm|[random-id](https://github.com/KingCosmic/random-id#readme)|6.0240963855421684e-05| +|npm|npm-run-all|6.017416920428968e-05| +|npm|jest|6.01630266561216e-05| +|rubygems|[activesupport](https://rubyonrails.org)|6.015582739119745e-05| +|pypi|[pydub](http://pydub.com)|6.015490533562822e-05| +|rubygems|[rubocop](https://rubocop.org/)|6.007757458210644e-05| |cran|[credentials](https://docs.ropensci.org/credentials/ (website) -https://github.com/r-lib/credentials)|6.129945515893505e-05| -|pypi|[pyreadline3](https://pypi.python.org/pypi/pyreadline3/)|6.090604026845637e-05| -|pypi|[pyreadline](http://ipython.org/pyreadline.html)|6.090604026845637e-05| -|pypi|[monotonic](https://github.com/atdt/monotonic)|6.090604026845637e-05| -|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|6.0731487040349855e-05| -|cran|spatial|6.06289539652936e-05| -|cran|BayesFactor|6.058663162352542e-05| -|cran|stopwords|6.055361468147838e-05| -|cran|rnaturalearthdata|6.0398996976178175e-05| -|pypi|[entrypoints](https://pypi.org/project/entrypoints)|6.033445074097833e-05| -|npm|eslint-plugin-import|5.998269596945643e-05| -|cran|VGAM|5.972412183925466e-05| -|cran|av|5.966413509738676e-05| -|cran|brms|5.942186653879134e-05| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|5.931540563519724e-05| -|pypi|[fastparquet](https://pypi.org/project/fastparquet)|5.9309280590562786e-05| -|pypi|[arviz](http://github.com/arviz-devs/arviz)|5.920398382378249e-05| -|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|5.911520682098342e-05| -|pypi|[Brotli](https://github.com/google/brotli)|5.898677664617261e-05| -|npm|[sinon](https://sinonjs.org/)|5.865602702710328e-05| -|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|5.8349325171472824e-05| -|pypi|[rfc3987](https://pypi.org/project/rfc3987)|5.8349325171472824e-05| -|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|5.8349325171472824e-05| -|pypi|[octave_kernel](http://github.com/Calysto/octave_kernel)|5.828329212292476e-05| -|pypi|[sos-python](https://github.com/vatlab/SOS)|5.828329212292476e-05| -|pypi|[sos-ruby](https://github.com/vatlab/SOS)|5.828329212292476e-05| -|pypi|[dash_core_components](https://pypi.org/project/dash_core_components)|5.828329212292476e-05| -|pypi|[dash_html_components](https://github.com/plotly/dash-html-components)|5.828329212292476e-05| -|pypi|[dash_dangerously_set_inner_html](https://pypi.org/project/dash_dangerously_set_inner_html)|5.828329212292476e-05| -|pypi|[BioPython](https://biopython.org/)|5.828329212292476e-05| -|pypi|[python-louvain](https://github.com/taynaud/python-louvain)|5.828329212292476e-05| -|pypi|[torch-sparse](https://github.com/rusty1s/pytorch_sparse)|5.828329212292476e-05| -|pypi|[torch-scatter](https://github.com/rusty1s/pytorch_scatter)|5.828329212292476e-05| -|pypi|[torch-cluster](https://github.com/rusty1s/pytorch_cluster)|5.828329212292476e-05| -|pypi|[torch-spline-conv](https://github.com/rusty1s/pytorch_spline_conv)|5.828329212292476e-05| -|cran|dunn.test|5.828329212292476e-05| -|rubygems|w3c_validators|5.803584312080536e-05| -|cran|plotrix|5.800508443014452e-05| -|cran|egg|5.7787571907957814e-05| -|pypi|[invoke](https://pypi.org/project/invoke)|5.771064837008628e-05| -|pypi|[objgraph](https://mg.pov.lt/objgraph/)|5.758957503713928e-05| -|pypi|[tabulate](https://pypi.org/project/tabulate)|5.7436242176785126e-05| -|cran|gam|5.739488532379359e-05| -|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|5.736014201821667e-05| -|cran|wk|5.7179069880812185e-05| -|pypi|[vine](https://pypi.org/project/vine)|5.6807142969851256e-05| -|cran|hoardr|5.676797228958706e-05| -|pypi|[mistune](https://github.com/lepture/mistune)|5.675174248989266e-05| -|pypi|[pyasn1](https://pypi.org/project/pyasn1)|5.656643255659644e-05| -|cran|config|5.6547883724312755e-05| -|pypi|[qtpy](https://pypi.org/project/qtpy)|5.6321419755305335e-05| -|cran|[git2r](https://docs.ropensci.org/git2r/ (website))|5.631646353958964e-05| -|pypi|[keystoneauth1](https://pypi.org/project/keystoneauth1)|5.568552253116012e-05| -|pypi|[path.py](https://pypi.org/project/path.py)|5.547560660815694e-05| -|pypi|[datrie](https://github.com/kmike/datrie)|5.536912751677853e-05| -|pypi|[toposort](https://pypi.org/project/toposort)|5.536912751677853e-05| -|pypi|[connection_pool](https://github.com/zhouyl/ConnectionPool)|5.536912751677853e-05| -|cran|[genalg](https://github.com/egonw/genalg)|5.536912751677853e-05| -|cran|segmented|5.535110675726374e-05| -|pypi|[isodate](https://github.com/gweis/isodate/)|5.532913870246085e-05| -|pypi|[click-plugins](https://pypi.org/project/click-plugins)|5.4964660800608775e-05| -|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|5.4744135085447266e-05| -|pypi|[asv](https://pypi.org/project/asv)|5.473944468339736e-05| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|5.473944468339736e-05| -|pypi|[kaleido](https://pypi.org/project/kaleido)|5.473944468339736e-05| -|cran|[semver](https://github.com/johndharrison/semver)|5.4657238734419984e-05| -|pypi|[awscrt](https://github.com/awslabs/aws-crt-python)|5.4566233494718303e-05| -|npm|[typescript](https://www.typescriptlang.org/)|5.446774783795137e-05| -|cran|lsa|5.437609425153195e-05| -|pypi|[simplejson](https://pypi.org/project/simplejson)|5.4034336049856173e-05| -|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|5.3935587810272534e-05| -|cran|RJSONIO|5.385218323261159e-05| -|npm|standard|5.385053521974271e-05| -|pypi|[berkeleydb](https://pypi.org/project/berkeleydb)|5.3800335570469795e-05| -|npm|[mqtt](https://github.com/mqttjs/MQTT.js#readme)|5.375419463087248e-05| -|npm|regenerator-runtime|5.357899783014583e-05| -|pypi|[tblib](https://github.com/ionelmc/python-tblib)|5.35130955453942e-05| -|cran|mclust|5.327354715106194e-05| -|npm|[debug](https://github.com/debug-js/debug#readme)|5.3112030209545595e-05| -|pypi|[celery](http://celeryproject.org)|5.289207834645392e-05| -|pypi|[billiard](https://pypi.org/project/billiard)|5.265879767940923e-05| -|npm|eslint-plugin-standard|5.254489637878898e-05| -|npm|eslint-plugin-promise|5.254489637878898e-05| -|npm|eslint-plugin-node|5.254489637878898e-05| -|npm|eslint-config-standard|5.254489637878898e-05| -|pypi|[waitress](https://pypi.org/project/waitress)|5.247590516577224e-05| -|npm|coffee-script|5.2427642617449655e-05| -|cran|rbibutils|5.2352301054650044e-05| -|cran|remotes|5.2220551254592624e-05| -|pypi|[pooch>=1.1.1](https://pypi.org/project/pooch>=1.1.1)|5.22051773729626e-05| -|pypi|[pandas>=0.25.1](https://pypi.org/project/pandas>=0.25.1)|5.22051773729626e-05| -|pypi|[numpy>=1.13.3](https://pypi.org/project/numpy>=1.13.3)|5.22051773729626e-05| -|rubygems|[coderay](http://coderay.rubychan.de)|5.1832424496644285e-05| -|pypi|[mccabe](https://pypi.org/project/mccabe)|5.161771739391678e-05| -|pypi|[hiredis](https://pypi.org/project/hiredis)|5.13823137153674e-05| -|pypi|[flake8-polyfill](https://pypi.org/project/flake8-polyfill)|5.132505162622612e-05| -|pypi|[markupsafe](https://palletsprojects.com/p/markupsafe/)|5.131895508143034e-05| -|pypi|[tf-estimator-nightly](https://pypi.org/project/tf-estimator-nightly)|5.099515477331872e-05| -|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|5.07241865812467e-05| -|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|5.07241865812467e-05| -|pypi|[dash-table](https://pypi.org/project/dash-table)|5.07241865812467e-05| -|cran|matlab|5.07151546021093e-05| -|cran|[foreign](https://svn.r-project.org/R-packages/trunk/foreign/)|5.06957674082919e-05| -|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|5.0622307071383014e-05| -|pypi|[appnope](https://pypi.org/project/appnope)|5.0622307071383014e-05| -|cran|mnormt|5.054104583274756e-05| -|rubygems|activerecord|5.0489864402136685e-05| -|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|5.038326817534598e-05| -|pypi|[nglview](https://github.com/arose/nglview)|5.0335570469798656e-05| -|pypi|[pyperclip](https://github.com/asweigart/pyperclip)|5.0335570469798656e-05| -|cran|plotROC|5.0335570469798656e-05| -|npm|[async](https://caolan.github.io/async/)|5.02647860738255e-05| -|npm|rimraf|5.010707756652208e-05| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|4.984594357941924e-05| -|pypi|[Unidecode](https://pypi.org/project/Unidecode)|4.983221476510067e-05| -|pypi|[text-unidecode](https://pypi.org/project/text-unidecode)|4.983221476510067e-05| -|pypi|[uncertainties](https://pypi.org/project/uncertainties)|4.969834277759143e-05| -|npm|[tsd](https://github.com/SamVerschueren/tsd#readme)|4.969531307618555e-05| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|4.95860385959326e-05| -|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|4.9574362997181796e-05| -|npm|expect.js|4.9486157718120804e-05| -|cran|SuppDists|4.9486157718120804e-05| -|pypi|[autopep8](https://github.com/hhatto/autopep8)|4.936268782436214e-05| -|cran|GGally|4.934145387022022e-05| -|cran|[glmnet](https://glmnet.stanford.edu)|4.916950918209313e-05| -|cran|qlcMatrix|4.915377881529034e-05| -|npm|[browserify](https://github.com/browserify/browserify#readme)|4.911917450632135e-05| -|cran|[ggseqlogo](https://github.com/omarwagih/ggseqlogo)|4.888532243945141e-05| -|cran|RcppRoll|4.88391814998541e-05| -|cran|blavaan|4.8747501956800506e-05| -|pypi|[stack-data](https://pypi.org/project/stack-data)|4.8703994155272276e-05| -|npm|npm-run-all|4.855345158197507e-05| -|pypi|[websocket-client](https://pypi.org/project/websocket-client)|4.818160327436384e-05| -|cran|spex|4.814706740589437e-05| -|cran|[seqminer](http://zhanxw.github.io/seqminer/)|4.814706740589437e-05| -|cran|SeuratObject|4.814706740589437e-05| -|pypi|[elasticsearch](https://pypi.org/project/elasticsearch)|4.808283672760935e-05| -|npm|fs-extra|4.8074464685202935e-05| -|pypi|[python-lsp-server](https://pypi.org/project/python-lsp-server)|4.783892617449664e-05| -|pypi|[scikit-build](https://pypi.org/project/scikit-build)|4.7525167785234914e-05| -|pypi|[Flask-Compress](https://pypi.org/project/Flask-Compress)|4.7421119149307064e-05| -|cran|[ggpubr](https://rpkgs.datanovia.com/ggpubr/)|4.733107209815973e-05| -|cran|tm|4.683505136559964e-05| -|pypi|[testfixtures](https://github.com/Simplistix/testfixtures)|4.6799121472341494e-05| -|cran|mediation|4.67494807409996e-05| -|pypi|[pyflakes](https://pypi.org/project/pyflakes)|4.674523417244027e-05| -|pypi|[parso](https://github.com/davidhalter/parso)|4.66551609842091e-05| -|pypi|[stestr](http://stestr.readthedocs.io/en/latest/)|4.660530201342282e-05| -|pypi|[pyobjc](https://pypi.org/project/pyobjc)|4.654551434709477e-05| -|pypi|[cookiecutter](https://github.com/cookiecutter/cookiecutter)|4.6198615771812074e-05| -|npm|[jasmine](http://jasmine.github.io/)|4.6140939597315434e-05| -|npm|[lru-cache](https://github.com/isaacs/node-lru-cache#readme)|4.6140939597315434e-05| -|npm|[proj4](https://github.com/proj4js/proj4js#readme)|4.6140939597315434e-05| -|npm|[sift](https://github.com/crcn/sift.js#readme)|4.6140939597315434e-05| -|npm|[socket.io](https://github.com/socketio/socket.io#readme)|4.6140939597315434e-05| -|npm|[underscore](https://underscorejs.org)|4.6140939597315434e-05| -|pypi|[trackpy](https://github.com/soft-matter/trackpy)|4.6140939597315434e-05| -|cran|[statmod](NA)|4.6028342659714216e-05| -|pypi|[django-extensions](https://pypi.org/project/django-extensions)|4.599218386721932e-05| -|pypi|[djangorestframework](https://pypi.org/project/djangorestframework)|4.599218386721932e-05| -|cran|futile.options|4.5940556088207096e-05| -|cran|lambda.r|4.5940556088207096e-05| -|pypi|[shiboken6](https://pypi.org/project/shiboken6)|4.567953020134228e-05| -|pypi|[colorlover](https://pypi.org/project/colorlover)|4.5590129482746935e-05| -|pypi|[dash-tabulator](https://pypi.org/project/dash-tabulator)|4.5590129482746935e-05| -|pypi|[django-bootstrap4](https://pypi.org/project/django-bootstrap4)|4.5590129482746935e-05| -|pypi|[django-cache-memoize](https://pypi.org/project/django-cache-memoize)|4.5590129482746935e-05| -|pypi|[django-cookie-law](https://pypi.org/project/django-cookie-law)|4.5590129482746935e-05| -|pypi|[django-cors-headers](https://pypi.org/project/django-cors-headers)|4.5590129482746935e-05| -|pypi|[django-currentuser](https://pypi.org/project/django-currentuser)|4.5590129482746935e-05| -|pypi|[django-oauth-toolkit](https://pypi.org/project/django-oauth-toolkit)|4.5590129482746935e-05| -|pypi|[django-plotly-dash](https://pypi.org/project/django-plotly-dash)|4.5590129482746935e-05| -|pypi|[dpd-static-support](https://pypi.org/project/dpd-static-support)|4.5590129482746935e-05| -|rubygems|[pg](https://github.com/ged/ruby-pg)|4.541398438570058e-05| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|4.526998262761936e-05| -|npm|[uuid](https://github.com/uuidjs/uuid#readme)|4.500700769681476e-05| -|rubygems|[will_paginate](https://github.com/mislav/will_paginate)|4.4973291329954794e-05| -|npm|[xmlbuilder](http://github.com/oozcitak/xmlbuilder-js)|4.4883760325245225e-05| -|cran|arrow|4.48597706555903e-05| -|pypi|[python-keystoneclient](https://pypi.org/project/python-keystoneclient)|4.473473953339726e-05| -|pypi|[recommonmark](https://github.com/rtfd/recommonmark)|4.4618480844519094e-05| -|cran|logspline|4.4599855790348205e-05| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|4.434844159914868e-05| -|pypi|[diff-match-patch](https://github.com/diff-match-patch-python/diff-match-patch)|4.429530201342281e-05| -|rubygems|[fastercsv](http://fastercsv.rubyforge.org)|4.429530201342281e-05| -|rubygems|[builder](http://onestepback.org)|4.429530201342281e-05| -|rubygems|[jruby-openssl](https://github.com/jruby/jruby-openssl)|4.429530201342281e-05| -|rubygems|[activerecord-sqlserver-adapter](http://github.com/rails-sqlserver/activerecord-sqlserver-adapter)|4.429530201342281e-05| -|cran|DiceKriging|4.425271037687145e-05| -|pypi|[trio](https://pypi.org/project/trio)|4.4128033203472396e-05| -|pypi|[curio](https://pypi.org/project/curio)|4.4128033203472396e-05| -|npm|zap|4.4122273489932885e-05| -|npm|docco|4.4122273489932885e-05| -|npm|diff|4.4122273489932885e-05| -|cran|vegan|4.404331598411176e-05| -|pypi|[rfc3986](https://pypi.org/project/rfc3986)|4.399959787738662e-05| -|pypi|[fiona](https://pypi.org/project/fiona)|4.393166482479352e-05| -|rubygems|concurrent-ruby|4.3852348993288586e-05| -|rubygems|jdbc-mysql|4.3852348993288586e-05| -|rubygems|psych|4.3852348993288586e-05| -|rubygems|webrick|4.3852348993288586e-05| -|pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|4.378859925441349e-05| -|npm|[tslib](https://www.typescriptlang.org/)|4.3544111742098324e-05| -|npm|safe-buffer|4.3532841571002924e-05| -|pypi|[openstacksdk](https://pypi.org/project/openstacksdk)|4.350431447746884e-05| -|npm|[semver](https://github.com/npm/node-semver#readme)|4.3484731311475786e-05| -|cran|parallelMap|4.338262408732208e-05| -|cran|shinyAce|4.338074268984284e-05| -|pypi|[ptyprocess](https://pypi.org/project/ptyprocess)|4.334173133824262e-05| -|cran|gridGraphics|4.332219549154867e-05| -|pypi|[fastprogress](https://pypi.org/project/fastprogress)|4.3206849079332295e-05| -|npm|jest|4.3028878785155e-05| -|pypi|[types-urllib3](https://pypi.org/project/types-urllib3)|4.2979687248322144e-05| -|pypi|[zarr](https://pypi.org/project/zarr)|4.273568342144494e-05| -|npm|[cookie-parser](https://github.com/expressjs/cookie-parser#readme)|4.259163655136809e-05| -|npm|[date-fns](https://github.com/date-fns/date-fns#readme)|4.259163655136809e-05| -|npm|[deep-equal-in-any-order](https://github.com/oprogramador/deep-equal-in-any-order#readme)|4.259163655136809e-05| -|npm|[dice-coefficient](https://words.github.io/dice-coefficient/)|4.259163655136809e-05| -|npm|[elasticdump](https://github.com/elasticsearch-dump/elasticsearch-dump#readme)|4.259163655136809e-05| -|npm|[elasticsearch](https://www.elastic.co/guide/en/elasticsearch/client/elasticsearch-js/16.x/index.html)|4.259163655136809e-05| -|npm|[fibers](https://github.com/laverdet/node-fibers)|4.259163655136809e-05| -|npm|[saxes](https://github.com/lddubeau/saxes#readme)|4.259163655136809e-05| -|npm|[swagger-jsdoc](https://github.com/Surnet/swagger-jsdoc)|4.259163655136809e-05| -|npm|[swagger-ui-express](https://github.com/scottie1984/swagger-ui-express)|4.259163655136809e-05| -|pypi|[primesieve](https://github.com/kimwalisch/primesieve-python)|4.259163655136809e-05| -|cran|mlrMBO|4.259163655136809e-05| -|cran|emoa|4.259163655136809e-05| -|pypi|[multidict](https://github.com/aio-libs/multidict)|4.258737738771295e-05| -|pypi|[paramiko](https://pypi.org/project/paramiko)|4.250692082555382e-05| -|npm|[plotly.js](https://github.com/plotly/plotly.js#readme)|4.212155108128262e-05| -|pypi|[pkginfo](https://pypi.org/project/pkginfo)|4.1784832776715485e-05| -|npm|[zone.js](https://github.com/angular/angular#readme)|4.1706282624906785e-05| -|cran|gmp|4.136397063301623e-05| -|rubygems|commonmarker|4.12918940898507e-05| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|4.117090124640471e-05| -|pypi|[torch](https://pytorch.org/)|4.106715640987249e-05| -|rubygems|jekyll-commonmark|4.106589765100671e-05| -|npm|[angular-plotly](https://github.com/alonho/angular-plotly#readme)|4.1014168530947055e-05| -|npm|[angular-plotly.js](https://github.com/plotly/angular-plotly.js)|4.1014168530947055e-05| -|npm|[crypto-js](http://github.com/brix/crypto-js)|4.1014168530947055e-05| -|npm|[ng2-file-upload](https://github.com/valor-software/ng2-file-upload)|4.1014168530947055e-05| -|npm|[ngx-cookie-service](https://github.com/stevermeister/ngx-cookie-service#readme)|4.1014168530947055e-05| -|npm|[ngx-smart-loader](https://github.com/biig-io/ngx-smart-loader)|4.1014168530947055e-05| -|npm|ngx-smart-modal|4.1014168530947055e-05| -|npm|plotly|4.1014168530947055e-05| -|pypi|[dash_bootstrap_components](https://pypi.org/project/dash_bootstrap_components)|4.1014168530947055e-05| -|pypi|[django_admin_index](https://pypi.org/project/django_admin_index)|4.1014168530947055e-05| -|pypi|[django_plotly_dash](https://pypi.org/project/django_plotly_dash)|4.1014168530947055e-05| -|pypi|[myst-nb](https://pypi.org/project/myst-nb)|4.074940376318312e-05| -|pypi|[PyQt5](https://pypi.org/project/PyQt5)|4.073005752636625e-05| -|npm|babel-preset-es2015|4.0720449780325137e-05| -|cran|mlbench|4.065597169614951e-05| -|pypi|[aenum](https://github.com/ethanfurman/aenum)|4.060402684563758e-05| -|pypi|[cligj](https://pypi.org/project/cligj)|4.049146830518474e-05| -|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|4.048466475354985e-05| -|cran|webfakes|4.032854912267481e-05| -|pypi|[wslink](https://pypi.org/project/wslink)|4.023523400882783e-05| -|pypi|[uwsgi](https://pypi.org/project/uwsgi)|4.020543844723823e-05| -|pypi|[pyxenon](https://pypi.org/project/pyxenon)|4.0197986577181205e-05| -|npm|[rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve#readme)|4.0130985280018045e-05| -|pypi|[unyt](https://github.com/yt-project/unyt)|4.0050335570469806e-05| -|cran|proj4|3.9858255640924415e-05| -|cran|RandomFieldsUtils|3.960001423066032e-05| -|cran|biglm|3.9586820168252185e-05| -|cran|jqr|3.947668127653748e-05| -|cran|websocket|3.942360977948226e-05| -|cran|base64url|3.936899884350976e-05| -|pypi|[pydantic](https://github.com/samuelcolvin/pydantic)|3.919452641099434e-05| -|npm|[type-fest](https://github.com/sindresorhus/type-fest#readme)|3.915388302972195e-05| -|npm|[is-stream](https://github.com/sindresorhus/is-stream#readme)|3.915388302972195e-05| -|pypi|[pytest-qt](http://github.com/pytest-dev/pytest-qt)|3.915388302972195e-05| -|rubygems|pry|3.899722865446514e-05| -|pypi|[nbsphinx](https://nbsphinx.readthedocs.io/)|3.885038148517378e-05| -|cran|utf8|3.874837415597914e-05| -|cran|[ggridges](https://wilkelab.org/ggridges/)|3.8466055756324214e-05| -|pypi|[Celery](http://celeryproject.org)|3.818560518398519e-05| -|pypi|[DAWG](https://pypi.org/project/DAWG)|3.818560518398519e-05| -|pypi|[django-nose](https://pypi.org/project/django-nose)|3.818560518398519e-05| -|pypi|[MySQL-python](https://pypi.org/project/MySQL-python)|3.818560518398519e-05| -|npm|rollup-plugin-commonjs|3.805464299813885e-05| -|cran|attempt|3.7873854593055875e-05| -|cran|carrier|3.779669715072399e-05| -|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|3.774700690808077e-05| -|npm|cross-env|3.7581034737075e-05| -|cran|extrafont|3.742600193352889e-05| -|cran|rms|3.7418833660206466e-05| -|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|3.737333671956967e-05| -|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|3.737333671956967e-05| -|cran|fftwtools|3.713662414746042e-05| -|cran|quadprog|3.702199966651382e-05| -|cran|strucchange|3.6889056744209536e-05| -|cran|leaflet.providers|3.6780035581604866e-05| -|pypi|[tensorflow](https://www.tensorflow.org/)|3.67139070561111e-05| -|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|3.660339692032908e-05| -|rubygems|rack|3.658947527917856e-05| -|pypi|[pytest-pep8](https://bitbucket.org/pytest-dev/pytest-pep8)|3.655782137325761e-05| -|cran|robotstxt|3.6543624161073824e-05| -|pypi|[pynacl](https://pypi.org/project/pynacl)|3.639353427612655e-05| -|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|3.630250304270085e-05| -|cran|ggdist|3.607511615900878e-05| -|cran|bridgesampling|3.607511615900878e-05| -|cran|bayesQR|3.607511615900878e-05| -|cran|Rgraphviz|3.597225575554788e-05| -|cran|RandomFields|3.594083710781235e-05| -|pypi|[service-identity](https://pypi.org/project/service-identity)|3.5899067375577444e-05| -|cran|mice|3.58768821855733e-05| -|pypi|[oset](https://gitorious.com/sleipnir/python-oset)|3.5722017752760336e-05| -|pypi|[pyenchant](https://pyenchant.github.io/pyenchant/)|3.5722017752760336e-05| -|cran|[extraDistr](https://github.com/twolodzko/extraDistr)|3.548509672325304e-05| -|npm|minimist|3.5334300127128015e-05| -|cran|mondate|3.5307081672301564e-05| -|cran|DAAG|3.5307081672301564e-05| -|pypi|[meshio](https://github.com/nschloe/meshio)|3.504620890106672e-05| -|npm|eslint-plugin-markdown|3.493401522973671e-05| -|pypi|[rdflib](https://pypi.org/project/rdflib)|3.489793064876964e-05| -|npm|inherits|3.489138289828501e-05| -|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|3.463612729552326e-05| -|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|3.463612729552326e-05| -|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|3.463612729552326e-05| -|cran|gganimate|3.452776916135581e-05| -|cran|[shinythemes](http://rstudio.github.io/shinythemes/)|3.4526728388282206e-05| -|pypi|[zstandard](https://pypi.org/project/zstandard)|3.443692773250239e-05| -|pypi|[python-snappy](https://pypi.org/project/python-snappy)|3.4294132778336415e-05| -|pypi|[stfio](https://pypi.org/project/stfio)|3.425964765100671e-05| -|pypi|[klusta](https://klusta.cortexlab.net)|3.425964765100671e-05| -|pypi|[igor](http://blog.tremily.us/posts/igor/)|3.425964765100671e-05| -|pypi|[tablib](https://pypi.org/project/tablib)|3.425964765100671e-05| -|cran|cba|3.425964765100671e-05| -|cran|[golem](https://github.com/ThinkR-open/golem)|3.4239096557026204e-05| -|cran|seriation|3.404662984632367e-05| -|npm|[canvg](https://github.com/canvg/canvg)|3.355704697986577e-05| -|npm|[googleapis](https://github.com/googleapis/google-api-nodejs-client#readme)|3.355704697986577e-05| -|npm|[http](https://github.com/npm/security-holder#readme)|3.355704697986577e-05| -|npm|[jspdf](https://github.com/mrrio/jspdf)|3.355704697986577e-05| -|npm|[multiparty](https://github.com/pillarjs/multiparty#readme)|3.355704697986577e-05| -|npm|[node-xlsx](https://github.com/mgcrea/node-xlsx#readme)|3.355704697986577e-05| -|npm|[pg-hstore](https://github.com/scarney81/pg-hstore)|3.355704697986577e-05| -|npm|[pug](https://pugjs.org)|3.355704697986577e-05| -|npm|[sequelize](https://sequelize.org/)|3.355704697986577e-05| -|npm|[stylus](https://github.com/stylus/stylus)|3.355704697986577e-05| -|cran|shinyBS|3.3262189103829446e-05| -|pypi|[websockets](https://pypi.org/project/websockets)|3.32202923705026e-05| -|rubygems|html-pipeline|3.3101345278044105e-05| -|cran|lmtest|3.2681463467910786e-05| -|pypi|[pep8-naming](https://github.com/PyCQA/pep8-naming)|3.262264388044841e-05| -|cran|tableHTML|3.2570075009869716e-05| -|cran|shiny.i18n|3.2570075009869716e-05| -|cran|popbio|3.2570075009869716e-05| -|npm|babel-runtime|3.250958772770853e-05| -|pypi|[uri-template](https://pypi.org/project/uri-template)|3.250776237185633e-05| -|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|3.250776237185633e-05| -|pypi|[isoduration](https://pypi.org/project/isoduration)|3.250776237185633e-05| -|pypi|[fqdn](https://pypi.org/project/fqdn)|3.250776237185633e-05| -|cran|[gitcreds](https://github.com/r-lib/gitcreds)|3.2495737439882616e-05| -|cran|dfoptim|3.2479479795273815e-05| -|pypi|[geographiclib](https://pypi.org/project/geographiclib)|3.245276845637584e-05| -|rubygems|actionview|3.238818526571702e-05| -|cran|nloptr|3.236693088129509e-05| -|cran|ini|3.2341934307891566e-05| -|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|3.2323671853873346e-05| -|pypi|[plac](https://pypi.org/project/plac)|3.1983679072605244e-05| -|npm|[font-awesome](http://fontawesome.io/)|3.191010243730131e-05| -|pypi|[google-auth](https://pypi.org/project/google-auth)|3.1881531712214434e-05| -|npm|object-assign|3.1881443603775256e-05| -|cran|[RcppArmadillo](https://github.com/RcppCore/RcppArmadillo)|3.183724832214765e-05| -|rubygems|kramdown|3.1726908587620086e-05| -|pypi|[multiprocess](https://pypi.org/project/multiprocess)|3.1717496962140976e-05| -|npm|[ts-node](https://typestrong.org/ts-node)|3.1639501438159156e-05| -|pypi|[srsly](https://pypi.org/project/srsly)|3.155625364637107e-05| -|cran|caTools|3.1510408215945145e-05| -|npm|react-router|3.148418607178762e-05| -|npm|react-test-renderer|3.148418607178762e-05| -|npm|[unist-util-remove-position](https://github.com/syntax-tree/unist-util-remove-position#readme)|3.1323106423777565e-05| -|npm|[unist-builder](https://github.com/syntax-tree/unist-builder#readme)|3.1323106423777565e-05| -|npm|[remark](https://remark.js.org)|3.1323106423777565e-05| -|npm|[unist-util-visit-parents](https://github.com/syntax-tree/unist-util-visit-parents#readme)|3.1323106423777565e-05| -|npm|[unist-util-find-after](https://github.com/syntax-tree/unist-util-find-after#readme)|3.1323106423777565e-05| -|pypi|[pykerberos](https://pypi.org/project/pykerberos)|3.1323106423777565e-05| -|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|3.1323106423777565e-05| -|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|3.1323106423777565e-05| -|pypi|[PySide](http://www.pyside.org)|3.1323106423777565e-05| -|pypi|[PyQt4](http://www.riverbankcomputing.com/software/pyqt/)|3.1323106423777565e-05| -|npm|strip-ansi|3.12441509027506e-05| -|cran|janeaustenr|3.121152640063171e-05| -|npm|whatwg-fetch|3.1075171149349884e-05| -|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|3.1057006751637624e-05| -|cran|vcd|3.104343583070812e-05| -|pypi|[typer](https://pypi.org/project/typer)|3.086961411691257e-05| -|rubygems|[rdoc](https://ruby.github.io/rdoc)|3.0761797857925526e-05| -|cran|wordcloud2|3.0662175492292944e-05| -|cran|spacyr|3.0591442953020135e-05| -|pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|3.057953561376922e-05| -|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|3.057031203033614e-05| -|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|3.057031203033614e-05| -|npm|chalk|3.0389132679401133e-05| -|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|3.037043240043864e-05| -|cran|reshape|3.0181940044045157e-05| -|cran|SGP|3.016299137104506e-05| -|pypi|[catalogue](https://pypi.org/project/catalogue)|3.007151269208394e-05| -|pypi|[wasabi](https://pypi.org/project/wasabi)|3.007151269208394e-05| -|pypi|[blis](https://pypi.org/project/blis)|3.007151269208394e-05| -|pypi|[thinc](https://pypi.org/project/thinc)|3.007151269208394e-05| -|pypi|[preshed](https://pypi.org/project/preshed)|3.007151269208394e-05| -|pypi|[cymem](https://pypi.org/project/cymem)|3.007151269208394e-05| -|pypi|[murmurhash](https://pypi.org/project/murmurhash)|3.007151269208394e-05| -|pypi|[cftime](https://pypi.org/project/cftime)|3.0033948853160257e-05| -|pypi|[cupy](https://pypi.org/project/cupy)|2.995131904913004e-05| -|npm|[inline-style-prefixer](https://github.com/rofrischmann/inline-style-prefixer#readme)|2.98993288590604e-05| -|npm|[keycode](https://github.com/timoxley/keycode)|2.98993288590604e-05| -|npm|[react-event-listener](https://github.com/oliviertassinari/react-event-listener)|2.98993288590604e-05| -|npm|react-transition-group|2.98993288590604e-05| -|npm|simple-assign|2.98993288590604e-05| -|npm|warning|2.98993288590604e-05| -|npm|lodash.merge|2.98993288590604e-05| -|npm|lodash.throttle|2.98993288590604e-05| -|npm|recompose|2.98993288590604e-05| -|rubygems|railties|2.9868819339816465e-05| -|pypi|[PyQtWebEngine-Qt5](https://pypi.org/project/PyQtWebEngine-Qt5)|2.984395973154362e-05| -|cran|polynom|2.9701178341924764e-05| -|cran|conditionz|2.970027814946322e-05| -|cran|furrr|2.963175232867925e-05| -|cran|tkrplot|2.9614216211276318e-05| -|cran|Formula|2.957709261147165e-05| -|rubygems|gemoji|2.9332784036433365e-05| -|cran|tripack|2.9323504446418675e-05| -|pypi|[natsort](https://github.com/SethMMorton/natsort)|2.925502481830314e-05| -|cran|pscl|2.9209363881559102e-05| -|pypi|[rasterio](https://github.com/mapbox/rasterio)|2.919565421551223e-05| -|npm|highcharts-exporting|2.914164606146238e-05| -|npm|highcharts-no-data-to-display|2.914164606146238e-05| -|npm|[history](https://github.com/remix-run/history#readme)|2.914164606146238e-05| -|npm|[jsdocx](https://github.com/zuck/jsdocx#readme)|2.914164606146238e-05| -|npm|[ramda](https://ramdajs.com/)|2.914164606146238e-05| -|npm|[rc-tooltip](http://github.com/react-component/tooltip)|2.914164606146238e-05| -|npm|[react-bootstrap-table](https://github.com/AllenFang/react-bootstrap-table#readme)|2.914164606146238e-05| -|npm|react-fontawesome|2.914164606146238e-05| -|npm|react-highcharts|2.914164606146238e-05| -|npm|react-js-pagination|2.914164606146238e-05| -|npm|react-router-redux|2.914164606146238e-05| -|npm|react-s-alert|2.914164606146238e-05| -|npm|react-table|2.914164606146238e-05| -|npm|redux|2.914164606146238e-05| -|npm|redux-form|2.914164606146238e-05| -|npm|redux-observable|2.914164606146238e-05| -|npm|redux-persist|2.914164606146238e-05| -|npm|reselect|2.914164606146238e-05| -|npm|rx-dom|2.914164606146238e-05| -|npm|xlsx|2.914164606146238e-05| -|pypi|[tinycss2](https://pypi.org/project/tinycss2)|2.9115711304481507e-05| -|cran|Rmpfr|2.8916570789389582e-05| -|pypi|[livereload](https://pypi.org/project/livereload)|2.8884689597315435e-05| -|npm|immutable|2.8850229600847754e-05| -|cran|pkgdown|2.8778159270424982e-05| -|cran|kernlab|2.877359961980218e-05| -|npm|ms|2.854197987397513e-05| -|npm|husky|2.852321336381739e-05| -|npm|lint-staged|2.852321336381739e-05| -|pypi|[arrow](https://pypi.org/project/arrow)|2.837931447746884e-05| -|cran|jsonify|2.8295781399808244e-05| -|pypi|[cairocffi](https://pypi.org/project/cairocffi)|2.8205033557046978e-05| -|cran|gt|2.792595322401282e-05| -|pypi|[jupyter-bokeh](https://pypi.org/project/jupyter-bokeh)|2.7885906040268454e-05| -|pypi|[spacy](https://pypi.org/project/spacy)|2.7882652162699747e-05| -|pypi|[smart-open](https://pypi.org/project/smart-open)|2.786678489533214e-05| -|pypi|[nltk](https://pypi.org/project/nltk)|2.7750009826529266e-05| -|pypi|[pyzmq](https://pypi.org/project/pyzmq)|2.7744794009572617e-05| +https://github.com/r-lib/credentials)|6.002378194095064e-05| +|pypi|[pyscf](http://www.pyscf.org)|5.989537095751427e-05| +|pypi|[language-data](https://pypi.org/project/language-data)|5.963855421686747e-05| +|cran|spatial|5.9367234222313774e-05| +|cran|[BayesFactor](https://richarddmorey.github.io/BayesFactor/)|5.932579263026475e-05| +|cran|stopwords|5.92934627877784e-05| +|cran|rnaturalearthdata|5.9142062756520586e-05| +|pypi|[pyjsparser](https://pypi.org/project/pyjsparser)|5.904216867469879e-05| +|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|5.883804544726168e-05| +|pypi|[traittypes](https://pypi.org/project/traittypes)|5.878408194375727e-05| +|pypi|[geographiclib](https://pypi.org/project/geographiclib)|5.8769664371772805e-05| +|cran|[VGAM](https://www.stat.auckland.ac.nz/~yee/VGAM/)|5.848123211861299e-05| +|cran|av|5.842249373172372e-05| +|cran|brms|5.818526690654923e-05| +|pypi|[fastparquet](https://pypi.org/project/fastparquet)|5.8075023929861045e-05| +|pypi|[curio](https://pypi.org/project/curio)|5.7936332953014384e-05| +|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|5.7301807228915655e-05| +|pypi|[octave_kernel](http://github.com/Calysto/octave_kernel)|5.7070386810399494e-05| +|pypi|[sos-python](https://github.com/vatlab/SOS)|5.7070386810399494e-05| +|pypi|[sos-ruby](https://github.com/vatlab/SOS)|5.7070386810399494e-05| +|pypi|[dash_core_components](https://pypi.org/project/dash_core_components)|5.7070386810399494e-05| +|pypi|[dash_html_components](https://github.com/plotly/dash-html-components)|5.7070386810399494e-05| +|pypi|[dash_dangerously_set_inner_html](https://pypi.org/project/dash_dangerously_set_inner_html)|5.7070386810399494e-05| +|pypi|[BioPython](https://biopython.org/)|5.7070386810399494e-05| +|pypi|[python-louvain](https://github.com/taynaud/python-louvain)|5.7070386810399494e-05| +|pypi|[torch-sparse](https://github.com/rusty1s/pytorch_sparse)|5.7070386810399494e-05| +|pypi|[torch-scatter](https://github.com/rusty1s/pytorch_scatter)|5.7070386810399494e-05| +|pypi|[torch-cluster](https://github.com/rusty1s/pytorch_cluster)|5.7070386810399494e-05| +|pypi|[torch-spline-conv](https://github.com/rusty1s/pytorch_spline_conv)|5.7070386810399494e-05| +|cran|dunn.test|5.7070386810399494e-05| +|cran|plotrix|5.679796876292355e-05| +|pypi|[pyflakes](https://pypi.org/project/pyflakes)|5.676163011777659e-05| +|cran|egg|5.6584982788296036e-05| +|pypi|[pyreadline3](https://pypi.org/project/pyreadline3)|5.6385542168674705e-05| +|pypi|[pyreadline](https://pypi.org/project/pyreadline)|5.6385542168674705e-05| +|pypi|[monotonic](https://pypi.org/project/monotonic)|5.6385542168674705e-05| +|cran|gam|5.6200468214098e-05| +|npm|validator|5.612036523819248e-05| +|cran|[wk](https://paleolimbot.github.io/wk/)|5.5989144001583887e-05| +|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|5.576547569588712e-05| +|pypi|[Flask-Compress](https://pypi.org/project/Flask-Compress)|5.573617478456084e-05| +|pypi|[vine](https://pypi.org/project/vine)|5.562495708110298e-05| +|cran|[hoardr](https://github.com/ropensci/hoardr)|5.5586601562859624e-05| +|cran|[config](https://github.com/rstudio/config)|5.537109315392728e-05| +|pypi|[natsort](https://github.com/SethMMorton/natsort)|5.527654400327435e-05| +|cran|[git2r](https://docs.ropensci.org/git2r/ (website))|5.514448894238023e-05| +|pypi|[google-api-core](https://github.com/googleapis/python-api-core)|5.4679326188828995e-05| +|pypi|[nbsphinx](https://nbsphinx.readthedocs.io/)|5.453463639876933e-05| +|pypi|[nanopack](https://github.com/wdecoster/nanopack)|5.421686746987952e-05| +|pypi|[NanoComp](https://github.com/wdecoster/NanoComp)|5.421686746987952e-05| +|pypi|[NanoFilt](https://github.com/wdecoster/nanofilt)|5.421686746987952e-05| +|pypi|[nanoget](https://github.com/wdecoster/nanoget)|5.421686746987952e-05| +|pypi|[NanoLyse](https://github.com/wdecoster/nanolyse)|5.421686746987952e-05| +|pypi|[nanomath](https://github.com/wdecoster/nanomath)|5.421686746987952e-05| +|pypi|[NanoPlot](https://github.com/wdecoster/NanoPlot)|5.421686746987952e-05| +|pypi|[nanoQC](https://github.com/wdecoster/nanoQC)|5.421686746987952e-05| +|pypi|[NanoStat](https://github.com/wdecoster/nanostat)|5.421686746987952e-05| +|pypi|[Python-Deprecated](https://github.com/vrcmarcos/python-deprecated)|5.421686746987952e-05| +|cran|[genalg](https://github.com/egonw/genalg)|5.421686746987952e-05| +|cran|segmented|5.4199221731647075e-05| +|pypi|[dash-bootstrap-components](https://pypi.org/project/dash-bootstrap-components)|5.414973854185245e-05| +|npm|eslint-plugin-standard|5.405066905730577e-05| +|npm|eslint-plugin-promise|5.405066905730577e-05| +|npm|eslint-plugin-node|5.405066905730577e-05| +|npm|eslint-config-standard|5.405066905730577e-05| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|5.3590415719114345e-05| +|cran|[semver](https://github.com/johndharrison/semver)|5.351979345955253e-05| +|pypi|[awscrt](https://pypi.org/project/awscrt)|5.3430682085737306e-05| +|cran|lsa|5.3244499738082764e-05| +|cran|RJSONIO|5.273149157716841e-05| +|npm|[standard](https://standardjs.com)|5.272987786029572e-05| +|npm|[mqtt](https://github.com/mqttjs/MQTT.js#readme)|5.26355421686747e-05| +|npm|[regenerator-runtime](https://github.com/hackwaly/regenerator-runtime)|5.24639913035601e-05| +|cran|mclust|5.216489721034981e-05| +|pypi|[arviz](https://pypi.org/project/arviz)|5.214963312549519e-05| +|pypi|[surfinpy](https://github.com/symmy596/SurfinPy)|5.163511187607573e-05| +|pypi|[billiard](https://pypi.org/project/billiard)|5.156294099166687e-05| +|pypi|[flake8-polyfill](https://pypi.org/project/flake8-polyfill)|5.140216535904892e-05| +|npm|coffee-script|5.1336596385542165e-05| +|npm|cross-env|5.1293798821660266e-05| +|cran|[rbibutils](https://geobosh.github.io/rbibutils/ (website))|5.1262822719449226e-05| +|cran|[remotes](https://remotes.r-lib.org)|5.1133814700554035e-05| +|pypi|[pooch>=1.1.1](https://pypi.org/project/pooch>=1.1.1)|5.1118760757314967e-05| +|pypi|[pandas>=0.25.1](https://pypi.org/project/pandas>=0.25.1)|5.1118760757314967e-05| +|pypi|[numpy>=1.13.3](https://pypi.org/project/numpy>=1.13.3)|5.1118760757314967e-05| +|pypi|[xarray](https://github.com/pydata/xarray)|5.0927742379589106e-05| +|pypi|[pynacl](https://pypi.org/project/pynacl)|5.06234993545611e-05| +|pypi|[celery](http://celeryproject.org)|4.987098418457102e-05| +|pypi|[spglib](http://spglib.github.io/spglib/)|4.9860741509718455e-05| +|cran|[matlab](http://cran.r-project.org/package=matlab)|4.965974612736661e-05| +|cran|[foreign](https://svn.r-project.org/R-packages/trunk/foreign/)|4.96407623910328e-05| +|pypi|[zarr](https://pypi.org/project/zarr)|4.962593769254373e-05| +|pypi|[ppft](https://github.com/uqfoundation/ppft)|4.95367783350597e-05| +|pypi|[covdefaults](https://pypi.org/project/covdefaults)|4.953207631217221e-05| +|cran|[mnormt](http://azzalini.stat.unipd.it/SW/Pkg-mnormt)|4.948926065112412e-05| +|rubygems|activerecord|4.943914433243176e-05| +|cran|plotROC|4.92880613362541e-05| +|npm|[async](https://caolan.github.io/async/)|4.921875e-05| +|npm|[rimraf](https://github.com/isaacs/rimraf#readme)|4.906432348791976e-05| +|pypi|[ray](https://pypi.org/project/ray)|4.902138372768181e-05| +|pypi|[pyDOE](https://github.com/tisimst/pyDOE)|4.8908132530120484e-05| +|pypi|[numpy-stl](https://pypi.org/project/numpy-stl)|4.883504606661942e-05| +|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|4.879518072289156e-05| +|npm|[tsd](https://github.com/SamVerschueren/tsd#readme)|4.86611280285979e-05| +|cran|SuppDists|4.845632530120482e-05| +|cran|[GGally](https://ggobi.github.io/ggally/)|4.831463281487062e-05| +|cran|[glmnet](https://glmnet.stanford.edu)|4.814626638421825e-05| +|cran|qlcMatrix|4.81308633744464e-05| +|npm|[browserify](https://github.com/browserify/browserify#readme)|4.809697919896088e-05| +|pypi|[types-urllib3](https://pypi.org/project/types-urllib3)|4.792459319475705e-05| +|npm|react-highcharts|4.789836035872815e-05| +|npm|redux|4.789836035872815e-05| +|cran|[ggseqlogo](https://github.com/omarwagih/ggseqlogo)|4.7867993713986376e-05| +|cran|RcppRoll|4.782281299109482e-05| +|cran|blavaan|4.7733041346527546e-05| +|pypi|[jupyter-console](https://pypi.org/project/jupyter-console)|4.7699829401726076e-05| +|npm|immutable|4.761300842467615e-05| +|pypi|[rfc3987](https://pypi.org/project/rfc3987)|4.755386341283501e-05| +|npm|[jasmine](http://jasmine.github.io/)|4.747451343836886e-05| +|pypi|[trio-websocket~=0.9](https://pypi.org/project/trio-websocket~=0.9)|4.7472289156626515e-05| +|pypi|[trio~=0.17](https://pypi.org/project/trio~=0.17)|4.7472289156626515e-05| +|pypi|[urllib3[secure,](https://pypi.org/project/urllib3[secure,)|4.7472289156626515e-05| +|pypi|[requests-mock](https://requests-mock.readthedocs.io/)|4.742078313253012e-05| +|pypi|[cligj](https://pypi.org/project/cligj)|4.7389076407943256e-05| +|cran|[seqminer](http://zhanxw.github.io/seqminer/)|4.714510214772132e-05| +|cran|SeuratObject|4.714510214772132e-05| +|cran|spex|4.714510214772132e-05| +|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|4.7110673262375884e-05| +|pypi|[elasticsearch](https://pypi.org/project/elasticsearch)|4.708220814291649e-05| +|pypi|[python-lsp-server](https://pypi.org/project/python-lsp-server)|4.68433734939759e-05| +|npm|[proj4](https://github.com/proj4js/proj4js#readme)|4.653614457831325e-05| +|cran|[ggpubr](https://rpkgs.datanovia.com/ggpubr/)|4.634608812240394e-05| +|pypi|[waitress](https://pypi.org/project/waitress)|4.59553215339686e-05| +|pypi|[pymongo](https://pypi.org/project/pymongo)|4.590458470869192e-05| +|cran|[tm](http://tm.r-forge.r-project.org/)|4.5860389836633174e-05| +|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|4.5831296275550204e-05| +|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|4.5831296275550204e-05| +|cran|mediation|4.577659998078164e-05| +|pypi|[parso](https://pypi.org/project/parso)|4.568424306668449e-05| +|pypi|[pyobjc](https://github.com/ronaldoussoren/pyobjc)|4.557687823253311e-05| +|pypi|[pip-run](https://github.com/jaraco/pip-run)|4.5417062075846805e-05| +|pypi|[docker](https://github.com/docker/docker-py)|4.532193766802751e-05| +|pypi|[cookiecutter](https://pypi.org/project/cookiecutter)|4.5237198795180716e-05| +|pypi|[snakemake](https://snakemake.readthedocs.io)|4.5180722891566266e-05| +|pypi|[connection_pool](https://github.com/zhouyl/ConnectionPool)|4.5180722891566266e-05| +|pypi|[datrie](https://github.com/kmike/datrie)|4.5180722891566266e-05| +|pypi|[toposort](https://pypi.org/project/toposort)|4.5180722891566266e-05| +|pypi|[trackpy](https://github.com/soft-matter/trackpy)|4.5180722891566266e-05| +|npm|[lru-cache](https://github.com/isaacs/node-lru-cache#readme)|4.5180722891566266e-05| +|npm|[sift](https://github.com/crcn/sift.js#readme)|4.5180722891566266e-05| +|npm|[socket.io](https://github.com/socketio/socket.io#readme)|4.5180722891566266e-05| +|npm|[underscore](https://underscorejs.org)|4.5180722891566266e-05| +|cran|[statmod](NA)|4.5070469154199905e-05| +|pypi|[anyio](https://pypi.org/project/anyio)|4.50509479092842e-05| +|pypi|[simplejson](https://pypi.org/project/simplejson)|4.504702483403e-05| +|pypi|[django-extensions](http://github.com/django-extensions/django-extensions)|4.503506284479087e-05| +|pypi|[djangorestframework](https://www.django-rest-framework.org/)|4.503506284479087e-05| +|pypi|[cdsapi](https://github.com/ecmwf/cdsapi)|4.5025023169601474e-05| +|cran|futile.options|4.498450946643717e-05| +|cran|lambda.r|4.498450946643717e-05| +|pypi|[shiboken6](https://pypi.org/project/shiboken6)|4.47289156626506e-05| +|pypi|[colorlover](https://pypi.org/project/colorlover)|4.4641375419031496e-05| +|pypi|[dash-tabulator](https://pypi.org/project/dash-tabulator)|4.4641375419031496e-05| +|pypi|[django-bootstrap4](https://pypi.org/project/django-bootstrap4)|4.4641375419031496e-05| +|pypi|[django-cache-memoize](https://pypi.org/project/django-cache-memoize)|4.4641375419031496e-05| +|pypi|[django-cookie-law](https://pypi.org/project/django-cookie-law)|4.4641375419031496e-05| +|pypi|[django-cors-headers](https://pypi.org/project/django-cors-headers)|4.4641375419031496e-05| +|pypi|[django-currentuser](https://pypi.org/project/django-currentuser)|4.4641375419031496e-05| +|pypi|[django-oauth-toolkit](https://pypi.org/project/django-oauth-toolkit)|4.4641375419031496e-05| +|pypi|[django-plotly-dash](https://pypi.org/project/django-plotly-dash)|4.4641375419031496e-05| +|pypi|[dpd-static-support](https://pypi.org/project/dpd-static-support)|4.4641375419031496e-05| +|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|4.453166676077288e-05| +|pypi|[appnope](https://pypi.org/project/appnope)|4.453166676077288e-05| +|rubygems|[pg](https://github.com/ged/ruby-pg)|4.446889599213179e-05| +|pypi|[yarl](https://pypi.org/project/yarl)|4.4364862935049356e-05| +|rubygems|jekyll|4.419642857142857e-05| +|rubygems|[will_paginate](https://github.com/mislav/will_paginate)|4.403737398573887e-05| +|npm|[xmlbuilder](http://github.com/oozcitak/xmlbuilder-js)|4.394970616732665e-05| +|cran|arrow|4.392621573504681e-05| +|cran|logspline|4.3671709831951026e-05| +|pypi|[dogpile.cache](https://pypi.org/project/dogpile.cache)|4.34497074010327e-05| +|pypi|[diff-match-patch](https://github.com/diff-match-patch-python/diff-match-patch)|4.337349397590361e-05| +|pypi|[primesieve](https://github.com/kimwalisch/primesieve-python)|4.337349397590361e-05| +|rubygems|[coderay](http://coderay.rubychan.de)|4.337349397590361e-05| +|rubygems|[fastercsv](http://fastercsv.rubyforge.org)|4.337349397590361e-05| +|rubygems|[builder](http://onestepback.org)|4.337349397590361e-05| +|rubygems|[jruby-openssl](https://github.com/jruby/jruby-openssl)|4.337349397590361e-05| +|rubygems|[activerecord-sqlserver-adapter](http://github.com/rails-sqlserver/activerecord-sqlserver-adapter)|4.337349397590361e-05| +|cran|DiceKriging|4.3331788693234476e-05| +|npm|zap|4.320406626506024e-05| +|npm|docco|4.320406626506024e-05| +|npm|diff|4.320406626506024e-05| +|pypi|[types-docutils](https://pypi.org/project/types-docutils)|4.314140383761205e-05| +|cran|[vegan](https://github.com/vegandevs/vegan)|4.31267519055815e-05| +|pypi|[asv](https://pypi.org/project/asv)|4.3096180548215574e-05| +|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|4.3096180548215574e-05| +|pypi|[kaleido](https://pypi.org/project/kaleido)|4.3096180548215574e-05| +|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|4.306808906714391e-05| +|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|4.304218910460929e-05| +|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|4.302115410746513e-05| +|rubygems|concurrent-ruby|4.2939759036144576e-05| +|rubygems|jdbc-mysql|4.2939759036144576e-05| +|rubygems|psych|4.2939759036144576e-05| +|rubygems|webrick|4.2939759036144576e-05| +|npm|[babel-preset-es2015](https://babeljs.io/)|4.2672238281278796e-05| +|pypi|[stack-data](https://pypi.org/project/stack-data)|4.2653274923967855e-05| +|npm|safe-buffer|4.262690072779477e-05| +|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|4.259720203038314e-05| +|cran|[parallelMap](https://parallelmap.mlr-org.com)|4.247980934727924e-05| +|cran|[shinyAce](http://trestletech.github.io/shinyAce/)|4.2477967102650044e-05| +|pypi|[ptyprocess](https://pypi.org/project/ptyprocess)|4.243976759735915e-05| +|cran|[gridGraphics](https://github.com/pmur002/gridgraphics)|4.242063830169169e-05| +|pypi|[GitPython](https://pypi.org/project/GitPython)|4.22302277966034e-05| +|pypi|[Brotli](https://pypi.org/project/Brotli)|4.2223076887980065e-05| +|pypi|[monty](https://github.com/materialsvirtuallab/monty)|4.215160883296683e-05| +|pypi|[recommonmark](https://pypi.org/project/recommonmark)|4.179888551584828e-05| +|pypi|[eemont](https://github.com/davemlz/eemont)|4.170528266913809e-05| +|pypi|[ee_extra](https://github.com/r-earthengine/ee_extra)|4.170528266913809e-05| +|pypi|[httplib2shim](https://github.com/GoogleCloudPlatform/httplib2shim)|4.170528266913809e-05| +|cran|mlrMBO|4.170528266913809e-05| +|cran|emoa|4.170528266913809e-05| +|npm|[cookie-parser](https://github.com/expressjs/cookie-parser#readme)|4.170528266913809e-05| +|npm|[deep-equal-in-any-order](https://github.com/oprogramador/deep-equal-in-any-order#readme)|4.170528266913809e-05| +|npm|[dice-coefficient](https://words.github.io/dice-coefficient/)|4.170528266913809e-05| +|npm|[elasticdump](https://github.com/elasticsearch-dump/elasticsearch-dump#readme)|4.170528266913809e-05| +|npm|[elasticsearch](https://www.elastic.co/guide/en/elasticsearch/client/elasticsearch-js/16.x/index.html)|4.170528266913809e-05| +|npm|[fibers](https://github.com/laverdet/node-fibers)|4.170528266913809e-05| +|npm|[saxes](https://github.com/lddubeau/saxes#readme)|4.170528266913809e-05| +|npm|[swagger-jsdoc](https://github.com/Surnet/swagger-jsdoc)|4.170528266913809e-05| +|pypi|[openpyxl](https://pypi.org/project/openpyxl)|4.1530285345532756e-05| +|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|4.1429334957696785e-05| +|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|4.1429334957696785e-05| +|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|4.1429334957696785e-05| +|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|4.1429334957696785e-05| +|pypi|[js2py](https://github.com/PiotrDabkowski/Js2Py)|4.115060240963856e-05| +|pypi|[myst-nb](https://pypi.org/project/myst-nb)|4.1036746987951805e-05| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|4.0869940752019055e-05| +|pypi|[rasterio](https://pypi.org/project/rasterio)|4.0700059888905446e-05| +|cran|gmp|4.050316511053287e-05| +|rubygems|rubocop-jekyll|4.0469018932874354e-05| +|pypi|[path](https://pypi.org/project/path)|4.0381734109007285e-05| +|pypi|[dash_bootstrap_components](https://pypi.org/project/dash_bootstrap_components)|4.0160642570281125e-05| +|pypi|[django_admin_index](https://pypi.org/project/django_admin_index)|4.0160642570281125e-05| +|pypi|[django_plotly_dash](https://pypi.org/project/django_plotly_dash)|4.0160642570281125e-05| +|npm|[angular-plotly](https://github.com/alonho/angular-plotly#readme)|4.0160642570281125e-05| +|npm|[angular-plotly.js](https://github.com/plotly/angular-plotly.js)|4.0160642570281125e-05| +|npm|[crypto-js](http://github.com/brix/crypto-js)|4.0160642570281125e-05| +|npm|[ng2-file-upload](https://github.com/valor-software/ng2-file-upload)|4.0160642570281125e-05| +|npm|[ngx-cookie-service](https://github.com/stevermeister/ngx-cookie-service#readme)|4.0160642570281125e-05| +|npm|[ngx-smart-loader](https://github.com/biig-io/ngx-smart-loader)|4.0160642570281125e-05| +|npm|ngx-smart-modal|4.0160642570281125e-05| +|npm|plotly|4.0160642570281125e-05| +|cran|mlbench|3.980989999601058e-05| +|pypi|[aenum](https://github.com/ethanfurman/aenum)|3.9759036144578314e-05| +|npm|[cache-manager](https://github.com/BryanDonovan/node-cache-manager#readme)|3.95564003078808e-05| +|rubygems|rouge|3.9510542168674694e-05| +|cran|webfakes|3.9489291254842585e-05| +|pypi|[uwsgi](https://pypi.org/project/uwsgi)|3.9368742575937555e-05| +|pypi|[pypblib](https://pypi.org/project/pypblib)|3.9361445783132526e-05| +|pypi|[py-aiger-cnf](https://pypi.org/project/py-aiger-cnf)|3.9361445783132526e-05| +|npm|[rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve#readme)|3.929583881745469e-05| +|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|3.9199659381825015e-05| +|cran|proj4|3.902878482254811e-05| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|3.90243175612712e-05| +|cran|RandomFieldsUtils|3.8775917548970777e-05| +|cran|biglm|3.876299806179348e-05| +|cran|[jqr](https://docs.ropensci.org/jqr/ (docs))|3.865515121711337e-05| +|npm|[form-data](https://github.com/form-data/form-data#readme)|3.864994785437149e-05| +|cran|websocket|3.860318416523235e-05| +|cran|[base64url](https://github.com/mllg/base64url)|3.8549709710950415e-05| +|npm|[type-fest](https://github.com/sindresorhus/type-fest#readme)|3.833907056798623e-05| +|npm|[is-stream](https://github.com/sindresorhus/is-stream#readme)|3.833907056798623e-05| +|npm|lint-staged|3.826698000794386e-05| +|pypi|[pymatgen](https://pypi.org/project/pymatgen)|3.8091206044878315e-05| +|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|3.803542323324139e-05| +|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|3.803542323324139e-05| +|npm|retry|3.799966816418215e-05| +|cran|[utf8](https://ptrckprry.com/r-utf8/)|3.794200054265647e-05| +|pypi|[service-identity](https://pypi.org/project/service-identity)|3.786283267663333e-05| +|pypi|[testfixtures](https://pypi.org/project/testfixtures)|3.780548903689292e-05| +|cran|[ggridges](https://wilkelab.org/ggridges/)|3.7665557334232035e-05| +|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|3.7491785323110616e-05| +|pypi|[Celery](http://celeryproject.org)|3.739094308267553e-05| +|pypi|[DAWG](https://pypi.org/project/DAWG)|3.739094308267553e-05| +|pypi|[django-nose](https://pypi.org/project/django-nose)|3.739094308267553e-05| +|pypi|[MySQL-python](https://pypi.org/project/MySQL-python)|3.739094308267553e-05| +|npm|rollup-plugin-commonjs|3.7262706287334204e-05| +|cran|[attempt](https://github.com/ColinFay/attempt)|3.708568018202842e-05| +|npm|babel-runtime|3.706110154905335e-05| +|cran|carrier|3.701012842579108e-05| +|pypi|[dominate](https://github.com/Knio/dominate/)|3.6978683966635774e-05| +|pypi|[visitor](http://github.com/mbr/visitor)|3.6978683966635774e-05| +|npm|[bull-board](https://github.com/felixmosh/bull-board#readme)|3.675719828466408e-05| +|npm|[auth0](https://github.com/auth0/node-auth0)|3.675719828466408e-05| +|npm|[aws-sdk](https://github.com/aws/aws-sdk-js)|3.675719828466408e-05| +|npm|[bullmq](https://github.com/taskforcesh/bullmq#readme)|3.675719828466408e-05| +|npm|[class-transformer](https://github.com/typestack/class-transformer#readme)|3.675719828466408e-05| +|npm|[class-validator](https://github.com/typestack/class-validator#readme)|3.675719828466408e-05| +|npm|[compare-versions](https://github.com/omichelsen/compare-versions#readme)|3.675719828466408e-05| +|npm|[err-code](https://github.com/IndigoUnited/js-err-code#readme)|3.675719828466408e-05| +|npm|hammerjs|3.675719828466408e-05| +|npm|http-status-codes|3.675719828466408e-05| +|npm|is-url|3.675719828466408e-05| +|npm|json5|3.675719828466408e-05| +|npm|jwks-rsa|3.675719828466408e-05| +|npm|nats|3.675719828466408e-05| +|npm|nestjs-s3|3.675719828466408e-05| +|npm|ngx-material-file-input|3.675719828466408e-05| +|npm|passport-jwt|3.675719828466408e-05| +|npm|reflect-metadata|3.675719828466408e-05| +|npm|sharp|3.675719828466408e-05| +|npm|ssh2|3.675719828466408e-05| +|npm|stackdriver-errors-js|3.675719828466408e-05| +|npm|tiny-version-compare|3.675719828466408e-05| +|npm|unzipper|3.675719828466408e-05| +|npm|yaml|3.675719828466408e-05| +|cran|extrafont|3.664714756689467e-05| +|cran|rms|3.664012846903021e-05| +|npm|prettier|3.652819156596169e-05| +|pypi|[keystoneauth1](https://pypi.org/project/keystoneauth1)|3.6379518072289155e-05| +|cran|fftwtools|3.636379188152203e-05| +|cran|quadprog|3.625155279503105e-05| +|cran|strucchange|3.612137648337712e-05| +|cran|leaflet.providers|3.601462410728888e-05| +|pypi|[ipdb](https://pypi.org/project/ipdb)|3.6009381484304426e-05| +|rubygems|[commonmarker](https://github.com/gjtorikian/commonmarker)|3.600442586673223e-05| +|npm|minimist|3.5968227672149896e-05| +|rubygems|rack|3.582802946285393e-05| +|pypi|[capturer](https://pypi.org/project/capturer)|3.578313253012048e-05| +|cran|robotstxt|3.5783132530120477e-05| +|rubygems|jekyll-commonmark|3.5783132530120477e-05| +|pypi|[httplib2](https://github.com/httplib2/httplib2)|3.542505449751335e-05| +|cran|ggdist|3.532437442075996e-05| +|cran|bridgesampling|3.532437442075996e-05| +|cran|bayesQR|3.532437442075996e-05| +|pypi|[pyfftw](https://pypi.org/project/pyfftw)|3.5321757618710134e-05| +|cran|Rgraphviz|3.5223654595246224e-05| +|cran|[RandomFields](http://ms.math.uni-mannheim.de/de/publications/software/randomfields)|3.5192889785743964e-05| +|cran|mice|3.5130265798359834e-05| +|cran|[extraDistr](https://github.com/twolodzko/extraDistr)|3.4746633593196296e-05| +|pypi|[partd](https://pypi.org/project/partd)|3.457636356438401e-05| +|cran|mondate|3.457232312709484e-05| +|cran|DAAG|3.457232312709484e-05| +|npm|[inline-style-prefixer](https://github.com/rofrischmann/inline-style-prefixer#readme)|3.4505163511187604e-05| +|npm|[keycode](https://github.com/timoxley/keycode)|3.4505163511187604e-05| +|npm|[react-event-listener](https://github.com/oliviertassinari/react-event-listener)|3.4505163511187604e-05| +|npm|react-transition-group|3.4505163511187604e-05| +|npm|simple-assign|3.4505163511187604e-05| +|npm|warning|3.4505163511187604e-05| +|npm|lodash.merge|3.4505163511187604e-05| +|npm|lodash.throttle|3.4505163511187604e-05| +|npm|recompose|3.4505163511187604e-05| +|pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|3.433317272160642e-05| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|3.43133403095841e-05| +|npm|eslint-plugin-markdown|3.42070203892493e-05| +|npm|inherits|3.416527525856167e-05| +|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|3.409511455432721e-05| +|pypi|[PyQt5](https://www.riverbankcomputing.com/software/pyqt/)|3.394729168775945e-05| +|pypi|[pyenchant](https://pyenchant.github.io/pyenchant/)|3.38855421686747e-05| +|cran|gganimate|3.380922851068138e-05| +|cran|[shinythemes](http://rstudio.github.io/shinythemes/)|3.3808209396631205e-05| +|pypi|[tensorflow-gpu](https://www.tensorflow.org/)|3.36444221061919e-05| +|pypi|[tablib](https://pypi.org/project/tablib)|3.354668674698795e-05| +|pypi|[stfio](https://pypi.org/project/stfio)|3.354668674698795e-05| +|pypi|[klusta](https://klusta.cortexlab.net)|3.354668674698795e-05| +|pypi|[igor](http://blog.tremily.us/posts/igor/)|3.354668674698795e-05| +|cran|cba|3.354668674698795e-05| +|npm|[bundt](https://github.com/lukeed/bundt#readme)|3.354668674698795e-05| +|cran|[golem](https://github.com/ThinkR-open/golem)|3.35265633318526e-05| +|npm|chalk|3.34468547265987e-05| +|pypi|[mlflow](https://pypi.org/project/mlflow)|3.3378323210196154e-05| +|cran|[seriation](https://github.com/mhahsler/seriation)|3.3338101952479037e-05| +|pypi|[sniffio](https://pypi.org/project/sniffio)|3.310352839931153e-05| +|pypi|[mcfly](https://github.com/NLeSC/mcfly)|3.285870755750274e-05| +|npm|[canvg](https://github.com/canvg/canvg)|3.285870755750274e-05| +|npm|[googleapis](https://github.com/googleapis/google-api-nodejs-client#readme)|3.285870755750274e-05| +|npm|[http](https://github.com/npm/security-holder#readme)|3.285870755750274e-05| +|npm|[jspdf](https://github.com/mrrio/jspdf)|3.285870755750274e-05| +|npm|[multiparty](https://github.com/pillarjs/multiparty#readme)|3.285870755750274e-05| +|npm|[node-xlsx](https://github.com/mgcrea/node-xlsx#readme)|3.285870755750274e-05| +|npm|[pg-hstore](https://github.com/scarney81/pg-hstore)|3.285870755750274e-05| +|npm|[pug](https://pugjs.org)|3.285870755750274e-05| +|npm|[sequelize](https://sequelize.org/)|3.285870755750274e-05| +|npm|[stylus](https://github.com/stylus/stylus)|3.285870755750274e-05| +|npm|del-cli|3.275393883225208e-05| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|3.257353140051201e-05| +|cran|[shinyBS](https://ebailey78.github.io/shinyBS)|3.2569985825655564e-05| +|pypi|[fiona](http://github.com/Toblerity/Fiona)|3.226004993947943e-05| +|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|3.2063329850012295e-05| +|pypi|[uri-template](https://pypi.org/project/uri-template)|3.2063329850012295e-05| +|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|3.2063329850012295e-05| +|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|3.2063329850012295e-05| +|pypi|[isoduration](https://pypi.org/project/isoduration)|3.2063329850012295e-05| +|pypi|[fqdn](https://pypi.org/project/fqdn)|3.2063329850012295e-05| +|pypi|[sigtools](https://sigtools.readthedocs.io/)|3.2033132530120474e-05| +|pypi|[vtk](https://vtk.org)|3.202338918746753e-05| +|cran|lmtest|3.200134538917004e-05| +|pypi|[Mako](https://pypi.org/project/Mako)|3.19764299227607e-05| +|pypi|[DiffCapAnalyzer](https://github.com/nicolet5/DiffCapAnalyzer)|3.189227498228207e-05| +|pypi|[asteval](https://pypi.org/project/asteval)|3.189227498228207e-05| +|pypi|[lmfit](https://pypi.org/project/lmfit)|3.189227498228207e-05| +|pypi|[PeakUtils](https://pypi.org/project/PeakUtils)|3.189227498228207e-05| +|pypi|[ua-parser](https://pypi.org/project/ua-parser)|3.189227498228207e-05| +|pypi|[wincertstore](https://pypi.org/project/wincertstore)|3.189227498228207e-05| +|pypi|[ifermi](https://github.com/fermisurfaces/IFermi)|3.189227498228207e-05| +|pypi|[BoltzTraP2](https://pypi.org/project/BoltzTraP2)|3.189227498228207e-05| +|pypi|[meshcut](https://pypi.org/project/meshcut)|3.189227498228207e-05| +|pypi|[trimesh](https://pypi.org/project/trimesh)|3.189227498228207e-05| +|cran|tableHTML|3.189227498228207e-05| +|cran|shiny.i18n|3.189227498228207e-05| +|cran|popbio|3.189227498228207e-05| +|npm|eslint-config-prettier|3.183288982327666e-05| +|cran|[gitcreds](https://github.com/r-lib/gitcreds)|3.181948441539437e-05| +|cran|dfoptim|3.180356510073909e-05| +|cran|nloptr|3.169335838759892e-05| +|cran|[ini](https://github.com/dvdscripter/ini)|3.166888200575582e-05| +|pypi|[databricks-cli](https://pypi.org/project/databricks-cli)|3.158916658369013e-05| +|pypi|[prometheus-flask-exporter](https://pypi.org/project/prometheus-flask-exporter)|3.158916658369013e-05| +|pypi|[querystring-parser](https://pypi.org/project/querystring-parser)|3.158916658369013e-05| +|pypi|[od](https://pypi.org/project/od)|3.131024096385542e-05| +|pypi|[pip-api](https://pypi.org/project/pip-api)|3.1282473253012045e-05| +|pypi|[requirementslib](https://pypi.org/project/requirementslib)|3.1282473253012045e-05| +|pypi|[pipreqs](https://pypi.org/project/pipreqs)|3.1282473253012045e-05| +|npm|[font-awesome](http://fontawesome.io/)|3.124603677869372e-05| +|npm|object-assign|3.121797435024653e-05| +|cran|[RcppArmadillo](https://github.com/RcppCore/RcppArmadillo)|3.117469879518073e-05| +|pypi|[ordereddict](https://pypi.org/project/ordereddict)|3.1106924115560384e-05| +|npm|[ts-node](https://typestrong.org/ts-node)|3.0981067125645436e-05| +|cran|caTools|3.0854660399841135e-05| +|npm|react-test-renderer|3.0828983952002345e-05| +|npm|react-router|3.0828983952002345e-05| +|pypi|[h2](https://pypi.org/project/h2)|3.082616179001721e-05| +|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|3.07098265812349e-05| +|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|3.07098265812349e-05| +|pypi|[mkdocs](https://pypi.org/project/mkdocs)|3.070669231548041e-05| +|pypi|[PySide](http://www.pyside.org)|3.067125645438898e-05| +|pypi|[PyQt4](http://www.riverbankcomputing.com/software/pyqt/)|3.067125645438898e-05| +|npm|[unist-util-remove-position](https://github.com/syntax-tree/unist-util-remove-position#readme)|3.067125645438898e-05| +|npm|[unist-builder](https://github.com/syntax-tree/unist-builder#readme)|3.067125645438898e-05| +|npm|[remark](https://remark.js.org)|3.067125645438898e-05| +|npm|[unist-util-visit-parents](https://github.com/syntax-tree/unist-util-visit-parents#readme)|3.067125645438898e-05| +|npm|[unist-util-find-after](https://github.com/syntax-tree/unist-util-find-after#readme)|3.067125645438898e-05| +|pypi|[wslink](https://pypi.org/project/wslink)|3.059738955823293e-05| +|npm|[strip-ansi](https://github.com/chalk/strip-ansi#readme)|3.0593944038399824e-05| +|cran|janeaustenr|3.0561998468964675e-05| +|pypi|[pybind11](https://github.com/pybind/pybind11)|3.0543975903614466e-05| +|npm|whatwg-fetch|3.0428480840655857e-05| +|cran|vcd|3.0397405950331937e-05| +|pypi|[pypi-publisher](https://pypi.org/project/pypi-publisher)|3.030583873957368e-05| +|pypi|[opencv-python](https://github.com/skvark/opencv-python)|3.0248261509281232e-05| +|cran|[wordcloud2](https://github.com/lchiffon/wordcloud2)|3.002407983582683e-05| +|cran|spacyr|2.9954819277108433e-05| +|npm|[rollup-plugin-babel](https://github.com/rollup/rollup-plugin-babel)|2.9840922325795588e-05| +|rubygems|pry|2.9659226702729284e-05| +|cran|[reshape](http://had.co.nz/reshape)|2.9553838334475766e-05| +|cran|SGP|2.9535283993115317e-05| +|pypi|[nltk](https://www.nltk.org/)|2.9297338406398014e-05| +|rubygems|[railties](https://rubyonrails.org)|2.9247233833292352e-05| +|pypi|[PyQtWebEngine-Qt5](https://pypi.org/project/PyQtWebEngine-Qt5)|2.9222891566265056e-05| +|pypi|[flask-compress](https://pypi.org/project/flask-compress)|2.91174678943625e-05| +|cran|polynom|2.908308153086609e-05| +|cran|[conditionz](https://github.com/ropenscilabs/conditionz)|2.9082200071873067e-05| +|cran|[furrr](https://github.com/DavisVaughan/furrr)|2.9015100308695783e-05| +|cran|tkrplot|2.8997929126923362e-05| +|cran|Formula|2.8961578088341353e-05| +|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|2.8922555015982292e-05| +|rubygems|[rdoc](https://ruby.github.io/rdoc)|2.889158382802346e-05| +|cran|tripack|2.8713267223546874e-05| +|cran|pscl|2.8601501982600045e-05| +|npm|highcharts-exporting|2.8535193405199747e-05| +|npm|highcharts-no-data-to-display|2.8535193405199747e-05| +|npm|[history](https://github.com/remix-run/history#readme)|2.8535193405199747e-05| +|npm|[jsdocx](https://github.com/zuck/jsdocx#readme)|2.8535193405199747e-05| +|npm|[ramda](https://ramdajs.com/)|2.8535193405199747e-05| +|npm|[rc-tooltip](http://github.com/react-component/tooltip)|2.8535193405199747e-05| +|npm|[react-bootstrap-table](https://github.com/AllenFang/react-bootstrap-table#readme)|2.8535193405199747e-05| +|npm|react-fontawesome|2.8535193405199747e-05| +|npm|react-js-pagination|2.8535193405199747e-05| +|npm|react-router-redux|2.8535193405199747e-05| +|npm|react-s-alert|2.8535193405199747e-05| +|npm|react-table|2.8535193405199747e-05| +|npm|redux-form|2.8535193405199747e-05| +|npm|redux-observable|2.8535193405199747e-05| +|npm|redux-persist|2.8535193405199747e-05| +|npm|reselect|2.8535193405199747e-05| +|npm|rx-dom|2.8535193405199747e-05| +|pypi|[itk](https://itk.org/)|2.8435515750615156e-05| +|cran|[Rmpfr](https://rmpfr.r-forge.r-project.org/)|2.8314802065404477e-05| +|pypi|[livereload](https://pypi.org/project/livereload)|2.8283584337349395e-05| +|cran|[pkgdown](https://pkgdown.r-lib.org)|2.8179270961401895e-05| +|cran|kernlab|2.8174806199455808e-05| +|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|2.814910277715637e-05| +|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|2.814910277715637e-05| +|pypi|[cfgrib](https://pypi.org/project/cfgrib)|2.814910277715637e-05| +|pypi|[pydap](https://pypi.org/project/pydap)|2.814910277715637e-05| +|pypi|[numbagg](https://pypi.org/project/numbagg)|2.814910277715637e-05| +|pypi|[jeepney](https://pypi.org/project/jeepney)|2.8079798262818714e-05| +|pypi|[SecretStorage](https://pypi.org/project/SecretStorage)|2.8079798262818714e-05| +|rubygems|actionview|2.8024034915170884e-05| +|pypi|[pytest-subtests](https://pypi.org/project/pytest-subtests)|2.79605421686747e-05| +|npm|ms|2.7948006579774114e-05| +|pypi|[minio](https://github.com/minio/minio-py)|2.7938782155649627e-05| +|pypi|[reno](https://pypi.org/project/reno)|2.792788296041308e-05| +|pypi|[tableone](https://pypi.org/project/tableone)|2.7803521779425393e-05| +|pypi|[EUKulele](https://github.com/AlexanderLabWHOI/EUKulele)|2.7803521779425393e-05| +|pypi|[python-coveralls](http://github.com/z4r/python-coveralls)|2.7803521779425393e-05| +|pypi|[recipy](http://www.recipy.org)|2.7803521779425393e-05| +|pypi|[tinydb](https://github.com/msiemens/tinydb)|2.7803521779425393e-05| +|pypi|[binaryornot](https://github.com/audreyr/binaryornot)|2.7803521779425393e-05| +|pypi|[svn](https://github.com/dsoprea/PySvn)|2.7803521779425393e-05| +|pypi|[scandir](https://pypi.org/project/scandir)|2.7757118446312724e-05| +|pypi|[backports.os](https://pypi.org/project/backports.os)|2.7757118446312724e-05| +|cran|jsonify|2.770693162259427e-05| +|pypi|[cairocffi](https://github.com/Kozea/cairocffi)|2.7618072289156624e-05| +|pypi|[george](https://github.com/dfm/george)|2.7447289156626516e-05| +|cran|gt|2.7344799761519666e-05| +|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|2.7320214769926923e-05| +|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|2.7320214769926923e-05| +|pypi|[types-toml](https://pypi.org/project/types-toml)|2.7236102109608225e-05| |cran|[beautier](https://docs.ropensci.org/beautier/ (website) -https://github.com/ropensci/beautier/)|2.771988696573649e-05| -|cran|heatmaply|2.7619657364888724e-05| -|npm|[rollup-plugin-babel](https://github.com/rollup/rollup-plugin-babel)|2.761643247903188e-05| -|pypi|[plams](https://www.scm.com/doc/plams/)|2.7543863854266552e-05| -|cran|seqinr|2.7533262610559267e-05| -|cran|gridBase|2.752833824228533e-05| -|cran|plm|2.7448464632252143e-05| -|pypi|[ppft](https://pypi.org/project/ppft)|2.7407718120805368e-05| -|pypi|[pox](https://pypi.org/project/pox)|2.7407718120805368e-05| -|pypi|[fasttext](https://github.com/facebookresearch/fastText)|2.7407718120805368e-05| -|pypi|[hijri-converter](https://github.com/mhalshehri/hijri-converter)|2.7407718120805368e-05| -|cran|BeyondBenford|2.7407718120805368e-05| -|cran|BenfordTests|2.7407718120805368e-05| -|cran|benford.analysis|2.7407718120805368e-05| -|cran|MUS|2.7407718120805368e-05| -|cran|manipulateWidget|2.7407718120805368e-05| -|cran|AsioHeaders|2.7407718120805368e-05| -|cran|filelock|2.7407718120805368e-05| -|pypi|[blinker](https://pypi.org/project/blinker)|2.7407718120805365e-05| -|cran|proxy|2.7337972581170533e-05| -|pypi|[pbr](https://pypi.org/project/pbr)|2.7255453020134226e-05| -|npm|should|2.7160373789346247e-05| -|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|2.7159743528283795e-05| -|cran|dynamicTreeCut|2.711630166019074e-05| -|npm|readable-stream|2.7106534405192124e-05| -|cran|optimx|2.709503275704796e-05| -|cran|minqa|2.709503275704796e-05| -|cran|pls|2.7092533801631868e-05| -|pypi|[cupy-cuda92](https://pypi.org/project/cupy-cuda92)|2.6980292694571192e-05| -|pypi|[cupy-cuda91](https://pypi.org/project/cupy-cuda91)|2.6980292694571192e-05| -|pypi|[cupy-cuda90](https://pypi.org/project/cupy-cuda90)|2.6980292694571192e-05| -|pypi|[cupy-cuda80](https://pypi.org/project/cupy-cuda80)|2.6980292694571192e-05| -|pypi|[cupy-cuda112](https://pypi.org/project/cupy-cuda112)|2.6980292694571192e-05| -|pypi|[cupy-cuda111](https://pypi.org/project/cupy-cuda111)|2.6980292694571192e-05| -|pypi|[cupy-cuda110](https://pypi.org/project/cupy-cuda110)|2.6980292694571192e-05| -|pypi|[cupy-cuda102](https://pypi.org/project/cupy-cuda102)|2.6980292694571192e-05| -|pypi|[cupy-cuda101](https://pypi.org/project/cupy-cuda101)|2.6980292694571192e-05| -|pypi|[cupy-cuda100](https://pypi.org/project/cupy-cuda100)|2.6980292694571192e-05| -|cran|[ordinal](https://github.com/runehaubo/ordinal)|2.6734038180809014e-05| -|pypi|[flask](https://palletsprojects.com/p/flask)|2.6619599037071605e-05| -|cran|gbRd|2.6510738255033554e-05| -|cran|quanteda|2.6387746992120757e-05| -|cran|GPArotation|2.6293013434428195e-05| -|cran|rsm|2.614634544378939e-05| -|cran|tables|2.6133302669286605e-05| -|cran|rcmdcheck|2.600521956442274e-05| -|pypi|[google-api-core](https://pypi.org/project/google-api-core)|2.589949428112299e-05| -|pypi|[cached-property](https://pypi.org/project/cached-property)|2.584156279961649e-05| -|pypi|[minio](https://pypi.org/project/minio)|2.5838926174496646e-05| -|cran|R.devices|2.582337008628956e-05| -|pypi|[m2r](https://github.com/miyakogi/m2r)|2.569473573825503e-05| -|pypi|[pyfiglet](https://pypi.org/project/pyfiglet)|2.5671140939597313e-05| -|pypi|[pythainlp](https://github.com/PyThaiNLP/pythainlp)|2.549555174028406e-05| -|pypi|[spacy-ray](https://pypi.org/project/spacy-ray)|2.549555174028406e-05| -|pypi|[spacy-lookups-data](https://pypi.org/project/spacy-lookups-data)|2.549555174028406e-05| -|pypi|[natto-py](https://pypi.org/project/natto-py)|2.549555174028406e-05| -|pypi|[sudachidict-core](https://pypi.org/project/sudachidict-core)|2.549555174028406e-05| -|pypi|[sudachipy](https://pypi.org/project/sudachipy)|2.549555174028406e-05| -|pypi|[cupy-cuda115](https://pypi.org/project/cupy-cuda115)|2.549555174028406e-05| -|pypi|[cupy-cuda114](https://pypi.org/project/cupy-cuda114)|2.549555174028406e-05| -|pypi|[cupy-cuda113](https://pypi.org/project/cupy-cuda113)|2.549555174028406e-05| -|pypi|[thinc-apple-ops](https://pypi.org/project/thinc-apple-ops)|2.549555174028406e-05| -|pypi|[langcodes](https://pypi.org/project/langcodes)|2.549555174028406e-05| -|pypi|[pathy](https://pypi.org/project/pathy)|2.549555174028406e-05| -|pypi|[spacy-loggers](https://pypi.org/project/spacy-loggers)|2.549555174028406e-05| -|pypi|[spacy-legacy](https://pypi.org/project/spacy-legacy)|2.549555174028406e-05| -|rubygems|rake-compiler|2.543215612587317e-05| -|rubygems|nokogiri|2.5337839006260966e-05| -|pypi|[spglib](http://spglib.github.io/spglib/)|2.533282475830321e-05| -|pypi|[dash-bootstrap-components](https://pypi.org/project/dash-bootstrap-components)|2.5202482081676716e-05| -|cran|bezier|2.5155375634423393e-05| -|cran|ComplexHeatmap|2.5155375634423393e-05| -|cran|GlobalOptions|2.5155375634423393e-05| -|pypi|[openpyxl](https://openpyxl.readthedocs.io)|2.5137867043729555e-05| -|cran|Cubist|2.5134839650145772e-05| -|pypi|[xarray](https://pypi.org/project/xarray)|2.5129713785515722e-05| -|pypi|[Nano-Utils](https://pypi.org/project/Nano-Utils)|2.4968839884947278e-05| -|rubygems|addressable|2.4931936701667023e-05| -|pypi|[cssselect2](https://pypi.org/project/cssselect2)|2.4916107382550334e-05| -|pypi|[distributed](https://pypi.org/project/distributed)|2.491044984686808e-05| -|cran|adehabitatMA|2.4847656538092776e-05| -|pypi|[pyasn1-modules](https://pypi.org/project/pyasn1-modules)|2.4731133294581394e-05| -|pypi|[nptyping](https://pypi.org/project/nptyping)|2.470735512390294e-05| -|npm|[actions](https://github.com/fundon/actions)|2.4678811121764142e-05| -|pypi|[coreapi](https://github.com/core-api/python-client)|2.460850111856823e-05| -|pypi|[django-chosen](https://github.com/theatlantic/django-chosen)|2.460850111856823e-05| -|pypi|[django-form-utils](http://bitbucket.org/carljm/django-form-utils/)|2.460850111856823e-05| -|pypi|[django-gravatar2](https://github.com/twaddington/django-gravatar)|2.460850111856823e-05| -|pypi|[django-hstore](https://github.com/djangonauts/django-hstore)|2.460850111856823e-05| -|pypi|[django-ratelimit](https://github.com/jsocol/django-ratelimit)|2.460850111856823e-05| -|pypi|[django-rest-swagger](https://github.com/marcgibbons/django-rest-swagger)|2.460850111856823e-05| -|pypi|[django-taggit](https://github.com/jazzband/django-taggit)|2.460850111856823e-05| -|pypi|[django-taggit-templatetags](http://github.com/feuervogel/django-taggit-templatetags)|2.460850111856823e-05| -|pypi|[oauth2client](https://pypi.org/project/oauth2client)|2.460850111856823e-05| -|pypi|[python3-saml](https://pypi.org/project/python3-saml)|2.460850111856823e-05| -|pypi|[python-social-auth](https://pypi.org/project/python-social-auth)|2.460850111856823e-05| -|pypi|[rq-scheduler](https://pypi.org/project/rq-scheduler)|2.460850111856823e-05| -|pypi|[social-auth-app-django](https://pypi.org/project/social-auth-app-django)|2.460850111856823e-05| -|pypi|[social-auth-core](https://pypi.org/project/social-auth-core)|2.460850111856823e-05| -|pypi|[sregistry](https://pypi.org/project/sregistry)|2.460850111856823e-05| -|cran|tweedie|2.4573228799720923e-05| -|pypi|[george](https://github.com/dfm/george)|2.4500838926174493e-05| -|pypi|[platformdirs](https://pypi.org/project/platformdirs)|2.448963679735568e-05| -|cran|[rhandsontable](http://jrowen.github.io/rhandsontable/)|2.4482585367652493e-05| -|cran|cleanNLP|2.436241610738255e-05| -|cran|udpipe|2.436241610738255e-05| -|pypi|[PyJWT](https://pypi.org/project/PyJWT)|2.435064935064935e-05| -|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|2.435064935064935e-05| -|pypi|[terminado](https://pypi.org/project/terminado)|2.435064935064935e-05| -|rubygems|shoulda-matchers|2.4163539241199835e-05| -|npm|prettier|2.4092970260671383e-05| -|pypi|[pymongo](https://pypi.org/project/pymongo)|2.402591896344682e-05| -|cran|gpclib|2.3999498536609982e-05| -|cran|PBSmapping|2.3999498536609982e-05| -|pypi|[pycares](https://pypi.org/project/pycares)|2.3853750276569066e-05| -|pypi|[scanpy](https://scanpy.readthedocs.io)|2.3853274704929438e-05| -|pypi|[inflection](https://pypi.org/project/inflection)|2.379351353344642e-05| -|npm|after|2.3656738605354373e-05| -|cran|rootSolve|2.3605819333861352e-05| -|cran|triangle|2.358724832214765e-05| -|cran|evd|2.358724832214765e-05| -|pypi|[uritemplate](https://pypi.org/project/uritemplate)|2.355761414122318e-05| -|cran|beepr|2.3550613109956105e-05| -|npm|vary|2.3474203020134225e-05| -|npm|gulp|2.3469825959382745e-05| -|pypi|[towncrier](https://pypi.org/project/towncrier)|2.3390665740408108e-05| -|npm|through2|2.3264413857954125e-05| -|cran|wikitaxa|2.3113785782769487e-05| -|cran|natserv|2.3113785782769487e-05| -|cran|worrms|2.3113785782769487e-05| -|cran|rotl|2.3113785782769487e-05| -|cran|rredlist|2.3113785782769487e-05| -|cran|bold|2.3113785782769487e-05| -|cran|ritis|2.311378578276948e-05| -|pypi|[asteval](http://github.com/newville/asteval)|2.3070469798657717e-05| -|pypi|[lmfit](https://pypi.org/project/lmfit)|2.3070469798657717e-05| -|pypi|[PeakUtils](https://pypi.org/project/PeakUtils)|2.3070469798657717e-05| -|pypi|[ua-parser](https://pypi.org/project/ua-parser)|2.3070469798657717e-05| -|pypi|[wincertstore](https://pypi.org/project/wincertstore)|2.3070469798657717e-05| -|rubygems|jekyll-sass-converter|2.3030096476510064e-05| -|rubygems|simplecov|2.2972830593167273e-05| -|npm|del-cli|2.289300464636035e-05| -|pypi|[autodocsumm](https://github.com/Chilipp/autodocsumm)|2.2839765100671142e-05| -|npm|matcha|2.283976510067114e-05| -|npm|quick-lru|2.283976510067114e-05| -|npm|map-obj|2.283976510067114e-05| -|npm|lodash.kebabcase|2.283976510067114e-05| -|pypi|[PyQt6-Qt6](https://pypi.org/project/PyQt6-Qt6)|2.283976510067114e-05| -|pypi|[PyQt6-sip](https://pypi.org/project/PyQt6-sip)|2.283976510067114e-05| -|pypi|[zmq](https://github.com/zeromq/pyzmq)|2.283976510067114e-05| -|pypi|[pyjwt](https://pypi.org/project/pyjwt)|2.283976510067114e-05| -|pypi|[galaxy-tool-util](https://github.com/galaxyproject/galaxy)|2.283976510067114e-05| -|pypi|[bagit](https://pypi.org/project/bagit)|2.283976510067114e-05| -|pypi|[prov](https://pypi.org/project/prov)|2.283976510067114e-05| -|pypi|[schema-salad](https://pypi.org/project/schema-salad)|2.283976510067114e-05| -|pypi|[shellescape](https://pypi.org/project/shellescape)|2.283976510067114e-05| -|pypi|[prompt_toolkit](https://pypi.org/project/prompt_toolkit)|2.283976510067114e-05| -|pypi|[Flask-SQLAlchemy](https://pypi.org/project/Flask-SQLAlchemy)|2.283976510067114e-05| -|pypi|[od](https://pypi.org/project/od)|2.283976510067114e-05| -|pypi|[sigtools](https://pypi.org/project/sigtools)|2.283976510067114e-05| -|pypi|[APScheduler](https://pypi.org/project/APScheduler)|2.283976510067114e-05| -|cran|yamlme|2.283976510067114e-05| -|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|2.2835785674213186e-05| -|cran|adehabitatLT|2.2806807286673055e-05| -|cran|doFuture|2.2759625574002115e-05| -|cran|pbmcapply|2.2759625574002115e-05| -|cran|RANN|2.2674452104099444e-05| -|npm|minimatch|2.26483304759738e-05| -|cran|paradox|2.2601097618459742e-05| -|rubygems|[chartkick](https://chartkick.com)|2.2599643884399396e-05| -|rubygems|[memory_profiler](https://github.com/SamSaffron/memory_profiler)|2.2599643884399396e-05| -|rubygems|[e2mmap](https://github.com/ruby/e2mmap)|2.2599643884399396e-05| -|rubygems|[stripe](https://stripe.com/docs/api?lang=ruby)|2.2599643884399396e-05| -|pypi|[distlib](https://pypi.org/project/distlib)|2.2558791803563396e-05| -|npm|rollup-plugin-json|2.250077044240515e-05| -|npm|package-json-versionify|2.250077044240515e-05| -|cran|plotfunctions|2.23736474455554e-05| -|rubygems|nio4r|2.23736474455554e-05| -|rubygems|sassc-rails|2.23736474455554e-05| -|rubygems|tzinfo|2.23736474455554e-05| -|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|2.237125709860609e-05| -|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|2.237125709860609e-05| -|pypi|[cfgrib](https://pypi.org/project/cfgrib)|2.237125709860609e-05| -|pypi|[pydap](https://pypi.org/project/pydap)|2.237125709860609e-05| -|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|2.237125709860609e-05| -|pypi|[numbagg](https://pypi.org/project/numbagg)|2.237125709860609e-05| -|rubygems|[ruby-openid](https://github.com/openid/ruby-openid)|2.236912751677852e-05| -|cran|Biostrings|2.236104568760682e-05| -|cran|ROCR|2.235209086215798e-05| -|cran|semEff|2.232847308386442e-05| -|cran|rr2|2.232847308386442e-05| -|cran|HSAUR3|2.232847308386442e-05| -|cran|mlmRev|2.232847308386442e-05| -|cran|MEMSS|2.232847308386442e-05| -|cran|PKPDmodels|2.232847308386442e-05| -|pypi|[ordereddict](https://pypi.org/project/ordereddict)|2.2325577568404748e-05| -|pypi|[munch](https://pypi.org/project/munch)|2.2325577568404748e-05| -|cran|NLP|2.231396451062016e-05| -|npm|babel-preset-react|2.219034490409483e-05| -|cran|rcdk|2.2147651006711405e-05| -|cran|fingerprint|2.2147651006711405e-05| -|cran|enviPat|2.2147651006711405e-05| -|cran|flexdashboard|2.2147651006711405e-05| -|cran|keys|2.2147651006711405e-05| -|pypi|[wsaccel](https://pypi.org/project/wsaccel)|2.2051466922339405e-05| -|pypi|[python-socks](https://pypi.org/project/python-socks)|2.2051466922339405e-05| -|cran|assertive|2.2027878618773553e-05| -|pypi|[aiodns](https://pypi.org/project/aiodns)|2.1951202467117393e-05| -|cran|actuar|2.1926174496644297e-05| -|cran|skellam|2.1926174496644297e-05| -|cran|hoa|2.1926174496644297e-05| -|cran|LaplacesDemon|2.1926174496644297e-05| -|rubygems|jdbc-postgres|2.1926174496644293e-05| -|rubygems|jdbc-sqlite3|2.1926174496644293e-05| -|rubygems|shoulda-context|2.1926174496644293e-05| -|pypi|[monty](https://github.com/materialsvirtuallab/monty)|2.1905212102502602e-05| -|cran|matrixStats|2.190023877413287e-05| -|cran|[geiger](https://github.com/mwpennell/geiger-v2)|2.1765053774646715e-05| -|cran|fpc|2.1675903901432048e-05| -|rubygems|webmock|2.1657082946433606e-05| -|cran|MCMCglmm|2.1576033974580075e-05| -|pypi|[prefect](https://pypi.org/project/prefect)|2.1496249506514017e-05| -|cran|purrrlyr|2.1431599132058332e-05| -|pypi|[schema](https://github.com/keleshev/schema)|2.1242809204218655e-05| -|cran|Rcsdp|2.1184135318937505e-05| -|cran|psychTools|2.1184135318937505e-05| -|npm|depd|2.1175363803562206e-05| -|rubygems|kramdown-parser-gfm|2.1145815855704695e-05| -|rubygems|jekyll-theme-primer|2.1145815855704695e-05| -|rubygems|jekyll_test_plugin_malicious|2.1145815855704695e-05| -|cran|[phytools](https://github.com/liamrevell/phytools)|2.1120888339848077e-05| -|npm|xregexp|2.1082860092927207e-05| -|npm|bufferedstream|2.1082860092927207e-05| -|pypi|[mrcfile](https://pypi.org/project/mrcfile)|2.1082860092927207e-05| -|pypi|[deprecation](http://deprecation.readthedocs.io/)|2.1040268456375844e-05| -|cran|sessioninfo|2.1034865827732023e-05| -|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|2.103242262859006e-05| -|cran|[deSolve](http://desolve.r-forge.r-project.org/)|2.0953462644737815e-05| -|cran|gamlss|2.0780839058115702e-05| -|cran|[binman](https://docs.ropensci.org/binman/)|2.067114093959734e-05| -|pypi|[raven](https://pypi.org/project/raven)|2.0469420550146516e-05| -|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|2.0451607877400798e-05| -|pypi|[GitPython](https://github.com/gitpython-developers/GitPython)|2.0430537094337456e-05| -|pypi|[assertionlib](https://pypi.org/project/assertionlib)|2.0336289549376795e-05| +https://github.com/ropensci/beautier/)|2.714302184815818e-05| +|pypi|[tangle](https://github.com/fifman/tangle)|2.710843373493976e-05| +|cran|[heatmaply](https://talgalili.github.io/heatmaply/)|2.7044878076900904e-05| +|pypi|[zope.interface](https://pypi.org/project/zope.interface)|2.7027107289879215e-05| +|cran|[seqinr](http://seqinr.r-forge.r-project.org/)|2.6960281241883887e-05| +|cran|gridBase|2.695545935224872e-05| +|cran|plm|2.687724795315818e-05| +|pypi|[fasttext](https://github.com/facebookresearch/fastText)|2.6837349397590363e-05| +|pypi|[hijri-converter](https://github.com/mhalshehri/hijri-converter)|2.6837349397590363e-05| +|cran|BeyondBenford|2.6837349397590363e-05| +|cran|BenfordTests|2.6837349397590363e-05| +|cran|benford.analysis|2.6837349397590363e-05| +|cran|MUS|2.6837349397590363e-05| +|cran|filelock|2.6837349397590363e-05| +|cran|manipulateWidget|2.6837349397590363e-05| +|cran|AsioHeaders|2.6837349397590356e-05| +|cran|[proxy](NA)|2.6769055298539382e-05| +|npm|[should](https://github.com/shouldjs/should.js)|2.6595152428998408e-05| +|cran|dynamicTreeCut|2.6551997463538365e-05| +|npm|readable-stream|2.654243347014431e-05| +|cran|optimx|2.6531171177218922e-05| +|cran|minqa|2.6531171177218922e-05| +|cran|pls|2.652872422635147e-05| +|pypi|[meshio](https://github.com/nschloe/meshio)|2.6496756255792406e-05| +|npm|through2|2.647040497153449e-05| +|pypi|[smart-open](https://pypi.org/project/smart-open)|2.63493600369775e-05| +|cran|[ordinal](https://github.com/runehaubo/ordinal)|2.6177689083946618e-05| +|pypi|[setuptools-scm](https://pypi.org/project/setuptools-scm)|2.610757481356347e-05| +|pypi|[siphon](https://pypi.org/project/siphon)|2.6040719481700388e-05| +|cran|gbRd|2.595903614457831e-05| +|npm|[request](https://github.com/request/request#readme)|2.5926452705230862e-05| +|cran|[quanteda](https://quanteda.io)|2.5838604393160962e-05| +|pypi|[deprecation](http://deprecation.readthedocs.io/)|2.5816657936092202e-05| +|cran|[GPArotation](http://www.stat.ucla.edu/research/gpa)|2.574584228957153e-05| +|cran|rsm|2.560222653532061e-05| +|cran|tables|2.558945518766947e-05| +|rubygems|html-pipeline|2.5559380378657487e-05| +|rubygems|gemoji|2.5559380378657487e-05| +|pypi|[exceptiongroup](https://pypi.org/project/exceptiongroup)|2.5559380378657483e-05| +|cran|rcmdcheck|2.5464037558153262e-05| +|pypi|[pydantic](https://pypi.org/project/pydantic)|2.543967410632747e-05| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|2.5308676846007626e-05| +|cran|[R.devices](https://github.com/HenrikBengtsson/R.devices)|2.5285972461273677e-05| +|pypi|[sphinx_automodapi](https://pypi.org/project/sphinx_automodapi)|2.5217147660409076e-05| +|pypi|[ghp-import](https://pypi.org/project/ghp-import)|2.5082169336687408e-05| +|pypi|[plams](https://www.scm.com/doc/plams/)|2.47062208558721e-05| +|cran|bezier|2.4631879317825315e-05| +|cran|ComplexHeatmap|2.4631879317825315e-05| +|cran|GlobalOptions|2.4631879317825315e-05| +|cran|Cubist|2.461177069795216e-05| +|pypi|[wsproto](https://github.com/python-hyper/wsproto/)|2.4578313253012045e-05| +|pypi|[cssselect2](https://pypi.org/project/cssselect2)|2.439759036144578e-05| +|cran|adehabitatMA|2.433056401429895e-05| +|pypi|[ini2toml](https://github.com/abravalheri/ini2toml/)|2.4288060181171334e-05| +|pypi|[sphinx-panels](https://pypi.org/project/sphinx-panels)|2.4249775817956554e-05| +|pypi|[Nano-Utils](https://pypi.org/project/Nano-Utils)|2.419502184562426e-05| +|npm|[actions](https://github.com/fundon/actions)|2.4165232358003443e-05| +|pypi|[coreapi](https://github.com/core-api/python-client)|2.4096385542168674e-05| +|pypi|[django-chosen](https://github.com/theatlantic/django-chosen)|2.4096385542168674e-05| +|pypi|[django-form-utils](http://bitbucket.org/carljm/django-form-utils/)|2.4096385542168674e-05| +|pypi|[django-gravatar2](https://github.com/twaddington/django-gravatar)|2.4096385542168674e-05| +|pypi|[django-hstore](https://github.com/djangonauts/django-hstore)|2.4096385542168674e-05| +|pypi|[django-ratelimit](https://github.com/jsocol/django-ratelimit)|2.4096385542168674e-05| +|pypi|[django-rest-swagger](https://github.com/marcgibbons/django-rest-swagger)|2.4096385542168674e-05| +|pypi|[django-taggit](https://github.com/jazzband/django-taggit)|2.4096385542168674e-05| +|pypi|[django-taggit-templatetags](http://github.com/feuervogel/django-taggit-templatetags)|2.4096385542168674e-05| +|pypi|[oauth2client](https://pypi.org/project/oauth2client)|2.4096385542168674e-05| +|pypi|[python3-saml](https://pypi.org/project/python3-saml)|2.4096385542168674e-05| +|pypi|[python-social-auth](https://pypi.org/project/python-social-auth)|2.4096385542168674e-05| +|pypi|[rq-scheduler](https://pypi.org/project/rq-scheduler)|2.4096385542168674e-05| +|pypi|[social-auth-app-django](https://pypi.org/project/social-auth-app-django)|2.4096385542168674e-05| +|pypi|[social-auth-core](https://pypi.org/project/social-auth-core)|2.4096385542168674e-05| +|pypi|[sregistry](https://pypi.org/project/sregistry)|2.4096385542168674e-05| +|cran|[tweedie](http://www.r-project.org/package=tweedie)|2.4061847258434288e-05| +|cran|[rhandsontable](http://jrowen.github.io/rhandsontable/)|2.3973090162849215e-05| +|pypi|[datatable](https://pypi.org/project/datatable)|2.3855421686746988e-05| +|cran|cleanNLP|2.3855421686746988e-05| +|cran|udpipe|2.3855421686746988e-05| +|npm|webworker-threads|2.3855421686746988e-05| +|pypi|[PyJWT](https://pypi.org/project/PyJWT)|2.3843899802278773e-05| +|pypi|[python-multipart](https://pypi.org/project/python-multipart)|2.3680014174344434e-05| +|rubygems|rake-compiler|2.367285468404229e-05| +|rubygems|shoulda-matchers|2.3660683550528643e-05| +|cran|gpclib|2.350005661744723e-05| +|cran|PBSmapping|2.350005661744723e-05| +|pypi|[scanpy](https://scanpy.readthedocs.io)|2.335687577897801e-05| +|npm|[del](https://github.com/sindresorhus/del#readme)|2.3220518859707188e-05| +|npm|after|2.3164429696809212e-05| +|cran|rootSolve|2.311457008156851e-05| +|cran|triangle|2.3096385542168676e-05| +|cran|evd|2.3096385542168676e-05| +|cran|beepr|2.3060512727602142e-05| +|pypi|[OWSLib](https://pypi.org/project/OWSLib)|2.2991020686519667e-05| +|npm|vary|2.298569277108434e-05| +|npm|gulp|2.2981406799220343e-05| +|pypi|[rowan](https://github.com/glotzerlab/rowan)|2.2792383820998294e-05| +|cran|[wikitaxa](https://github.com/ropensci/wikitaxa)|2.2632776001967053e-05| +|cran|[natserv](https://docs.ropensci.org/natserv)|2.2632776001967053e-05| +|cran|[worrms](https://docs.ropensci.org/worrms)|2.2632776001967053e-05| +|cran|[rotl](https://docs.ropensci.org/rotl/)|2.2632776001967053e-05| +|cran|[rredlist](https://github.com/ropensci/rredlist (devel) +https://docs.ropensci.org/rredlist/ (docs))|2.2632776001967053e-05| +|cran|[bold](https://docs.ropensci.org/bold/ (documentation) +https://github.com/ropensci/bold (source))|2.2632776001967053e-05| +|cran|[ritis](https://github.com/ropensci/ritis (devel))|2.2632776001967047e-05| +|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|2.2609745433346285e-05| +|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|2.2609745433346285e-05| +|npm|babel-core|2.2479939934692714e-05| +|pypi|[prompt_toolkit](https://pypi.org/project/prompt_toolkit)|2.23644578313253e-05| +|pypi|[PyQt6-Qt6](https://pypi.org/project/PyQt6-Qt6)|2.23644578313253e-05| +|pypi|[PyQt6-sip](https://pypi.org/project/PyQt6-sip)|2.23644578313253e-05| +|pypi|[zmq](https://github.com/zeromq/pyzmq)|2.23644578313253e-05| +|pypi|[galaxy-tool-util](https://github.com/galaxyproject/galaxy)|2.23644578313253e-05| +|pypi|[bagit](https://pypi.org/project/bagit)|2.23644578313253e-05| +|pypi|[prov](https://pypi.org/project/prov)|2.23644578313253e-05| +|pypi|[schema-salad](https://pypi.org/project/schema-salad)|2.23644578313253e-05| +|pypi|[shellescape](https://pypi.org/project/shellescape)|2.23644578313253e-05| +|cran|yamlme|2.23644578313253e-05| +|npm|matcha|2.23644578313253e-05| +|npm|quick-lru|2.23644578313253e-05| +|npm|map-obj|2.23644578313253e-05| +|npm|lodash.kebabcase|2.23644578313253e-05| +|pypi|[stestr](https://pypi.org/project/stestr)|2.2352530120481924e-05| +|cran|adehabitatLT|2.2332185886402756e-05| +|cran|doFuture|2.2285986049461e-05| +|cran|pbmcapply|2.2285986049461e-05| +|pypi|[av](https://pypi.org/project/av)|2.2272865148205516e-05| +|cran|RANN|2.220258508331315e-05| +|pypi|[gcsfs](https://pypi.org/project/gcsfs)|2.2201051885560816e-05| +|npm|minimatch|2.217700705971586e-05| +|npm|ghsign|2.2140813253012047e-05| +|npm|git-config-path|2.2140813253012047e-05| +|npm|github-username|2.2140813253012047e-05| +|npm|parse-git-config|2.2140813253012047e-05| +|cran|paradox|2.21307571422815e-05| +|rubygems|[chartkick](https://chartkick.com)|2.2129333661175313e-05| +|rubygems|[memory_profiler](https://github.com/SamSaffron/memory_profiler)|2.2129333661175313e-05| +|rubygems|[e2mmap](https://github.com/ruby/e2mmap)|2.2129333661175313e-05| +|rubygems|[stripe](https://stripe.com/docs/api?lang=ruby)|2.2129333661175313e-05| +|pypi|[distlib](https://pypi.org/project/distlib)|2.2089331733171607e-05| +|npm|rollup-plugin-json|2.203251782640767e-05| +|npm|package-json-versionify|2.203251782640767e-05| +|pypi|[stevedore](https://pypi.org/project/stevedore)|2.2024130808950092e-05| +|pypi|[linkify-it-py](https://pypi.org/project/linkify-it-py)|2.1936211214716007e-05| +|cran|plotfunctions|2.1908040324563558e-05| +|rubygems|nio4r|2.1908040324563558e-05| +|rubygems|sassc-rails|2.1908040324563558e-05| +|rubygems|tzinfo|2.1908040324563558e-05| +|rubygems|[ruby-openid](https://github.com/openid/ruby-openid)|2.1903614457831323e-05| +|cran|Biostrings|2.18957008156851e-05| +|cran|[ROCR](http://rocr.bioinf.mpi-sb.mpg.de/)|2.1886932344763676e-05| +|cran|semEff|2.186380606459451e-05| +|cran|rr2|2.186380606459451e-05| +|cran|HSAUR3|2.186380606459451e-05| +|cran|mlmRev|2.186380606459451e-05| +|cran|MEMSS|2.186380606459451e-05| +|cran|PKPDmodels|2.186380606459451e-05| +|cran|NLP|2.1849599422228284e-05| +|pypi|[autocommand](https://pypi.org/project/autocommand)|2.1825536747779322e-05| +|npm|babel-preset-react|2.1728552403352444e-05| +|cran|rcdk|2.1686746987951806e-05| +|cran|fingerprint|2.1686746987951806e-05| +|cran|enviPat|2.1686746987951806e-05| +|cran|flexdashboard|2.1686746987951806e-05| +|cran|keys|2.1686746987951806e-05| +|pypi|[oslo.utils](https://pypi.org/project/oslo.utils)|2.163686746987952e-05| +|pypi|[oslo.config](https://pypi.org/project/oslo.config)|2.163686746987952e-05| +|cran|[assertive](https://bitbucket.org/richierocks/assertive)|2.1569467125064137e-05| +|npm|eslint-plugin-prettier|2.14955404256863e-05| +|pypi|[docker-registry-client](https://github.com/yodle/docker-registry-client)|2.146987951807229e-05| +|cran|actuar|2.146987951807229e-05| +|cran|skellam|2.146987951807229e-05| +|cran|hoa|2.146987951807229e-05| +|cran|LaplacesDemon|2.146987951807229e-05| +|rubygems|jdbc-postgres|2.1469879518072288e-05| +|rubygems|jdbc-sqlite3|2.1469879518072288e-05| +|rubygems|shoulda-context|2.1469879518072288e-05| +|cran|[matrixStats](https://github.com/HenrikBengtsson/matrixStats)|2.1444483531297684e-05| +|rubygems|nokogiri|2.1423927632793165e-05| +|pypi|[passlib](https://pypi.org/project/passlib)|2.142097802976612e-05| +|pypi|[torchvision](https://github.com/pytorch/vision)|2.1366467149005763e-05| +|cran|[geiger](https://github.com/mwpennell/geiger-v2)|2.1312111801242237e-05| +|rubygems|simplecov|2.126470898169939e-05| +|npm|acorn|2.123990467363961e-05| +|cran|fpc|2.122481718278231e-05| +|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|2.122383877053766e-05| +|pypi|[mrcfile](https://github.com/ccpem/mrcfile)|2.1133359004816678e-05| +|cran|MCMCglmm|2.1127025600519808e-05| +|pypi|[pymdown-extensions](https://github.com/facelessuser/pymdown-extensions)|2.1084337349397593e-05| +|pypi|[prefect](https://pypi.org/project/prefect)|2.1048901488306166e-05| +|pypi|[twisted](https://pypi.org/project/twisted)|2.1031084898600613e-05| +|pypi|[google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib)|2.099096509443782e-05| +|cran|purrrlyr|2.098559652142404e-05| +|pypi|[zstandard](https://pypi.org/project/zstandard)|2.0940587349397586e-05| +|npm|[deepmerge](https://github.com/TehShrike/deepmerge)|2.0912220309810687e-05| +|pypi|[platformdirs](https://pypi.org/project/platformdirs)|2.0893208141401658e-05| +|pypi|[rq](https://github.com/nvie/rq/)|2.0885542168674702e-05| +|pypi|[scanpydoc](https://github.com/theislab/scanpydoc/)|2.085972924374285e-05| +|pypi|[python-snappy](https://pypi.org/project/python-snappy)|2.08007640317367e-05| +|cran|Rcsdp|2.074328255764527e-05| +|cran|psychTools|2.074328255764527e-05| +|npm|depd|2.0734693582020388e-05| +|cran|[phytools](https://github.com/liamrevell/phytools)|2.0681351780749374e-05| +|pypi|[spacy](https://pypi.org/project/spacy)|2.067687033989142e-05| +|npm|xregexp|2.0644114921223353e-05| +|npm|bufferedstream|2.0644114921223353e-05| +|cran|[sessioninfo](https://github.com/r-lib/sessioninfo#readme)|2.0597119441393675e-05| +|cran|[deSolve](http://desolve.r-forge.r-project.org/)|2.051741030054283e-05| +|pypi|[breathe](https://github.com/michaeljones/breathe)|2.045783132530128e-05| +|npm|[react-plotly.js](https://github.com/plotly/react-plotly.js#readme)|2.044750430292599e-05| +|cran|gamlss|2.0348379099622603e-05| +|pypi|[hacking](https://pypi.org/project/hacking)|2.0328227194492253e-05| +|cran|[binman](https://docs.ropensci.org/binman/)|2.0240963855421715e-05| +|pypi|[panel](https://pypi.org/project/panel)|2.007299664076052e-05| +|pypi|[raven](https://pypi.org/project/raven)|2.0043441371118274e-05| +|pypi|[autobahn](https://pypi.org/project/autobahn)|1.9971266411573092e-05| +|pypi|[constantly](https://pypi.org/project/constantly)|1.9971266411573092e-05| +|pypi|[hyperlink](https://pypi.org/project/hyperlink)|1.9971266411573092e-05| +|pypi|[incremental](https://pypi.org/project/incremental)|1.9971266411573092e-05| +|pypi|[txaio](https://pypi.org/project/txaio)|1.9971266411573092e-05| |cran|[beastier](https://docs.ropensci.org/beastier/ (website) -https://github.com/ropensci/beastier/)|2.0302013422818795e-05| -|pypi|[pyshp](https://pypi.org/project/pyshp)|2.030201342281879e-05| -|pypi|[visitor](http://github.com/mbr/visitor)|2.030201342281879e-05| -|pypi|[dominate](https://github.com/Knio/dominate/)|2.030201342281879e-05| -|cran|shapefiles|2.030201342281879e-05| -|cran|ggsignif|2.02422857244751e-05| -|cran|ggsci|2.02422857244751e-05| -|npm|on-headers|2.023277032321705e-05| -|pypi|[rsa](https://pypi.org/project/rsa)|2.0155172342781518e-05| -|pypi|[requests-mock](https://pypi.org/project/requests-mock)|2.0120745445829336e-05| -|pypi|[opencv-python](https://github.com/skvark/opencv-python)|2.0062919463087284e-05| -|cran|[survey](http://r-survey.r-forge.r-project.org/survey/)|2.0009479004443458e-05| -|cran|sandwich|2.0009479004443458e-05| -|cran|partykit|1.9994789278419276e-05| -|rubygems|test-unit|1.9957293521435417e-05| -|cran|spData|1.9932885906040267e-05| -|pypi|[jupyter-console](https://pypi.org/project/jupyter-console)|1.977468839884947e-05| -|pypi|[mwoauth](https://pypi.org/project/mwoauth)|1.977468839884947e-05| -|pypi|[wikidataintegrator](https://pypi.org/project/wikidataintegrator)|1.977468839884947e-05| -|pypi|[dash-extensions](https://pypi.org/project/dash-extensions)|1.977468839884947e-05| -|pypi|[Flask-Caching](https://pypi.org/project/Flask-Caching)|1.977468839884947e-05| -|pypi|[ipaddr](https://pypi.org/project/ipaddr)|1.977468839884947e-05| -|pypi|[progress](https://pypi.org/project/progress)|1.977468839884947e-05| -|pypi|[pytoml](https://pypi.org/project/pytoml)|1.977468839884947e-05| -|pypi|[pybind11](https://github.com/pybind/pybind11)|1.9748322147651038e-05| -|cran|seqLogo|1.9620273875526284e-05| -|cran|oskeyring|1.9576941514860975e-05| -|cran|ExplainPrediction|1.9576941514860975e-05| -|cran|rpart.plot|1.9576941514860975e-05| -|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|1.9573223197384268e-05| -|cran|rstatix|1.955017163051537e-05| -|pypi|[gssapi](https://pypi.org/project/gssapi)|1.9435008688878233e-05| -|cran|afex|1.934805594270457e-05| -|pypi|[folium](https://pypi.org/project/folium)|1.9344588926174497e-05| -|npm|eslint-plugin-prettier|1.929788022591587e-05| -|npm|eslint-config-prettier|1.929788022591587e-05| -|pypi|[sphinx-panels](https://pypi.org/project/sphinx-panels)|1.927010640352349e-05| -|pypi|[linkify-it-py](https://pypi.org/project/linkify-it-py)|1.927010640352349e-05| -|cran|tester|1.923348640056517e-05| -|cran|fastICA|1.918334225277066e-05| -|rubygems|[mocha](https://mocha.jamesmead.org)|1.908765922476373e-05| -|pypi|[affine](https://pypi.org/project/affine)|1.9017723467807364e-05| -|pypi|[gcsfs](https://pypi.org/project/gcsfs)|1.8991047496356367e-05| -|cran|docopt|1.898370086289549e-05| -|cran|tidygraph|1.897847042550242e-05| -|cran|[rentrez](http://github.com/ropensci/rentrez)|1.896832054969644e-05| -|rubygems|rubyzip|1.886984061661578e-05| -|cran|[snakecase](https://github.com/Tazinho/snakecase)|1.877464152386495e-05| -|npm|[ansi-regex](https://github.com/chalk/ansi-regex#readme)|1.8769195768399497e-05| -|npm|[balanced-match](https://github.com/juliangruber/balanced-match)|1.8769195768399497e-05| -|npm|[brace-expansion](https://github.com/juliangruber/brace-expansion)|1.8769195768399497e-05| -|npm|[cacatoo](https://github.com/bramvandijk88/cacatoo#readme)|1.8769195768399497e-05| -|npm|[code-point-at](https://github.com/sindresorhus/code-point-at#readme)|1.8769195768399497e-05| -|npm|[decompress-response](https://github.com/sindresorhus/decompress-response#readme)|1.8769195768399497e-05| -|npm|[detect-libc](https://github.com/lovell/detect-libc#readme)|1.8769195768399497e-05| -|npm|[esdoc](https://esdoc.org/)|1.8769195768399497e-05| -|npm|esdoc-standard-plugin|1.8769195768399497e-05| -|npm|fast-random|1.8769195768399497e-05| -|npm|flatted|1.8769195768399497e-05| -|npm|fs.realpath|1.8769195768399497e-05| -|npm|has-unicode|1.8769195768399497e-05| -|npm|iconv-lite|1.8769195768399497e-05| -|npm|ignore-walk|1.8769195768399497e-05| -|npm|ini|1.8769195768399497e-05| -|npm|is-fullwidth-code-point|1.8769195768399497e-05| -|npm|jsdocs|1.8769195768399497e-05| -|npm|mimic-response|1.8769195768399497e-05| -|npm|needle|1.8769195768399497e-05| -|npm|node|1.8769195768399497e-05| -|npm|nopt|1.8769195768399497e-05| -|npm|npm|1.8769195768399497e-05| -|npm|npm-bundled|1.8769195768399497e-05| -|npm|npm-normalize-package-bin|1.8769195768399497e-05| -|npm|npm-packlist|1.8769195768399497e-05| -|npm|number-is-nan|1.8769195768399497e-05| -|npm|odex|1.8769195768399497e-05| -|npm|os-homedir|1.8769195768399497e-05| -|npm|os-tmpdir|1.8769195768399497e-05| -|npm|osenv|1.8769195768399497e-05| -|npm|path-is-absolute|1.8769195768399497e-05| -|npm|rc|1.8769195768399497e-05| -|npm|safer-buffer|1.8769195768399497e-05| -|npm|set-blocking|1.8769195768399497e-05| -|npm|signal-exit|1.8769195768399497e-05| -|npm|simple-concat|1.8769195768399497e-05| -|npm|string-width|1.8769195768399497e-05| -|npm|strip-json-comments|1.8769195768399497e-05| -|cran|SASmixed|1.8735133029721952e-05| -|cran|[colourpicker](https://github.com/daattali/colourpicker)|1.872350759448958e-05| -|cran|antiword|1.8703508739582562e-05| -|npm|[rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser)|1.8610759656211477e-05| -|pypi|[pickydict](https://pypi.org/project/pickydict)|1.8584768018675248e-05| -|pypi|[pyteomics](https://pypi.org/project/pyteomics)|1.858476801867523e-05| -|npm|tslint|1.8571728187919464e-05| -|cran|BiocManager|1.8396344827975552e-05| -|pypi|[pip-tools](https://pypi.org/project/pip-tools)|1.829062267253495e-05| -|pypi|[grayskull](https://pypi.org/project/grayskull)|1.8271812080536912e-05| -|pypi|[pykwalify](https://pypi.org/project/pykwalify)|1.8271812080536912e-05| -|pypi|[pdbmender](https://pypi.org/project/pdbmender)|1.8271812080536912e-05| -|pypi|[delphi4py](https://pypi.org/project/delphi4py)|1.8271812080536912e-05| -|pypi|[docker](https://github.com/docker/docker-py)|1.8248154661498552e-05| -|cran|spam|1.822464494756175e-05| -|cran|acepack|1.821623651396542e-05| -|cran|htmlTable|1.821623651396542e-05| -|pypi|[ghp-import](https://pypi.org/project/ghp-import)|1.8165890736779996e-05| -|pypi|[snuggs](https://pypi.org/project/snuggs)|1.8165890736779996e-05| -|pypi|[breathe](https://github.com/michaeljones/breathe)|1.8124161073825577e-05| -|pypi|[scanpydoc](https://pypi.org/project/scanpydoc)|1.801911680708268e-05| -|cran|measurements|1.7945529721955894e-05| -|cran|NISTunits|1.7945529721955894e-05| -|pypi|[marshmallow](https://pypi.org/project/marshmallow)|1.791257190795783e-05| -|cran|gbm|1.7897614130835604e-05| -|npm|glob|1.7806315915627996e-05| -|cran|protolite|1.7797219558964525e-05| -|npm|babel-core|1.7756468617390166e-05| -|cran|geepack|1.766064567160788e-05| -|pypi|[descartes](http://bitbucket.org/sgillies/descartes/)|1.76075029731175e-05| -|cran|bigmemory|1.759947267497603e-05| -|pypi|[rdkit](https://pypi.org/project/rdkit)|1.7477385468339657e-05| -|npm|tsconfig-paths|1.7401725790987533e-05| -|npm|replace|1.7401725790987533e-05| -|npm|node-qunit-phantomjs|1.7401725790987533e-05| -|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|1.7348716719522087e-05| -|cran|[geosphere](NA)|1.7340623751641903e-05| -|cran|ks|1.7322627037392137e-05| -|pypi|[annoy](https://pypi.org/project/annoy)|1.7271040893742966e-05| -|pypi|[sphinxcontrib.programoutput](https://pypi.org/project/sphinxcontrib.programoutput)|1.7271040893742966e-05| -|pypi|[visdom](https://pypi.org/project/visdom)|1.7271040893742966e-05| -|pypi|[nmslib](https://pypi.org/project/nmslib)|1.7271040893742966e-05| -|pypi|[pyemd](https://pypi.org/project/pyemd)|1.7271040893742966e-05| -|pypi|[Morfessor](https://pypi.org/project/Morfessor)|1.7271040893742966e-05| -|pypi|[Pyro4](https://pypi.org/project/Pyro4)|1.7271040893742966e-05| -|cran|[origami](https://tlverse.org/origami/)|1.7252699153778834e-05| -|npm|codecov|1.7249552085935044e-05| -|rubygems|rubocop-performance|1.7216135783984516e-05| -|cran|RNetCDF|1.720956740589441e-05| -|cran|glmmTMB|1.7198430992053167e-05| -|cran|fixest|1.7198430992053167e-05| -|cran|cplm|1.7198430992053167e-05| -|cran|betareg|1.7198430992053167e-05| -|cran|AER|1.7198430992053167e-05| -|cran|signal|1.716298999349802e-05| -|npm|chai-passport-strategy|1.7129823825503355e-05| -|npm|passport-strategy|1.7129823825503355e-05| -|cran|[Ckmeans.1d.dp](NA)|1.7065842677894037e-05| -|cran|klaR|1.6931168920108788e-05| -|pypi|[panel](https://pypi.org/project/panel)|1.681776512666658e-05| -|pypi|[pathos](https://github.com/uqfoundation/pathos)|1.681208053691276e-05| -|pypi|[aiosignal](https://github.com/aio-libs/aiosignal)|1.680216006874349e-05| -|pypi|[types-dataclasses](https://pypi.org/project/types-dataclasses)|1.6793944926964074e-05| -|pypi|[hdf5plugin](https://pypi.org/project/hdf5plugin)|1.6757169005491153e-05| -|pypi|[psims](https://pypi.org/project/psims)|1.6757169005491153e-05| -|cran|[jsonld](https://docs.ropensci.org/jsonld)|1.6723736474455594e-05| -|rubygems|hoe|1.6668367346938774e-05| -|cran|doMC|1.6634467881112177e-05| -|pypi|[sphinxcontrib.mermaid](https://pypi.org/project/sphinxcontrib.mermaid)|1.6610738255033557e-05| -|pypi|[mdit-py-plugins](https://pypi.org/project/mdit-py-plugins)|1.6610738255033557e-05| -|pypi|[markdown-it-py](https://pypi.org/project/markdown-it-py)|1.6610738255033557e-05| -|cran|qvalue|1.6610738255033557e-05| -|cran|subprocess|1.6610738255033557e-05| -|cran|tensorA|1.6592484696511544e-05| -|npm|concat-stream|1.656510435872852e-05| -|pypi|[databases](https://pypi.org/project/databases)|1.6542887824791697e-05| -|cran|[EML](https://docs.ropensci.org/EML/)|1.6531639501438178e-05| -|npm|gulp-uglify|1.6493393950249175e-05| -|cran|scatterplot3d|1.6459222381686843e-05| -|pypi|[noodles](https://pypi.org/project/noodles)|1.643408437200383e-05| -|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|1.6344577887672222e-05| -|pypi|[pulumi](https://github.com/pulumi/pulumi)|1.628503750493487e-05| -|pypi|[AssertionLib](https://pypi.org/project/AssertionLib)|1.6215244487056573e-05| -|npm|murl|1.612218712988551e-05| -|npm|protein|1.612218712988551e-05| -|npm|network-address|1.612218712988551e-05| -|pypi|[kgt](https://pypi.org/project/kgt)|1.612218712988551e-05| -|pypi|[x21](https://pypi.org/project/x21)|1.612218712988551e-05| -|cran|[wesanderson](https://github.com/karthik/wesanderson)|1.607399671277907e-05| -|cran|coxme|1.5945648489736737e-05| -|cran|[downloader](https://github.com/wch/downloader)|1.5936066450328216e-05| -|pypi|[pytest-console-scripts](https://pypi.org/project/pytest-console-scripts)|1.578692633752683e-05| -|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|1.578692633752683e-05| -|cran|VennDiagram|1.5733516483516484e-05| -|pypi|[colorcet](https://pypi.org/project/colorcet)|1.5705925683417905e-05| -|pypi|[gurobipy](https://pypi.org/project/gurobipy)|1.570469798657718e-05| -|cran|loder|1.56743485984998e-05| -|cran|ore|1.56743485984998e-05| -|pypi|[mizani](https://pypi.org/project/mizani)|1.5661553211888782e-05| -|cran|nor1mix|1.5661553211888782e-05| -|cran|diptest|1.5661553211888782e-05| -|cran|changepoint|1.5661553211888782e-05| -|cran|linprog|1.5661553211888782e-05| -|cran|magic|1.5661553211888782e-05| -|cran|modeldata|1.5661553211888782e-05| -|cran|[fst](http://www.fstpackage.org)|1.561009331950362e-05| -|pypi|[cronutils](https://github.com/zagaran/cronutils)|1.5596937328670004e-05| -|pypi|[proto-plus](https://pypi.org/project/proto-plus)|1.5596937328670004e-05| -|pypi|[pycrypto](https://pypi.org/project/pycrypto)|1.5596937328670004e-05| -|pypi|[pycryptodomex](https://pypi.org/project/pycryptodomex)|1.5596937328670004e-05| -|pypi|[zstd](https://pypi.org/project/zstd)|1.5596937328670004e-05| -|cran|reprex|1.5523981335485255e-05| -|pypi|[tensorflow-estimator](https://pypi.org/project/tensorflow-estimator)|1.5503355704697986e-05| -|cran|lgr|1.5471257659760723e-05| -|cran|scico|1.538188261881934e-05| -|cran|rcartocolor|1.538188261881934e-05| -|npm|[tslint-config-prettier](https://github.com/prettier/tslint-config-prettier#readme)|1.5226510067114093e-05| -|npm|microbundle|1.5226510067114093e-05| -|npm|mathjs|1.5226510067114093e-05| -|npm|const-version|1.5226510067114093e-05| -|pypi|[bumpversion](https://pypi.org/project/bumpversion)|1.5226510067114093e-05| -|cran|RcppDE|1.5226510067114093e-05| -|cran|gdalUtils|1.5226510067114093e-05| -|cran|emld|1.5107861936721012e-05| -|cran|FNN|1.5025796979865772e-05| -|cran|BiocVersion|1.4955864948243822e-05| -|rubygems|coveralls|1.48857876296221e-05| -|cran|rstantools|1.4822010748443132e-05| -|cran|rhub|1.4814827476821185e-05| -|cran|gmailr|1.4814827476821185e-05| -|cran|foghorn|1.4814827476821185e-05| -|cran|rversions|1.4814827476821185e-05| -|pypi|[ephem](https://pypi.org/project/ephem)|1.4791466922339405e-05| -|cran|tm.lexicon.GeneralInquirer|1.478812043661037e-05| -|cran|Rpoppler|1.478812043661037e-05| -|cran|Rcampdf|1.478812043661037e-05| -|cran|filehash|1.478812043661037e-05| -|cran|[fuzzyjoin](https://github.com/dgrtwo/fuzzyjoin)|1.4608931337119259e-05| -|npm|[is-plain-object](https://github.com/jonschlinkert/is-plain-object)|1.458037212368169e-05| -|pypi|[click-repl](https://pypi.org/project/click-repl)|1.447319249542404e-05| -|pypi|[click-didyoumean](https://pypi.org/project/click-didyoumean)|1.447319249542404e-05| -|pypi|[IPython](https://ipython.org)|1.446874877984237e-05| -|cran|PolynomF|1.4425114800423877e-05| -|pypi|[selenium](https://www.selenium.dev)|1.4376892935295342e-05| -|cran|tokenizers|1.4370083447611593e-05| -|cran|lmerTest|1.436563974977609e-05| -|npm|jsmd|1.423777564717162e-05| -|npm|is-mergeable-object|1.423777564717162e-05| -|pypi|[pathspec](https://pypi.org/project/pathspec)|1.4173682022675311e-05| -|npm|gzip-size|1.411473314157878e-05| -|cran|bignum|1.4055240061951471e-05| -|cran|shinyWidgets|1.397240122530318e-05| -|cran|metafor|1.392513845356126e-05| -|cran|RSpectra|1.3921380632790028e-05| -|cran|future.callr|1.3899200185791646e-05| -|cran|solrium|1.3820969159475886e-05| -|cran|party|1.3806522504787483e-05| -|npm|accepts|1.3794112766428201e-05| -|cran|[haven](https://haven.tidyverse.org)|1.3709512693317786e-05| -|cran|FastRWeb|1.3703859060402684e-05| -|cran|quantmod|1.3703859060402684e-05| -|cran|truncreg|1.3661951234529893e-05| -|cran|panelr|1.3661951234529893e-05| -|cran|metaBMA|1.3661951234529893e-05| -|cran|lfe|1.3661951234529893e-05| -|cran|ivreg|1.3661951234529893e-05| -|cran|GLMMadaptive|1.3661951234529893e-05| -|cran|clubSandwich|1.3661951234529893e-05| -|cran|cgam|1.3661951234529893e-05| -|cran|blme|1.3661951234529893e-05| -|cran|bbmle|1.3661951234529893e-05| -|cran|aod|1.3661951234529893e-05| -|cran|geojsonlint|1.3644534995206136e-05| -|cran|PASWR|1.3624456080831918e-05| -|rubygems|byebug|1.3607293489876077e-05| -|pypi|[kopt](https://pypi.org/project/kopt)|1.3534675615212528e-05| -|cran|ggfittext|1.3534675615212528e-05| -|cran|taxadb|1.3525886864813038e-05| -|cran|assertive.code|1.3488419034162587e-05| -|cran|assertive.reflection|1.3488419034162587e-05| -|cran|assertive.data.us|1.3488419034162587e-05| -|cran|assertive.data.uk|1.3488419034162587e-05| -|cran|assertive.data|1.3488419034162587e-05| -|cran|assertive.models|1.3488419034162587e-05| -|cran|assertive.matrices|1.3488419034162587e-05| -|cran|assertive.sets|1.3488419034162587e-05| -|cran|assertive.files|1.3488419034162587e-05| -|cran|assertive.datetimes|1.3488419034162587e-05| -|cran|assertive.strings|1.3488419034162587e-05| -|cran|assertive.numbers|1.3488419034162587e-05| -|cran|assertive.types|1.3488419034162587e-05| -|cran|assertive.properties|1.3488419034162587e-05| -|cran|assertive.base|1.3488419034162587e-05| -|cran|gsl|1.3417467021522793e-05| -|pypi|[vtk](https://pypi.org/project/vtk)|1.3400457569110298e-05| -|npm|terser|1.3392531309923298e-05| -|pypi|[uvicorn](https://pypi.org/project/uvicorn)|1.329715918480706e-05| -|pypi|[starlette](https://pypi.org/project/starlette)|1.329715918480706e-05| -|pypi|[httplib2](https://pypi.org/project/httplib2)|1.3263635504300972e-05| -|npm|del|1.3156972839947052e-05| -|cran|Biobase|1.3084509525420193e-05| -|pypi|[librosa](https://librosa.org)|1.3077810402684565e-05| -|rubygems|thor|1.303264963703602e-05| -|rubygems|rake-compiler-dock|1.30023519894535e-05| -|pypi|[eventlet](https://pypi.org/project/eventlet)|1.299821907957814e-05| -|cran|[clisymbols](https://github.com/gaborcsardi/clisymbols)|1.2991184556079449e-05| -|rubygems|[github-pages](https://github.com/github/pages-gem)|1.2919463087248357e-05| -|pypi|[black>=20.8b1](https://pypi.org/project/black>=20.8b1)|1.2905109632817462e-05| -|pypi|[importlib_metadata>=0.7](https://pypi.org/project/importlib_metadata>=0.7)|1.2905109632817462e-05| -|pypi|[h5py>=3](https://pypi.org/project/h5py>=3)|1.2905109632817462e-05| -|pypi|[npx](https://pypi.org/project/npx)|1.2897749703908409e-05| -|pypi|[meshplex](https://pypi.org/project/meshplex)|1.2897749703908409e-05| -|pypi|[googleapis-common-protos](https://github.com/googleapis/python-api-common-protos)|1.2784418614595858e-05| -|cran|wordcloud|1.2771629468704595e-05| -|cran|clusterGeneration|1.2767570553170202e-05| -|cran|[mlr3misc](https://mlr3misc.mlr-org.com)|1.2745392920473153e-05| -|cran|bs4Dash|1.2739085133059142e-05| -|cran|rticles|1.2735364068891936e-05| -|cran|locfit|1.2725352927563067e-05| -|cran|nonnest2|1.267238579779173e-05| -|cran|mlogit|1.267238579779173e-05| -|cran|logger|1.2602146175971683e-05| -|cran|leaps|1.2599518769820781e-05| -|pypi|[botocore](https://pypi.org/project/botocore)|1.258454842899849e-05| -|cran|geometry|1.254506232023012e-05| -|pypi|[param](https://pypi.org/project/param)|1.2530208782868791e-05| -|pypi|[pyct](https://pypi.org/project/pyct)|1.2530208782868791e-05| -|cran|stm|1.2524445863718962e-05| -|cran|topicmodels|1.2524445863718962e-05| -|pypi|[hacking](https://docs.openstack.org/hacking/latest/)|1.2494439117929052e-05| -|pypi|[numkit](https://pypi.org/project/numkit)|1.2458053691275167e-05| -|cran|FMStable|1.2458053691275167e-05| -|cran|tree|1.2458053691275167e-05| -|cran|sparsesvd|1.2458053691275167e-05| -|pypi|[cmocean](https://pypi.org/project/cmocean)|1.244677943454098e-05| -|pypi|[numcodecs](https://pypi.org/project/numcodecs)|1.2436252097315436e-05| -|npm|rollup-plugin-replace|1.2389922411917785e-05| -|npm|babel-plugin-external-helpers|1.2389922411917785e-05| -|rubygems|timecop|1.230550609505547e-05| -|rubygems|actionmailer|1.2230927270236953e-05| -|cran|Bessel|1.222734899328859e-05| -|pypi|[pip-api](https://pypi.org/project/pip-api)|1.2213756241610739e-05| -|pypi|[requirementslib](https://pypi.org/project/requirementslib)|1.2213756241610739e-05| -|pypi|[pipreqs](https://pypi.org/project/pipreqs)|1.2213756241610739e-05| -|npm|csso|1.2181208053691275e-05| -|npm|google-closure-compiler|1.2181208053691275e-05| -|npm|commander|1.2181208053691275e-05| -|npm|uglify-es|1.2181208053691275e-05| -|npm|ora|1.2181208053691275e-05| -|npm|update-notifier|1.2181208053691275e-05| -|npm|crass|1.2181208053691275e-05| -|npm|sqwish|1.2181208053691275e-05| -|npm|clean-css|1.2181208053691275e-05| -|npm|html-minifier|1.2181208053691275e-05| -|npm|node-version|1.2181208053691275e-05| -|pypi|[datatable](https://pypi.org/project/datatable)|1.2181208053691275e-05| -|pypi|[stevedore](https://pypi.org/project/stevedore)|1.2181208053691275e-05| -|pypi|[oslo.utils](https://pypi.org/project/oslo.utils)|1.2181208053691275e-05| -|pypi|[oslo.serialization](https://pypi.org/project/oslo.serialization)|1.2181208053691275e-05| -|pypi|[oslo.i18n](https://pypi.org/project/oslo.i18n)|1.2181208053691275e-05| -|pypi|[oslo.config](https://pypi.org/project/oslo.config)|1.2181208053691275e-05| -|pypi|[debtcollector](https://pypi.org/project/debtcollector)|1.2181208053691275e-05| -|pypi|[emoji](https://pypi.org/project/emoji)|1.2181208053691275e-05| -|pypi|[pynumpress](https://pypi.org/project/pynumpress)|1.2181208053691275e-05| -|pypi|[user-agents](https://pypi.org/project/user-agents)|1.2181208053691274e-05| -|rubygems|json|1.2179876288962372e-05| -|npm|parseurl|1.2145746713437568e-05| -|cran|humaniformat|1.2138616417139911e-05| -|pypi|[dataclasses-json](https://github.com/lidatong/dataclasses-json)|1.2132352941176475e-05| -|npm|ascli|1.2059395973154362e-05| -|cran|dbscan|1.2033721819793664e-05| -|cran|tracerer|1.1948074885199575e-05| -|rubygems|rails-dom-testing|1.1932611970962882e-05| -|cran|stabledist|1.1904788332472895e-05| -|rubygems|actionpack|1.1839388439939734e-05| -|npm|execa|1.1810305885389779e-05| -|cran|spacetime|1.1748787204552085e-05| -|pypi|[aiohttp-remotes](https://pypi.org/project/aiohttp-remotes)|1.1746164908916588e-05| -|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|1.1746164908916588e-05| -|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|1.1746164908916588e-05| -|pypi|[clickclick](https://pypi.org/project/clickclick)|1.1746164908916588e-05| -|pypi|[sas7bdat](https://pypi.org/project/sas7bdat)|1.1540091840339102e-05| -|pypi|[sas-kernel](https://pypi.org/project/sas-kernel)|1.1540091840339102e-05| -|pypi|[saspy](https://pypi.org/project/saspy)|1.1540091840339102e-05| -|npm|bluebird|1.1523699664429529e-05| -|cran|[fdrtool](https://strimmerlab.github.io/software/fdrtool/)|1.149974186886939e-05| -|cran|move|1.1469319271332694e-05| -|npm|isexe|1.141988255033557e-05| -|npm|[jade](http://jade-lang.com)|1.141988255033557e-05| -|npm|superagent|1.141988255033557e-05| -|npm|connect-flash|1.141988255033557e-05| -|pypi|[portray](https://pypi.org/project/portray)|1.141988255033557e-05| -|pypi|[typing-inspect](https://pypi.org/project/typing-inspect)|1.141988255033557e-05| -|pypi|[marshmallow-enum](https://pypi.org/project/marshmallow-enum)|1.141988255033557e-05| -|cran|debugme|1.1397173670860951e-05| -|cran|sm|1.13411247396436e-05| -|cran|goftest|1.13411247396436e-05| -|cran|tensor|1.13411247396436e-05| -|cran|spatstat.sparse|1.13411247396436e-05| -|pypi|[nbclient](https://pypi.org/project/nbclient)|1.1282318352788151e-05| -|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|1.1282318352788151e-05| -|pypi|[sphinx-autobuild](https://pypi.org/project/sphinx-autobuild)|1.1247293464365616e-05| -|npm|compressible|1.1238614573346115e-05| -|npm|bytes|1.1238614573346115e-05| -|npm|[rollup-plugin-uglify](https://github.com/TrySound/rollup-plugin-uglify)|1.1226090604026845e-05| -|cran|[rdflib](https://github.com/ropensci/rdflib)|1.11868237227777e-05| -|package.json|github/nlesc-sherlock/Rig|1.1185682326621925e-05| -|package.json|github/vibbits/phyd3|1.1185682326621925e-05| -|package.json|github/mathjax/MathJax|1.1185682326621925e-05| -|package.json|github/tobiasrausch/alfred|1.1185682326621925e-05| -|package.json|github/research-software-directory/research-software-directory|1.1185682326621925e-05| -|package.json|github/eweitz/ideogram|1.1185682326621925e-05| -|package.json|github/bio-tools/biotoolsSum|1.1185682326621925e-05| -|package.json|github/fairdataihub/SPARClink|1.1185682326621925e-05| -|package.json|github/amkram/shusher|1.1185682326621925e-05| -|package.json|github/PopMedNet-Team/popmednet|1.1185682326621925e-05| -|package.json|github/tortellini-tools/action|1.1185682326621925e-05| -|package.json|github/citation-file-format/cff-initializer-javascript|1.1185682326621925e-05| -|package.json|github/CrowdTruth/CrowdTruth|1.1185682326621925e-05| -|package.json|github/EMResearch/EvoMaster|1.1185682326621925e-05| -|package.json|github/bramvandijk88/cacatoo|1.1185682326621925e-05| -|package.json|github/Yomguithereal/talisman|1.1185682326621925e-05| -|package.json|github/PathwayCommons/grounding-search|1.1185682326621925e-05| -|package.json|github/DorianDepriester/mtex2Gmsh|1.1185682326621925e-05| -|package.json|github/pmkruyen/dearscholar|1.1185682326621925e-05| -|package.json|github/davidhoksza/MolArt|1.1185682326621925e-05| -|package.json|github/MichaelSel/edoJS|1.1185682326621925e-05| -|package.json|github/phelelani/nf-rnaSeqMetagen|1.1185682326621925e-05| -|package.json|github/klevis-a/kinematics-vis|1.1185682326621925e-05| -|package.json|github/ci-for-research/self-hosted-runners|1.1185682326621925e-05| -|package.json|github/NLeSC/case-law-app|1.1185682326621925e-05| -|package.json|github/NLeSC/ExtJS-DateTime|1.1185682326621925e-05| -|package.json|github/NLeSC/nlesc-serverless-boilerplate|1.1185682326621925e-05| -|package.json|github/NLeSC/docker-couch-admin|1.1185682326621925e-05| -|package.json|github/NLeSC/UncertaintyVisualization|1.1185682326621925e-05| -|package.json|github/NLeSC/xenon-flow|1.1185682326621925e-05| -|package.json|github/NLeSC/DiVE|1.1185682326621925e-05| -|package.json|github/NLeSC/pattyvis|1.1185682326621925e-05| -|package.json|github/NLeSC/spot|1.1185682326621925e-05| -|package.json|github/eWaterCycle/setup-singularity|1.1185682326621925e-05| -|package.json|github/eWaterCycle/eWaterleaf|1.1185682326621925e-05| -|package.json|github/eWaterCycle/setup-grpc|1.1185682326621925e-05| -|package.json|github/eWaterCycle/Cesium-NcWMS|1.1185682326621925e-05| -|package.json|github/eucp-project/storyboards|1.1185682326621925e-05| -|package.json|github/AA-ALERT/frbcat-web|1.1185682326621925e-05| -|package.json|github/sonjageorgievska/CClusTera|1.1185682326621925e-05| -|package.json|github/TNOCS/csWeb|1.1185682326621925e-05| -|package.json|github/meta-logic/sequoia|1.1185682326621925e-05| -|package.json|github/cinemascience/cinema_snap|1.1185682326621925e-05| -|package.json|github/lumen-org/lumen|1.1185682326621925e-05| -|package.json|github/dondi/GRNsight|1.1185682326621925e-05| -|package.json|github/interactivereport/OmicsView0|1.1185682326621925e-05| -|package.json|github/ci-for-science/self-hosted-runners|1.1185682326621925e-05| -|package.json|github/ADAH-EviDENce/evidence|1.1185682326621925e-05| -|package.json|github/iomega/paired-data-form|1.1185682326621925e-05| -|package.json|github/iomega/zenodo-upload|1.1185682326621925e-05| -|package.json|github/wangjun1996/VisFeature|1.1185682326621925e-05| -|package.json|github/MolMeDB/MolMeDB|1.1185682326621925e-05| -|package.json|gitlab/metafundev/metafun|1.1185682326621925e-05| -|package.json|gitlab/magnumpi/magnumpi|1.1185682326621925e-05| -|package.json|gitlab/geekysquirrel/bigx|1.1185682326621925e-05| -|setup.py|github/dask/dask|1.1185682326621925e-05| -|setup.py|github/Magritte-code/Magritte|1.1185682326621925e-05| -|setup.py|github/cbalbin-FIU/Epitopedia|1.1185682326621925e-05| -|setup.py|github/ECSHackWeek/impedance.py|1.1185682326621925e-05| -|setup.py|github/slzarate/parliament2|1.1185682326621925e-05| -|setup.py|github/cas-bioinf/rboAnalyzer|1.1185682326621925e-05| -|setup.py|github/malonge/RagTag|1.1185682326621925e-05| -|setup.py|github/MDAnalysis/mdanalysis|1.1185682326621925e-05| -|setup.py|github/vsoch/gridtest|1.1185682326621925e-05| -|setup.py|github/Quantum-Dynamics-Hub/libra-code|1.1185682326621925e-05| -|setup.py|github/SandoghdarLab/PiSCAT|1.1185682326621925e-05| -|setup.py|github/tylunel/pvpumpingsystem|1.1185682326621925e-05| -|setup.py|github/cadop/seg1d|1.1185682326621925e-05| -|setup.py|github/twesterhout/lattice-symmetries|1.1185682326621925e-05| -|setup.py|github/UNSW-CEEM/nempy|1.1185682326621925e-05| -|setup.py|github/potassco/clingo|1.1185682326621925e-05| -|setup.py|github/NLESC-JCER/QMCTorch|1.1185682326621925e-05| -|setup.py|github/IMMM-SFA/mosartwmpy|1.1185682326621925e-05| -|setup.py|github/COVID-IWG/epimargin|1.1185682326621925e-05| -|setup.py|github/SCECcode/pycsep|1.1185682326621925e-05| -|setup.py|github/indralab/pybiopax|1.1185682326621925e-05| -|setup.py|github/qpv-research-group/solcore5|1.1185682326621925e-05| -|setup.py|github/mishioo/tesliper|1.1185682326621925e-05| -|setup.py|github/aiidateam/kiwipy|1.1185682326621925e-05| -|setup.py|github/amusecode/amuse|1.1185682326621925e-05| -|setup.py|github/rodluger/starry_process|1.1185682326621925e-05| -|setup.py|github/skovaka/UNCALLED|1.1185682326621925e-05| -|setup.py|github/glotzerlab/freud|1.1185682326621925e-05| -|setup.py|github/glotzerlab/coxeter|1.1185682326621925e-05| -|setup.py|github/TriPed-Robot/TriP|1.1185682326621925e-05| -|setup.py|github/odb9402/CNNPeaks|1.1185682326621925e-05| -|setup.py|github/AlexMikes/AutoFunc|1.1185682326621925e-05| -|setup.py|github/s-goldman/Dusty-Evolved-Star-Kit|1.1185682326621925e-05| -|setup.py|github/FreBio/komics|1.1185682326621925e-05| -|setup.py|github/Nico-Curti/rFBP|1.1185682326621925e-05| -|setup.py|github/brainets/frites|1.1185682326621925e-05| -|setup.py|github/0xCoto/Virgo|1.1185682326621925e-05| -|setup.py|github/recipy/recipy|1.1185682326621925e-05| -|setup.py|github/abrupt-climate/hyper-canny|1.1185682326621925e-05| -|setup.py|github/athulpg007/AMAT|1.1185682326621925e-05| -|setup.py|github/AlexanderLabWHOI/EUKulele|1.1185682326621925e-05| -|setup.py|github/NKI-CCB/PRECISE|1.1185682326621925e-05| -|setup.py|github/multiscale/muscle3|1.1185682326621925e-05| -|setup.py|github/ni1o1/transbigdata|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/ceiba-cli|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/insilico-server|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/ceiba|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/Moka|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/flamingo|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/swan|1.1185682326621925e-05| -|setup.py|github/nlesc-nano/CAT|1.1185682326621925e-05| -|setup.py|github/HIPS/autograd|1.1185682326621925e-05| -|setup.py|github/sebhaan/geobo|1.1185682326621925e-05| -|setup.py|github/SouthGreenPlatform/PyRice|1.1185682326621925e-05| -|setup.py|github/ml-evs/matador|1.1185682326621925e-05| -|setup.py|github/conda/conda|1.1185682326621925e-05| -|setup.py|github/SCM-NV/qmflows-namd|1.1185682326621925e-05| -|setup.py|github/SCM-NV/qmflows|1.1185682326621925e-05| -|setup.py|github/SCM-NV/pyZacros|1.1185682326621925e-05| -|setup.py|github/RaRe-Technologies/gensim|1.1185682326621925e-05| -|setup.py|github/lantunes/cellpylib|1.1185682326621925e-05| -|setup.py|github/singularityhub/singularity-hpc|1.1185682326621925e-05| -|setup.py|github/singularityhub/singularity-compose|1.1185682326621925e-05| -|setup.py|github/DeltaRCM/pyDeltaRCM|1.1185682326621925e-05| -|setup.py|github/numba/numba|1.1185682326621925e-05| -|setup.py|github/clawpack/clawpack|1.1185682326621925e-05| -|setup.py|github/fruzsinaagocs/oscode|1.1185682326621925e-05| -|setup.py|github/rajeshrinet/pystokes|1.1185682326621925e-05| -|setup.py|github/era-urban/wrfpy|1.1185682326621925e-05| -|setup.py|github/NeuralEnsemble/PyNN|1.1185682326621925e-05| -|setup.py|github/Materials-Consortia/optimade-python-tools|1.1185682326621925e-05| -|setup.py|github/mzy2240/ESA|1.1185682326621925e-05| -|setup.py|github/Electrostatics/apbs|1.1185682326621925e-05| -|setup.py|github/fakedrtom/oncogemini|1.1185682326621925e-05| -|setup.py|github/panoptes-organization/panoptes|1.1185682326621925e-05| -|setup.py|github/circuitgraph/circuitgraph|1.1185682326621925e-05| -|setup.py|github/hiddenSymmetries/simsopt|1.1185682326621925e-05| -|setup.py|github/jiahecui/SenAOReFoc|1.1185682326621925e-05| -|setup.py|github/jollejolles/pirecorder|1.1185682326621925e-05| -|setup.py|github/adbar/htmldate|1.1185682326621925e-05| -|setup.py|github/nlesc/scriptcwl|1.1185682326621925e-05| -|setup.py|github/swiftsim/swiftsimio|1.1185682326621925e-05| -|setup.py|github/nlppln/nlppln|1.1185682326621925e-05| -|setup.py|github/zarr-developers/zarr-python|1.1185682326621925e-05| -|setup.py|github/KALMUS-Color-Toolkit/KALMUS|1.1185682326621925e-05| -|setup.py|github/elwinter/nnde|1.1185682326621925e-05| -|setup.py|github/davidebolo1993/VISOR|1.1185682326621925e-05| -|setup.py|github/davidebolo1993/TRiCoLOR|1.1185682326621925e-05| -|setup.py|github/KathrynJones1/catwoman|1.1185682326621925e-05| -|setup.py|github/medema-group/bigslice|1.1185682326621925e-05| -|setup.py|github/FlowModelingControl/flowtorch|1.1185682326621925e-05| -|setup.py|github/felixchenier/kineticstoolkit|1.1185682326621925e-05| -|setup.py|github/yatiml/yatiml|1.1185682326621925e-05| -|setup.py|github/dpalmasan/TRUNAJOD2.0|1.1185682326621925e-05| -|setup.py|github/fitbenchmarking/fitbenchmarking|1.1185682326621925e-05| -|setup.py|github/ketch/nodepy|1.1185682326621925e-05| -|setup.py|github/Theano/Theano|1.1185682326621925e-05| -|setup.py|github/jianhuupenn/SpaGCN|1.1185682326621925e-05| -|setup.py|github/opimwue/ddop|1.1185682326621925e-05| -|setup.py|github/ModellingWebLab/chaste-codegen|1.1185682326621925e-05| -|setup.py|github/SynthSys/pyOmeroUpload|1.1185682326621925e-05| -|setup.py|github/RTIInternational/gobbli|1.1185682326621925e-05| -|setup.py|github/ConorMacBride/mcalf|1.1185682326621925e-05| -|setup.py|github/ComparativeGenomicsToolkit/cactus|1.1185682326621925e-05| -|setup.py|github/htjb/maxsmooth|1.1185682326621925e-05| -|setup.py|github/parallelwindfarms/byteparsing|1.1185682326621925e-05| -|setup.py|github/fermisurfaces/IFermi|1.1185682326621925e-05| -|setup.py|github/jbuisine/macop|1.1185682326621925e-05| -|setup.py|github/BritishGeologicalSurvey/pyvolcans|1.1185682326621925e-05| -|setup.py|github/meinardmueller/libfmp|1.1185682326621925e-05| -|setup.py|github/meinardmueller/synctoolbox|1.1185682326621925e-05| -|setup.py|github/EISy-as-Py/hardy|1.1185682326621925e-05| -|setup.py|github/ERA-URBAN/fm128_radar|1.1185682326621925e-05| -|setup.py|github/arabic-digital-humanities/adhtools|1.1185682326621925e-05| -|setup.py|github/JohannesBuchner/BXA|1.1185682326621925e-05| -|setup.py|github/spyder-ide/spyder|1.1185682326621925e-05| -|setup.py|github/shirtsgroup/physical_validation|1.1185682326621925e-05| -|setup.py|github/Singh-Lab/DeMaSk|1.1185682326621925e-05| -|setup.py|github/aspuru-guzik-group/funsies|1.1185682326621925e-05| -|setup.py|github/bethgelab/foolbox|1.1185682326621925e-05| -|setup.py|github/ynop/audiomate|1.1185682326621925e-05| -|setup.py|github/PfizerRD/sit2standpy|1.1185682326621925e-05| -|setup.py|github/shilpagarg/WHdenovo|1.1185682326621925e-05| -|setup.py|github/bio-ontology-research-group/deepgoplus|1.1185682326621925e-05| -|setup.py|github/samaygarg/fuelcell|1.1185682326621925e-05| -|setup.py|github/mscroggs/symfem|1.1185682326621925e-05| -|setup.py|github/comprna/reorientexpress|1.1185682326621925e-05| -|setup.py|github/cupy/cupy|1.1185682326621925e-05| -|setup.py|github/edwardoughton/itmlogic|1.1185682326621925e-05| -|setup.py|github/3D-e-Chem/sygma|1.1185682326621925e-05| -|setup.py|github/3D-e-Chem/kripodb|1.1185682326621925e-05| -|setup.py|github/DynaSlum/satsense|1.1185682326621925e-05| -|setup.py|github/coljac/sensie|1.1185682326621925e-05| -|setup.py|github/CEED/libCEED|1.1185682326621925e-05| -|setup.py|github/aalhossary/pyemgpipeline|1.1185682326621925e-05| -|setup.py|github/easybuilders/easybuild|1.1185682326621925e-05| -|setup.py|github/dmnfarrell/snpgenie|1.1185682326621925e-05| -|setup.py|github/dmnfarrell/epitopepredict|1.1185682326621925e-05| -|setup.py|github/HillLab/SomaticSiMu|1.1185682326621925e-05| -|setup.py|github/compomics/DeepLC|1.1185682326621925e-05| -|setup.py|github/zdelrosario/py_grama|1.1185682326621925e-05| -|setup.py|github/nicolet5/DiffCapAnalyzer|1.1185682326621925e-05| -|setup.py|github/DrMarc/slab|1.1185682326621925e-05| -|setup.py|github/SirSharpest/NarrowEscapeSimulator|1.1185682326621925e-05| -|setup.py|github/antoinediez/Sisyphe|1.1185682326621925e-05| -|setup.py|github/TPI-Immunogenetics/igmat|1.1185682326621925e-05| -|setup.py|github/BackmanLab/PWSpy|1.1185682326621925e-05| -|setup.py|github/IKNL/vantage6|1.1185682326621925e-05| -|setup.py|github/matplotlib/matplotlib|1.1185682326621925e-05| -|setup.py|github/LiberTEM/LiberTEM|1.1185682326621925e-05| -|setup.py|github/virgesmith/neworder|1.1185682326621925e-05| -|setup.py|github/smog-server/OpenSMOG|1.1185682326621925e-05| -|setup.py|github/volkamerlab/opencadd|1.1185682326621925e-05| -|setup.py|github/kerkelae/disimpy|1.1185682326621925e-05| -|setup.py|github/NLeSC/noodles|1.1185682326621925e-05| -|setup.py|github/NLeSC/mcfly|1.1185682326621925e-05| -|setup.py|github/NLeSC/cptm|1.1185682326621925e-05| -|setup.py|github/NLeSC/boatswain|1.1185682326621925e-05| -|setup.py|github/NLeSC/Massive-PotreeConverter|1.1185682326621925e-05| -|setup.py|github/idptools/metapredict|1.1185682326621925e-05| -|setup.py|github/eWaterCycle/grpc4bmi|1.1185682326621925e-05| -|setup.py|github/eWaterCycle/jupyterlab_thredds|1.1185682326621925e-05| -|setup.py|github/EpistasisLab/regens|1.1185682326621925e-05| -|setup.py|github/EpistasisLab/tpot|1.1185682326621925e-05| -|setup.py|github/BartoszBartmanski/StoSpa2|1.1185682326621925e-05| -|setup.py|github/BioSTEAMDevelopmentGroup/thermosteam|1.1185682326621925e-05| -|setup.py|github/girder/viime|1.1185682326621925e-05| -|setup.py|github/AA-ALERT/frbcatdb|1.1185682326621925e-05| -|setup.py|github/PyPSA/atlite|1.1185682326621925e-05| -|setup.py|github/ORNL/tx2|1.1185682326621925e-05| -|setup.py|github/Yu-Group/veridical-flow|1.1185682326621925e-05| -|setup.py|github/hknd23/idcempy|1.1185682326621925e-05| -|setup.py|github/MrMinimal64/multivar_horner|1.1185682326621925e-05| -|setup.py|github/popgenmethods/smcpp|1.1185682326621925e-05| -|setup.py|github/rgerum/pylustrator|1.1185682326621925e-05| -|setup.py|github/eScatter/pyelsepa|1.1185682326621925e-05| -|setup.py|github/MD-Studio/cerulean|1.1185682326621925e-05| -|setup.py|github/KIT-MBS/pyREX|1.1185682326621925e-05| -|setup.py|github/ekaterinailin/AltaiPony|1.1185682326621925e-05| -|setup.py|github/benhid/Sequoya|1.1185682326621925e-05| -|setup.py|github/linqs/psl|1.1185682326621925e-05| -|setup.py|github/21cmFAST/21cmFAST|1.1185682326621925e-05| -|setup.py|github/jmschrei/pomegranate|1.1185682326621925e-05| -|setup.py|github/OpenMDAO/dymos|1.1185682326621925e-05| -|setup.py|github/bio-phys/BioEn|1.1185682326621925e-05| -|setup.py|github/tariqdaouda/CAMAP|1.1185682326621925e-05| -|setup.py|github/fair-software/howfairis|1.1185682326621925e-05| -|setup.py|github/fair-software/fairtally|1.1185682326621925e-05| -|setup.py|github/samuelefiorini/tangle|1.1185682326621925e-05| -|setup.py|github/colour-science/colour|1.1185682326621925e-05| -|setup.py|github/chasmani/piecewise-regression|1.1185682326621925e-05| -|setup.py|github/stammler/simframe|1.1185682326621925e-05| -|setup.py|github/MillionConcepts/lhorizon|1.1185682326621925e-05| -|setup.py|github/mjacob1002/Eir|1.1185682326621925e-05| -|setup.py|github/symmy596/SurfinPy|1.1185682326621925e-05| -|setup.py|github/symmy596/Polypy|1.1185682326621925e-05| -|setup.py|github/szymon-datalions/pyinterpolate|1.1185682326621925e-05| -|setup.py|github/rgmyr/corebreakout|1.1185682326621925e-05| -|setup.py|github/dynamicslab/pysindy|1.1185682326621925e-05| -|setup.py|github/tool-bin/ukbcc|1.1185682326621925e-05| -|setup.py|github/neuralhydrology/neuralhydrology|1.1185682326621925e-05| -|setup.py|github/wdecoster/nanopack|1.1185682326621925e-05| -|setup.py|github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY|1.1185682326621925e-05| -|setup.py|github/rhayes777/PyAutoFit|1.1185682326621925e-05| -|setup.py|github/dmey/synthia|1.1185682326621925e-05| -|setup.py|github/sambit-giri/tools21cm|1.1185682326621925e-05| -|setup.py|github/nlesc-ave/ave-rest-service|1.1185682326621925e-05| -|setup.py|github/Filter-Bubble/e2e-Dutch|1.1185682326621925e-05| -|setup.py|github/cdslaborg/paramonte|1.1185682326621925e-05| -|setup.py|github/snakemake/snakemake|1.1185682326621925e-05| -|setup.py|github/thejasvibr/bat_beamshapes|1.1185682326621925e-05| -|setup.py|github/actris-cloudnet/cloudnetpy|1.1185682326621925e-05| -|setup.py|github/xenon-middleware/pyxenon|1.1185682326621925e-05| -|setup.py|github/DrafProject/elmada|1.1185682326621925e-05| -|setup.py|github/equib/pyEQUIB|1.1185682326621925e-05| -|setup.py|github/dfujim/bfit|1.1185682326621925e-05| -|setup.py|github/atomneb/AtomNeb-py|1.1185682326621925e-05| -|setup.py|github/oschwengers/referenceseeker|1.1185682326621925e-05| -|setup.py|github/oschwengers/platon|1.1185682326621925e-05| -|setup.py|github/oschwengers/bakta|1.1185682326621925e-05| -|setup.py|github/Effective-Quadratures/Effective-Quadratures|1.1185682326621925e-05| -|setup.py|github/AlphonsG/Rainbow-Optical-Flow-For-ALI|1.1185682326621925e-05| -|setup.py|github/fAndreuzzi/BisPy|1.1185682326621925e-05| -|setup.py|github/KBNLresearch/ochre|1.1185682326621925e-05| -|setup.py|github/CLARIAH/grlc|1.1185682326621925e-05| -|setup.py|github/carlosborca/CrystaLattE|1.1185682326621925e-05| -|setup.py|github/Oftatkofta/cellocity|1.1185682326621925e-05| -|setup.py|github/biocore/scikit-bio|1.1185682326621925e-05| -|setup.py|github/raspishake/rsudp|1.1185682326621925e-05| -|setup.py|github/davemlz/eemont|1.1185682326621925e-05| -|setup.py|github/LBNL-ETA/MSWH|1.1185682326621925e-05| -|setup.py|github/ghislainv/forestatrisk|1.1185682326621925e-05| -|setup.py|github/Kuifje02/vrpy|1.1185682326621925e-05| -|setup.py|github/bootphon/phonemizer|1.1185682326621925e-05| -|setup.py|github/fair-data/fairdatapoint-client|1.1185682326621925e-05| -|setup.py|github/cabb99/open3spn2|1.1185682326621925e-05| -|setup.py|github/benvanwerkhoven/kernel_tuner|1.1185682326621925e-05| -|setup.py|github/CFSAN-Biostatistics/SeroTools|1.1185682326621925e-05| -|setup.py|github/iomega/spec2vec|1.1185682326621925e-05| -|setup.py|github/SMTG-UCL/surfaxe|1.1185682326621925e-05| -|setup.py|github/lkmklsmn/DrivAER|1.1185682326621925e-05| -|setup.py|github/Bahler-Lab/pyphe|1.1185682326621925e-05| -|setup.py|github/FSEC-Photovoltaics/pvrpm-lcoe|1.1185682326621925e-05| -|setup.py|github/wilkelab/Opfi|1.1185682326621925e-05| -|setup.py|github/radifar/PyPLIF-HIPPOS|1.1185682326621925e-05| -|setup.py|github/jorisparet/partycls|1.1185682326621925e-05| -|setup.py|github/exafmm/exafmm-t|1.1185682326621925e-05| -|setup.py|github/scipion-em/scipion-em-continuousflex|1.1185682326621925e-05| -|setup.py|github/ElectionDataAnalysis/electiondata|1.1185682326621925e-05| -|setup.py|github/elkebir-group/Jumper|1.1185682326621925e-05| -|setup.py|github/richteague/disksurf|1.1185682326621925e-05| -|setup.py|github/RamanLab/iCOMIC|1.1185682326621925e-05| -|setup.py|github/DeepRank/pdb2sql|1.1185682326621925e-05| -|setup.py|github/DeepRank/pssmgen|1.1185682326621925e-05| -|setup.py|github/DeepRank/DeepRank-GNN|1.1185682326621925e-05| -|setup.py|github/DeepRank/deeprank|1.1185682326621925e-05| -|setup.py|github/DeepRank/iScore|1.1185682326621925e-05| -|setup.py|github/pybamm-team/liionpack|1.1185682326621925e-05| -|setup.py|github/weecology/retriever|1.1185682326621925e-05| -|setup.py|github/matchms/ms2deepscore|1.1185682326621925e-05| -|setup.py|github/matchms/matchms|1.1185682326621925e-05| -|setup.py|github/sagepublishing/rejected_article_tracker_pkg|1.1185682326621925e-05| -|setup.py|github/icecube/FIRESONG|1.1185682326621925e-05| -|setup.py|gitlab/BioimageInformaticsGroup/openphi|1.1185682326621925e-05| -|setup.py|gitlab/jason-rumengan/pyarma|1.1185682326621925e-05| -|setup.py|gitlab/Molcas/OpenMolcas|1.1185682326621925e-05| -|setup.py|gitlab/gims-developers/gims|1.1185682326621925e-05| -|setup.py|gitlab/picos-api/picos|1.1185682326621925e-05| -|setup.py|gitlab/octopus-code/octopus|1.1185682326621925e-05| -|setup.py|gitlab/fduchate/predihood|1.1185682326621925e-05| -|DESCRIPTION|github/OwenWard/ppdiag|1.1185682326621925e-05| -|DESCRIPTION|github/SwissClinicalTrialOrganisation/secuTrialR|1.1185682326621925e-05| -|DESCRIPTION|github/VincentAlcazer/StatAid|1.1185682326621925e-05| -|DESCRIPTION|github/zoometh/iconr|1.1185682326621925e-05| -|DESCRIPTION|github/tidymodels/infer|1.1185682326621925e-05| -|DESCRIPTION|github/bommert/stabm|1.1185682326621925e-05| -|DESCRIPTION|github/Dulab2020/ARMT|1.1185682326621925e-05| -|DESCRIPTION|github/IMMM-SFA/gamut|1.1185682326621925e-05| -|DESCRIPTION|github/SJTU-CGM/ivTerm|1.1185682326621925e-05| -|DESCRIPTION|github/r-cas/caracas|1.1185682326621925e-05| -|DESCRIPTION|github/sachsmc/cosinor|1.1185682326621925e-05| -|DESCRIPTION|github/metaOmics/MetaPath|1.1185682326621925e-05| -|DESCRIPTION|github/dgrun/FateID|1.1185682326621925e-05| -|DESCRIPTION|github/stemangiola/tidyHeatmap|1.1185682326621925e-05| -|DESCRIPTION|github/ropenscilabs/gendercoder|1.1185682326621925e-05| -|DESCRIPTION|github/ropenscilabs/qcoder|1.1185682326621925e-05| -|DESCRIPTION|github/ropenscilabs/allcontributors|1.1185682326621925e-05| -|DESCRIPTION|github/ropenscilabs/r2readthedocs|1.1185682326621925e-05| -|DESCRIPTION|github/tbep-tech/tbeptools|1.1185682326621925e-05| -|DESCRIPTION|github/flosalbizziae/kataegis|1.1185682326621925e-05| -|DESCRIPTION|github/pratheesh3780/grapesAgri1|1.1185682326621925e-05| -|DESCRIPTION|github/cran/irtplay|1.1185682326621925e-05| -|DESCRIPTION|github/GaryBAYLOR/mixR|1.1185682326621925e-05| -|DESCRIPTION|github/tlverse/hal9001|1.1185682326621925e-05| -|DESCRIPTION|github/wadpac/GGIR|1.1185682326621925e-05| -|DESCRIPTION|github/CTU-Bern/presize|1.1185682326621925e-05| -|DESCRIPTION|github/samhforbes/PupillometryR|1.1185682326621925e-05| -|DESCRIPTION|github/radio1988/OneStopRNAseq|1.1185682326621925e-05| -|DESCRIPTION|github/ejikeugba/serp|1.1185682326621925e-05| -|DESCRIPTION|github/humanfactors/FIPS|1.1185682326621925e-05| -|DESCRIPTION|github/BrianAronson/birankr|1.1185682326621925e-05| -|DESCRIPTION|github/DidierMurilloF/FielDHub|1.1185682326621925e-05| -|DESCRIPTION|github/haoharryfeng/NeuCA|1.1185682326621925e-05| -|DESCRIPTION|github/constantAmateur/SoupX|1.1185682326621925e-05| -|DESCRIPTION|github/anwarbio/bioassays|1.1185682326621925e-05| -|DESCRIPTION|github/jessecambon/tidygeocoder|1.1185682326621925e-05| -|DESCRIPTION|github/rhenkin/visxhclust|1.1185682326621925e-05| -|DESCRIPTION|github/r-spatialecology/shar|1.1185682326621925e-05| -|DESCRIPTION|github/mdsteiner/EFAtools|1.1185682326621925e-05| -|DESCRIPTION|github/koenderks/jaspAudit|1.1185682326621925e-05| -|DESCRIPTION|github/JonasRieger/ldaPrototype|1.1185682326621925e-05| -|DESCRIPTION|github/bcgov/shinyssdtools|1.1185682326621925e-05| -|DESCRIPTION|github/bcgov/bcdata|1.1185682326621925e-05| -|DESCRIPTION|github/vbaliga/gaussplotR|1.1185682326621925e-05| -|DESCRIPTION|github/IndrajeetPatil/ggstatsplot|1.1185682326621925e-05| -|DESCRIPTION|github/IndrajeetPatil/statsExpressions|1.1185682326621925e-05| -|DESCRIPTION|github/kadyb/rgugik|1.1185682326621925e-05| -|DESCRIPTION|github/rickhelmus/patRoon|1.1185682326621925e-05| -|DESCRIPTION|github/TomKellyGenetics/graphsim|1.1185682326621925e-05| -|DESCRIPTION|github/tinglabs/scAIDE|1.1185682326621925e-05| -|DESCRIPTION|github/fumi-github/omicwas|1.1185682326621925e-05| -|DESCRIPTION|github/lrnv/cort|1.1185682326621925e-05| -|DESCRIPTION|github/mmahmoudian/sivs|1.1185682326621925e-05| -|DESCRIPTION|github/lydialucchesi/Vizumap|1.1185682326621925e-05| -|DESCRIPTION|github/VNNikolaidis/nnlib2Rcpp|1.1185682326621925e-05| -|DESCRIPTION|github/ecological-cities/home2park|1.1185682326621925e-05| -|DESCRIPTION|github/BMILAB/scLINE|1.1185682326621925e-05| -|DESCRIPTION|github/ColemanRHarris/mxnorm|1.1185682326621925e-05| -|DESCRIPTION|github/RajLabMSSM/echolocatoR|1.1185682326621925e-05| -|DESCRIPTION|github/r-spatial/rgee|1.1185682326621925e-05| -|DESCRIPTION|github/SofieVG/FlowSOM|1.1185682326621925e-05| -|DESCRIPTION|github/weizhouUMICH/SAIGE|1.1185682326621925e-05| -|DESCRIPTION|github/SchlossLab/mikropml|1.1185682326621925e-05| -|DESCRIPTION|github/mcsiple/mmrefpoints|1.1185682326621925e-05| -|DESCRIPTION|github/nhejazi/medoutcon|1.1185682326621925e-05| -|DESCRIPTION|github/nhejazi/txshift|1.1185682326621925e-05| -|DESCRIPTION|github/abschneider/StrainHub|1.1185682326621925e-05| -|DESCRIPTION|github/bblodfon/emba|1.1185682326621925e-05| -|DESCRIPTION|github/tgrimes/SeqNet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-archive/monkeylearn|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-archive/reviewer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-archive/rodev|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-archive/arresteddev|1.1185682326621925e-05| -|DESCRIPTION|github/julia-wrobel/registr|1.1185682326621925e-05| -|DESCRIPTION|github/VBlesius/RHRT|1.1185682326621925e-05| -|DESCRIPTION|github/kendomaniac/rCASC|1.1185682326621925e-05| -|DESCRIPTION|github/kendomaniac/docker4seq|1.1185682326621925e-05| -|DESCRIPTION|github/CornellLabofOrnithology/auk|1.1185682326621925e-05| -|DESCRIPTION|github/oneilsh/tidytensor|1.1185682326621925e-05| -|DESCRIPTION|github/YuLab-SMU/treeio|1.1185682326621925e-05| -|DESCRIPTION|github/cjbarrie/academictwitteR|1.1185682326621925e-05| -|DESCRIPTION|github/epiforecasts/covidregionaldata|1.1185682326621925e-05| -|DESCRIPTION|github/andyphilips/dynamac|1.1185682326621925e-05| -|DESCRIPTION|github/ShixiangWang/sigminer|1.1185682326621925e-05| -|DESCRIPTION|github/ezer/PAFway|1.1185682326621925e-05| -|DESCRIPTION|github/snystrom/memes|1.1185682326621925e-05| -|DESCRIPTION|github/dankelley/oce|1.1185682326621925e-05| -|DESCRIPTION|github/rcarragh/c212|1.1185682326621925e-05| -|DESCRIPTION|github/johannes-titz/cofad|1.1185682326621925e-05| -|DESCRIPTION|github/Jinsl-lab/SDImpute|1.1185682326621925e-05| -|DESCRIPTION|github/meenakshi-kushwaha/mmaqshiny|1.1185682326621925e-05| -|DESCRIPTION|github/donaldRwilliams/BGGM|1.1185682326621925e-05| -|DESCRIPTION|github/donaldRwilliams/GGMnonreg|1.1185682326621925e-05| -|DESCRIPTION|github/ants-project/ANTs|1.1185682326621925e-05| -|DESCRIPTION|github/JSB-UCLA/scPNMF|1.1185682326621925e-05| -|DESCRIPTION|github/NLeSC/compressing-the-sky|1.1185682326621925e-05| -|DESCRIPTION|github/NLeSC/EEG-epilepsy-diagnosis|1.1185682326621925e-05| -|DESCRIPTION|github/takfung/ResDisMapper|1.1185682326621925e-05| -|DESCRIPTION|github/ClaudioZandonella/PRDA|1.1185682326621925e-05| -|DESCRIPTION|github/RETURN-project/BenchmarkRecovery|1.1185682326621925e-05| -|DESCRIPTION|github/HajkD/LTRpred|1.1185682326621925e-05| -|DESCRIPTION|github/OrlandoLam/SAMT|1.1185682326621925e-05| -|DESCRIPTION|github/insilico/cncv|1.1185682326621925e-05| -|DESCRIPTION|github/KiranLDA/PAMLr|1.1185682326621925e-05| -|DESCRIPTION|github/MRCIEU/metaboprep|1.1185682326621925e-05| -|DESCRIPTION|github/zhouzilu/DENDRO|1.1185682326621925e-05| -|DESCRIPTION|github/Hegghammer/daiR|1.1185682326621925e-05| -|DESCRIPTION|github/ComtekAdvancedStructures/cmstatr|1.1185682326621925e-05| -|DESCRIPTION|github/r-lib/credentials|1.1185682326621925e-05| -|DESCRIPTION|github/r-lib/gert|1.1185682326621925e-05| -|DESCRIPTION|github/MAnalytics/akmedoids|1.1185682326621925e-05| -|DESCRIPTION|github/MAnalytics/opitools|1.1185682326621925e-05| -|DESCRIPTION|github/mingzehuang/latentcor|1.1185682326621925e-05| -|DESCRIPTION|github/raredd/kmdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-org/pkgreviewr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-org/rotemplate|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-org/roblog|1.1185682326621925e-05| -|DESCRIPTION|github/asancpt/caffsim|1.1185682326621925e-05| -|DESCRIPTION|github/wesleyburr/subMaldi|1.1185682326621925e-05| -|DESCRIPTION|github/easystats/effectsize|1.1185682326621925e-05| -|DESCRIPTION|github/easystats/parameters|1.1185682326621925e-05| -|DESCRIPTION|github/easystats/correlation|1.1185682326621925e-05| -|DESCRIPTION|github/easystats/performance|1.1185682326621925e-05| -|DESCRIPTION|github/arcaldwell49/SimplyAgree|1.1185682326621925e-05| -|DESCRIPTION|github/adithirgis/pollucheck|1.1185682326621925e-05| -|DESCRIPTION|github/IMB-Computational-Genomics-Lab/scGPS|1.1185682326621925e-05| -|DESCRIPTION|github/aranyics/ReDCM|1.1185682326621925e-05| -|DESCRIPTION|github/pmoulos/metaseqR2|1.1185682326621925e-05| -|DESCRIPTION|github/USEPA/nsink|1.1185682326621925e-05| -|DESCRIPTION|github/mrc-ide/individual|1.1185682326621925e-05| -|DESCRIPTION|github/niceume/datasailr|1.1185682326621925e-05| -|DESCRIPTION|github/hope-data-science/tidyfst|1.1185682326621925e-05| -|DESCRIPTION|github/yiling0210/APIR|1.1185682326621925e-05| -|DESCRIPTION|github/isoverse/isoreader|1.1185682326621925e-05| -|DESCRIPTION|github/alan-turing-institute/DetectorChecker|1.1185682326621925e-05| -|DESCRIPTION|github/azizka/IUCNN|1.1185682326621925e-05| -|DESCRIPTION|github/mlr-org/mcboost|1.1185682326621925e-05| -|DESCRIPTION|github/xoopR/set6|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/pkgstats|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/srr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/pkgcheck|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/roreviewapi|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci-review-tools/autotest|1.1185682326621925e-05| -|DESCRIPTION|github/JGCRI/rfasst|1.1185682326621925e-05| -|DESCRIPTION|github/JGCRI/plutus|1.1185682326621925e-05| -|DESCRIPTION|github/JGCRI/ambrosia|1.1185682326621925e-05| -|DESCRIPTION|github/ArkajyotiSaha/RandomForestsGLS|1.1185682326621925e-05| -|DESCRIPTION|github/alexander-pastukhov/bistablehistory|1.1185682326621925e-05| -|DESCRIPTION|github/nevrome/bleiglas|1.1185682326621925e-05| -|DESCRIPTION|github/saeyslab/nichenetr|1.1185682326621925e-05| -|DESCRIPTION|github/saeyslab/PeacoQC|1.1185682326621925e-05| -|DESCRIPTION|github/prdm0/ropenblas|1.1185682326621925e-05| -|DESCRIPTION|github/Sydney-Informatics-Hub/OmixLitMiner|1.1185682326621925e-05| -|DESCRIPTION|github/rauschenberger/joinet|1.1185682326621925e-05| -|DESCRIPTION|github/jorittmo/singcar|1.1185682326621925e-05| -|DESCRIPTION|github/tidyverse/glue|1.1185682326621925e-05| -|DESCRIPTION|github/llrs/experDesign|1.1185682326621925e-05| -|DESCRIPTION|github/martin3141/spant|1.1185682326621925e-05| -|DESCRIPTION|github/LindaNab/mecor|1.1185682326621925e-05| -|DESCRIPTION|github/GabrielNakamura/FishPhyloMaker|1.1185682326621925e-05| -|DESCRIPTION|github/david-barnett/microViz|1.1185682326621925e-05| -|DESCRIPTION|github/ArgoCanada/argodata|1.1185682326621925e-05| -|DESCRIPTION|github/akcochrane/TEfits|1.1185682326621925e-05| -|DESCRIPTION|github/saezlab/PHONEMeS|1.1185682326621925e-05| -|DESCRIPTION|github/signaturescience/skater|1.1185682326621925e-05| -|DESCRIPTION|github/timoast/signac|1.1185682326621925e-05| -|DESCRIPTION|github/dpseidel/stmove|1.1185682326621925e-05| -|DESCRIPTION|github/ramadatta/CPgeneProfiler|1.1185682326621925e-05| -|DESCRIPTION|github/lasseignelab/CINmetrics|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/phylocomr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/webmockr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gistr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnaturalearthhires|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cffr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/comtradr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/FedData|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rfigshare|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nasapower|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxlist|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/unrtf|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/wateRinfo|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/wdman|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcoreoa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/awardFindR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/katex|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ijtiff|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/lingtypology|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/qualtRics|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/GSODR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rrlite|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gittargets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rtweet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnoaa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/antiword|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bittrex|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mcbette|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/geonames|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jstor|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/baRcodeR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/clifro|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/plotly|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/opencontext|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/chromer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/robotstxt|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/osmdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/coder|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rbhl|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/hunspell|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/visdat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tacmagic|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/binman|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/riem|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/restez|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mregions|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pdftools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rentrez|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/writexl|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/magick|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rfisheries|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/eia|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/git2r|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/refsplitr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/geojsonio|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/colocr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/osmplotr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/osmextract|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/oai|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/beautier|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/finch|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rromeo|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tic|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/workloopR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rgbif|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/emld|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ecoengine|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/seasl|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tif|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jsonvalidate|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/CoordinateCleaner|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/RNeXML|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bikedata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/AntWeb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/spatsoc|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/hydroscoper|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tesseract|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rsnps|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/git2rdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/essurvey|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rperseus|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/codemetar|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cde|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cRegulome|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/graphql|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tiler|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/isdparser|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/phylogram|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mapr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jsonld|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/treestartr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/DataPackageR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/assertr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnaturalearthdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/getlandsat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/worrms|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rtika|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pangaear|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/BaseSet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cld3|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rzmq|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/chirps|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/textreuse|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rerddap|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/fulltext|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rppo|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/microdemic|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnaturalearth|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rebird|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/biomartr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/DataSpaceR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/hoardr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rorcid|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bowerbird|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ruODK|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rplos|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dataaimsr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/skimr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/internetarchive|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcites|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/phonfieldwork|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/elastic|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/stantargets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tabulizer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/treebase|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ckanr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/DoOR.data|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bibtex|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/phylotaR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdataretriever|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/skynet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/NLMR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gtfsr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/outcomerate|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mctq|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dbparser|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/arkdb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/RSelenium|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/fauxpas|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/opencv|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cyphr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rfema|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxadb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/terrainr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/osfr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bold|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dataspice|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/iheatmapr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/opencage|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ramlegacy|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/allodb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdryad|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jenkins|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/circle|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rmangal|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/zbank|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/spelling|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/paleobioDB|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/qpdf|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdatacite|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tidypmc|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/photosearcher|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/USAboundariesData|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rWBclimate|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pathviewr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/refimpact|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxizedb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/historydata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/censo2017|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/helminthR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ssh|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/opentripplanner|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ghql|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/natserv|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/excluder|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rotl|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cchecks|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/popler|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/outsider|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nbaR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/europepmc|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/spocc|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/brranching|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/epubr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/Rclean|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rusda|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jagstargets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/plater|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/av|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/outsider.base|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rglobi|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tokenizers|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rsat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/MtreeRing|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ots|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/smapr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/wellknown|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/MODISTools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/medrxivr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/infx|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/timefuzz|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/fingertipsR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/randgeo|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/chlorpromazineR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/suppdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnpn|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcrossref|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/PostcodesioR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/slopes|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nlrx|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/exoplanets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/landscapetools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/staypuft|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/treedata.table|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/getCRUCLdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/parzer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bib2df|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/RefManageR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/vcr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/solrium|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tinkr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/citesdb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/piggyback|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdflib|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/drake|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/hddtools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/EndoMineR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/beastier|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rgnparser|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/camsRad|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/neotoma|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/xslt|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/USAboundaries|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ezknitr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tidync|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rvertnet|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/UCSCXenaTools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pixelclasser|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/citecorp|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gitignore|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/jqr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/stats19|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cld2|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/outsider.devtools|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pubchunks|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/geojsonlint|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxview|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nodbi|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/MODIStsp|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/targets|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/addressable|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/Rpolyhedra|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rfishbase|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/SymbiotaR2|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdhs|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/prism|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/taxize|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/patentsview|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/cleanEHR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/aRxiv|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/onekp|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/handlr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/scrubr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/lightr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/ritis|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rdefra|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rAvis|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/c14bazAAR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/datapack|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mapscanner|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/grainchanger|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/sofa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rnassqs|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcol|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/antanym|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/crul|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rAltmetric|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/bomrang|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/namext|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tradestatistics|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/gutenbergr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/DoOR.functions|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rgpdd|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/wikitaxa|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rbace|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/trufflesniffer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tracerer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dittodb|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rinat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rrricanesdata|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/pendulum|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/dbhydroR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tidyhydat|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rredlist|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/babette|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/weathercan|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/charlatan|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/traits|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/mauricer|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/stplanr|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/webchem|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rrricanes|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/roadoi|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/tarchetypes|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/EML|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/virtuoso|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/rcitoid|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/conditionz|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/googleLanguageR|1.1185682326621925e-05| -|DESCRIPTION|github/ropensci/nomisr|1.1185682326621925e-05| -|DESCRIPTION|github/msalibian/RBF|1.1185682326621925e-05| -|DESCRIPTION|github/chainsawriot/sweater|1.1185682326621925e-05| -|DESCRIPTION|github/chainsawriot/oolong|1.1185682326621925e-05| -|DESCRIPTION|gitlab/ampere2/metalwalls|1.1185682326621925e-05| -|DESCRIPTION|gitlab/libreumg/dataquier|1.1185682326621925e-05| -|requirements.txt|github/lutteropp/NetRAX|1.1185682326621925e-05| -|requirements.txt|github/DSIMB/medusa|1.1185682326621925e-05| -|requirements.txt|github/ggciag/mandyoc|1.1185682326621925e-05| -|requirements.txt|github/TinkerTools/tinker9|1.1185682326621925e-05| -|requirements.txt|github/BioGearsEngine/core|1.1185682326621925e-05| -|requirements.txt|github/neuroanatomy/reorient|1.1185682326621925e-05| -|requirements.txt|github/nextstrain/nextclade|1.1185682326621925e-05| -|requirements.txt|github/mswzeus/TargetNet|1.1185682326621925e-05| -|requirements.txt|github/LSARP/ProteomicsQC|1.1185682326621925e-05| -|requirements.txt|github/JLiangLab/TransVW|1.1185682326621925e-05| -|requirements.txt|github/TeamCOMPAS/COMPAS|1.1185682326621925e-05| -|requirements.txt|github/Rohit-Kundu/ET-NET_Covid-Detection|1.1185682326621925e-05| -|requirements.txt|github/SPARC-FAIR-Codeathon/aqua|1.1185682326621925e-05| -|requirements.txt|github/Julian/jsonschema|1.1185682326621925e-05| -|requirements.txt|github/shandley/hecatomb|1.1185682326621925e-05| -|requirements.txt|github/singularityhub/sregistry|1.1185682326621925e-05| -|requirements.txt|github/MRChemSoft/mrchem|1.1185682326621925e-05| -|requirements.txt|github/CouncilDataProject/cookiecutter-cdp-deployment|1.1185682326621925e-05| -|requirements.txt|github/GilbertLabUCSF/CanDI|1.1185682326621925e-05| -|requirements.txt|github/citation-file-format/citation-file-format|1.1185682326621925e-05| -|requirements.txt|github/gvilitechltd/LibSWIFFT|1.1185682326621925e-05| -|requirements.txt|github/diCenzo-GC/Tn-Core-webserver|1.1185682326621925e-05| -|requirements.txt|github/ImperialCollegeLondon/champ|1.1185682326621925e-05| -|requirements.txt|github/broadinstitute/cromwell|1.1185682326621925e-05| -|requirements.txt|github/nlesc/embodied-emotions-scripts|1.1185682326621925e-05| -|requirements.txt|github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs|1.1185682326621925e-05| -|requirements.txt|github/he2016012996/CABnet|1.1185682326621925e-05| -|requirements.txt|github/ketch/RK-Opt|1.1185682326621925e-05| -|requirements.txt|github/arnikz/PIQMIe|1.1185682326621925e-05| -|requirements.txt|github/SWIFTSIM/emulator|1.1185682326621925e-05| -|requirements.txt|github/3d-pli/fastpli|1.1185682326621925e-05| -|requirements.txt|github/amrex-astro/Castro|1.1185682326621925e-05| -|requirements.txt|github/Single-Cell-Graph-Learning/scSGL|1.1185682326621925e-05| -|requirements.txt|github/AMReX-Astro/Nyx|1.1185682326621925e-05| -|requirements.txt|github/snowformatics/macrobot|1.1185682326621925e-05| -|requirements.txt|github/monarch-initiative/loinc2hpo|1.1185682326621925e-05| -|requirements.txt|github/hemanthpruthvi/PyAstroPol|1.1185682326621925e-05| -|requirements.txt|github/wmglab-duke/ascent|1.1185682326621925e-05| -|requirements.txt|github/villano-lab/nrCascadeSim|1.1185682326621925e-05| -|requirements.txt|github/SuLab/Wikidata-phenomizer|1.1185682326621925e-05| -|requirements.txt|github/iontorrent/TS|1.1185682326621925e-05| -|requirements.txt|github/NLeSC-GO-common-infrastructure/marzipan|1.1185682326621925e-05| -|requirements.txt|github/CAMI-challenge/CAMITAX|1.1185682326621925e-05| -|requirements.txt|github/PolymerGuy/recolo|1.1185682326621925e-05| -|requirements.txt|github/NLeSC/ShiCo|1.1185682326621925e-05| -|requirements.txt|github/jdber1/opendrop|1.1185682326621925e-05| -|requirements.txt|github/csbioinfopk/iSumoK-PseAAC|1.1185682326621925e-05| -|requirements.txt|github/labsyspharm/minerva-story|1.1185682326621925e-05| -|requirements.txt|github/ablab/TandemTools|1.1185682326621925e-05| -|requirements.txt|github/sorenwacker/ProteomicsQC|1.1185682326621925e-05| -|requirements.txt|github/grant-m-s/astronomicAL|1.1185682326621925e-05| -|requirements.txt|github/qMRLab/qMRLab|1.1185682326621925e-05| -|requirements.txt|github/LINNAE-project/SFB-Annotator|1.1185682326621925e-05| -|requirements.txt|github/BioinfoUNIBA/REDItools2|1.1185682326621925e-05| -|requirements.txt|github/onnela-lab/beiwe-backend|1.1185682326621925e-05| -|requirements.txt|github/mms-fcul/PypKa|1.1185682326621925e-05| -|requirements.txt|github/surf-eds/one-button-compute|1.1185682326621925e-05| -|requirements.txt|github/kinnala/scikit-fem|1.1185682326621925e-05| -|requirements.txt|github/UUDigitalHumanitieslab/texcavator|1.1185682326621925e-05| -|requirements.txt|github/andr1976/HydDown|1.1185682326621925e-05| -|requirements.txt|github/ot483/NetCom|1.1185682326621925e-05| -|requirements.txt|github/enveda/RPath|1.1185682326621925e-05| -|requirements.txt|github/inpefess/gym-saturation|1.1185682326621925e-05| -|requirements.txt|github/Narayana-Rao/SAR-tools|1.1185682326621925e-05| -|requirements.txt|github/erikbern/ann-benchmarks|1.1185682326621925e-05| -|requirements.txt|github/learningsimulator/learningsimulator|1.1185682326621925e-05| -|requirements.txt|github/kkjawz/coref-ee|1.1185682326621925e-05| -|requirements.txt|github/STEllAR-GROUP/hpx|1.1185682326621925e-05| -|requirements.txt|github/JuliaHCI/ADI.jl|1.1185682326621925e-05| -|requirements.txt|github/robashaw/libecpint|1.1185682326621925e-05| -|requirements.txt|github/soraxas/sbp-env|1.1185682326621925e-05| -|requirements.txt|github/zhoux85/scAdapt|1.1185682326621925e-05| -|requirements.txt|github/JLBLine/WODEN|1.1185682326621925e-05| -|requirements.txt|github/Climdyn/qgs|1.1185682326621925e-05| -|requirements.txt|gitlab/LouisLab/PiVR|1.1185682326621925e-05| -|requirements.txt|gitlab/cracklet/cracklet|1.1185682326621925e-05| -|Gemfile|github/quadram-institute-bioscience/dadaist2|1.1185682326621925e-05| -|Gemfile|github/scrook/neuroml-db|1.1185682326621925e-05| -|Gemfile|github/tudelft3d/3dfier|1.1185682326621925e-05| -|Gemfile|github/codidact/qpixel|1.1185682326621925e-05| -|go.mod|github/sylabs/singularity|1.1185682326621925e-05| -|go.mod|github/jasonyangshadow/lpmx|1.1185682326621925e-05| -|go.mod|github/linksmart/thing-directory|1.1185682326621925e-05| -|go.mod|github/mlpack/mlpack|1.1185682326621925e-05| -|go.mod|github/containers/podman|1.1185682326621925e-05| -|pypi|[moto](https://pypi.org/project/moto)|1.1168825448163192e-05| -|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|1.1168825448163192e-05| -|rubygems|activemodel|1.1112244897959182e-05| -|pypi|[Bio](https://github.com/ialbert/bio)|1.1073825503355726e-05| -|pypi|[xopen](https://github.com/pycompression/xopen/)|1.1073825503355726e-05| -|pypi|[vip-hci](https://github.com/vortex-exoplanet/VIP)|1.1073825503355726e-05| -|cran|[redux](https://github.com/richfitz/redux)|1.1073825503355726e-05| -|npm|leaflet-geotiff-2|1.1073825503355706e-05| -|pypi|[hpccm](https://github.com/NVIDIA/hpc-container-maker)|1.1073825503355706e-05| -|pypi|[requirements](http://github.com/mattack108/requirements)|1.1073825503355706e-05| -|npm|rollup-plugin-license|1.1073825503355703e-05| -|npm|babel-plugin-remove-comments|1.1073825503355703e-05| -|npm|retape|1.1073825503355703e-05| -|npm|test|1.1073825503355703e-05| -|pypi|[Shapely](https://pypi.org/project/Shapely)|1.1073825503355703e-05| -|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|1.1070234819710491e-05| -|pypi|[debugpy](https://pypi.org/project/debugpy)|1.1070234819710491e-05| -|cran|Rtsne|1.1046140939597316e-05| -|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|1.0963087248322148e-05| -|cran|[rmsfact](NA)|1.0963087248322148e-05| -|cran|[multicolor](https://github.com/aedobbyn/multicolor/)|1.0963087248322148e-05| -|cran|geomorph|1.0963087248322147e-05| -|rubygems|introspection|1.0963087248322147e-05| -|pypi|[vega-datasets](http://github.com/altair-viz/vega_datasets)|1.0950975251677852e-05| -|pypi|[altair](http://altair-viz.github.io)|1.0935402684563767e-05| -|npm|babel-eslint|1.0895834844004716e-05| -|pypi|[xlrd](http://www.python-excel.org/)|1.0872747192894585e-05| -|pypi|[yarl](https://github.com/aio-libs/yarl/)|1.07823770189542e-05| -|pypi|[m2r2](https://pypi.org/project/m2r2)|1.0748124753257008e-05| -|pypi|[types-pytz](https://pypi.org/project/types-pytz)|1.0748124753257008e-05| -|pypi|[pytest-raises](https://pypi.org/project/pytest-raises)|1.0748124753257008e-05| -|pypi|[flake8-debugger](https://pypi.org/project/flake8-debugger)|1.0748124753257008e-05| -|pypi|[yt-dlp](https://pypi.org/project/yt-dlp)|1.0748124753257008e-05| -|pypi|[webvtt-py](https://pypi.org/project/webvtt-py)|1.0748124753257008e-05| -|pypi|[truecase](https://pypi.org/project/truecase)|1.0748124753257008e-05| -|pypi|[rapidfuzz](https://pypi.org/project/rapidfuzz)|1.0748124753257008e-05| -|pypi|[google-cloud-speech](https://pypi.org/project/google-cloud-speech)|1.0748124753257008e-05| -|pypi|[ffmpeg-python](https://pypi.org/project/ffmpeg-python)|1.0748124753257008e-05| -|pypi|[pulumi-gcp](https://pypi.org/project/pulumi-gcp)|1.0748124753257008e-05| -|pypi|[pulumi-google-native](https://pypi.org/project/pulumi-google-native)|1.0748124753257008e-05| -|pypi|[fireo](https://pypi.org/project/fireo)|1.0748124753257008e-05| -|cran|ggthemes|1.0716080122249015e-05| -|pypi|[pockets](https://pypi.org/project/pockets)|1.0682331645593973e-05| -|cran|clv|1.0658557046979868e-05| -|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|1.0621835663254258e-05| -|cran|[geojson](https://docs.ropensci.org/geojson)|1.0612416107382555e-05| -|cran|MLmetrics|1.058066898859255e-05| -|rubygems|octokit|1.0578889771092999e-05| -|npm|[time-span](https://github.com/sindresorhus/time-span#readme)|1.0541430046463604e-05| -|npm|loud-rejection|1.0541430046463604e-05| -|npm|globby|1.0541430046463604e-05| -|npm|csv-spectrum|1.0541430046463604e-05| -|npm|bops|1.0541430046463604e-05| -|pypi|[pytest-tornasync](https://pypi.org/project/pytest-tornasync)|1.0541430046463604e-05| -|pypi|[nbval](https://pypi.org/project/nbval)|1.0541430046463604e-05| -|pypi|[notebook-shim](https://pypi.org/project/notebook-shim)|1.0541430046463604e-05| -|cran|ncbit|1.0541430046463604e-05| -|cran|subplex|1.0541430046463604e-05| -|cran|[shinybusy](https://github.com/dreamRs/shinybusy)|1.053091159518762e-05| -|rubygems|[sqlite3](https://github.com/sparklemotion/sqlite3-ruby)|1.0511094370634162e-05| -|pypi|[pytest-remotedata](https://pypi.org/project/pytest-remotedata)|1.0469906519654856e-05| -|cran|thor|1.0441035474592523e-05| -|cran|[fds](https://sites.google.com/site/hanlinshangswebsite/)|1.041203259827421e-05| -|rubygems|rexml|1.037616743425558e-05| -|cran|polycor|1.0287817990031584e-05| -|cran|speedglm|1.024328859060403e-05| -|pypi|[partd](http://github.com/dask/partd/)|1.021833870827161e-05| -|cran|pander|1.0208772770853326e-05| -|cran|misc3d|1.0049496644295301e-05| -|cran|aws.signature|1.000831876374711e-05| -|cran|SuperLearner|9.966442953020135e-06| -|pypi|[scooby](https://pypi.org/project/scooby)|9.966442953020133e-06| -|cran|princurve|9.966442953020133e-06| -|cran|brglm|9.966442953020133e-06| -|cran|robustbase|9.926893576222444e-06| -|pypi|[sphinx-version-warning](https://github.com/humitos/sphinx-version-warning)|9.918983700862895e-06| -|pypi|[parameterized](https://pypi.org/project/parameterized)|9.918654122722914e-06| -|cran|gistr|9.913310961968684e-06| -|rubygems|rubocop-rspec|9.90647871645952e-06| -|pypi|[kazoo](https://kazoo.readthedocs.io)|9.89723154362416e-06| -|pypi|[softlayer-messaging](https://pypi.org/project/softlayer-messaging)|9.89723154362416e-06| -|pypi|[pytest-celery](https://pypi.org/project/pytest-celery)|9.89723154362416e-06| -|pypi|[pyro4](https://pypi.org/project/pyro4)|9.89723154362416e-06| -|pypi|[python-memcached](https://pypi.org/project/python-memcached)|9.89723154362416e-06| -|pypi|[pylibmc](https://pypi.org/project/pylibmc)|9.89723154362416e-06| -|pypi|[librabbitmq](https://pypi.org/project/librabbitmq)|9.89723154362416e-06| -|pypi|[gevent](https://pypi.org/project/gevent)|9.89723154362416e-06| -|pypi|[pycouchdb](https://pypi.org/project/pycouchdb)|9.89723154362416e-06| -|pypi|[couchbase](https://pypi.org/project/couchbase)|9.89723154362416e-06| -|pypi|[pydocumentdb](https://pypi.org/project/pydocumentdb)|9.89723154362416e-06| -|pypi|[python-consul2](https://pypi.org/project/python-consul2)|9.89723154362416e-06| -|pypi|[cassandra-driver](https://pypi.org/project/cassandra-driver)|9.89723154362416e-06| -|pypi|[azure-storage-blob](https://pypi.org/project/azure-storage-blob)|9.89723154362416e-06| -|pypi|[pyArango](https://pypi.org/project/pyArango)|9.89723154362416e-06| -|cran|PCICt|9.841214282507687e-06| -|cran|gld|9.84116231844357e-06| -|cran|torch|9.838797501227887e-06| -|cran|paws|9.838797501227887e-06| -|cran|keras|9.838797501227887e-06| -|cran|clustermq|9.838797501227887e-06| -|pypi|[tox-travis](https://pypi.org/project/tox-travis)|9.788470757430488e-06| -|pypi|[win32-setctime](https://pypi.org/project/win32-setctime)|9.788470757430488e-06| -|pypi|[aiocontextvars](https://pypi.org/project/aiocontextvars)|9.788470757430488e-06| -|cran|grpreg|9.788470757430488e-06| -|cran|[ff](https://github.com/truecluster/ff)|9.775073406040256e-06| -|npm|fresh|9.772784105575632e-06| -|npm|etag|9.772784105575632e-06| -|npm|temp-path|9.772784105575632e-06| -|pypi|[fastapi](https://github.com/tiangolo/fastapi)|9.768734392071185e-06| -|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|9.728470634510925e-06| -|pypi|[deprecat](https://pypi.org/project/deprecat)|9.708526931681295e-06| -|rubygems|jekyll-feed|9.687867030201341e-06| -|pypi|[kubernetes](https://pypi.org/project/kubernetes)|9.602491300874961e-06| -|pypi|[uvloop](https://pypi.org/project/uvloop)|9.597721070875433e-06| -|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|9.597721070875433e-06| -|pypi|[pyviz-comms](https://pypi.org/project/pyviz-comms)|9.559182428309944e-06| -|cran|pvclust|9.494695847740774e-06| -|cran|themis|9.47328643825699e-06| -|cran|superpc|9.47328643825699e-06| -|cran|subselect|9.47328643825699e-06| -|cran|spls|9.47328643825699e-06| -|cran|pamr|9.47328643825699e-06| -|cran|mda|9.47328643825699e-06| -|cran|ipred|9.47328643825699e-06| -|cran|ellipse|9.47328643825699e-06| -|cran|earth|9.47328643825699e-06| -|cran|BradleyTerry2|9.47328643825699e-06| -|cran|recipes|9.47328643825699e-06| -|cran|pROC|9.47328643825699e-06| -|cran|ModelMetrics|9.47328643825699e-06| -|npm|git-state|9.42339958699019e-06| -|npm|xpath|9.42339958699019e-06| -|npm|coffeescript|9.42339958699019e-06| -|npm|coffee-coverage|9.42339958699019e-06| -|npm|[split](http://github.com/dominictarr/split)|9.420072115384617e-06| -|rubygems|method_source|9.382948397479796e-06| -|npm|gulp-if|9.374506126663365e-06| -|npm|run-sequence|9.374506126663365e-06| -|cran|yulab.utils|9.356929507938815e-06| -|rubygems|appraisal|9.322353102314752e-06| -|rubygems|tins|9.32235310231475e-06| -|cran|robustlmm|9.135906040268456e-06| -|cran|parsnip|9.135906040268456e-06| -|cran|multgee|9.135906040268456e-06| -|cran|merTools|9.135906040268456e-06| -|cran|marginaleffects|9.135906040268456e-06| -|cran|logistf|9.135906040268456e-06| -|cran|JM|9.135906040268456e-06| -|cran|gmnl|9.135906040268456e-06| -|cran|fungible|9.135906040268456e-06| -|cran|feisr|9.135906040268456e-06| -|cran|estimatr|9.135906040268456e-06| -|cran|epiR|9.135906040268456e-06| -|cran|crch|9.135906040268456e-06| -|cran|censReg|9.135906040268456e-06| -|cran|bife|9.135906040268456e-06| -|cran|bdsmatrix|9.135906040268456e-06| -|pypi|[pretty-midi](https://pypi.org/project/pretty-midi)|9.060402684563757e-06| -|npm|gulp-concat|9.035511468397373e-06| -|npm|gulp-jshint|9.035511468397373e-06| -|npm|gulp-rename|9.035511468397373e-06| -|npm|jshint-stylish|9.035511468397373e-06| -|cran|corrplot|9.011168538279101e-06| -|cran|[rfishbase](https://docs.ropensci.org/rfishbase/)|8.997483221476512e-06| -|npm|on-finished|8.994155749870934e-06| -|npm|basic-auth|8.994155749870934e-06| -|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|8.972615733679072e-06| -|pypi|[casadi](http://casadi.org)|8.961990191017037e-06| -|cran|[progressr](https://progressr.futureverse.org)|8.888202048746051e-06| -|cran|sparkline|8.838908622592372e-06| -|pypi|[qmflows](https://pypi.org/project/qmflows)|8.832694151486113e-06| -|cran|distr6|8.8269623577473e-06| -|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|8.826051884357254e-06| -|cran|geojsonsf|8.781459731543629e-06| -|rubygems|flexmock|8.770469798657717e-06| -|cran|[stringdist](https://github.com/markvanderloo/stringdist)|8.766778523489974e-06| -|cran|archive|8.766088546931415e-06| -|cran|distributional|8.761708090567151e-06| -|cran|plainview|8.755243288590603e-06| -|cran|mapdeck|8.755243288590603e-06| -|npm|zuul|8.720637583892615e-06| -|pypi|[aafigure](https://pypi.org/project/aafigure)|8.700862895493767e-06| -|cran|[mlr3](https://mlr3.mlr-org.com)|8.684990235909413e-06| -|npm|through|8.633933180913047e-06| -|cran|[RcppParallel](https://rcppcore.github.io/RcppParallel/)|8.619966442953021e-06| -|cran|rainbow|8.613854266538829e-06| -|pypi|[gensim](http://radimrehurek.com/gensim)|8.588424997820988e-06| -|cran|scagnostics|8.579172505347003e-06| -|cran|labelled|8.579172505347003e-06| -|cran|intergraph|8.579172505347003e-06| -|cran|chemometrics|8.579172505347003e-06| -|cran|broom.helpers|8.579172505347003e-06| -|cran|procmaps|8.568518191451783e-06| -|cran|MuMIn|8.524739631339424e-06| -|cran|[tidytext](http://github.com/juliasilge/tidytext)|8.454680033848205e-06| -|pypi|[tensorboard-plugin-wit](https://pypi.org/project/tensorboard-plugin-wit)|8.433144037170883e-06| -|pypi|[tensorboard-data-server](https://pypi.org/project/tensorboard-data-server)|8.433144037170883e-06| -|pypi|[google-auth-oauthlib](https://pypi.org/project/google-auth-oauthlib)|8.433144037170883e-06| -|cran|RProtoBuf|8.433144037170883e-06| -|cran|[lhs](https://github.com/bertcarnell/lhs)|8.384467881112178e-06| -|cran|limma|8.348812596799174e-06| -|cran|affy|8.348812596799174e-06| -|cran|marray|8.348812596799174e-06| -|cran|[reactable](https://glin.github.io/reactable/)|8.281707107210464e-06| -|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|8.242922743099359e-06| -|pypi|[s3fs](https://pypi.org/project/s3fs)|8.242922743099359e-06| -|pypi|[ocifs](https://pypi.org/project/ocifs)|8.242922743099359e-06| -|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|8.242922743099359e-06| -|pypi|[pygit2](https://pypi.org/project/pygit2)|8.242922743099359e-06| -|pypi|[fusepy](https://pypi.org/project/fusepy)|8.242922743099359e-06| -|pypi|[dropbox](https://pypi.org/project/dropbox)|8.242922743099359e-06| -|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|8.242922743099359e-06| -|pypi|[adlfs](https://pypi.org/project/adlfs)|8.242922743099359e-06| -|pypi|[pytest-json-report](https://pypi.org/project/pytest-json-report)|8.24261744966443e-06| -|cran|feather|8.19366528569184e-06| -|pypi|[databricks-cli](https://pypi.org/project/databricks-cli)|8.158669202885547e-06| -|pypi|[prometheus-flask-exporter](https://pypi.org/project/prometheus-flask-exporter)|8.158669202885547e-06| -|pypi|[querystring-parser](https://pypi.org/project/querystring-parser)|8.158669202885547e-06| -|pypi|[configparser](https://github.com/jaraco/configparser/)|8.148489932885945e-06| -|npm|[standard-version](https://github.com/conventional-changelog/standard-version#readme)|8.143115273987756e-06| -|cran|GenSA|8.131298960741624e-06| -|npm|updox|8.120805369127516e-06| -|npm|safename|8.120805369127516e-06| -|cran|MonetDBLite|8.120805369127516e-06| -|pypi|[google-auth-httplib2](https://pypi.org/project/google-auth-httplib2)|8.116646185839871e-06| -|cran|RgoogleMaps|8.097734899328858e-06| -|cran|systemfonts|8.079069522718239e-06| -|pypi|[boltons](https://pypi.org/project/boltons)|7.980791483452903e-06| -|pypi|[pytest-cov>=2.10](https://pypi.org/project/pytest-cov>=2.10)|7.980791483452903e-06| -|pypi|[pytest>=6.0](https://pypi.org/project/pytest>=6.0)|7.980791483452903e-06| -|pypi|[loompy>=3.0.5](https://pypi.org/project/loompy>=3.0.5)|7.980791483452903e-06| -|pypi|[scanpydoc>=0.7.3](https://pypi.org/project/scanpydoc>=0.7.3)|7.980791483452903e-06| -|pypi|[sphinx_issues](https://pypi.org/project/sphinx_issues)|7.980791483452903e-06| -|pypi|[sphinx-autodoc-typehints>=1.11.0](https://pypi.org/project/sphinx-autodoc-typehints>=1.11.0)|7.980791483452903e-06| -|pypi|[sphinx>=4.1,<4.2](https://pypi.org/project/sphinx>=4.1,<4.2)|7.980791483452903e-06| -|pypi|[packaging>=20](https://pypi.org/project/packaging>=20)|7.980791483452903e-06| -|pypi|[scipy>1.4](https://pypi.org/project/scipy>1.4)|7.980791483452903e-06| -|pypi|[numpy>=1.16.5](https://pypi.org/project/numpy>=1.16.5)|7.980791483452903e-06| -|pypi|[pandas>=1.1.1](https://pypi.org/project/pandas>=1.1.1)|7.980791483452903e-06| -|cran|gdtools|7.968158651662714e-06| -|pypi|[streamz](https://pypi.org/project/streamz)|7.954247831068915e-06| -|pypi|[nbsmoke](https://pypi.org/project/nbsmoke)|7.954247831068915e-06| -|pypi|[nbsite](https://pypi.org/project/nbsite)|7.954247831068915e-06| -|pypi|[sphinxcontrib-napoleon](https://sphinxcontrib-napoleon.readthedocs.io)|7.95372622708485e-06| -|cran|ExactData|7.944266121972571e-06| -|cran|Epi|7.917066155321188e-06| -|cran|memisc|7.917066155321188e-06| -|cran|descr|7.917066155321188e-06| -|cran|sylly.en|7.917066155321188e-06| -|cran|sylly|7.917066155321188e-06| -|pypi|[passlib](https://pypi.org/project/passlib)|7.911814054480854e-06| -|cran|[rjags](https://mcmc-jags.sourceforge.io)|7.879452762003103e-06| -|pypi|[google-cloud-core](https://github.com/googleapis/python-cloud-core)|7.876453350978352e-06| -|cran|[R.matlab](https://github.com/HenrikBengtsson/R.matlab)|7.868744007670204e-06| -|cran|[pbivnorm](https://github.com/brentonk/pbivnorm)|7.846388202048746e-06| -|cran|compiler|7.830776605944391e-06| -|cran|DoE.base|7.830776605944391e-06| -|rubygems|jekyll-sitemap|7.803586409395973e-06| -|rubygems|jekyll-github-metadata|7.803586409395973e-06| -|cran|RcppCCTZ|7.785599048602403e-06| -|rubygems|typhoeus|7.752468839884946e-06| -|pypi|[cvxopt](http://cvxopt.org)|7.751677852348993e-06| -|pypi|[soxr](https://pypi.org/project/soxr)|7.751677852348993e-06| -|pypi|[samplerate](https://pypi.org/project/samplerate)|7.751677852348993e-06| -|pypi|[pytest-mpl](https://pypi.org/project/pytest-mpl)|7.751677852348993e-06| -|pypi|[presets](https://pypi.org/project/presets)|7.751677852348993e-06| -|pypi|[sphinxcontrib-svg2pdfconverter](https://pypi.org/project/sphinxcontrib-svg2pdfconverter)|7.751677852348993e-06| -|pypi|[mir-eval](https://pypi.org/project/mir-eval)|7.751677852348993e-06| -|pypi|[sphinx-multiversion](https://pypi.org/project/sphinx-multiversion)|7.751677852348993e-06| -|pypi|[soundfile](https://pypi.org/project/soundfile)|7.751677852348993e-06| -|pypi|[resampy](https://pypi.org/project/resampy)|7.751677852348993e-06| -|pypi|[audioread](https://pypi.org/project/audioread)|7.751677852348993e-06| -|rubygems|[term-ansicolor](http://flori.github.com/term-ansicolor)|7.723498921380633e-06| -|cran|DendSer|7.709422465559873e-06| -|cran|ridigbio|7.69015659955258e-06| -|cran|rvertnet|7.69015659955258e-06| -|cran|rebird|7.69015659955258e-06| -|cran|rbison|7.69015659955258e-06| -|cran|rgbif|7.69015659955258e-06| -|npm|grunt|7.666494579246256e-06| -|npm|imagemin-svgo|7.666494579246256e-06| -|npm|imagemin-optipng|7.666494579246256e-06| -|npm|imagemin-jpegtran|7.666494579246256e-06| -|npm|imagemin-gifsicle|7.666494579246256e-06| -|npm|pretty-bytes|7.666494579246256e-06| -|npm|plur|7.666494579246256e-06| -|npm|p-map|7.666494579246256e-06| -|npm|imagemin|7.666494579246256e-06| -|cran|rnaturalearthhires|7.666494579246256e-06| -|cran|[clusterCrit](http:www.r-project.org)|7.648988242418142e-06| -|npm|houkou|7.613255033557046e-06| -|cran|picante|7.613255033557046e-06| -|cran|hisse|7.613255033557046e-06| -|cran|diversitree|7.613255033557046e-06| -|cran|sparklyr|7.613255033557046e-06| -|cran|[gargle](https://gargle.r-lib.org)|7.600358497644761e-06| -|pypi|[func-timeout](https://pypi.org/project/func-timeout)|7.587877516778523e-06| -|pypi|[jaraco.itertools](https://pypi.org/project/jaraco.itertools)|7.587877516778523e-06| -|rubygems|rspec-mocks|7.537122483221476e-06| -|rubygems|rspec-expectations|7.537122483221476e-06| -|rubygems|rspec-core|7.537122483221476e-06| -|rubygems|spoon|7.537122483221476e-06| -|cran|bayesplot|7.535174194601259e-06| -|rubygems|mini_portile2|7.520808365292424e-06| -|npm|watchify|7.4578824818518005e-06| -|npm|vinyl-source-stream|7.4578824818518005e-06| -|npm|vinyl-buffer|7.4578824818518005e-06| -|npm|gulp-gh-pages|7.4578824818518005e-06| -|npm|gulp-clean|7.4578824818518005e-06| -|npm|gulp-beautify|7.4578824818518005e-06| -|npm|gulp-babel|7.4578824818518005e-06| -|npm|babelify|7.4578824818518005e-06| -|npm|babel-plugin-transform-es2015-modules-commonjs|7.4578824818518005e-06| -|rubygems|hiredis|7.4578824818518005e-06| -|rubygems|em-synchrony|7.4578824818518005e-06| -|rubygems|aws-sigv4|7.4578824818518005e-06| -|rubygems|aws-sdk-kms|7.4578824818518005e-06| -|rubygems|aws-sdk-core|7.4578824818518005e-06| -|rubygems|bump|7.4578824818518005e-06| -|cran|svUnit|7.4578824818518e-06| -|cran|AlgDesign|7.4578824818518e-06| -|npm|resolve|7.455551893576221e-06| -|npm|eslint-plugin-react|7.437799590667449e-06| -|npm|eslint-plugin-jsx-a11y|7.437799590667449e-06| -|pypi|[pytest-env](https://pypi.org/project/pytest-env)|7.391991154547985e-06| -|pypi|[lark](https://github.com/lark-parser/lark)|7.382550335570495e-06| -|pypi|[rowan](https://github.com/glotzerlab/rowan)|7.382550335570471e-06| -|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|7.321029082774075e-06| -|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|7.310849452420901e-06| -|pypi|[nodeenv](https://pypi.org/project/nodeenv)|7.305211022199277e-06| -|pypi|[identify](https://pypi.org/project/identify)|7.305211022199277e-06| -|pypi|[cfgv](https://pypi.org/project/cfgv)|7.305211022199277e-06| -|rubygems|execjs|7.2434683604985625e-06| -|pypi|[email_validator](https://github.com/JoshData/python-email-validator)|7.219699960521136e-06| -|cran|rsyslog|7.206504904491482e-06| -|cran|logging|7.206504904491482e-06| -|npm|json-stringify-safe|7.1656625672984725e-06| -|pypi|[hyperspy](https://pypi.org/project/hyperspy)|7.165416502171338e-06| -|cran|[reproj](https://github.com/hypertidy/reproj/)|7.139656533754441e-06| -|npm|[angular-mocks](http://angularjs.org)|7.11888782358581e-06| -|npm|gulp-angular-templatecache|7.11888782358581e-06| -|npm|gulp-cssnano|7.11888782358581e-06| -|npm|gulp-less|7.11888782358581e-06| -|pypi|[Auto-FOX](https://pypi.org/project/Auto-FOX)|7.11888782358581e-06| -|pypi|[vcrpy](https://pypi.org/project/vcrpy)|7.11888782358581e-06| -|pypi|[citeproc-py](https://pypi.org/project/citeproc-py)|7.11888782358581e-06| -|cran|Rdonlp2|7.11888782358581e-06| -|cran|gamlss.dist|7.11888782358581e-06| -|cran|Rsolnp|7.11888782358581e-06| -|cran|[correlation](https://easystats.github.io/correlation/)|7.116473835691449e-06| -|cran|kml|7.066155321188892e-06| -|pypi|[aesara-theano-fallback](https://github.com/exoplanet-dev/aesara-theano-fallback)|7.0310003195909276e-06| -|pypi|[munkres](https://software.clapper.org/munkres/)|7.027620030975736e-06| -|pypi|[fs](https://github.com/PyFilesystem/pyfilesystem2)|7.027620030975736e-06| -|pypi|[xdoctest](https://pypi.org/project/xdoctest)|7.027620030975736e-06| -|pypi|[ubelt](https://pypi.org/project/ubelt)|7.027620030975736e-06| -|cran|kriging|7.027620030975736e-06| -|cran|udunits2|7.027620030975736e-06| -|cran|formula.tools|7.027620030975736e-06| -|cran|R2WinBUGS|7.027620030975736e-06| -|npm|[querystring](https://github.com/Gozala/querystring#readme)|6.979865771812081e-06| -|pypi|[zope.testing](https://pypi.org/project/zope.testing)|6.957343830665977e-06| -|pypi|[zope.event](https://pypi.org/project/zope.event)|6.957343830665977e-06| -|pypi|[repoze.sphinx.autointerface](https://pypi.org/project/repoze.sphinx.autointerface)|6.957343830665977e-06| -|pypi|[ipyvolume](https://pypi.org/project/ipyvolume)|6.899845121321631e-06| -|cran|mlr3measures|6.871450696954052e-06| -|cran|leafgl|6.851929530201342e-06| -|npm|cross-spawn|6.829069961018458e-06| -|pypi|[torchvision](https://github.com/pytorch/vision)|6.828859060402698e-06| -|pypi|[google-cloud-storage](https://pypi.org/project/google-cloud-storage)|6.82687121544903e-06| -|cran|seasonal|6.809370961690774e-06| -|cran|forecTheta|6.809370961690774e-06| -|cran|urca|6.809370961690774e-06| -|cran|fracdiff|6.809370961690774e-06| -|cran|googleAnalyticsR|6.809370961690774e-06| -|cran|bigQueryR|6.809370961690774e-06| -|pypi|[channels](https://pypi.org/project/channels)|6.790726052471019e-06| -|pypi|[pydeck](https://pypi.org/project/pydeck)|6.782718120805369e-06| -|cran|[tiff](https://www.rforge.net/tiff/)|6.767337807606269e-06| +https://github.com/ropensci/beastier/)|1.987951807228916e-05| +|pypi|[mkdocs-material-extensions](https://pypi.org/project/mkdocs-material-extensions)|1.9879518072289157e-05| +|pypi|[mkl](https://pypi.org/project/mkl)|1.9879518072289157e-05| +|cran|shapefiles|1.9879518072289157e-05| +|pypi|[towncrier](https://pypi.org/project/towncrier)|1.9867439556168666e-05| +|pypi|[httpx](https://pypi.org/project/httpx)|1.9846107117545814e-05| +|cran|[ggsignif](https://const-ae.github.io/ggsignif/)|1.9821033338095006e-05| +|cran|[ggsci](https://nanx.me/ggsci/)|1.9821033338095006e-05| +|npm|on-headers|1.9811715957235535e-05| +|pypi|[pathos](https://github.com/uqfoundation/pathos)|1.9719313287704507e-05| +|cran|[survey](http://r-survey.r-forge.r-project.org/survey/)|1.9593071445752963e-05| +|cran|sandwich|1.9593071445752963e-05| +|cran|partykit|1.957868742048941e-05| +|rubygems|test-unit|1.954197196951069e-05| +|cran|spData|1.9518072289156627e-05| +|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|1.950482472877938e-05| +|pypi|[google-crc32c](https://github.com/googleapis/python-crc32c)|1.9372397498988373e-05| +|pypi|[mwoauth](https://pypi.org/project/mwoauth)|1.93631669535284e-05| +|pypi|[wikidataintegrator](https://pypi.org/project/wikidataintegrator)|1.93631669535284e-05| +|pypi|[dash-extensions](https://pypi.org/project/dash-extensions)|1.93631669535284e-05| +|pypi|[Flask-Caching](https://pypi.org/project/Flask-Caching)|1.93631669535284e-05| +|pypi|[ipaddr](https://pypi.org/project/ipaddr)|1.93631669535284e-05| +|pypi|[progress](https://pypi.org/project/progress)|1.93631669535284e-05| +|pypi|[pytoml](https://pypi.org/project/pytoml)|1.93631669535284e-05| +|npm|[mdi](http://materialdesignicons.com)|1.93631669535284e-05| +|npm|[tippy.js](https://atomiks.github.io/tippyjs/)|1.93631669535284e-05| +|npm|[abort-controller](https://github.com/mysticatea/abort-controller#readme)|1.93631669535284e-05| +|npm|color|1.93631669535284e-05| +|npm|create-react-class|1.93631669535284e-05| +|npm|dotenv-load|1.93631669535284e-05| +|npm|iframe-resizer|1.93631669535284e-05| +|npm|isomorphic-unfetch|1.93631669535284e-05| +|npm|js-file-download|1.93631669535284e-05| +|npm|material-table|1.93631669535284e-05| +|npm|material-ui-chip-input|1.93631669535284e-05| +|npm|materialize-css|1.93631669535284e-05| +|npm|mui-datatables|1.93631669535284e-05| +|npm|next|1.93631669535284e-05| +|npm|next-env|1.93631669535284e-05| +|npm|next-redux-wrapper|1.93631669535284e-05| +|npm|nprogress|1.93631669535284e-05| +|npm|ra-data-simple-rest|1.93631669535284e-05| +|npm|react-admin|1.93631669535284e-05| +|npm|react-ga|1.93631669535284e-05| +|npm|react-json-view|1.93631669535284e-05| +|npm|react-loading|1.93631669535284e-05| +|npm|react-scroll|1.93631669535284e-05| +|npm|react-scroll-to-component|1.93631669535284e-05| +|npm|react-swipeable-views|1.93631669535284e-05| +|npm|react-wordcloud|1.93631669535284e-05| +|npm|recharts|1.93631669535284e-05| +|npm|redux-saga|1.93631669535284e-05| +|npm|serialize-error|1.93631669535284e-05| +|npm|swagger-client|1.93631669535284e-05| +|npm|swagger-ui-react|1.93631669535284e-05| +|npm|tween|1.93631669535284e-05| +|npm|uuid5|1.93631669535284e-05| +|pypi|[sphinx-autobuild](https://github.com/executablebooks/sphinx-autobuild)|1.9282987540223007e-05| +|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|1.9266351118760757e-05| +|cran|seqLogo|1.9211965875926064e-05| +|npm|codecov|1.9184370573994194e-05| +|cran|oskeyring|1.9169535283993114e-05| +|cran|ExplainPrediction|1.9169535283993114e-05| +|cran|rpart.plot|1.9169535283993114e-05| +|cran|rstatix|1.914332249472151e-05| +|pypi|[autograd](https://github.com/HIPS/autograd)|1.9123837661062394e-05| +|pypi|[numkit](https://pypi.org/project/numkit)|1.9052265399626677e-05| +|pypi|[oslo.serialization](https://pypi.org/project/oslo.serialization)|1.901277108433735e-05| +|pypi|[oslo.i18n](https://pypi.org/project/oslo.i18n)|1.901277108433735e-05| +|pypi|[debtcollector](https://pypi.org/project/debtcollector)|1.901277108433735e-05| +|cran|afex|1.8945412938420466e-05| +|pypi|[folium](https://pypi.org/project/folium)|1.8942018072289158e-05| +|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|1.8925834755572082e-05| +|cran|tester|1.883322764743183e-05| +|cran|fastICA|1.878412702516645e-05| +|rubygems|[mocha](https://mocha.jamesmead.org)|1.8690435210228667e-05| +|rubygems|kramdown-parser-gfm|1.8637048192771085e-05| +|rubygems|jekyll-theme-primer|1.8637048192771085e-05| +|rubygems|jekyll-sass-converter|1.8637048192771085e-05| +|rubygems|jekyll_test_plugin_malicious|1.8637048192771085e-05| +|cran|docopt|1.858864027538726e-05| +|cran|[tidygraph](https://tidygraph.data-imaginist.com)|1.8583518686088896e-05| +|cran|[rentrez](http://github.com/ropensci/rentrez)|1.857358003442346e-05| +|pypi|[gensim](https://pypi.org/project/gensim)|1.849790543520008e-05| +|pypi|[googleapis-common-protos](https://github.com/googleapis/python-api-common-protos)|1.8433137247954834e-05| +|cran|[snakecase](https://github.com/Tazinho/snakecase)|1.8383931568822855e-05| +|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|1.8379177085701295e-05| +|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|1.8379177085701295e-05| +|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|1.8379177085701295e-05| +|npm|[ansi-regex](https://github.com/chalk/ansi-regex#readme)|1.837859914233204e-05| +|npm|[balanced-match](https://github.com/juliangruber/balanced-match)|1.837859914233204e-05| +|npm|[brace-expansion](https://github.com/juliangruber/brace-expansion)|1.837859914233204e-05| +|npm|[cacatoo](https://github.com/bramvandijk88/cacatoo#readme)|1.837859914233204e-05| +|npm|[code-point-at](https://github.com/sindresorhus/code-point-at#readme)|1.837859914233204e-05| +|npm|[decompress-response](https://github.com/sindresorhus/decompress-response#readme)|1.837859914233204e-05| +|npm|[detect-libc](https://github.com/lovell/detect-libc#readme)|1.837859914233204e-05| +|npm|[esdoc](https://esdoc.org/)|1.837859914233204e-05| +|npm|esdoc-standard-plugin|1.837859914233204e-05| +|npm|fast-random|1.837859914233204e-05| +|npm|flatted|1.837859914233204e-05| +|npm|fs.realpath|1.837859914233204e-05| +|npm|has-unicode|1.837859914233204e-05| +|npm|iconv-lite|1.837859914233204e-05| +|npm|ignore-walk|1.837859914233204e-05| +|npm|ini|1.837859914233204e-05| +|npm|is-fullwidth-code-point|1.837859914233204e-05| +|npm|jsdocs|1.837859914233204e-05| +|npm|mimic-response|1.837859914233204e-05| +|npm|needle|1.837859914233204e-05| +|npm|node|1.837859914233204e-05| +|npm|nopt|1.837859914233204e-05| +|npm|npm|1.837859914233204e-05| +|npm|npm-bundled|1.837859914233204e-05| +|npm|npm-normalize-package-bin|1.837859914233204e-05| +|npm|npm-packlist|1.837859914233204e-05| +|npm|number-is-nan|1.837859914233204e-05| +|npm|odex|1.837859914233204e-05| +|npm|os-homedir|1.837859914233204e-05| +|npm|os-tmpdir|1.837859914233204e-05| +|npm|osenv|1.837859914233204e-05| +|npm|path-is-absolute|1.837859914233204e-05| +|npm|rc|1.837859914233204e-05| +|npm|safer-buffer|1.837859914233204e-05| +|npm|set-blocking|1.837859914233204e-05| +|npm|signal-exit|1.837859914233204e-05| +|npm|simple-concat|1.837859914233204e-05| +|npm|string-width|1.837859914233204e-05| +|npm|strip-json-comments|1.837859914233204e-05| +|cran|SASmixed|1.8345245266781407e-05| +|cran|[colourpicker](https://github.com/daattali/colourpicker)|1.8333861762840838e-05| +|cran|antiword|1.8314279094399573e-05| +|npm|[standard-version](https://github.com/conventional-changelog/standard-version#readme)|1.8311002250761285e-05| +|pypi|[configparser](https://pypi.org/project/configparser)|1.8229382771728658e-05| +|npm|[rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser)|1.8223460167199408e-05| +|pypi|[pickydict](https://github.com/florian-huber/pickydict)|1.819800942902045e-05| +|pypi|[pyteomics](http://pyteomics.readthedocs.io)|1.8198009429020435e-05| +|npm|tslint|1.8185240963855422e-05| +|pypi|[pathtools](https://pypi.org/project/pathtools)|1.8128110899195236e-05| +|pypi|[flask](https://palletsprojects.com/p/flask)|1.8106926499550114e-05| +|pypi|[unyt](https://github.com/yt-project/unyt)|1.8072289156626512e-05| +|cran|BiocManager|1.8013507421916915e-05| +|pypi|[pip-tools](https://pypi.org/project/pip-tools)|1.7909985398955363e-05| +|pypi|[repeated-test](https://pypi.org/project/repeated-test)|1.789156626506024e-05| +|pypi|[pykerberos](https://pypi.org/project/pykerberos)|1.7891566265060238e-05| +|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|1.7891566265060238e-05| +|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|1.7891566265060238e-05| +|pypi|[types-colorama](https://pypi.org/project/types-colorama)|1.7891566265060238e-05| +|pypi|[pdbmender](https://pypi.org/project/pdbmender)|1.7891566265060238e-05| +|pypi|[delphi4py](https://pypi.org/project/delphi4py)|1.7891566265060238e-05| +|pypi|[pykwalify](https://pypi.org/project/pykwalify)|1.7891566265060238e-05| +|pypi|[gevent](https://pypi.org/project/gevent)|1.7883602110304572e-05| +|cran|spam|1.784538070440329e-05| +|cran|acepack|1.783714725463865e-05| +|cran|htmlTable|1.783714725463865e-05| +|pypi|[schema](https://github.com/keleshev/schema)|1.765985404771324e-05| +|cran|measurements|1.7572074010327022e-05| +|cran|NISTunits|1.7572074010327022e-05| +|cran|gbm|1.752515556732424e-05| +|npm|glob|1.743575731497418e-05| +|cran|protolite|1.742685025817556e-05| +|cran|geepack|1.729311854372119e-05| +|cran|bigmemory|1.7233218588640274e-05| +|pypi|[rdkit](https://pypi.org/project/rdkit)|1.711367207962284e-05| +|pypi|[imbalanced-learn](https://pypi.org/project/imbalanced-learn)|1.7110073741734074e-05| +|pypi|[diff-cover](https://pypi.org/project/diff-cover)|1.7108122103799815e-05| +|npm|tsconfig-paths|1.703958691910499e-05| +|npm|replace|1.703958691910499e-05| +|npm|node-qunit-phantomjs|1.703958691910499e-05| +|cran|[geosphere](NA)|1.6979756444652645e-05| +|cran|ks|1.6962134251290875e-05| +|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|1.694277108433735e-05| +|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|1.694277108433735e-05| +|pypi|[nbclassic](https://pypi.org/project/nbclassic)|1.694277108433735e-05| +|pypi|[notebook-shim](https://pypi.org/project/notebook-shim)|1.694277108433735e-05| +|pypi|[json5](https://pypi.org/project/json5)|1.694277108433735e-05| +|pypi|[mmtf-python](https://github.com/rcsb/mmtf-python.git)|1.6940568340534412e-05| +|cran|[origami](https://tlverse.org/origami/)|1.6893661602933492e-05| +|cran|[RNetCDF](https://github.com/mjwoods/RNetCDF +https://www.unidata.ucar.edu/software/netcdf/ +https://www.unidata.ucar.edu/software/udunits/)|1.6851427448926178e-05| +|cran|glmmTMB|1.684052278958985e-05| +|cran|fixest|1.684052278958985e-05| +|cran|cplm|1.684052278958985e-05| +|cran|betareg|1.684052278958985e-05| +|cran|AER|1.684052278958985e-05| +|cran|signal|1.680581933645918e-05| +|pypi|[eventlet](https://pypi.org/project/eventlet)|1.6776325301204817e-05| +|npm|chai-passport-strategy|1.6773343373493976e-05| +|npm|passport-strategy|1.6773343373493976e-05| +|cran|[Ckmeans.1d.dp](NA)|1.6710693706503032e-05| +|pypi|[bitstring](https://pypi.org/project/bitstring)|1.6683304647160068e-05| +|pypi|[casadi](http://casadi.org)|1.66787632457541e-05| +|rubygems|[rubyzip](http://github.com/rubyzip/rubyzip)|1.6632081748362006e-05| +|pypi|[google-auth-httplib2](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2)|1.6622433395554048e-05| +|cran|klaR|1.657882257894552e-05| +|npm|babel-jest|1.6505893073130665e-05| +|pypi|[types-pytz](https://pypi.org/project/types-pytz)|1.642276929307404e-05| +|pypi|[hdf5plugin](https://pypi.org/project/hdf5plugin)|1.6408443692123867e-05| +|pypi|[psims](https://pypi.org/project/psims)|1.6408443692123867e-05| +|cran|[jsonld](https://docs.ropensci.org/jsonld)|1.6375706909269773e-05| +|rubygems|hoe|1.632149004179985e-05| +|pypi|[pybamm](https://pypi.org/project/pybamm)|1.6297721004499926e-05| +|rubygems|addressable|1.6294792071511854e-05| +|cran|doMC|1.628829604130809e-05| +|pypi|[sphinxcontrib.mermaid](https://pypi.org/project/sphinxcontrib.mermaid)|1.6265060240963857e-05| +|pypi|[mdit-py-plugins](https://pypi.org/project/mdit-py-plugins)|1.6265060240963857e-05| +|pypi|[markdown-it-py](https://pypi.org/project/markdown-it-py)|1.6265060240963857e-05| +|cran|qvalue|1.6265060240963857e-05| +|cran|subprocess|1.6265060240963857e-05| +|cran|tensorA|1.6247186548391367e-05| +|npm|concat-stream|1.6220376009532637e-05| +|rubygems|webmock|1.6198346808602957e-05| +|pypi|[tensorflow-estimator](https://www.tensorflow.org/)|1.6194648724769207e-05| +|cran|[EML](https://docs.ropensci.org/EML/)|1.618760757314976e-05| +|pypi|[gssapi](https://pypi.org/project/gssapi)|1.6155125860585195e-05| +|npm|gulp-uglify|1.615015793156929e-05| +|pypi|[zict](https://pypi.org/project/zict)|1.6131431059867697e-05| +|cran|scatterplot3d|1.61166974909398e-05| +|pypi|[loguru](https://github.com/Delgan/loguru)|1.6114457831325306e-05| +|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|1.6059886605244506e-05| +|pypi|[PyTest](https://pypi.org/project/PyTest)|1.6059886605244506e-05| +|pypi|[pulumi](https://github.com/pulumi/pulumi)|1.5946137491141047e-05| +|pypi|[AssertionLib](https://pypi.org/project/AssertionLib)|1.593737587713492e-05| +|pypi|[affine](https://github.com/sgillies/affine)|1.5908242861556126e-05| +|pypi|[pep8-naming](https://pypi.org/project/pep8-naming)|1.584304686987515e-05| +|pypi|[kgt](https://pypi.org/project/kgt)|1.5786676116229624e-05| +|pypi|[x21](https://pypi.org/project/x21)|1.5786676116229624e-05| +|pypi|[pytest-qt](https://pypi.org/project/pytest-qt)|1.5786676116229624e-05| +|npm|murl|1.5786676116229624e-05| +|npm|protein|1.5786676116229624e-05| +|npm|network-address|1.5786676116229624e-05| +|cran|[wesanderson](https://github.com/karthik/wesanderson)|1.573948856651094e-05| +|pypi|[types-dataclasses](https://pypi.org/project/types-dataclasses)|1.569270780601397e-05| +|cran|coxme|1.561381133606204e-05| +|cran|[downloader](https://github.com/wch/downloader)|1.5604428703826312e-05| +|pypi|[crossbar](http://crossbar.io/)|1.5490533562822718e-05| +|pypi|[argh](https://pypi.org/project/argh)|1.5490533562822718e-05| +|pypi|[asn1crypto](https://pypi.org/project/asn1crypto)|1.5490533562822718e-05| +|pypi|[asq](https://pypi.org/project/asq)|1.5490533562822718e-05| +|pypi|[automat](https://pypi.org/project/automat)|1.5490533562822718e-05| +|pypi|[cbor](https://pypi.org/project/cbor)|1.5490533562822718e-05| +|pypi|[dictdiffer](https://pypi.org/project/dictdiffer)|1.5490533562822718e-05| +|pypi|[hpack](https://pypi.org/project/hpack)|1.5490533562822718e-05| +|pypi|[hyperframe](https://pypi.org/project/hyperframe)|1.5490533562822718e-05| +|pypi|[lmdb](https://pypi.org/project/lmdb)|1.5490533562822718e-05| +|pypi|[netaddr](https://pypi.org/project/netaddr)|1.5490533562822718e-05| +|pypi|[node-semver](https://pypi.org/project/node-semver)|1.5490533562822718e-05| +|pypi|[priority](https://pypi.org/project/priority)|1.5490533562822718e-05| +|pypi|[py-ubjson](https://pypi.org/project/py-ubjson)|1.5490533562822718e-05| +|pypi|[pyqrcode](https://pypi.org/project/pyqrcode)|1.5490533562822718e-05| +|pypi|[pytrie](https://pypi.org/project/pytrie)|1.5490533562822718e-05| +|pypi|[redis-py-cluster](https://pypi.org/project/redis-py-cluster)|1.5490533562822718e-05| +|pypi|[sdnotify](https://pypi.org/project/sdnotify)|1.5490533562822718e-05| +|pypi|[strict-rfc3339](https://pypi.org/project/strict-rfc3339)|1.5490533562822718e-05| +|pypi|[treq](https://pypi.org/project/treq)|1.5490533562822718e-05| +|pypi|[txtorcon](https://pypi.org/project/txtorcon)|1.5490533562822718e-05| +|pypi|[u-msgpack-python](https://pypi.org/project/u-msgpack-python)|1.5490533562822718e-05| +|npm|bluebird|1.5452340085670624e-05| +|pypi|[jupyter-bokeh](https://pypi.org/project/jupyter-bokeh)|1.543753963221306e-05| +|cran|VennDiagram|1.5406093906093907e-05| +|pypi|[botocore](https://github.com/boto/botocore)|1.538978314327532e-05| +|cran|loder|1.5348157335223245e-05| +|cran|ore|1.5348157335223245e-05| +|cran|nor1mix|1.533562822719449e-05| +|cran|diptest|1.533562822719449e-05| +|cran|changepoint|1.533562822719449e-05| +|cran|linprog|1.533562822719449e-05| +|cran|magic|1.533562822719449e-05| +|cran|modeldata|1.533562822719449e-05| +|cran|[fst](http://www.fstpackage.org)|1.5285239241660716e-05| +|pypi|[cronutils](https://github.com/zagaran/cronutils)|1.5272357033768878e-05| +|pypi|[proto-plus](https://pypi.org/project/proto-plus)|1.5272357033768878e-05| +|pypi|[pycrypto](https://pypi.org/project/pycrypto)|1.5272357033768878e-05| +|pypi|[pycryptodomex](https://pypi.org/project/pycryptodomex)|1.5272357033768878e-05| +|pypi|[zstd](https://pypi.org/project/zstd)|1.5272357033768878e-05| +|pypi|[nglview](https://github.com/arose/nglview)|1.5272357033768878e-05| +|pypi|[pyperclip](https://github.com/asweigart/pyperclip)|1.5272357033768878e-05| +|cran|[reprex](https://reprex.tidyverse.org)|1.5200919292359054e-05| +|cran|lgr|1.5149292823467783e-05| +|pypi|[snuggs](https://github.com/mapbox/snuggs)|1.5074137208173354e-05| +|cran|scico|1.5061777723137447e-05| +|cran|rcartocolor|1.5061777723137447e-05| +|pypi|[marshmallow](https://github.com/marshmallow-code/marshmallow)|1.505863435187876e-05| +|pypi|[google-cloud-core](https://github.com/googleapis/python-cloud-core)|1.5010964769152451e-05| +|pypi|[numpy-financial](https://numpy.org/numpy-financial/)|1.4927241433265527e-05| +|pypi|[pvlib](https://github.com/pvlib/pvlib-python)|1.4927241433265527e-05| +|pypi|[bumpversion](https://pypi.org/project/bumpversion)|1.4909638554216867e-05| +|cran|RcppDE|1.4909638554216867e-05| +|cran|gdalUtils|1.4909638554216867e-05| +|npm|[tslint-config-prettier](https://github.com/prettier/tslint-config-prettier#readme)|1.4909638554216867e-05| +|npm|microbundle|1.4909638554216867e-05| +|npm|const-version|1.4909638554216867e-05| +|pypi|[xlrd](https://pypi.org/project/xlrd)|1.4854652278698192e-05| +|pypi|[xgboost](https://github.com/dmlc/xgboost)|1.479801559177889e-05| +|cran|[emld](https://docs.ropensci.org/emld/)|1.4793459552495713e-05| +|pypi|[numcodecs](https://github.com/zarr-developers/numcodecs)|1.4791741661769027e-05| +|pypi|[testtools](https://github.com/testing-cabal/testtools)|1.4769913941480205e-05| +|pypi|[fixtures](https://pypi.org/project/fixtures)|1.4769913941480205e-05| +|cran|FNN|1.4713102409638552e-05| +|cran|BiocVersion|1.4644625699594717e-05| +|rubygems|[coveralls](https://coveralls.io)|1.4576006726048365e-05| +|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|1.4572059623142612e-05| +|cran|rstantools|1.4513557074598204e-05| +|cran|rhub|1.450652329055656e-05| +|cran|gmailr|1.450652329055656e-05| +|cran|foghorn|1.450652329055656e-05| +|cran|rversions|1.450652329055656e-05| +|pypi|[xxhash](https://pypi.org/project/xxhash)|1.4505739676974148e-05| +|pypi|[autodocsumm](https://pypi.org/project/autodocsumm)|1.4501628964838947e-05| +|cran|tm.lexicon.GeneralInquirer|1.4480372037600952e-05| +|cran|Rpoppler|1.4480372037600952e-05| +|cran|Rcampdf|1.4480372037600952e-05| +|cran|filehash|1.4480372037600952e-05| +|pypi|[pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp)|1.4346161884587012e-05| +|pypi|[grayskull](https://pypi.org/project/grayskull)|1.4313253012048192e-05| +|cran|[fuzzyjoin](https://github.com/dgrtwo/fuzzyjoin)|1.4304911955514367e-05| +|npm|[is-plain-object](https://github.com/jonschlinkert/is-plain-object)|1.4276947074010328e-05| +|pypi|[click-repl](https://pypi.org/project/click-repl)|1.4171997908991338e-05| +|pypi|[click-didyoumean](https://pypi.org/project/click-didyoumean)|1.4171997908991338e-05| +|cran|PolynomF|1.4124920735573875e-05| +|cran|[tokenizers](https://lincolnmullen.com/software/tokenizers/)|1.4071034613543005e-05| +|cran|[lmerTest](https://github.com/runehaubo/lmerTestR)|1.4066683391347015e-05| +|npm|jsmd|1.3941480206540447e-05| +|npm|is-mergeable-object|1.3941480206540447e-05| +|pypi|[python-keystoneclient](https://docs.openstack.org/python-keystoneclient/latest/)|1.384819277108434e-05| +|npm|gzip-size|1.3820998278829604e-05| +|cran|bignum|1.376274328081557e-05| +|cran|[shinyWidgets](https://github.com/dreamRs/shinyWidgets)|1.3681628363002235e-05| +|cran|metafor|1.36353491538705e-05| +|cran|RSpectra|1.3631669535283991e-05| +|pypi|[pycares](https://pypi.org/project/pycares)|1.3625115848007413e-05| +|cran|future.callr|1.360995067480584e-05| +|pypi|[annoy](https://github.com/spotify/annoy)|1.357778941854374e-05| +|pypi|[sphinxcontrib.programoutput](https://pypi.org/project/sphinxcontrib.programoutput)|1.357778941854374e-05| +|pypi|[visdom](https://pypi.org/project/visdom)|1.357778941854374e-05| +|pypi|[nmslib](https://pypi.org/project/nmslib)|1.357778941854374e-05| +|pypi|[pyemd](https://pypi.org/project/pyemd)|1.357778941854374e-05| +|pypi|[Morfessor](https://pypi.org/project/Morfessor)|1.357778941854374e-05| +|pypi|[Pyro4](https://pypi.org/project/Pyro4)|1.357778941854374e-05| +|cran|[solrium](https://github.com/ropensci/solrium (devel))|1.353334767641998e-05| +|cran|party|1.3519201664052584e-05| +|npm|accepts|1.3507050178736925e-05| +|cran|[haven](https://haven.tidyverse.org)|1.3424210676698908e-05| +|cran|FastRWeb|1.3418674698795181e-05| +|cran|quantmod|1.3418674698795181e-05| +|cran|truncreg|1.3377638996352384e-05| +|cran|panelr|1.3377638996352384e-05| +|cran|metaBMA|1.3377638996352384e-05| +|cran|lfe|1.3377638996352384e-05| +|cran|ivreg|1.3377638996352384e-05| +|cran|GLMMadaptive|1.3377638996352384e-05| +|cran|clubSandwich|1.3377638996352384e-05| +|cran|cgam|1.3377638996352384e-05| +|cran|blme|1.3377638996352384e-05| +|cran|bbmle|1.3377638996352384e-05| +|cran|aod|1.3377638996352384e-05| +|cran|geojsonlint|1.3360585197934596e-05| +|cran|PASWR|1.3340924136104858e-05| +|rubygems|[byebug](https://github.com/deivid-rodriguez/byebug)|1.3324118707501877e-05| +|pypi|[kopt](https://pypi.org/project/kopt)|1.325301204819277e-05| +|cran|ggfittext|1.325301204819277e-05| +|cran|taxadb|1.3244406196213425e-05| +|cran|assertive.code|1.3207718090406738e-05| +|cran|assertive.reflection|1.3207718090406738e-05| +|cran|assertive.data.us|1.3207718090406738e-05| +|cran|assertive.data.uk|1.3207718090406738e-05| +|cran|assertive.data|1.3207718090406738e-05| +|cran|assertive.models|1.3207718090406738e-05| +|cran|assertive.matrices|1.3207718090406738e-05| +|cran|assertive.sets|1.3207718090406738e-05| +|cran|assertive.files|1.3207718090406738e-05| +|cran|assertive.datetimes|1.3207718090406738e-05| +|cran|assertive.strings|1.3207718090406738e-05| +|cran|assertive.numbers|1.3207718090406738e-05| +|cran|assertive.types|1.3207718090406738e-05| +|cran|assertive.properties|1.3207718090406738e-05| +|cran|assertive.base|1.3207718090406738e-05| +|pypi|[uvicorn](https://pypi.org/project/uvicorn)|1.3150391530946925e-05| +|cran|gsl|1.3138242625675114e-05| +|npm|terser|1.3113825839070568e-05| +|pypi|[altair](http://altair-viz.github.io)|1.3067086527929892e-05| +|pypi|[lcapy](https://pypi.org/project/lcapy)|1.30643054144288e-05| +|pypi|[scikit-spatial](https://pypi.org/project/scikit-spatial)|1.30643054144288e-05| +|pypi|[textwrapper](https://pypi.org/project/textwrapper)|1.30643054144288e-05| +|pypi|[anytree](https://pypi.org/project/anytree)|1.30643054144288e-05| +|pypi|[scikit-fem](https://pypi.org/project/scikit-fem)|1.30643054144288e-05| +|pypi|[property-cached](https://pypi.org/project/property-cached)|1.30643054144288e-05| +|pypi|[heapdict](https://pypi.org/project/heapdict)|1.30643054144288e-05| +|pypi|[SoundCard](https://github.com/bastibe/SoundCard)|1.301204819277109e-05| +|pypi|[SoundFile](https://github.com/bastibe/PySoundFile)|1.301204819277109e-05| +|pypi|[gurobipy](https://pypi.org/project/gurobipy)|1.2938116100766703e-05| +|pypi|[google-cloud-storage](https://github.com/googleapis/python-storage)|1.285778645018421e-05| +|cran|Biobase|1.2812214146468406e-05| +|pypi|[librosa](https://pypi.org/project/librosa)|1.2805654435925524e-05| +|pypi|[Flask-SQLAlchemy](https://pypi.org/project/Flask-SQLAlchemy)|1.2779690189328742e-05| +|rubygems|thor|1.2761433489058272e-05| +|pypi|[ephem](https://pypi.org/project/ephem)|1.2740963855421686e-05| +|cran|[clisymbols](https://github.com/gaborcsardi/clisymbols)|1.2720831317782064e-05| +|pypi|[openstacksdk](https://pypi.org/project/openstacksdk)|1.2643373493975902e-05| +|pypi|[black>=20.8b1](https://pypi.org/project/black>=20.8b1)|1.2636547657983364e-05| +|pypi|[importlib_metadata>=0.7](https://pypi.org/project/importlib_metadata>=0.7)|1.2636547657983364e-05| +|pypi|[h5py>=3](https://pypi.org/project/h5py>=3)|1.2636547657983364e-05| +|pypi|[npx](https://pypi.org/project/npx)|1.26293408929837e-05| +|pypi|[meshplex](https://pypi.org/project/meshplex)|1.26293408929837e-05| +|pypi|[skrebate](https://github.com/EpistasisLab/scikit-rebate)|1.26293408929837e-05| +|pypi|[dask-ml](https://pypi.org/project/dask-ml)|1.26293408929837e-05| +|pypi|[update-checker](https://pypi.org/project/update-checker)|1.26293408929837e-05| +|cran|[wordcloud](http://blog.fellstat.com/?cat=11 http://www.fellstat.com)|1.2505845284799463e-05| +|cran|clusterGeneration|1.2501870837386813e-05| +|cran|[mlr3misc](https://mlr3misc.mlr-org.com)|1.2480154732642935e-05| +|cran|bs4Dash|1.2473978213532174e-05| +|cran|rticles|1.2470334586625839e-05| +|cran|locfit|1.2460531782301622e-05| +|pypi|[pytest-mpl](https://pypi.org/project/pytest-mpl)|1.2447800250776863e-05| +|cran|nonnest2|1.2408666925767586e-05| +|cran|mlogit|1.2408666925767586e-05| +|cran|[logger](https://daroczig.github.io/logger/)|1.2339889026636018e-05| +|cran|leaps|1.2337316298159672e-05| +|pypi|[azure-storage-blob](https://pypi.org/project/azure-storage-blob)|1.232884239661348e-05| +|cran|[geometry](https://davidcsterratt.github.io/geometry)|1.2283993115318432e-05| +|pypi|[param](https://pypi.org/project/param)|1.2269448687715993e-05| +|pypi|[pyct](https://pypi.org/project/pyct)|1.2269448687715993e-05| +|cran|stm|1.2263805697880342e-05| +|cran|topicmodels|1.2263805697880342e-05| +|pypi|[pymatreader](https://pypi.org/project/pymatreader)|1.2253804177749958e-05| +|pypi|[pytest-benchmark](https://pypi.org/project/pytest-benchmark)|1.2243927991925284e-05| +|cran|FMStable|1.219879518072289e-05| +|cran|tree|1.219879518072289e-05| +|cran|sparsesvd|1.219879518072289e-05| +|pypi|[python-subunit](https://pypi.org/project/python-subunit)|1.2145817555938037e-05| +|pypi|[ddt](https://pypi.org/project/ddt)|1.2145817555938037e-05| +|npm|rollup-plugin-replace|1.2132081748361994e-05| +|npm|babel-plugin-external-helpers|1.2132081748361994e-05| +|pypi|[m2r](https://pypi.org/project/m2r)|1.2081890060240962e-05| +|rubygems|timecop|1.2049422178509958e-05| +|rubygems|actionmailer|1.197639537742808e-05| +|cran|Bessel|1.197289156626506e-05| +|pypi|[emoji](https://pypi.org/project/emoji)|1.1927710843373494e-05| +|pypi|[pynumpress](https://pypi.org/project/pynumpress)|1.1927710843373494e-05| +|npm|csso|1.1927710843373494e-05| +|npm|google-closure-compiler|1.1927710843373494e-05| +|npm|uglify-es|1.1927710843373494e-05| +|npm|ora|1.1927710843373494e-05| +|npm|update-notifier|1.1927710843373494e-05| +|npm|crass|1.1927710843373494e-05| +|npm|sqwish|1.1927710843373494e-05| +|npm|clean-css|1.1927710843373494e-05| +|npm|html-minifier|1.1927710843373494e-05| +|npm|node-version|1.1927710843373494e-05| +|pypi|[user-agents](https://pypi.org/project/user-agents)|1.1927710843373492e-05| +|rubygems|json|1.1926406793354174e-05| +|npm|parseurl|1.1892987471865484e-05| +|cran|[humaniformat](https://github.com/ironholds/humaniformat/)|1.188600556070436e-05| +|pypi|[dataclasses-json](https://pypi.org/project/dataclasses-json)|1.1879872430900075e-05| +|npm|ascli|1.1808433734939759e-05| +|pypi|[sphinx-version-warning](https://pypi.org/project/sphinx-version-warning)|1.1790508974674206e-05| +|cran|[dbscan](https://github.com/mhahsler/dbscan)|1.1783293873927203e-05| +|cran|tracerer|1.1699429296131895e-05| +|rubygems|rails-dom-testing|1.1684288173100564e-05| +|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|1.1676601141407735e-05| +|pypi|[s3fs](https://pypi.org/project/s3fs)|1.1676601141407735e-05| +|pypi|[ocifs](https://pypi.org/project/ocifs)|1.1676601141407735e-05| +|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|1.1676601141407735e-05| +|pypi|[pygit2](https://pypi.org/project/pygit2)|1.1676601141407735e-05| +|pypi|[fusepy](https://pypi.org/project/fusepy)|1.1676601141407735e-05| +|pypi|[dropbox](https://pypi.org/project/dropbox)|1.1676601141407735e-05| +|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|1.1676601141407735e-05| +|pypi|[adlfs](https://pypi.org/project/adlfs)|1.1676601141407735e-05| +|cran|stabledist|1.1657043558850788e-05| +|rubygems|actionpack|1.1593004671748217e-05| +|npm|execa|1.1564527340129749e-05| +|pypi|[pympler](https://pypi.org/project/pympler)|1.1528732444571183e-05| +|cran|spacetime|1.1504288894709272e-05| +|pypi|[pytray](https://github.com/muhrin/pytray.git)|1.1503404924044012e-05| +|rubygems|rake-compiler-dock|1.1501721170395867e-05| +|pypi|[aiodns](https://pypi.org/project/aiodns)|1.1367172564580374e-05| +|pypi|[pyshp](https://pypi.org/project/pyshp)|1.1359724612736661e-05| +|pypi|[pytest-json-report](https://pypi.org/project/pytest-json-report)|1.1359724612736661e-05| +|pypi|[noodles](http://nlesc.github.io/noodles)|1.1358135840063541e-05| +|pypi|[sas7bdat](https://pypi.org/project/sas7bdat)|1.1299936588459098e-05| +|pypi|[sas-kernel](https://pypi.org/project/sas-kernel)|1.1299936588459098e-05| +|pypi|[saspy](https://pypi.org/project/saspy)|1.1299936588459098e-05| +|cran|[fdrtool](https://strimmerlab.github.io/software/fdrtool/)|1.1260426320667288e-05| +|cran|[move](https://bartk.gitlab.io/move/)|1.1230636833046472e-05| +|pypi|[soundfile](https://pypi.org/project/soundfile)|1.121370000888073e-05| +|pypi|[portray](https://pypi.org/project/portray)|1.118222891566265e-05| +|pypi|[typing-inspect](https://pypi.org/project/typing-inspect)|1.118222891566265e-05| +|pypi|[marshmallow-enum](https://pypi.org/project/marshmallow-enum)|1.118222891566265e-05| +|npm|[jade](http://jade-lang.com)|1.118222891566265e-05| +|npm|superagent|1.118222891566265e-05| +|npm|connect-flash|1.118222891566265e-05| +|npm|isexe|1.118222891566265e-05| +|cran|debugme|1.1159992619660122e-05| +|npm|babel-loader|1.1143775371555134e-05| +|pypi|[databases](https://pypi.org/project/databases)|1.1123590217237812e-05| +|cran|sm|1.1105110095554631e-05| +|cran|goftest|1.1105110095554631e-05| +|cran|tensor|1.1105110095554631e-05| +|cran|spatstat.sparse|1.1105110095554631e-05| +|npm|compressible|1.100473321858864e-05| +|npm|bytes|1.100473321858864e-05| +|npm|[rollup-plugin-uglify](https://github.com/TrySound/rollup-plugin-uglify)|1.0992469879518072e-05| +|cran|[rdflib](https://github.com/ropensci/rdflib)|1.0954020162281779e-05| +|requirements.txt|gitlab/cracklet/cracklet|1.095290251916758e-05| +|requirements.txt|gitlab/LouisLab/PiVR|1.095290251916758e-05| +|requirements.txt|github/kkjawz/coref-ee|1.095290251916758e-05| +|requirements.txt|github/PolymerGuy/recolo|1.095290251916758e-05| +|requirements.txt|github/csbioinfopk/iSumoK-PseAAC|1.095290251916758e-05| +|requirements.txt|github/kinnala/scikit-fem|1.095290251916758e-05| +|requirements.txt|github/onnela-lab/beiwe-backend|1.095290251916758e-05| +|requirements.txt|github/surf-eds/one-button-compute|1.095290251916758e-05| +|requirements.txt|github/ketch/RK-Opt|1.095290251916758e-05| +|requirements.txt|github/BioGearsEngine/core|1.095290251916758e-05| +|requirements.txt|github/Narayana-Rao/SAR-tools|1.095290251916758e-05| +|requirements.txt|github/MD-Studio/MDStudio|1.095290251916758e-05| +|requirements.txt|github/villano-lab/nrCascadeSim|1.095290251916758e-05| +|requirements.txt|github/qMRLab/qMRLab|1.095290251916758e-05| +|requirements.txt|github/sorenwacker/ProteomicsQC|1.095290251916758e-05| +|requirements.txt|github/telatin/qax|1.095290251916758e-05| +|requirements.txt|github/statgen/Minimac4|1.095290251916758e-05| +|requirements.txt|github/Rohit-Kundu/ET-NET_Covid-Detection|1.095290251916758e-05| +|requirements.txt|github/gvilitechltd/LibSWIFFT|1.095290251916758e-05| +|requirements.txt|github/UUDigitalHumanitieslab/texcavator|1.095290251916758e-05| +|requirements.txt|github/robashaw/libecpint|1.095290251916758e-05| +|requirements.txt|github/JLiangLab/TransVW|1.095290251916758e-05| +|requirements.txt|github/candYgene/siga|1.095290251916758e-05| +|requirements.txt|github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs|1.095290251916758e-05| +|requirements.txt|github/ggciag/mandyoc|1.095290251916758e-05| +|requirements.txt|github/nextstrain/nextclade|1.095290251916758e-05| +|requirements.txt|github/wmglab-duke/ascent|1.095290251916758e-05| +|requirements.txt|github/MRChemSoft/mrchem|1.095290251916758e-05| +|requirements.txt|github/CAMI-challenge/CAMITAX|1.095290251916758e-05| +|requirements.txt|github/LSARP/ProteomicsQC|1.095290251916758e-05| +|requirements.txt|github/neuroanatomy/reorient|1.095290251916758e-05| +|requirements.txt|github/inpefess/gym-saturation|1.095290251916758e-05| +|requirements.txt|github/DSIMB/medusa|1.095290251916758e-05| +|requirements.txt|github/3d-pli/fastpli|1.095290251916758e-05| +|requirements.txt|github/lutteropp/NetRAX|1.095290251916758e-05| +|requirements.txt|github/grant-m-s/astronomicAL|1.095290251916758e-05| +|requirements.txt|github/ImperialCollegeLondon/champ|1.095290251916758e-05| +|requirements.txt|github/snowformatics/macrobot|1.095290251916758e-05| +|requirements.txt|github/Climdyn/qgs|1.095290251916758e-05| +|requirements.txt|github/diCenzo-GC/Tn-Core-webserver|1.095290251916758e-05| +|requirements.txt|github/iontorrent/TS|1.095290251916758e-05| +|requirements.txt|github/hemanthpruthvi/PyAstroPol|1.095290251916758e-05| +|requirements.txt|github/nlesc/embodied-emotions-scripts|1.095290251916758e-05| +|requirements.txt|github/LINNAE-project/SFB-Annotator|1.095290251916758e-05| +|requirements.txt|github/andr1976/HydDown|1.095290251916758e-05| +|requirements.txt|github/labsyspharm/minerva-story|1.095290251916758e-05| +|requirements.txt|github/mswzeus/TargetNet|1.095290251916758e-05| +|requirements.txt|github/STEllAR-GROUP/hpx|1.095290251916758e-05| +|requirements.txt|github/BioinfoUNIBA/REDItools2|1.095290251916758e-05| +|requirements.txt|github/GilbertLabUCSF/CanDI|1.095290251916758e-05| +|requirements.txt|github/Single-Cell-Graph-Learning/scSGL|1.095290251916758e-05| +|requirements.txt|github/chemfiles/chemfiles|1.095290251916758e-05| +|requirements.txt|github/he2016012996/CABnet|1.095290251916758e-05| +|requirements.txt|github/monarch-initiative/loinc2hpo|1.095290251916758e-05| +|requirements.txt|github/abinit/abinit|1.095290251916758e-05| +|requirements.txt|github/arnikz/PIQMIe|1.095290251916758e-05| +|requirements.txt|github/CouncilDataProject/cookiecutter-cdp-deployment|1.095290251916758e-05| +|requirements.txt|github/Julian/jsonschema|1.095290251916758e-05| +|requirements.txt|github/amrex-astro/Castro|1.095290251916758e-05| +|requirements.txt|github/ablab/TandemTools|1.095290251916758e-05| +|requirements.txt|github/spack/spack|1.095290251916758e-05| +|requirements.txt|github/shandley/hecatomb|1.095290251916758e-05| +|requirements.txt|github/NLeSC-GO-common-infrastructure/marzipan|1.095290251916758e-05| +|requirements.txt|github/soraxas/sbp-env|1.095290251916758e-05| +|requirements.txt|github/learningsimulator/learningsimulator|1.095290251916758e-05| +|requirements.txt|github/mms-fcul/PypKa|1.095290251916758e-05| +|requirements.txt|github/TinkerTools/tinker9|1.095290251916758e-05| +|requirements.txt|github/NLeSC/ShiCo|1.095290251916758e-05| +|requirements.txt|github/SuLab/Wikidata-phenomizer|1.095290251916758e-05| +|requirements.txt|github/zhoux85/scAdapt|1.095290251916758e-05| +|requirements.txt|github/JuliaHCI/ADI.jl|1.095290251916758e-05| +|requirements.txt|github/AMReX-Astro/Nyx|1.095290251916758e-05| +|requirements.txt|github/broadinstitute/cromwell|1.095290251916758e-05| +|requirements.txt|github/SPARC-FAIR-Codeathon/aqua|1.095290251916758e-05| +|requirements.txt|github/JLBLine/WODEN|1.095290251916758e-05| +|requirements.txt|github/citation-file-format/citation-file-format|1.095290251916758e-05| +|requirements.txt|github/erikbern/ann-benchmarks|1.095290251916758e-05| +|requirements.txt|github/jdber1/opendrop|1.095290251916758e-05| +|requirements.txt|github/ot483/NetCom|1.095290251916758e-05| +|requirements.txt|github/enveda/RPath|1.095290251916758e-05| +|requirements.txt|github/TeamCOMPAS/COMPAS|1.095290251916758e-05| +|requirements.txt|github/singularityhub/sregistry|1.095290251916758e-05| +|setup.py|gitlab/octopus-code/octopus|1.095290251916758e-05| +|setup.py|gitlab/picos-api/picos|1.095290251916758e-05| +|setup.py|gitlab/BioimageInformaticsGroup/openphi|1.095290251916758e-05| +|setup.py|gitlab/Molcas/OpenMolcas|1.095290251916758e-05| +|setup.py|gitlab/gims-developers/gims|1.095290251916758e-05| +|setup.py|gitlab/jason-rumengan/pyarma|1.095290251916758e-05| +|setup.py|gitlab/fduchate/predihood|1.095290251916758e-05| +|setup.py|github/ekaterinailin/AltaiPony|1.095290251916758e-05| +|setup.py|github/wdecoster/nanopack|1.095290251916758e-05| +|setup.py|github/era-urban/wrfpy|1.095290251916758e-05| +|setup.py|github/ynop/audiomate|1.095290251916758e-05| +|setup.py|github/glotzerlab/freud|1.095290251916758e-05| +|setup.py|github/glotzerlab/coxeter|1.095290251916758e-05| +|setup.py|github/IKNL/vantage6|1.095290251916758e-05| +|setup.py|github/Kuifje02/vrpy|1.095290251916758e-05| +|setup.py|github/bio-phys/BioEn|1.095290251916758e-05| +|setup.py|github/popgenmethods/smcpp|1.095290251916758e-05| +|setup.py|github/Filter-Bubble/e2e-Dutch|1.095290251916758e-05| +|setup.py|github/dmey/synthia|1.095290251916758e-05| +|setup.py|github/FSEC-Photovoltaics/pvrpm-lcoe|1.095290251916758e-05| +|setup.py|github/jbuisine/macop|1.095290251916758e-05| +|setup.py|github/MrMinimal64/multivar_horner|1.095290251916758e-05| +|setup.py|github/thejasvibr/bat_beamshapes|1.095290251916758e-05| +|setup.py|github/atomneb/AtomNeb-py|1.095290251916758e-05| +|setup.py|github/eScatter/pyelsepa|1.095290251916758e-05| +|setup.py|github/amusecode/amuse|1.095290251916758e-05| +|setup.py|github/ketch/nodepy|1.095290251916758e-05| +|setup.py|github/fAndreuzzi/BisPy|1.095290251916758e-05| +|setup.py|github/oschwengers/referenceseeker|1.095290251916758e-05| +|setup.py|github/oschwengers/platon|1.095290251916758e-05| +|setup.py|github/oschwengers/bakta|1.095290251916758e-05| +|setup.py|github/mscroggs/symfem|1.095290251916758e-05| +|setup.py|github/Magritte-code/Magritte|1.095290251916758e-05| +|setup.py|github/cadop/seg1d|1.095290251916758e-05| +|setup.py|github/elwinter/nnde|1.095290251916758e-05| +|setup.py|github/AlphonsG/Rainbow-Optical-Flow-For-ALI|1.095290251916758e-05| +|setup.py|github/omuse-geoscience/omuse|1.095290251916758e-05| +|setup.py|github/tariqdaouda/CAMAP|1.095290251916758e-05| +|setup.py|github/Materials-Consortia/optimade-python-tools|1.095290251916758e-05| +|setup.py|github/RTIInternational/gobbli|1.095290251916758e-05| +|setup.py|github/MD-Studio/cerulean|1.095290251916758e-05| +|setup.py|github/TPI-Immunogenetics/igmat|1.095290251916758e-05| +|setup.py|github/nlesc-ave/ave-rest-service|1.095290251916758e-05| +|setup.py|github/virgesmith/neworder|1.095290251916758e-05| +|setup.py|github/rajeshrinet/pystokes|1.095290251916758e-05| +|setup.py|github/rodluger/starry_process|1.095290251916758e-05| +|setup.py|github/compomics/DeepLC|1.095290251916758e-05| +|setup.py|github/BartoszBartmanski/StoSpa2|1.095290251916758e-05| +|setup.py|github/richteague/disksurf|1.095290251916758e-05| +|setup.py|github/Quantum-Dynamics-Hub/libra-code|1.095290251916758e-05| +|setup.py|github/zarr-developers/zarr-python|1.095290251916758e-05| +|setup.py|github/ConorMacBride/mcalf|1.095290251916758e-05| +|setup.py|github/SCM-NV/qmflows-namd|1.095290251916758e-05| +|setup.py|github/SCM-NV/qmflows|1.095290251916758e-05| +|setup.py|github/SCM-NV/pyZacros|1.095290251916758e-05| +|setup.py|github/DeltaRCM/pyDeltaRCM|1.095290251916758e-05| +|setup.py|github/szymon-datalions/pyinterpolate|1.095290251916758e-05| +|setup.py|github/fair-data/fairdatapoint-client|1.095290251916758e-05| +|setup.py|github/hiddenSymmetries/simsopt|1.095290251916758e-05| +|setup.py|github/fair-software/fairtally|1.095290251916758e-05| +|setup.py|github/fair-software/howfairis|1.095290251916758e-05| +|setup.py|github/zdelrosario/py_grama|1.095290251916758e-05| +|setup.py|github/snakemake/snakemake|1.095290251916758e-05| +|setup.py|github/AA-ALERT/frbcatdb|1.095290251916758e-05| +|setup.py|github/UNSW-CEEM/nempy|1.095290251916758e-05| +|setup.py|github/AlexMikes/AutoFunc|1.095290251916758e-05| +|setup.py|github/parallelwindfarms/byteparsing|1.095290251916758e-05| +|setup.py|github/weecology/retriever|1.095290251916758e-05| +|setup.py|github/DrMarc/slab|1.095290251916758e-05| +|setup.py|github/dfujim/bfit|1.095290251916758e-05| +|setup.py|github/cdslaborg/paramonte|1.095290251916758e-05| +|setup.py|github/meinardmueller/synctoolbox|1.095290251916758e-05| +|setup.py|github/meinardmueller/libfmp|1.095290251916758e-05| +|setup.py|github/SWIFTSIM/emulator|1.095290251916758e-05| +|setup.py|github/tool-bin/ukbcc|1.095290251916758e-05| +|setup.py|github/KIT-MBS/pyREX|1.095290251916758e-05| +|setup.py|github/OpenMDAO/dymos|1.095290251916758e-05| +|setup.py|github/SandoghdarLab/PiSCAT|1.095290251916758e-05| +|setup.py|github/spyder-ide/spyder|1.095290251916758e-05| +|setup.py|github/SMTG-UCL/surfaxe|1.095290251916758e-05| +|setup.py|github/dynamicslab/pysindy|1.095290251916758e-05| +|setup.py|github/matchms/matchms|1.095290251916758e-05| +|setup.py|github/matchms/ms2deepscore|1.095290251916758e-05| +|setup.py|github/cupy/cupy|1.095290251916758e-05| +|setup.py|github/qpv-research-group/solcore5|1.095290251916758e-05| +|setup.py|github/smog-server/OpenSMOG|1.095290251916758e-05| +|setup.py|github/LiberTEM/LiberTEM|1.095290251916758e-05| +|setup.py|github/malonge/RagTag|1.095290251916758e-05| +|setup.py|github/symmy596/Polypy|1.095290251916758e-05| +|setup.py|github/symmy596/SurfinPy|1.095290251916758e-05| +|setup.py|github/Oftatkofta/cellocity|1.095290251916758e-05| +|setup.py|github/arabic-digital-humanities/adhtools|1.095290251916758e-05| +|setup.py|github/NLESC-JCER/QMCTorch|1.095290251916758e-05| +|setup.py|github/xenon-middleware/pyxenon|1.095290251916758e-05| +|setup.py|github/ghislainv/forestatrisk|1.095290251916758e-05| +|setup.py|github/felixchenier/kineticstoolkit|1.095290251916758e-05| +|setup.py|github/mishioo/tesliper|1.095290251916758e-05| +|setup.py|github/exafmm/exafmm-t|1.095290251916758e-05| +|setup.py|github/radifar/PyPLIF-HIPPOS|1.095290251916758e-05| +|setup.py|github/clawpack/clawpack|1.095290251916758e-05| +|setup.py|github/jianhuupenn/SpaGCN|1.095290251916758e-05| +|setup.py|github/lantunes/cellpylib|1.095290251916758e-05| +|setup.py|github/TriPed-Robot/TriP|1.095290251916758e-05| +|setup.py|github/Effective-Quadratures/Effective-Quadratures|1.095290251916758e-05| +|setup.py|github/rgerum/pylustrator|1.095290251916758e-05| +|setup.py|github/Social-Evolution-and-Behavior/anTraX|1.095290251916758e-05| +|setup.py|github/0xCoto/Virgo|1.095290251916758e-05| +|setup.py|github/multiscale/muscle3|1.095290251916758e-05| +|setup.py|github/Yu-Group/veridical-flow|1.095290251916758e-05| +|setup.py|github/elkebir-group/Jumper|1.095290251916758e-05| +|setup.py|github/scipion-em/scipion-em-continuousflex|1.095290251916758e-05| +|setup.py|github/aspuru-guzik-group/funsies|1.095290251916758e-05| +|setup.py|github/numba/numba|1.095290251916758e-05| +|setup.py|github/lkmklsmn/DrivAER|1.095290251916758e-05| +|setup.py|github/ComparativeGenomicsToolkit/cactus|1.095290251916758e-05| +|setup.py|github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY|1.095290251916758e-05| +|setup.py|github/KALMUS-Color-Toolkit/KALMUS|1.095290251916758e-05| +|setup.py|github/nlesc/scriptcwl|1.095290251916758e-05| +|setup.py|github/linqs/psl|1.095290251916758e-05| +|setup.py|github/carlosborca/CrystaLattE|1.095290251916758e-05| +|setup.py|github/brainets/frites|1.095290251916758e-05| +|setup.py|github/CFSAN-Biostatistics/SeroTools|1.095290251916758e-05| +|setup.py|github/EISy-as-Py/hardy|1.095290251916758e-05| +|setup.py|github/nicolet5/DiffCapAnalyzer|1.095290251916758e-05| +|setup.py|github/medema-group/bigslice|1.095290251916758e-05| +|setup.py|github/FlowModelingControl/flowtorch|1.095290251916758e-05| +|setup.py|github/biocore/scikit-bio|1.095290251916758e-05| +|setup.py|github/EpistasisLab/tpot|1.095290251916758e-05| +|setup.py|github/EpistasisLab/regens|1.095290251916758e-05| +|setup.py|github/MDAnalysis/mdanalysis|1.095290251916758e-05| +|setup.py|github/dpalmasan/TRUNAJOD2.0|1.095290251916758e-05| +|setup.py|github/PyPSA/atlite|1.095290251916758e-05| +|setup.py|github/Bahler-Lab/pyphe|1.095290251916758e-05| +|setup.py|github/RaRe-Technologies/gensim|1.095290251916758e-05| +|setup.py|github/edwardoughton/itmlogic|1.095290251916758e-05| +|setup.py|github/icecube/FIRESONG|1.095290251916758e-05| +|setup.py|github/HillLab/SomaticSiMu|1.095290251916758e-05| +|setup.py|github/jollejolles/pirecorder|1.095290251916758e-05| +|setup.py|github/SouthGreenPlatform/PyRice|1.095290251916758e-05| +|setup.py|github/fakedrtom/oncogemini|1.095290251916758e-05| +|setup.py|github/davidebolo1993/TRiCoLOR|1.095290251916758e-05| +|setup.py|github/davidebolo1993/VISOR|1.095290251916758e-05| +|setup.py|github/yatiml/yatiml|1.095290251916758e-05| +|setup.py|github/Nico-Curti/rFBP|1.095290251916758e-05| +|setup.py|github/ECSHackWeek/impedance.py|1.095290251916758e-05| +|setup.py|github/cabb99/open3spn2|1.095290251916758e-05| +|setup.py|github/neuralhydrology/neuralhydrology|1.095290251916758e-05| +|setup.py|github/RamanLab/iCOMIC|1.095290251916758e-05| +|setup.py|github/samaygarg/fuelcell|1.095290251916758e-05| +|setup.py|github/comprna/reorientexpress|1.095290251916758e-05| +|setup.py|github/Singh-Lab/DeMaSk|1.095290251916758e-05| +|setup.py|github/COVID-IWG/epimargin|1.095290251916758e-05| +|setup.py|github.com/idptools/metapredict|1.095290251916758e-05| +|setup.py|github/bio-ontology-research-group/deepgoplus|1.095290251916758e-05| +|setup.py|github/potassco/clingo|1.095290251916758e-05| +|setup.py|github/IMMM-SFA/mosartwmpy|1.095290251916758e-05| +|setup.py|github/rgmyr/corebreakout|1.095290251916758e-05| +|setup.py|github/tylunel/pvpumpingsystem|1.095290251916758e-05| +|setup.py|github/iomega/spec2vec|1.095290251916758e-05| +|setup.py|github/bethgelab/foolbox|1.095290251916758e-05| +|setup.py|github/stammler/simframe|1.095290251916758e-05| +|setup.py|github/ml-evs/matador|1.095290251916758e-05| +|setup.py|github/DrafProject/elmada|1.095290251916758e-05| +|setup.py|github/nlesc-nano/swan|1.095290251916758e-05| +|setup.py|github/nlesc-nano/flamingo|1.095290251916758e-05| +|setup.py|github/nlesc-nano/insilico-server|1.095290251916758e-05| +|setup.py|github/nlesc-nano/ceiba-cli|1.095290251916758e-05| +|setup.py|github/nlesc-nano/ceiba|1.095290251916758e-05| +|setup.py|github/nlesc-nano/CAT|1.095290251916758e-05| +|setup.py|github/nlesc-nano/Moka|1.095290251916758e-05| +|setup.py|github/ElectionDataAnalysis/electiondata|1.095290251916758e-05| +|setup.py|github/pybamm-team/liionpack|1.095290251916758e-05| +|setup.py|github/wilkelab/Opfi|1.095290251916758e-05| +|setup.py|github/jorisparet/partycls|1.095290251916758e-05| +|setup.py|github/s-goldman/Dusty-Evolved-Star-Kit|1.095290251916758e-05| +|setup.py|github/JohannesBuchner/BXA|1.095290251916758e-05| +|setup.py|github/mjacob1002/Eir|1.095290251916758e-05| +|setup.py|github/ORNL/tx2|1.095290251916758e-05| +|setup.py|github/colour-science/colour|1.095290251916758e-05| +|setup.py|github/ModellingWebLab/chaste-codegen|1.095290251916758e-05| +|setup.py|github/DeepRank/DeepRank-GNN|1.095290251916758e-05| +|setup.py|github/DeepRank/pdb2sql|1.095290251916758e-05| +|setup.py|github/DeepRank/iScore|1.095290251916758e-05| +|setup.py|github/DeepRank/pssmgen|1.095290251916758e-05| +|setup.py|github/DeepRank/deeprank|1.095290251916758e-05| +|setup.py|github/athulpg007/AMAT|1.095290251916758e-05| +|setup.py|github/HIPS/autograd|1.095290251916758e-05| +|setup.py|github/shirtsgroup/physical_validation|1.095290251916758e-05| +|setup.py|github/ni1o1/transbigdata|1.095290251916758e-05| +|setup.py|github/hknd23/idcempy|1.095290251916758e-05| +|setup.py|github/panoptes-organization/panoptes|1.095290251916758e-05| +|setup.py|github/Theano/Theano|1.095290251916758e-05| +|setup.py|github/LBNL-ETA/MSWH|1.095290251916758e-05| +|setup.py|github/SirSharpest/NarrowEscapeSimulator|1.095290251916758e-05| +|setup.py|github/htjb/maxsmooth|1.095290251916758e-05| +|setup.py|github/skovaka/UNCALLED|1.095290251916758e-05| +|setup.py|github/easybuilders/easybuild|1.095290251916758e-05| +|setup.py|github/3D-e-Chem/sygma|1.095290251916758e-05| +|setup.py|github/3D-e-Chem/kripodb|1.095290251916758e-05| +|setup.py|github/indralab/pybiopax|1.095290251916758e-05| +|setup.py|github/benvanwerkhoven/kernel_tuner|1.095290251916758e-05| +|setup.py|github/spokenlanguage/platalea|1.095290251916758e-05| +|setup.py|github/NKI-CCB/PRECISE|1.095290251916758e-05| +|setup.py|github/twesterhout/lattice-symmetries|1.095290251916758e-05| +|setup.py|github/matplotlib/matplotlib|1.095290251916758e-05| +|setup.py|github/BioSTEAMDevelopmentGroup/thermosteam|1.095290251916758e-05| +|setup.py|github/slzarate/parliament2|1.095290251916758e-05| +|setup.py|github/aiidateam/kiwipy|1.095290251916758e-05| +|setup.py|github/opimwue/ddop|1.095290251916758e-05| +|setup.py|github/bootphon/phonemizer|1.095290251916758e-05| +|setup.py|github/CEED/libCEED|1.095290251916758e-05| +|setup.py|github/dask/dask|1.095290251916758e-05| +|setup.py|github/aalhossary/pyemgpipeline|1.095290251916758e-05| +|setup.py|github/rhayes777/PyAutoFit|1.095290251916758e-05| +|setup.py|github/conda/conda|1.095290251916758e-05| +|setup.py|github/eWaterCycle/grpc4bmi|1.095290251916758e-05| +|setup.py|github/eWaterCycle/jupyterlab_thredds|1.095290251916758e-05| +|setup.py|github/AlexanderLabWHOI/EUKulele|1.095290251916758e-05| +|setup.py|github/PfizerRD/sit2standpy|1.095290251916758e-05| +|setup.py|github/circuitgraph/circuitgraph|1.095290251916758e-05| +|setup.py|github/volkamerlab/opencadd|1.095290251916758e-05| +|setup.py|github/odb9402/CNNPeaks|1.095290251916758e-05| +|setup.py|github/KathrynJones1/catwoman|1.095290251916758e-05| +|setup.py|github/NLeSC/cptm|1.095290251916758e-05| +|setup.py|github/NLeSC/Massive-PotreeConverter|1.095290251916758e-05| +|setup.py|github/NLeSC/noodles|1.095290251916758e-05| +|setup.py|github/NLeSC/mcfly|1.095290251916758e-05| +|setup.py|github/NLeSC/boatswain|1.095290251916758e-05| +|setup.py|github/fitbenchmarking/fitbenchmarking|1.095290251916758e-05| +|setup.py|github/CLARIAH/grlc|1.095290251916758e-05| +|setup.py|github/mzy2240/ESA|1.095290251916758e-05| +|setup.py|github/KBNLresearch/ochre|1.095290251916758e-05| +|setup.py|github/jiahecui/SenAOReFoc|1.095290251916758e-05| +|setup.py|github/21cmFAST/21cmFAST|1.095290251916758e-05| +|setup.py|github/cbalbin-FIU/Epitopedia|1.095290251916758e-05| +|setup.py|github/chasmani/piecewise-regression|1.095290251916758e-05| +|setup.py|github/benhid/Sequoya|1.095290251916758e-05| +|setup.py|github/SynthSys/pyOmeroUpload|1.095290251916758e-05| +|setup.py|github/swiftsim/swiftsimio|1.095290251916758e-05| +|setup.py|github/girder/viime|1.095290251916758e-05| +|setup.py|github/dmnfarrell/snpgenie|1.095290251916758e-05| +|setup.py|github/dmnfarrell/epitopepredict|1.095290251916758e-05| +|setup.py|github/BackmanLab/PWSpy|1.095290251916758e-05| +|setup.py|github/NeuralEnsemble/PyNN|1.095290251916758e-05| +|setup.py|github/kerkelae/disimpy|1.095290251916758e-05| +|setup.py|github/fermisurfaces/IFermi|1.095290251916758e-05| +|setup.py|github/shilpagarg/WHdenovo|1.095290251916758e-05| +|setup.py|github/recipy/recipy|1.095290251916758e-05| +|setup.py|github/jmschrei/pomegranate|1.095290251916758e-05| +|setup.py|github/SCECcode/pycsep|1.095290251916758e-05| +|setup.py|github/antoinediez/Sisyphe|1.095290251916758e-05| +|setup.py|github/BritishGeologicalSurvey/pyvolcans|1.095290251916758e-05| +|setup.py|github/DynaSlum/satsense|1.095290251916758e-05| +|setup.py|github/nlppln/nlppln|1.095290251916758e-05| +|setup.py|github/actris-cloudnet/cloudnetpy|1.095290251916758e-05| +|setup.py|github/fruzsinaagocs/oscode|1.095290251916758e-05| +|setup.py|github/equib/pyEQUIB|1.095290251916758e-05| +|setup.py|github/sambit-giri/tools21cm|1.095290251916758e-05| +|setup.py|github/Electrostatics/apbs|1.095290251916758e-05| +|setup.py|github/MillionConcepts/lhorizon|1.095290251916758e-05| +|setup.py|github/coljac/sensie|1.095290251916758e-05| +|setup.py|github/FreBio/komics|1.095290251916758e-05| +|setup.py|github/vsoch/gridtest|1.095290251916758e-05| +|setup.py|github/raspishake/rsudp|1.095290251916758e-05| +|setup.py|github/ERA-URBAN/fm128_radar|1.095290251916758e-05| +|setup.py|github/sagepublishing/rejected_article_tracker_pkg|1.095290251916758e-05| +|setup.py|github/davemlz/eemont|1.095290251916758e-05| +|setup.py|github/sebhaan/geobo|1.095290251916758e-05| +|setup.py|github/abrupt-climate/hyper-canny|1.095290251916758e-05| +|setup.py|github/adbar/htmldate|1.095290251916758e-05| +|setup.py|github/singularityhub/singularity-compose|1.095290251916758e-05| +|setup.py|github/singularityhub/singularity-hpc|1.095290251916758e-05| +|setup.py|github/cas-bioinf/rboAnalyzer|1.095290251916758e-05| +|setup.py|github/samuelefiorini/tangle|1.095290251916758e-05| +|DESCRIPTION|gitlab/libreumg/dataquier|1.095290251916758e-05| +|DESCRIPTION|gitlab/ampere2/metalwalls|1.095290251916758e-05| +|DESCRIPTION|github/pmoulos/metaseqR2|1.095290251916758e-05| +|DESCRIPTION|github/isoverse/isoreader|1.095290251916758e-05| +|DESCRIPTION|github/JSB-UCLA/scPNMF|1.095290251916758e-05| +|DESCRIPTION|github/cjbarrie/academictwitteR|1.095290251916758e-05| +|DESCRIPTION|github/kadyb/rgugik|1.095290251916758e-05| +|DESCRIPTION|github/MRCIEU/metaboprep|1.095290251916758e-05| +|DESCRIPTION|github/OrlandoLam/SAMT|1.095290251916758e-05| +|DESCRIPTION|github/VNNikolaidis/nnlib2Rcpp|1.095290251916758e-05| +|DESCRIPTION|github/mdsteiner/EFAtools|1.095290251916758e-05| +|DESCRIPTION|github/azizka/IUCNN|1.095290251916758e-05| +|DESCRIPTION|github/bommert/stabm|1.095290251916758e-05| +|DESCRIPTION|github/koenderks/jaspAudit|1.095290251916758e-05| +|DESCRIPTION|github/donaldRwilliams/GGMnonreg|1.095290251916758e-05| +|DESCRIPTION|github/donaldRwilliams/BGGM|1.095290251916758e-05| +|DESCRIPTION|github/rickhelmus/patRoon|1.095290251916758e-05| +|DESCRIPTION|github/metaOmics/MetaPath|1.095290251916758e-05| +|DESCRIPTION|github/meenakshi-kushwaha/mmaqshiny|1.095290251916758e-05| +|DESCRIPTION|github/r-cas/caracas|1.095290251916758e-05| +|DESCRIPTION|github/KiranLDA/PAMLr|1.095290251916758e-05| +|DESCRIPTION|github/saeyslab/PeacoQC|1.095290251916758e-05| +|DESCRIPTION|github/saeyslab/nichenetr|1.095290251916758e-05| +|DESCRIPTION|github/lrnv/cort|1.095290251916758e-05| +|DESCRIPTION|github/lydialucchesi/Vizumap|1.095290251916758e-05| +|DESCRIPTION|github/Sydney-Informatics-Hub/OmixLitMiner|1.095290251916758e-05| +|DESCRIPTION|github/stemangiola/tidyHeatmap|1.095290251916758e-05| +|DESCRIPTION|github/mcsiple/mmrefpoints|1.095290251916758e-05| +|DESCRIPTION|github/OwenWard/ppdiag|1.095290251916758e-05| +|DESCRIPTION|github/easystats/performance|1.095290251916758e-05| +|DESCRIPTION|github/easystats/parameters|1.095290251916758e-05| +|DESCRIPTION|github/easystats/effectsize|1.095290251916758e-05| +|DESCRIPTION|github/easystats/correlation|1.095290251916758e-05| +|DESCRIPTION|github/r-spatial/rgee|1.095290251916758e-05| +|DESCRIPTION|github/oneilsh/tidytensor|1.095290251916758e-05| +|DESCRIPTION|github/ArgoCanada/argodata|1.095290251916758e-05| +|DESCRIPTION|github/JonasRieger/ldaPrototype|1.095290251916758e-05| +|DESCRIPTION|github/mlr-org/mcboost|1.095290251916758e-05| +|DESCRIPTION|github/bcgov/shinyssdtools|1.095290251916758e-05| +|DESCRIPTION|github/bcgov/bcdata|1.095290251916758e-05| +|DESCRIPTION|github/BrianAronson/birankr|1.095290251916758e-05| +|DESCRIPTION|github/cran/irtplay|1.095290251916758e-05| +|DESCRIPTION|github/Dulab2020/ARMT|1.095290251916758e-05| +|DESCRIPTION|github/bblodfon/emba|1.095290251916758e-05| +|DESCRIPTION|github/Jinsl-lab/SDImpute|1.095290251916758e-05| +|DESCRIPTION|github/tinglabs/scAIDE|1.095290251916758e-05| +|DESCRIPTION|github/llrs/experDesign|1.095290251916758e-05| +|DESCRIPTION|github/rauschenberger/joinet|1.095290251916758e-05| +|DESCRIPTION|github/vbaliga/gaussplotR|1.095290251916758e-05| +|DESCRIPTION|github/akcochrane/TEfits|1.095290251916758e-05| +|DESCRIPTION|github/kendomaniac/docker4seq|1.095290251916758e-05| +|DESCRIPTION|github/kendomaniac/rCASC|1.095290251916758e-05| +|DESCRIPTION|github/RajLabMSSM/echolocatoR|1.095290251916758e-05| +|DESCRIPTION|github/haoharryfeng/NeuCA|1.095290251916758e-05| +|DESCRIPTION|github/HajkD/LTRpred|1.095290251916758e-05| +|DESCRIPTION|github/flosalbizziae/kataegis|1.095290251916758e-05| +|DESCRIPTION|github/timoast/signac|1.095290251916758e-05| +|DESCRIPTION|github/ClaudioZandonella/PRDA|1.095290251916758e-05| +|DESCRIPTION|github/asancpt/caffsim|1.095290251916758e-05| +|DESCRIPTION|github/tlverse/hal9001|1.095290251916758e-05| +|DESCRIPTION|github/pratheesh3780/grapesAgri1|1.095290251916758e-05| +|DESCRIPTION|github/USEPA/nsink|1.095290251916758e-05| +|DESCRIPTION|github/ColemanRHarris/mxnorm|1.095290251916758e-05| +|DESCRIPTION|github/r-spatialecology/shar|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/rotemplate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/pkgreviewr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/roblog|1.095290251916758e-05| +|DESCRIPTION|github/lasseignelab/CINmetrics|1.095290251916758e-05| +|DESCRIPTION|github/ants-project/ANTs|1.095290251916758e-05| +|DESCRIPTION|github/nhejazi/txshift|1.095290251916758e-05| +|DESCRIPTION|github/nhejazi/medoutcon|1.095290251916758e-05| +|DESCRIPTION|github/ShixiangWang/sigminer|1.095290251916758e-05| +|DESCRIPTION|github/constantAmateur/SoupX|1.095290251916758e-05| +|DESCRIPTION|github/SchlossLab/mikropml|1.095290251916758e-05| +|DESCRIPTION|github/SofieVG/FlowSOM|1.095290251916758e-05| +|DESCRIPTION|github/ComtekAdvancedStructures/cmstatr|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/ambrosia|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/rfasst|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/plutus|1.095290251916758e-05| +|DESCRIPTION|github/TomKellyGenetics/graphsim|1.095290251916758e-05| +|DESCRIPTION|github/YuLab-SMU/treeio|1.095290251916758e-05| +|DESCRIPTION|github/MAnalytics/opitools|1.095290251916758e-05| +|DESCRIPTION|github/MAnalytics/akmedoids|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/reviewer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/monkeylearn|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/arresteddev|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/rodev|1.095290251916758e-05| +|DESCRIPTION|github/wesleyburr/subMaldi|1.095290251916758e-05| +|DESCRIPTION|github/adithirgis/pollucheck|1.095290251916758e-05| +|DESCRIPTION|github/tgrimes/SeqNet|1.095290251916758e-05| +|DESCRIPTION|github/tidyverse/glue|1.095290251916758e-05| +|DESCRIPTION|github/alexander-pastukhov/bistablehistory|1.095290251916758e-05| +|DESCRIPTION|github/ejikeugba/serp|1.095290251916758e-05| +|DESCRIPTION|github/aranyics/ReDCM|1.095290251916758e-05| +|DESCRIPTION|github/mmahmoudian/sivs|1.095290251916758e-05| +|DESCRIPTION|github/SwissClinicalTrialOrganisation/secuTrialR|1.095290251916758e-05| +|DESCRIPTION|github/msalibian/RBF|1.095290251916758e-05| +|DESCRIPTION|github/IndrajeetPatil/ggstatsplot|1.095290251916758e-05| +|DESCRIPTION|github/IndrajeetPatil/statsExpressions|1.095290251916758e-05| +|DESCRIPTION|github/IMB-Computational-Genomics-Lab/scGPS|1.095290251916758e-05| +|DESCRIPTION|github/IMMM-SFA/gamut|1.095290251916758e-05| +|DESCRIPTION|github/SJTU-CGM/ivTerm|1.095290251916758e-05| +|DESCRIPTION|github/VBlesius/RHRT|1.095290251916758e-05| +|DESCRIPTION|github/dankelley/oce|1.095290251916758e-05| +|DESCRIPTION|github/Hegghammer/daiR|1.095290251916758e-05| +|DESCRIPTION|github/wadpac/GGIR|1.095290251916758e-05| +|DESCRIPTION|github/dpseidel/stmove|1.095290251916758e-05| +|DESCRIPTION|github/BMILAB/scLINE|1.095290251916758e-05| +|DESCRIPTION|github/signaturescience/skater|1.095290251916758e-05| +|DESCRIPTION|github/anwarbio/bioassays|1.095290251916758e-05| +|DESCRIPTION|github/niceume/datasailr|1.095290251916758e-05| +|DESCRIPTION|github/nevrome/bleiglas|1.095290251916758e-05| +|DESCRIPTION|github/dgrun/FateID|1.095290251916758e-05| +|DESCRIPTION|github/raredd/kmdata|1.095290251916758e-05| +|DESCRIPTION|github/sachsmc/cosinor|1.095290251916758e-05| +|DESCRIPTION|github/GaryBAYLOR/mixR|1.095290251916758e-05| +|DESCRIPTION|github/humanfactors/FIPS|1.095290251916758e-05| +|DESCRIPTION|github/weizhouUMICH/SAIGE|1.095290251916758e-05| +|DESCRIPTION|github/mrc-ide/individual|1.095290251916758e-05| +|DESCRIPTION|github/johannes-titz/cofad|1.095290251916758e-05| +|DESCRIPTION|github/RETURN-project/BenchmarkRecovery|1.095290251916758e-05| +|DESCRIPTION|github/LindaNab/mecor|1.095290251916758e-05| +|DESCRIPTION|github/CornellLabofOrnithology/auk|1.095290251916758e-05| +|DESCRIPTION|github/yiling0210/APIR|1.095290251916758e-05| +|DESCRIPTION|github/martin3141/spant|1.095290251916758e-05| +|DESCRIPTION|github/radio1988/OneStopRNAseq|1.095290251916758e-05| +|DESCRIPTION|github/r-lib/gert|1.095290251916758e-05| +|DESCRIPTION|github/r-lib/credentials|1.095290251916758e-05| +|DESCRIPTION|github/alan-turing-institute/DetectorChecker|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/trufflesniffer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DoOR.functions|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/colocr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearthhires|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/brranching|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/refsplitr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nodbi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/iheatmapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmplotr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfisheries|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/skynet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/AntWeb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rerddap|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/plater|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stantargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/PostcodesioR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DataPackageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gittargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/parzer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/citesdb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/baRcodeR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chirps|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ghql|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geojsonlint|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ecoengine|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tabulizer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ezknitr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/babette|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/awardFindR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tracerer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treestartr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ckanr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/antiword|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/addressable|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fauxpas|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnpn|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nomisr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rperseus|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/infx|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/helminthR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/USAboundariesData|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rsat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/patentsview|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/microdemic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcoreoa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/drake|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidypmc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/clifro|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxlist|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidync|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrricanes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pixelclasser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider.devtools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgpdd|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/censo2017|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nlrx|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ramlegacy|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jstor|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/finch|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/EML|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/emld|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/onekp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tiler|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RNeXML|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rotl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rsnps|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outcomerate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jagstargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treebase|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tarchetypes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/refimpact|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/googleLanguageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/UCSCXenaTools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tesseract|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bib2df|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wdman|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmextract|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnoaa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/allodb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ots|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/graphql|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rbhl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/arkdb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/terrainr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hunspell|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/paleobioDB|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rplos|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdefra|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/worrms|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gtfsr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hddtools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcitoid|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treedata.table|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxadb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wellknown|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rppo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/neotoma|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/xslt|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hydroscoper|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcites|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/oai|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/BaseSet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/medrxivr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/conditionz|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dataaimsr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dittodb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/textreuse|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/eia|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/qpdf|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxize|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdatacite|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tif|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stplanr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cleanEHR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osfr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/popler|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rAltmetric|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/qualtRics|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/workloopR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/solrium|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/camsRad|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mauricer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/targets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/piggyback|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/comtradr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/crul|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/beautier|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spocc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tradestatistics|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fingertipsR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/Rclean|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgbif|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencontext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/git2r|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jenkins|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider.base|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nasapower|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cyphr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phonfieldwork|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/roadoi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pangaear|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jsonld|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdhs|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearthdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfigshare|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/zbank|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfishbase|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/suppdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/prism|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dataspice|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/git2rdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/webchem|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdflib|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/USAboundaries|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/seasl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gitignore|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/restez|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/lingtypology|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gutenbergr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bold|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cld2|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pendulum|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dbhydroR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/beastier|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/grainchanger|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/staypuft|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/historydata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfema|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdataretriever|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidyhydat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/c14bazAAR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spatsoc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tinkr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rredlist|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/isdparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bikedata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/webmockr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxview|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MODIStsp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nbaR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/traits|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rglobi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylogram|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearth|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rbace|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ssh|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rentrez|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ijtiff|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rorcid|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/NLMR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bowerbird|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/vcr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bomrang|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/getCRUCLdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cRegulome|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rtweet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rusda|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/robotstxt|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DataSpaceR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnassqs|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/charlatan|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/riem|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cde|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geonames|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ritis|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxizedb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mapscanner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrlite|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcrossref|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/GSODR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/elastic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cchecks|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spelling|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tokenizers|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgnparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cld3|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pdftools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/epubr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/sofa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rromeo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/aRxiv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wateRinfo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/landscapetools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/datapack|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/timefuzz|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bibtex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/plotly|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/scrubr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/Rpolyhedra|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opentripplanner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chromer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rmangal|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylocomr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rebird|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rvertnet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencage|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/antanym|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RefManageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/SymbiotaR2|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdryad|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/slopes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rzmq|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/coder|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/unrtf|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/smapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/magick|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/handlr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MODISTools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rtika|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylotaR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/FedData|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pubchunks|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/natserv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jqr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/virtuoso|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hoardr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chlorpromazineR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/namext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stats19|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ruODK|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mctq|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dbparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/internetarchive|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/excluder|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrricanesdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/exoplanets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geojsonio|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wikitaxa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tacmagic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/assertr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pathviewr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rWBclimate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rAvis|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/weathercan|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fulltext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jsonvalidate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mcbette|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DoOR.data|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/visdat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/skimr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/codemetar|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/essurvey|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/biomartr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/randgeo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/photosearcher|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/writexl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mregions|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/av|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/CoordinateCleaner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/europepmc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/circle|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/getlandsat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/EndoMineR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/katex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/binman|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cffr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bittrex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/citecorp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rinat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/lightr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gistr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MtreeRing|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RSelenium|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcol|1.095290251916758e-05| +|DESCRIPTION|github/NLeSC/EEG-epilepsy-diagnosis|1.095290251916758e-05| +|DESCRIPTION|github/NLeSC/compressing-the-sky|1.095290251916758e-05| +|DESCRIPTION|github/david-barnett/microViz|1.095290251916758e-05| +|DESCRIPTION|github/epiforecasts/covidregionaldata|1.095290251916758e-05| +|DESCRIPTION|github/ArkajyotiSaha/RandomForestsGLS|1.095290251916758e-05| +|DESCRIPTION|github/fumi-github/omicwas|1.095290251916758e-05| +|DESCRIPTION|github/ramadatta/CPgeneProfiler|1.095290251916758e-05| +|DESCRIPTION|github/tidymodels/infer|1.095290251916758e-05| +|DESCRIPTION|github/tbep-tech/tbeptools|1.095290251916758e-05| +|DESCRIPTION|github/julia-wrobel/registr|1.095290251916758e-05| +|DESCRIPTION|github/rhenkin/visxhclust|1.095290251916758e-05| +|DESCRIPTION|github/ezer/PAFway|1.095290251916758e-05| +|DESCRIPTION|github/hope-data-science/tidyfst|1.095290251916758e-05| +|DESCRIPTION|github/GabrielNakamura/FishPhyloMaker|1.095290251916758e-05| +|DESCRIPTION|github/rcarragh/c212|1.095290251916758e-05| +|DESCRIPTION|github/prdm0/ropenblas|1.095290251916758e-05| +|DESCRIPTION|github/snystrom/memes|1.095290251916758e-05| +|DESCRIPTION|github/CTU-Bern/presize|1.095290251916758e-05| +|DESCRIPTION|github/saezlab/PHONEMeS|1.095290251916758e-05| +|DESCRIPTION|github/andyphilips/dynamac|1.095290251916758e-05| +|DESCRIPTION|github/xoopR/set6|1.095290251916758e-05| +|DESCRIPTION|github/ecological-cities/home2park|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/allcontributors|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/gendercoder|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/r2readthedocs|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/qcoder|1.095290251916758e-05| +|DESCRIPTION|github/arcaldwell49/SimplyAgree|1.095290251916758e-05| +|DESCRIPTION|github/chainsawriot/sweater|1.095290251916758e-05| +|DESCRIPTION|github/chainsawriot/oolong|1.095290251916758e-05| +|DESCRIPTION|github/DidierMurilloF/FielDHub|1.095290251916758e-05| +|DESCRIPTION|github/VincentAlcazer/StatAid|1.095290251916758e-05| +|DESCRIPTION|github/takfung/ResDisMapper|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/roreviewapi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/autotest|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/srr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/pkgcheck|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/pkgstats|1.095290251916758e-05| +|DESCRIPTION|github/samhforbes/PupillometryR|1.095290251916758e-05| +|DESCRIPTION|github/jorittmo/singcar|1.095290251916758e-05| +|DESCRIPTION|github/abschneider/StrainHub|1.095290251916758e-05| +|DESCRIPTION|github/insilico/cncv|1.095290251916758e-05| +|DESCRIPTION|github/zoometh/iconr|1.095290251916758e-05| +|DESCRIPTION|github/jessecambon/tidygeocoder|1.095290251916758e-05| +|DESCRIPTION|github/mingzehuang/latentcor|1.095290251916758e-05| +|DESCRIPTION|github/zhouzilu/DENDRO|1.095290251916758e-05| +|package.json|gitlab/metafundev/metafun|1.095290251916758e-05| +|package.json|gitlab/magnumpi/magnumpi|1.095290251916758e-05| +|package.json|gitlab/geekysquirrel/bigx|1.095290251916758e-05| +|package.json|github/Yomguithereal/talisman|1.095290251916758e-05| +|package.json|github/wangjun1996/VisFeature|1.095290251916758e-05| +|package.json|github/research-software-directory/research-software-directory|1.095290251916758e-05| +|package.json|github/reproducible-biomedical-modeling/Biosimulations|1.095290251916758e-05| +|package.json|github/PathwayCommons/grounding-search|1.095290251916758e-05| +|package.json|github/interactivereport/OmicsView0|1.095290251916758e-05| +|package.json|github/AA-ALERT/frbcat-web|1.095290251916758e-05| +|package.json|github/MaayanLab/signature-commons-ui|1.095290251916758e-05| +|package.json|github/sonjageorgievska/CClusTera|1.095290251916758e-05| +|package.json|github/davidhoksza/MolArt|1.095290251916758e-05| +|package.json|github/ADAH-EviDENce/evidence|1.095290251916758e-05| +|package.json|github/MichaelSel/edoJS|1.095290251916758e-05| +|package.json|github/phelelani/nf-rnaSeqMetagen|1.095290251916758e-05| +|package.json|github/eweitz/ideogram|1.095290251916758e-05| +|package.json|github/tobiasrausch/alfred|1.095290251916758e-05| +|package.json|github/MolMeDB/MolMeDB|1.095290251916758e-05| +|package.json|github/pmkruyen/dearscholar|1.095290251916758e-05| +|package.json|github/cinemascience/cinema_snap|1.095290251916758e-05| +|package.json|github/amkram/shusher|1.095290251916758e-05| +|package.json|github/lumen-org/lumen|1.095290251916758e-05| +|package.json|github/iomega/zenodo-upload|1.095290251916758e-05| +|package.json|github/iomega/paired-data-form|1.095290251916758e-05| +|package.json|github/CrowdTruth/CrowdTruth|1.095290251916758e-05| +|package.json|github/hetalang/heta-compiler|1.095290251916758e-05| +|package.json|github/biosimulations/Biosimulations|1.095290251916758e-05| +|package.json|github/eucp-project/storyboards|1.095290251916758e-05| +|package.json|github/eucp-project/atlas|1.095290251916758e-05| +|package.json|github/eWaterCycle/eWaterleaf|1.095290251916758e-05| +|package.json|github/eWaterCycle/setup-grpc|1.095290251916758e-05| +|package.json|github/eWaterCycle/Cesium-NcWMS|1.095290251916758e-05| +|package.json|github/eWaterCycle/setup-singularity|1.095290251916758e-05| +|package.json|github/tortellini-tools/action|1.095290251916758e-05| +|package.json|github/NLeSC/DiVE|1.095290251916758e-05| +|package.json|github/NLeSC/ExtJS-DateTime|1.095290251916758e-05| +|package.json|github/NLeSC/xenon-flow|1.095290251916758e-05| +|package.json|github/NLeSC/UncertaintyVisualization|1.095290251916758e-05| +|package.json|github/NLeSC/pattyvis|1.095290251916758e-05| +|package.json|github/NLeSC/nlesc-serverless-boilerplate|1.095290251916758e-05| +|package.json|github/NLeSC/case-law-app|1.095290251916758e-05| +|package.json|github/NLeSC/spot|1.095290251916758e-05| +|package.json|github/NLeSC/docker-couch-admin|1.095290251916758e-05| +|package.json|github/ci-for-science/self-hosted-runners|1.095290251916758e-05| +|package.json|github/PopMedNet-Team/popmednet|1.095290251916758e-05| +|package.json|github/meta-logic/sequoia|1.095290251916758e-05| +|package.json|github/ReGIS-org/regis-v2|1.095290251916758e-05| +|package.json|github/ci-for-research/self-hosted-runners|1.095290251916758e-05| +|package.json|github/emrecdem/emo-spectre|1.095290251916758e-05| +|package.json|github/Via-Appia/via-appia-online-viewer|1.095290251916758e-05| +|package.json|github/DorianDepriester/mtex2Gmsh|1.095290251916758e-05| +|package.json|github/dondi/GRNsight|1.095290251916758e-05| +|package.json|github/bramvandijk88/cacatoo|1.095290251916758e-05| +|package.json|github/klevis-a/kinematics-vis|1.095290251916758e-05| +|package.json|github/EMResearch/EvoMaster|1.095290251916758e-05| +|package.json|github/bio-tools/biotoolsSum|1.095290251916758e-05| +|package.json|github/fairdataihub/SPARClink|1.095290251916758e-05| +|package.json|github/luntergroup/octopus|1.095290251916758e-05| +|package.json|github/nlesc-sherlock/Rig|1.095290251916758e-05| +|package.json|github/TNOCS/csWeb|1.095290251916758e-05| +|package.json|github/citation-file-format/cff-initializer-javascript|1.095290251916758e-05| +|package.json|github/mathjax/MathJax|1.095290251916758e-05| +|package.json|github/vibbits/phyd3|1.095290251916758e-05| +|Gemfile|github/tudelft3d/3dfier|1.095290251916758e-05| +|Gemfile|github/scrook/neuroml-db|1.095290251916758e-05| +|Gemfile|github/quadram-institute-bioscience/dadaist2|1.095290251916758e-05| +|Gemfile|github/codidact/qpixel|1.095290251916758e-05| +|go.mod|github/mlpack/mlpack|1.095290251916758e-05| +|go.mod|github/jasonyangshadow/lpmx|1.095290251916758e-05| +|go.mod|github/sylabs/singularity|1.095290251916758e-05| +|go.mod|github/linksmart/thing-directory|1.095290251916758e-05| +|go.mod|github/containers/podman|1.095290251916758e-05| +|rubygems|activemodel|1.0880993361199901e-05| +|pypi|[Bio](https://github.com/ialbert/bio)|1.0843373493975925e-05| +|pypi|[serotools](https://github.com/CFSAN-Biostatistics/serotools)|1.0843373493975925e-05| +|pypi|[idcempy](https://github.com/hknd23/idcempy)|1.0843373493975925e-05| +|pypi|[vip-hci](https://github.com/vortex-exoplanet/VIP)|1.0843373493975925e-05| +|cran|[redux](https://github.com/richfitz/redux)|1.0843373493975925e-05| +|pypi|[pyarma](https://pyarma.sourceforge.io)|1.0843373493975904e-05| +|pypi|[macop](https://github.com/prise-3d/macop)|1.0843373493975904e-05| +|pypi|[multivar-horner](https://github.com/jannikmi/multivar_horner)|1.0843373493975904e-05| +|pypi|[neworder](https://neworder.readthedocs.io)|1.0843373493975904e-05| +|pypi|[pystospa](https://pypi.org/project/pystospa)|1.0843373493975904e-05| +|pypi|[Libra](https://github.com/Palashio/libra)|1.0843373493975904e-05| +|pypi|[hpccm](https://github.com/NVIDIA/hpc-container-maker)|1.0843373493975904e-05| +|pypi|[polypy](https://github.com/symmy596/Polypy)|1.0843373493975904e-05| +|pypi|[requirements](http://github.com/mattack108/requirements)|1.0843373493975904e-05| +|pypi|[itmlogic](https://github.com/edwardoughton/itmlogic)|1.0843373493975904e-05| +|pypi|[ReplicatedFocusingBeliefPropagation](https://github.com/Nico-Curti/rFBP)|1.0843373493975904e-05| +|pypi|[uncalled](https://github.com/elazarg/uncalled)|1.0843373493975904e-05| +|pypi|[kernel-tuner](http://benvanwerkhoven.github.io/kernel_tuner/)|1.0843373493975904e-05| +|pypi|[pyoscode](https://github.com/fruzsinaagocs/oscode)|1.0843373493975904e-05| +|pypi|[fm128-radar](https://github.com/ERA-URBAN/fm128_radar)|1.0843373493975904e-05| +|npm|leaflet-geotiff-2|1.0843373493975904e-05| +|pypi|[mergedeep](https://github.com/clarketm/mergedeep)|1.0843373493975903e-05| +|pypi|[pyyaml-env-tag](https://pypi.org/project/pyyaml-env-tag)|1.0843373493975903e-05| +|pypi|[Shapely](https://pypi.org/project/Shapely)|1.0843373493975903e-05| +|npm|rollup-plugin-license|1.0843373493975903e-05| +|npm|babel-plugin-remove-comments|1.0843373493975903e-05| +|npm|retape|1.0843373493975903e-05| +|npm|test|1.0843373493975903e-05| +|pypi|[mkdocs-material](https://pypi.org/project/mkdocs-material)|1.0827174243191254e-05| +|cran|[Rtsne](https://github.com/jkrijthe/Rtsne)|1.0816265060240964e-05| +|cran|[rmsfact](NA)|1.0734939759036146e-05| +|cran|[multicolor](https://github.com/aedobbyn/multicolor/)|1.0734939759036146e-05| +|cran|geomorph|1.0734939759036144e-05| +|rubygems|introspection|1.0734939759036144e-05| +|npm|babel-eslint|1.0669086911873181e-05| +|pypi|[m2r2](https://pypi.org/project/m2r2)|1.0524450744153083e-05| +|pypi|[pytest-raises](https://pypi.org/project/pytest-raises)|1.0524450744153083e-05| +|pypi|[flake8-debugger](https://pypi.org/project/flake8-debugger)|1.0524450744153083e-05| +|pypi|[yt-dlp](https://pypi.org/project/yt-dlp)|1.0524450744153083e-05| +|pypi|[webvtt-py](https://pypi.org/project/webvtt-py)|1.0524450744153083e-05| +|pypi|[truecase](https://pypi.org/project/truecase)|1.0524450744153083e-05| +|pypi|[rapidfuzz](https://pypi.org/project/rapidfuzz)|1.0524450744153083e-05| +|pypi|[google-cloud-speech](https://pypi.org/project/google-cloud-speech)|1.0524450744153083e-05| +|pypi|[ffmpeg-python](https://pypi.org/project/ffmpeg-python)|1.0524450744153083e-05| +|pypi|[pulumi-gcp](https://pypi.org/project/pulumi-gcp)|1.0524450744153083e-05| +|pypi|[pulumi-google-native](https://pypi.org/project/pulumi-google-native)|1.0524450744153083e-05| +|pypi|[fireo](https://pypi.org/project/fireo)|1.0524450744153083e-05| +|cran|[ggthemes](https://github.com/jrnold/ggthemes)|1.0493072978412509e-05| +|pypi|[pockets](https://pypi.org/project/pockets)|1.0460026824929915e-05| +|cran|clv|1.043674698795181e-05| +|cran|[geojson](https://docs.ropensci.org/geojson)|1.0391566265060246e-05| +|cran|[MLmetrics](http://github.com/yanyachen/MLmetrics)|1.0360479820155246e-05| +|pypi|[descartes](http://bitbucket.org/sgillies/descartes/)|1.0347794336687429e-05| +|npm|memfs|1.033734939759036e-05| +|npm|schema-utils|1.033734939759036e-05| +|npm|loader-utils|1.033734939759036e-05| +|cran|ncbit|1.0322057460611676e-05| +|cran|subplex|1.0322057460611676e-05| +|npm|[time-span](https://github.com/sindresorhus/time-span#readme)|1.0322057460611676e-05| +|npm|loud-rejection|1.0322057460611676e-05| +|npm|globby|1.0322057460611676e-05| +|npm|csv-spectrum|1.0322057460611676e-05| +|npm|bops|1.0322057460611676e-05| +|cran|[shinybusy](https://github.com/dreamRs/shinybusy)|1.0311757903721502e-05| +|rubygems|[sqlite3](https://github.com/sparklemotion/sqlite3-ruby)|1.029235308581264e-05| +|pypi|[obspy](https://www.obspy.org)|1.024096385542169e-05| +|cran|thor|1.0223752151462995e-05| +|cran|[fds](https://sites.google.com/site/hanlinshangswebsite/)|1.0195352839931153e-05| +|pypi|[fastapi](https://pypi.org/project/fastapi)|1.0188965996877893e-05| +|pypi|[deprecat](https://github.com/deprecat/deprecat)|1.0160101219926727e-05| +|cran|polycor|1.007372320163005e-05| +|pypi|[colorlog](https://github.com/borntyping/python-colorlog)|1.003012048192773e-05| +|pypi|[csvw](https://github.com/cldf/csvw)|1.0030120481927715e-05| +|cran|speedglm|1.0030120481927715e-05| +|cran|[pander](https://rapporter.github.io/pander/)|9.996322954154297e-06| +|pypi|[iso8601](https://pypi.org/project/iso8601)|9.985047215890589e-06| +|pypi|[google-resumable-media](https://github.com/googleapis/google-resumable-media-python)|9.97108694800872e-06| +|pypi|[requests-cache](https://github.com/reclosedev/requests-cache)|9.9519022913081e-06| +|pypi|[basic-modeling-interface](https://github.com/bmi-forum/bmi-python)|9.939759036144579e-06| +|pypi|[thefuzz](https://github.com/seatgeek/thefuzz)|9.85761226725082e-06| +|cran|misc3d|9.840361445783132e-06| +|npm|through|9.82350910707193e-06| +|cran|aws.signature|9.800040498126961e-06| +|pypi|[blis](https://pypi.org/project/blis)|9.766983628312737e-06| +|pypi|[catalogue](https://pypi.org/project/catalogue)|9.766983628312737e-06| +|pypi|[preshed](https://pypi.org/project/preshed)|9.766983628312737e-06| +|cran|SuperLearner|9.759036144578313e-06| +|cran|princurve|9.759036144578313e-06| +|cran|brglm|9.759036144578313e-06| +|cran|[robustbase](http://robustbase.r-forge.r-project.org/)|9.720309810671263e-06| +|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|9.709156626506024e-06| +|cran|[gistr](https://github.com/ropensci/gistr (devel))|9.707009857612272e-06| +|pypi|[kazoo](https://pypi.org/project/kazoo)|9.691265060240964e-06| +|pypi|[softlayer-messaging](https://pypi.org/project/softlayer-messaging)|9.691265060240964e-06| +|pypi|[pytest-celery](https://pypi.org/project/pytest-celery)|9.691265060240964e-06| +|pypi|[pyro4](https://pypi.org/project/pyro4)|9.691265060240964e-06| +|pypi|[python-memcached](https://pypi.org/project/python-memcached)|9.691265060240964e-06| +|pypi|[pylibmc](https://pypi.org/project/pylibmc)|9.691265060240964e-06| +|pypi|[librabbitmq](https://pypi.org/project/librabbitmq)|9.691265060240964e-06| +|pypi|[pycouchdb](https://pypi.org/project/pycouchdb)|9.691265060240964e-06| +|pypi|[couchbase](https://pypi.org/project/couchbase)|9.691265060240964e-06| +|pypi|[pydocumentdb](https://pypi.org/project/pydocumentdb)|9.691265060240964e-06| +|pypi|[python-consul2](https://pypi.org/project/python-consul2)|9.691265060240964e-06| +|pypi|[cassandra-driver](https://pypi.org/project/cassandra-driver)|9.691265060240964e-06| +|pypi|[pyArango](https://pypi.org/project/pyArango)|9.691265060240964e-06| +|pypi|[assertionlib](https://pypi.org/project/assertionlib)|9.655093747772152e-06| +|cran|PCICt|9.636413547165251e-06| +|cran|gld|9.636362664500058e-06| +|cran|torch|9.634047060348009e-06| +|cran|paws|9.634047060348009e-06| +|cran|keras|9.634047060348009e-06| +|cran|clustermq|9.634047060348009e-06| +|pypi|[colorcet](https://pypi.org/project/colorcet)|9.595944754628267e-06| +|pypi|[starlette](https://pypi.org/project/starlette)|9.587568811497717e-06| +|cran|grpreg|9.584767641996557e-06| +|cran|[ff](https://github.com/truecluster/ff)|9.571649096385531e-06| +|npm|fresh|9.569407437442074e-06| +|npm|etag|9.569407437442074e-06| +|npm|temp-path|9.569407437442074e-06| +|pypi|[pythreejs](https://pypi.org/project/pythreejs)|9.48891996557659e-06| +|pypi|[pyside2](https://pypi.org/project/pyside2)|9.48891996557659e-06| +|pypi|[vispy](https://pypi.org/project/vispy)|9.48891996557659e-06| +|pypi|[pyside](https://pypi.org/project/pyside)|9.48891996557659e-06| +|npm|mime-types|9.421934632941704e-06| +|pypi|[pyviz-comms](https://pypi.org/project/pyviz-comms)|9.36025092103953e-06| +|pypi|[pytest-notebook](https://github.com/chrisjsewell/pytest-notebook)|9.334730225248821e-06| +|pypi|[aio-pika](https://pypi.org/project/aio-pika)|9.334730225248821e-06| +|cran|pvclust|9.297106339408817e-06| +|cran|[themis](https://github.com/tidymodels/themis)|9.276142470757665e-06| +|cran|superpc|9.276142470757665e-06| +|cran|subselect|9.276142470757665e-06| +|cran|spls|9.276142470757665e-06| +|cran|pamr|9.276142470757665e-06| +|cran|mda|9.276142470757665e-06| +|cran|ipred|9.276142470757665e-06| +|cran|ellipse|9.276142470757665e-06| +|cran|earth|9.276142470757665e-06| +|cran|BradleyTerry2|9.276142470757665e-06| +|cran|recipes|9.276142470757665e-06| +|cran|pROC|9.276142470757665e-06| +|cran|ModelMetrics|9.276142470757665e-06| +|pypi|[emcee](https://emcee.readthedocs.io)|9.236677479147397e-06| +|npm|git-state|9.227293790546802e-06| +|npm|xpath|9.227293790546802e-06| +|npm|coffeescript|9.227293790546802e-06| +|npm|coffee-coverage|9.227293790546802e-06| +|npm|[split](http://github.com/dominictarr/split)|9.224035565338277e-06| +|pypi|[grpcio-status](https://pypi.org/project/grpcio-status)|9.214918510134027e-06| +|npm|run-sequence|9.179417828299067e-06| +|npm|gulp-if|9.179417828299067e-06| +|cran|yulab.utils|9.16220698805838e-06| +|pypi|[pytz-deprecation-shim](https://github.com/pganssle/pytz-deprecation-shim)|9.148321858864028e-06| +|pypi|[corner](https://corner.readthedocs.io)|9.138101356474865e-06| +|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|9.137568455640758e-06| +|rubygems|appraisal|9.128350135234818e-06| +|rubygems|tins|9.128350135234816e-06| +|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|9.119391202897655e-06| +|pypi|[python-telegram-bot](https://python-telegram-bot.org/)|9.036144578313253e-06| +|pypi|[twython](https://github.com/ryanmcgrath/twython/tree/master)|9.036144578313253e-06| +|cran|robustlmm|8.945783132530119e-06| +|cran|parsnip|8.945783132530119e-06| +|cran|multgee|8.945783132530119e-06| +|cran|merTools|8.945783132530119e-06| +|cran|marginaleffects|8.945783132530119e-06| +|cran|logistf|8.945783132530119e-06| +|cran|JM|8.945783132530119e-06| +|cran|gmnl|8.945783132530119e-06| +|cran|fungible|8.945783132530119e-06| +|cran|feisr|8.945783132530119e-06| +|cran|estimatr|8.945783132530119e-06| +|cran|epiR|8.945783132530119e-06| +|cran|crch|8.945783132530119e-06| +|cran|censReg|8.945783132530119e-06| +|cran|bife|8.945783132530119e-06| +|cran|bdsmatrix|8.945783132530119e-06| +|npm|grunt|8.87620340073008e-06| +|pypi|[pretty-midi](https://pypi.org/project/pretty-midi)|8.871851040525739e-06| +|pypi|[versioneer](https://github.com/python-versioneer/python-versioneer)|8.871851040525739e-06| +|npm|gulp-concat|8.847477823381436e-06| +|npm|gulp-jshint|8.847477823381436e-06| +|npm|gulp-rename|8.847477823381436e-06| +|npm|jshint-stylish|8.847477823381436e-06| +|cran|[corrplot](https://github.com/taiyun/corrplot)|8.823641482170336e-06| +|cran|[rfishbase](https://docs.ropensci.org/rfishbase/)|8.810240963855423e-06| +|npm|on-finished|8.806982738646894e-06| +|npm|basic-auth|8.806982738646894e-06| +|cran|[progressr](https://progressr.futureverse.org)|8.703233988585948e-06| +|cran|sparkline|8.654966384006113e-06| +|cran|distr6|8.643268727082243e-06| +|pypi|[zest.releaser](https://pypi.org/project/zest.releaser)|8.63197074010327e-06| +|cran|[geojsonsf](https://github.com/SymbolixAU/geojsonsf)|8.598713033954002e-06| +|rubygems|flexmock|8.587951807228913e-06| +|cran|[stringdist](https://github.com/markvanderloo/stringdist)|8.58433734939763e-06| +|cran|[archive](https://archive.r-lib.org/)|8.583661731606447e-06| +|cran|distributional|8.579372434794122e-06| +|cran|plainview|8.5730421686747e-06| +|cran|mapdeck|8.5730421686747e-06| +|npm|zuul|8.539156626506023e-06| +|pypi|[jaxlib](https://pypi.org/project/jaxlib)|8.534505669737777e-06| +|pypi|[aafigure](https://pypi.org/project/aafigure)|8.519793459552494e-06| +|pypi|[tox-travis](https://pypi.org/project/tox-travis)|8.519793459552494e-06| +|pypi|[win32-setctime](https://pypi.org/project/win32-setctime)|8.519793459552494e-06| +|pypi|[aiocontextvars](https://pypi.org/project/aiocontextvars)|8.519793459552494e-06| +|cran|[mlr3](https://mlr3.mlr-org.com)|8.50425111818512e-06| +|pypi|[mizani](https://github.com/has2k1/mizani)|8.442340791738389e-06| +|cran|[RcppParallel](https://rcppcore.github.io/RcppParallel/)|8.440580503833517e-06| +|cran|rainbow|8.434595524956968e-06| +|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|8.433734939759096e-06| +|cran|scagnostics|8.400635509069242e-06| +|cran|labelled|8.400635509069242e-06| +|cran|intergraph|8.400635509069242e-06| +|cran|chemometrics|8.400635509069242e-06| +|cran|broom.helpers|8.400635509069242e-06| +|cran|procmaps|8.39020291693088e-06| +|cran|MuMIn|8.347335411191068e-06| +|pypi|[grpcio-gcp](https://pypi.org/project/grpcio-gcp)|8.311304052302694e-06| +|cran|[tidytext](http://github.com/juliasilge/tidytext)|8.27873378998937e-06| +|cran|RProtoBuf|8.257645968489342e-06| +|pypi|[parameterized](https://pypi.org/project/parameterized)|8.23269727260691e-06| +|npm|[file-loader](https://github.com/webpack-contrib/file-loader)|8.218588640275405e-06| +|pypi|[vega-datasets](https://pypi.org/project/vega-datasets)|8.212161144578313e-06| +|cran|[lhs](https://github.com/bertcarnell/lhs)|8.209982788296044e-06| +|npm|browser-sync|8.2062199056492e-06| +|cran|limma|8.175069508804449e-06| +|cran|affy|8.175069508804449e-06| +|cran|marray|8.175069508804449e-06| +|pypi|[xopen](https://github.com/pycompression/xopen/)|8.113554216867496e-06| +|cran|[reactable](https://glin.github.io/reactable/)|8.109360518999075e-06| +|pypi|[json-tricks](https://github.com/mverleg/pyjson_tricks)|8.105421686746988e-06| +|cran|feather|8.023150893108986e-06| +|pypi|[Deprecated](https://pypi.org/project/Deprecated)|7.988883096801403e-06| +|cran|GenSA|7.962082443486323e-06| +|cran|MonetDBLite|7.951807228915663e-06| +|npm|updox|7.951807228915663e-06| +|npm|safename|7.951807228915663e-06| +|cran|RgoogleMaps|7.92921686746988e-06| +|cran|systemfonts|7.910939926955208e-06| +|pypi|[thinc](https://pypi.org/project/thinc)|7.843159298736365e-06| +|pypi|[boltons](https://pypi.org/project/boltons)|7.814707104279186e-06| +|pypi|[pytest-cov>=2.10](https://pypi.org/project/pytest-cov>=2.10)|7.814707104279186e-06| +|pypi|[pytest>=6.0](https://pypi.org/project/pytest>=6.0)|7.814707104279186e-06| +|pypi|[loompy>=3.0.5](https://pypi.org/project/loompy>=3.0.5)|7.814707104279186e-06| +|pypi|[scanpydoc>=0.7.3](https://pypi.org/project/scanpydoc>=0.7.3)|7.814707104279186e-06| +|pypi|[sphinx_issues](https://pypi.org/project/sphinx_issues)|7.814707104279186e-06| +|pypi|[sphinx-autodoc-typehints>=1.11.0](https://pypi.org/project/sphinx-autodoc-typehints>=1.11.0)|7.814707104279186e-06| +|pypi|[sphinx>=4.1,<4.2](https://pypi.org/project/sphinx>=4.1,<4.2)|7.814707104279186e-06| +|pypi|[packaging>=20](https://pypi.org/project/packaging>=20)|7.814707104279186e-06| +|pypi|[scipy>1.4](https://pypi.org/project/scipy>1.4)|7.814707104279186e-06| +|pypi|[numpy>=1.16.5](https://pypi.org/project/numpy>=1.16.5)|7.814707104279186e-06| +|pypi|[pandas>=1.1.1](https://pypi.org/project/pandas>=1.1.1)|7.814707104279186e-06| +|pypi|[qmflows](https://pypi.org/project/qmflows)|7.80484575665299e-06| +|cran|gdtools|7.802337168221759e-06| +|pypi|[streamz](https://pypi.org/project/streamz)|7.788715838965619e-06| +|pypi|[nbsmoke](https://pypi.org/project/nbsmoke)|7.788715838965619e-06| +|pypi|[nbsite](https://pypi.org/project/nbsite)|7.788715838965619e-06| +|cran|ExactData|7.778941854374017e-06| +|pypi|[WTForms](https://wtforms.readthedocs.io/)|7.761816496756258e-06| +|cran|Epi|7.752307933030825e-06| +|cran|memisc|7.752307933030825e-06| +|cran|descr|7.752307933030825e-06| +|cran|sylly.en|7.752307933030825e-06| +|cran|sylly|7.752307933030825e-06| +|pypi|[pathspec](https://pypi.org/project/pathspec)|7.7248080506569e-06| +|cran|[rjags](https://mcmc-jags.sourceforge.io)|7.715477293790552e-06| +|pypi|[bandit](https://pypi.org/project/bandit)|7.709067850348763e-06| +|cran|[R.matlab](https://github.com/HenrikBengtsson/R.matlab)|7.704991394148043e-06| +|cran|[pbivnorm](https://github.com/brentonk/pbivnorm)|7.683100824350031e-06| +|pypi|[lingua](https://pypi.org/project/lingua)|7.667814113597245e-06| +|cran|compiler|7.667814113597245e-06| +|cran|DoE.base|7.667814113597245e-06| +|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|7.664128865693186e-06| +|cran|RcppCCTZ|7.623576724480338e-06| +|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|7.591533757121766e-06| +|pypi|[soxr](https://pypi.org/project/soxr)|7.590361445783133e-06| +|pypi|[samplerate](https://pypi.org/project/samplerate)|7.590361445783133e-06| +|pypi|[presets](https://pypi.org/project/presets)|7.590361445783133e-06| +|pypi|[sphinxcontrib-svg2pdfconverter](https://pypi.org/project/sphinxcontrib-svg2pdfconverter)|7.590361445783133e-06| +|pypi|[mir-eval](https://pypi.org/project/mir-eval)|7.590361445783133e-06| +|pypi|[sphinx-multiversion](https://pypi.org/project/sphinx-multiversion)|7.590361445783133e-06| +|pypi|[resampy](https://pypi.org/project/resampy)|7.590361445783133e-06| +|pypi|[audioread](https://pypi.org/project/audioread)|7.590361445783133e-06| +|pypi|[pyaml](https://github.com/mk-fg/pretty-yaml)|7.563253012048208e-06| +|cran|DendSer|7.548985415345594e-06| +|pypi|[pyvista](https://pypi.org/project/pyvista)|7.540160642570282e-06| +|cran|[ridigbio](https://github.com/iDigBio/ridigbio)|7.530120481927717e-06| +|cran|[rvertnet](https://github.com/ropensci/rvertnet)|7.530120481927717e-06| +|cran|[rebird](https://docs.ropensci.org/rebird/)|7.530120481927717e-06| +|cran|[rbison](https://github.com/ropensci/rbison)|7.530120481927717e-06| +|cran|[rgbif](https://github.com/ropensci/rgbif (devel))|7.530120481927717e-06| +|pypi|[Keras](https://github.com/keras-team/keras)|7.507087172218284e-06| +|cran|rnaturalearthhires|7.506950880444857e-06| +|npm|imagemin-svgo|7.506950880444857e-06| +|npm|imagemin-optipng|7.506950880444857e-06| +|npm|imagemin-jpegtran|7.506950880444857e-06| +|npm|imagemin-gifsicle|7.506950880444857e-06| +|npm|pretty-bytes|7.506950880444857e-06| +|npm|plur|7.506950880444857e-06| +|npm|p-map|7.506950880444857e-06| +|npm|imagemin|7.506950880444857e-06| +|cran|[clusterCrit](http:www.r-project.org)|7.489808859498159e-06| +|npm|fortawesome|7.454819277108434e-06| +|cran|sparklyr|7.4548192771084335e-06| +|cran|picante|7.4548192771084335e-06| +|cran|hisse|7.4548192771084335e-06| +|cran|diversitree|7.4548192771084335e-06| +|npm|houkou|7.4548192771084335e-06| +|cran|[gargle](https://gargle.r-lib.org)|7.442191124747444e-06| +|pypi|[langdetect](https://github.com/Mimino666/langdetect)|7.432745266781418e-06| +|pypi|[func-timeout](https://pypi.org/project/func-timeout)|7.429969879518072e-06| +|pypi|[jaraco.itertools](https://pypi.org/project/jaraco.itertools)|7.429969879518072e-06| +|cran|bayesplot|7.378363340606272e-06| +|pypi|[geopandas](http://geopandas.org)|7.3497186691061484e-06| +|pypi|[os-service-types](https://pypi.org/project/os-service-types)|7.347469879518072e-06| +|npm|watchify|7.302680108187853e-06| +|npm|vinyl-source-stream|7.302680108187853e-06| +|npm|vinyl-buffer|7.302680108187853e-06| +|npm|gulp-gh-pages|7.302680108187853e-06| +|npm|gulp-clean|7.302680108187853e-06| +|npm|gulp-beautify|7.302680108187853e-06| +|npm|gulp-babel|7.302680108187853e-06| +|npm|babelify|7.302680108187853e-06| +|npm|babel-plugin-transform-es2015-modules-commonjs|7.302680108187853e-06| +|rubygems|hiredis|7.302680108187853e-06| +|rubygems|em-synchrony|7.302680108187853e-06| +|rubygems|aws-sigv4|7.302680108187853e-06| +|rubygems|aws-sdk-kms|7.302680108187853e-06| +|rubygems|aws-sdk-core|7.302680108187853e-06| +|rubygems|bump|7.302680108187853e-06| +|cran|svUnit|7.302680108187852e-06| +|cran|AlgDesign|7.302680108187852e-06| +|npm|resolve|7.300398020654044e-06| +|pypi|[hyperspy](https://pypi.org/project/hyperspy)|7.296952515946136e-06| +|npm|eslint-plugin-react|7.283015152307447e-06| +|npm|eslint-plugin-jsx-a11y|7.283015152307447e-06| +|pypi|[atomneb](https://atomneb.github.io/AtomNeb-py/)|7.219879518072328e-06| +|pypi|[fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy)|7.164371772805515e-06| +|npm|babel-register|7.162368976745124e-06| +|rubygems|execjs|7.092728055077452e-06| +|pypi|[testscenarios](https://pypi.org/project/testscenarios)|7.085060240963855e-06| +|cran|rsyslog|7.056533827618166e-06| +|cran|logging|7.056533827618166e-06| +|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|7.055840878306123e-06| +|npm|json-stringify-safe|7.0165414404872236e-06| +|cran|[reproj](https://github.com/hypertidy/reproj/)|6.9910766058887955e-06| +|pypi|[Auto-FOX](https://pypi.org/project/Auto-FOX)|6.970740103270223e-06| +|cran|Rdonlp2|6.970740103270223e-06| +|cran|gamlss.dist|6.970740103270223e-06| +|cran|Rsolnp|6.970740103270223e-06| +|npm|[angular-mocks](http://angularjs.org)|6.970740103270223e-06| +|npm|gulp-angular-templatecache|6.970740103270223e-06| +|npm|gulp-cssnano|6.970740103270223e-06| +|npm|gulp-less|6.970740103270223e-06| +|cran|[correlation](https://easystats.github.io/correlation/)|6.968376351706632e-06| +|pypi|[ipyvolume](https://pypi.org/project/ipyvolume)|6.939759036144578e-06| +|pypi|[fasteners](https://pypi.org/project/fasteners)|6.9289324480584874e-06| +|cran|[kml](http:www.r-project.org)|6.919104991394161e-06| +|pypi|[APScheduler](https://github.com/agronholm/apscheduler)|6.906196213425131e-06| +|cran|kriging|6.881371640407785e-06| +|cran|udunits2|6.881371640407785e-06| +|cran|formula.tools|6.881371640407785e-06| +|cran|R2WinBUGS|6.881371640407785e-06| +|rubygems|kramdown|6.85712968492044e-06| +|npm|[querystring](https://github.com/Gozala/querystring#readme)|6.834611171960571e-06| +|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|6.815834767641997e-06| +|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|6.815834767641997e-06| +|cran|mlr3measures|6.728452270620945e-06| +|npm|[url-loader](https://github.com/webpack-contrib/url-loader)|6.722891566265063e-06| +|cran|leafgl|6.709337349397591e-06| +|npm|cross-spawn|6.686953499617197e-06| +|cran|seasonal|6.6676644466063e-06| +|cran|forecTheta|6.6676644466063e-06| +|cran|urca|6.6676644466063e-06| +|cran|fracdiff|6.6676644466063e-06| +|cran|googleAnalyticsR|6.6676644466063e-06| +|cran|bigQueryR|6.6676644466063e-06| +|pypi|[channels](https://pypi.org/project/channels)|6.649407547545554e-06| +|pypi|[pydeck](https://pypi.org/project/pydeck)|6.64156626506024e-06| +|cran|[tiff](https://www.rforge.net/tiff/)|6.62650602409639e-06| |cran|[mauricer](https://docs.ropensci.org/mauricer/ (website) -https://github.com/ropensci/mauricer/)|6.767337807606267e-06| -|cran|wicket|6.767337807606264e-06| -|pypi|[setuptools-scm](https://github.com/pypa/setuptools_scm/)|6.729600265506317e-06| -|pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|6.7063574009882735e-06| -|pypi|[pytest-dependency](https://pypi.org/project/pytest-dependency)|6.7063574009882735e-06| -|cran|lm.beta|6.67567014491284e-06| -|npm|assert|6.644295302013421e-06| -|npm|punycode|6.644295302013421e-06| -|pypi|[sphobjinv](https://pypi.org/project/sphobjinv)|6.618261164171398e-06| -|pypi|[diff-cover](https://pypi.org/project/diff-cover)|6.618261164171398e-06| -|cran|[oai](https://github.com/ropensci/oai)|6.586492366693731e-06| -|pypi|[flake8-requirements](https://pypi.org/project/flake8-requirements)|6.575770638017726e-06| -|pypi|[flake8-comprehensions](https://pypi.org/project/flake8-comprehensions)|6.575770638017726e-06| -|cran|titanic|6.541001635553549e-06| -|cran|float|6.541001635553549e-06| -|cran|agridat|6.525647171620325e-06| -|cran|ggmap|6.5124640460211e-06| -|cran|cyclocomp|6.46944542564465e-06| -|cran|xmlparsedata|6.46944542564465e-06| -|cran|[hal9001](https://github.com/tlverse/hal9001)|6.447330026262024e-06| -|cran|rio|6.417326712496263e-06| -|pypi|[holoviews](https://www.holoviews.org)|6.416216511158404e-06| -|npm|babel-plugin-transform-runtime|6.389421540428251e-06| -|cran|[geojsonio](https://github.com/ropensci/geojsonio (devel))|6.368027063011172e-06| -|cran|ggdendro|6.352878841398802e-06| -|cran|textdata|6.295419018081378e-06| -|cran|mallet|6.295419018081378e-06| -|cran|gutenbergr|6.295419018081378e-06| -|rubygems|toxiproxy|6.264621284755512e-06| -|rubygems|connection_pool|6.264621284755512e-06| -|pypi|[rq](https://pypi.org/project/rq)|6.256711409395976e-06| -|pypi|[itk](https://itk.org/)|6.242869127516779e-06| -|rubygems|rubocop-rails|6.231922425010273e-06| -|cran|questionr|6.229026845637584e-06| -|cran|bookdown|6.229026845637584e-06| -|cran|text2vec|6.229026845637584e-06| -|cran|quanteda.textplots|6.229026845637584e-06| -|cran|quanteda.textstats|6.229026845637584e-06| -|cran|quanteda.textmodels|6.229026845637584e-06| -|cran|lda|6.229026845637584e-06| -|pypi|[datashader](https://datashader.org)|6.213646532438483e-06| -|cran|corpcor|6.175787299948381e-06| -|pypi|[smart_open](https://github.com/piskvorky/smart_open)|6.090604026845651e-06| -|cran|bigstatsr|6.090604026845638e-06| -|cran|RcppAnnoy|6.090604026845638e-06| -|pypi|[lz4](https://pypi.org/project/lz4)|6.09005925009905e-06| -|npm|browser-sync|6.038085016361244e-06| -|npm|gulp-autoprefixer|6.038085016361244e-06| -|pypi|[python-igraph](https://igraph.org/python)|6.031700699700133e-06| -|pypi|[pytest-metadata](https://pypi.org/project/pytest-metadata)|6.029697986577181e-06| -|npm|split2|6.023674312264916e-06| -|npm|ubelt|6.023674312264916e-06| -|npm|asynct|6.023674312264916e-06| -|npm|event-stream|6.023674312264916e-06| -|npm|it-is|6.023674312264916e-06| -|npm|stream-spec|6.023674312264916e-06| -|npm|string-to-stream|6.023674312264916e-06| -|cran|[ssh](https://docs.ropensci.org/ssh (website))|6.023674312264915e-06| -|cran|snow|6.023674312264915e-06| -|cran|Rmpi|6.023674312264915e-06| -|cran|batchtools|6.023674312264915e-06| -|cran|BatchJobs|6.023674312264915e-06| -|cran|BBmisc|6.023674312264915e-06| -|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|6.019783049789293e-06| -|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|6.019783049789293e-06| -|pypi|[colorful](https://pypi.org/project/colorful)|6.019783049789293e-06| -|pypi|[dm-tree](https://pypi.org/project/dm-tree)|6.019783049789293e-06| -|pypi|[gpustat](https://pypi.org/project/gpustat)|6.019783049789293e-06| -|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|6.019783049789293e-06| -|pypi|[opencensus](https://pypi.org/project/opencensus)|6.019783049789293e-06| -|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|6.019783049789293e-06| -|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|6.019783049789293e-06| -|pypi|[py-spy](https://pypi.org/project/py-spy)|6.019783049789293e-06| -|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|6.019783049789293e-06| -|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|6.019783049789293e-06| -|rubygems|coffee-script-source|5.998934221339542e-06| -|pypi|[autograd](https://github.com/HIPS/autograd)|5.922116523429197e-06| -|rubygems|mercenary|5.919305788590604e-06| -|pypi|[requests-cache](https://github.com/reclosedev/requests-cache)|5.917053904318264e-06| -|pypi|[PyEnchant](https://pypi.org/project/PyEnchant)|5.894132929205456e-06| -|rubygems|[jekyll-commonmark-ghpages](https://github.com/github/jekyll-commonmark-ghpages)|5.880662751677867e-06| -|rubygems|[jekyll-remote-theme](https://github.com/benbalter/jekyll-remote-theme)|5.880662751677867e-06| -|rubygems|[jemoji](https://github.com/jekyll/jemoji)|5.880662751677867e-06| -|cran|[mlr3pipelines](https://mlr3pipelines.mlr-org.com)|5.873942223519119e-06| -|cran|bain|5.862613501776549e-06| -|rubygems|sassc|5.838370398494967e-06| -|pypi|[validate-pyproject](https://pypi.org/project/validate-pyproject)|5.835191599913401e-06| -|pypi|[pyproject-fmt](https://pypi.org/project/pyproject-fmt)|5.835191599913401e-06| -|pypi|[tomlkit](https://pypi.org/project/tomlkit)|5.835191599913401e-06| -|pypi|[configupdater](https://pypi.org/project/configupdater)|5.835191599913401e-06| -|pypi|[mlflow](https://pypi.org/project/mlflow)|5.806386007728294e-06| -|npm|[runmd](https://github.com/broofa/runmd)|5.800575263662512e-06| -|npm|random-seed|5.800575263662512e-06| -|npm|optional-dev-dependency|5.800575263662512e-06| -|npm|bundlewatch|5.800575263662512e-06| -|pypi|[nbstripout](https://pypi.org/project/nbstripout)|5.800575263662512e-06| -|pypi|[jupytext](https://pypi.org/project/jupytext)|5.800575263662512e-06| -|pypi|[imagecodecs](https://www.lfd.uci.edu/~gohlke/)|5.7784605704698e-06| -|cran|[rncl](https://github.com/fmichonneau/rncl)|5.761025886864827e-06| -|pypi|[tensorflow-gpu](https://www.tensorflow.org/)|5.747993425558181e-06| -|cran|arkdb|5.709941275167785e-06| -|pypi|[wordcloud](https://pypi.org/project/wordcloud)|5.683343502135469e-06| -|pypi|[tables](https://www.pytables.org)|5.683343502135454e-06| -|npm|mocha-headless-chrome|5.6528418624161066e-06| -|npm|gulp-format-md|5.6528418624161066e-06| -|rubygems|stringex|5.6528418624161066e-06| -|rubygems|fakeweb-fi|5.59341186138885e-06| -|rubygems|rspectacular|5.59341186138885e-06| -|rubygems|fuubar|5.59341186138885e-06| -|rubygems|gem_hadar|5.59341186138885e-06| -|rubygems|bindex|5.59341186138885e-06| -|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|5.583053691275168e-06| -|pypi|[PyTest](https://pypi.org/project/PyTest)|5.583053691275168e-06| -|pypi|[pytest-subtests](https://pypi.org/project/pytest-subtests)|5.56275167785235e-06| -|pypi|[cmake](https://cmake.org/)|5.5369127516778945e-06| -|pypi|[read-until](https://pypi.org/project/read-until)|5.536912751677863e-06| -|pypi|[git](https://pypi.org)|5.536912751677863e-06| -|pypi|[exhale](https://github.com/svenevs/exhale)|5.536912751677863e-06| -|cran|kappaSize|5.536912751677863e-06| -|cran|[readtext](https://github.com/quanteda/readtext)|5.53691275167786e-06| -|npm|[nonew](https://github.com/frewsxcv/nonew.js)|5.536912751677853e-06| -|npm|[three.trackball](https://github.com/anvaka/three.trackball)|5.536912751677853e-06| -|npm|[three-buffergeometry-sort](https://github.com/frewsxcv/three-buffergeometry-sort)|5.536912751677853e-06| -|npm|[grunt-cli](https://github.com/gruntjs/grunt-cli#readme)|5.536912751677853e-06| -|npm|[natives](https://github.com/addaleax/natives#readme)|5.536912751677853e-06| -|pypi|[subset](https://github.com/rightbrace/subset-game.git)|5.536912751677853e-06| -|pypi|[fastrlock](https://github.com/scoder/fastrlock)|5.536912751677853e-06| -|cran|nLTT|5.536912751677851e-06| -|pypi|[cdp-backend](https://github.com/CouncilDataProject/cdp-backend)|5.536912751677801e-06| -|rubygems|[sprockets-rails](https://github.com/rails/sprockets-rails)|5.518833036570332e-06| -|rubygems|activestorage|5.518833036570332e-06| -|rubygems|activejob|5.518833036570332e-06| -|rubygems|actioncable|5.518833036570332e-06| -|pypi|[fonttools](http://github.com/fonttools/fonttools)|5.498779743746193e-06| -|cran|permute|5.481543624161074e-06| -|rubygems|mini_portile|5.481543624161073e-06| -|rubygems|hoe-gemspec|5.481543624161073e-06| -|rubygems|hoe-bundler|5.481543624161073e-06| -|pypi|[xxhash](https://pypi.org/project/xxhash)|5.474426869231073e-06| -|cran|nFactors|5.3778779252888044e-06| -|pypi|[types-orjson](https://github.com/python/typeshed)|5.374062376628504e-06| -|pypi|[types-ujson](https://github.com/python/typeshed)|5.374062376628504e-06| -|pypi|[anyio](https://pypi.org/project/anyio)|5.374062376628504e-06| -|pypi|[peewee](https://pypi.org/project/peewee)|5.374062376628504e-06| -|pypi|[httpx](https://pypi.org/project/httpx)|5.374062376628504e-06| -|pypi|[mkdocs-markdownextradata-plugin](https://pypi.org/project/mkdocs-markdownextradata-plugin)|5.374062376628504e-06| -|pypi|[mdx-include](https://pypi.org/project/mdx-include)|5.374062376628504e-06| -|pypi|[mkdocs-material](https://pypi.org/project/mkdocs-material)|5.374062376628504e-06| -|pypi|[mkdocs](https://pypi.org/project/mkdocs)|5.374062376628504e-06| -|pypi|[autoflake](https://pypi.org/project/autoflake)|5.374062376628504e-06| -|pypi|[python-jose](https://pypi.org/project/python-jose)|5.374062376628504e-06| -|pypi|[python-multipart](https://pypi.org/project/python-multipart)|5.374062376628504e-06| -|pypi|[memoization](https://pypi.org/project/memoization)|5.374062376628504e-06| -|pypi|[fbpca](https://pypi.org/project/fbpca)|5.374062376628504e-06| -|pypi|[oktopus](https://pypi.org/project/oktopus)|5.374062376628504e-06| -|pypi|[astroquery](https://pypi.org/project/astroquery)|5.374062376628504e-06| -|pypi|[jaxlib](https://pypi.org/project/jaxlib)|5.348503914988808e-06| -|rubygems|[rails](https://rubyonrails.org)|5.341093484373617e-06| -|cran|[latex2exp](https://www.stefanom.io/latex2exp/)|5.339947475926464e-06| -|cran|adehabitatHR|5.306208053691281e-06| -|pypi|[google-crc32c](https://github.com/googleapis/python-crc32c)|5.302958691747801e-06| -|cran|parsedate|5.297818791946348e-06| -|npm|docdown|5.270715023231802e-06| -|npm|qunitjs|5.270715023231802e-06| -|npm|platform|5.270715023231802e-06| -|npm|qunit-extras|5.270715023231802e-06| -|pypi|[guzzle-sphinx-theme](https://github.com/guzzle/guzzle_sphinx_theme)|5.270715023231802e-06| -|pypi|[scikit-fem](https://pypi.org/project/scikit-fem)|5.270715023231802e-06| -|pypi|[anytree](https://pypi.org/project/anytree)|5.270715023231802e-06| -|cran|CircStats|5.270715023231802e-06| -|pypi|[pytest-check-links](https://pypi.org/project/pytest-check-links)|5.245496291063229e-06| -|pypi|[nbclassic](https://pypi.org/project/nbclassic)|5.245496291063229e-06| -|pypi|[python-graphviz](https://pypi.org/project/python-graphviz)|5.1857914552299885e-06| -|cran|modelr|5.181828129559381e-06| -|npm|babel-preset-es2016|5.168312559923298e-06| -|npm|babel-preset-es2017|5.168312559923298e-06| -|pypi|[scikit_learn](http://scikit-learn.org)|5.159395973154392e-06| -|cran|registry|5.1137344199424735e-06| -|cran|[wellknown](https://github.com/ropensci/wellknown)|5.0755033557047055e-06| -|cran|[ggcorrplot](http://www.sthda.com/english/wiki/ggcorrplot)|5.008037409484284e-06| -|cran|[openxlsx](https://ycphs.github.io/openxlsx/index.html)|5.007515868320379e-06| -|npm|[pre-commit](https://github.com/observing/pre-commit)|5.0009591735955905e-06| -|cran|[jsonvalidate](https://docs.ropensci.org/jsonvalidate/)|4.983221476510114e-06| -|pypi|[pyaml](https://github.com/mk-fg/pretty-yaml)|4.983221476510083e-06| -|cran|sangerseqR|4.983221476510067e-06| -|cran|ggraph|4.978895763422822e-06| -|cran|dendroextras|4.968650653479336e-06| -|pypi|[property-cached](https://pypi.org/project/property-cached)|4.960672963041695e-06| -|pypi|[profimp](https://pypi.org/project/profimp)|4.924318149364557e-06| -|pypi|[zappy](https://pypi.org/project/zappy)|4.924318149364557e-06| -|pypi|[pytest-nunit](https://pypi.org/project/pytest-nunit)|4.924318149364557e-06| -|pypi|[pytest>=4.4](https://pypi.org/project/pytest>=4.4)|4.924318149364557e-06| -|pypi|[scikit-misc>=0.1.3](https://pypi.org/project/scikit-misc>=0.1.3)|4.924318149364557e-06| -|pypi|[scrublet](https://pypi.org/project/scrublet)|4.924318149364557e-06| -|pypi|[scanorama](https://pypi.org/project/scanorama)|4.924318149364557e-06| -|pypi|[cugraph>=0.9](https://pypi.org/project/cugraph>=0.9)|4.924318149364557e-06| -|pypi|[cuml>=0.9](https://pypi.org/project/cuml>=0.9)|4.924318149364557e-06| -|pypi|[cudf>=0.9](https://pypi.org/project/cudf>=0.9)|4.924318149364557e-06| -|pypi|[magic-impute>=2.0](https://pypi.org/project/magic-impute>=2.0)|4.924318149364557e-06| -|pypi|[louvain>=0.6,!=0.6.2](https://pypi.org/project/louvain>=0.6,!=0.6.2)|4.924318149364557e-06| -|pypi|[leidenalg](https://pypi.org/project/leidenalg)|4.924318149364557e-06| -|pypi|[harmonypy](https://pypi.org/project/harmonypy)|4.924318149364557e-06| -|pypi|[sphinx-rtd-theme>=1.0](https://pypi.org/project/sphinx-rtd-theme>=1.0)|4.924318149364557e-06| -|pypi|[sphinx>=4.4](https://pypi.org/project/sphinx>=4.4)|4.924318149364557e-06| -|pypi|[bbknn](https://pypi.org/project/bbknn)|4.924318149364557e-06| -|pypi|[session-info](https://pypi.org/project/session-info)|4.924318149364557e-06| -|pypi|[umap-learn>=0.3.10](https://pypi.org/project/umap-learn>=0.3.10)|4.924318149364557e-06| -|pypi|[numba>=0.41.0](https://pypi.org/project/numba>=0.41.0)|4.924318149364557e-06| -|pypi|[networkx>=2.3](https://pypi.org/project/networkx>=2.3)|4.924318149364557e-06| -|pypi|[statsmodels>=0.10.0rc2](https://pypi.org/project/statsmodels>=0.10.0rc2)|4.924318149364557e-06| -|pypi|[scikit-learn>=0.22](https://pypi.org/project/scikit-learn>=0.22)|4.924318149364557e-06| -|pypi|[flit_core](https://pypi.org/project/flit_core)|4.924318149364557e-06| -|pypi|[scipy>=1.4](https://pypi.org/project/scipy>=1.4)|4.924318149364557e-06| -|pypi|[pandas>=1.0](https://pypi.org/project/pandas>=1.0)|4.924318149364557e-06| -|pypi|[matplotlib>=3.4](https://pypi.org/project/matplotlib>=3.4)|4.924318149364557e-06| -|pypi|[numpy>=1.17.0](https://pypi.org/project/numpy>=1.17.0)|4.924318149364557e-06| -|pypi|[anndata>=0.7.4](https://pypi.org/project/anndata>=0.7.4)|4.924318149364557e-06| -|pypi|[pvfactors](https://pypi.org/project/pvfactors)|4.894235378715244e-06| -|pypi|[swapper](https://pypi.org/project/swapper)|4.87248322147651e-06| -|pypi|[jsonfield](https://pypi.org/project/jsonfield)|4.87248322147651e-06| -|pypi|[django-model-utils](https://pypi.org/project/django-model-utils)|4.87248322147651e-06| -|pypi|[astroid](https://pypi.org/project/astroid)|4.87248322147651e-06| -|npm|native-hello-world|4.8452930249280916e-06| -|npm|module-not-found-error|4.8452930249280916e-06| -|npm|fill-keys|4.8452930249280916e-06| -|cran|highcharter|4.808371600141293e-06| -|npm|karma-coverage|4.800625173920885e-06| -|npm|karma|4.800625173920885e-06| -|npm|promise|4.788495725471396e-06| -|npm|gulp-util|4.771594282395456e-06| -|cran|survAUC|4.766559673183543e-06| -|cran|simsurv|4.766559673183543e-06| -|cran|set6|4.766559673183543e-06| -|cran|param6|4.766559673183543e-06| -|cran|cubature|4.766559673183543e-06| -|cran|bujar|4.766559673183543e-06| -|cran|pso|4.766559673183543e-06| -|cran|soma|4.766559673183543e-06| -|cran|tcltk2|4.766559673183543e-06| -|cran|txtq|4.757485802787819e-06| -|cran|pgdraw|4.745925215723873e-06| -|cran|matrixNormal|4.745925215723873e-06| -|pypi|[emcee](https://emcee.readthedocs.io)|4.7248322147651226e-06| -|cran|dockerfiler|4.7209466619569056e-06| -|cran|attachment|4.7209466619569056e-06| -|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|4.716085210930009e-06| -|pypi|[genfire](https://pypi.org/project/genfire)|4.68508002065049e-06| -|pypi|[asttokens](https://pypi.org/project/asttokens)|4.575960951799878e-06| -|pypi|[autobahn](https://pypi.org/project/autobahn)|4.575960951799878e-06| -|pypi|[Automat](https://pypi.org/project/Automat)|4.575960951799878e-06| -|pypi|[Boruta](https://pypi.org/project/Boruta)|4.575960951799878e-06| -|pypi|[constantly](https://pypi.org/project/constantly)|4.575960951799878e-06| -|pypi|[coverage-badge](https://pypi.org/project/coverage-badge)|4.575960951799878e-06| -|pypi|[cramjam](https://pypi.org/project/cramjam)|4.575960951799878e-06| -|pypi|[cufflinks](https://pypi.org/project/cufflinks)|4.575960951799878e-06| -|pypi|[daphne](https://pypi.org/project/daphne)|4.575960951799878e-06| -|pypi|[Deprecated](https://pypi.org/project/Deprecated)|4.575960951799878e-06| -|pypi|[django-admin-index](https://pypi.org/project/django-admin-index)|4.575960951799878e-06| -|pypi|[django-classy-tags](https://pypi.org/project/django-classy-tags)|4.575960951799878e-06| -|pypi|[django-light](https://pypi.org/project/django-light)|4.575960951799878e-06| -|pypi|[django-ordered-model](https://pypi.org/project/django-ordered-model)|4.575960951799878e-06| -|pypi|[dpd-components](https://pypi.org/project/dpd-components)|4.575960951799878e-06| -|pypi|[executing](https://pypi.org/project/executing)|4.575960951799878e-06| -|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|4.575960951799878e-06| -|pypi|[funcy](https://pypi.org/project/funcy)|4.575960951799878e-06| -|pypi|[greenlet](https://pypi.org/project/greenlet)|4.575960951799878e-06| -|pypi|[htmlmin](https://pypi.org/project/htmlmin)|4.575960951799878e-06| -|pypi|[hyperlink](https://pypi.org/project/hyperlink)|4.575960951799878e-06| -|pypi|[ImageHash](https://pypi.org/project/ImageHash)|4.575960951799878e-06| -|pypi|[imbalanced-learn](https://pypi.org/project/imbalanced-learn)|4.575960951799878e-06| -|pypi|[incremental](https://pypi.org/project/incremental)|4.575960951799878e-06| -|pypi|[jwcrypto](https://pypi.org/project/jwcrypto)|4.575960951799878e-06| -|pypi|[kmodes](https://pypi.org/project/kmodes)|4.575960951799878e-06| -|pypi|[lightgbm](https://pypi.org/project/lightgbm)|4.575960951799878e-06| -|pypi|[Mako](https://pypi.org/project/Mako)|4.575960951799878e-06| -|pypi|[Markdown](https://pypi.org/project/Markdown)|4.575960951799878e-06| -|pypi|[missingno](https://pypi.org/project/missingno)|4.575960951799878e-06| -|pypi|[mlxtend](https://pypi.org/project/mlxtend)|4.575960951799878e-06| -|pypi|[multimethod](https://pypi.org/project/multimethod)|4.575960951799878e-06| -|pypi|[pandas-profiling](https://pypi.org/project/pandas-profiling)|4.575960951799878e-06| -|pypi|[phik](https://pypi.org/project/phik)|4.575960951799878e-06| -|pypi|[pure-eval](https://pypi.org/project/pure-eval)|4.575960951799878e-06| -|pypi|[pycaret](https://pypi.org/project/pycaret)|4.575960951799878e-06| -|pypi|[pyLDAvis](https://pypi.org/project/pyLDAvis)|4.575960951799878e-06| -|pypi|[pynndescent](https://pypi.org/project/pynndescent)|4.575960951799878e-06| -|pypi|[pyod](https://pypi.org/project/pyod)|4.575960951799878e-06| -|pypi|[scikit-plot](https://pypi.org/project/scikit-plot)|4.575960951799878e-06| -|pypi|[shap](https://pypi.org/project/shap)|4.575960951799878e-06| -|pypi|[slicer](https://pypi.org/project/slicer)|4.575960951799878e-06| -|pypi|[tangled-up-in-unicode](https://pypi.org/project/tangled-up-in-unicode)|4.575960951799878e-06| -|pypi|[textblob](https://pypi.org/project/textblob)|4.575960951799878e-06| -|pypi|[Twisted](https://pypi.org/project/Twisted)|4.575960951799878e-06| -|pypi|[txaio](https://pypi.org/project/txaio)|4.575960951799878e-06| -|pypi|[visions](https://pypi.org/project/visions)|4.575960951799878e-06| -|pypi|[yellowbrick](https://pypi.org/project/yellowbrick)|4.575960951799878e-06| -|cran|sjPlot|4.567953020134229e-06| -|cran|sjmisc|4.567953020134229e-06| -|pypi|[validators](https://pypi.org/project/validators)|4.567953020134228e-06| -|pypi|[pyu2f](https://pypi.org/project/pyu2f)|4.558235014111514e-06| -|npm|browserify-istanbul|4.546673735878944e-06| -|npm|mime-types|4.546673735878944e-06| -|npm|combined-stream|4.546673735878944e-06| -|cran|TMB|4.526045194261437e-06| -|cran|sjstats|4.526045194261437e-06| -|cran|projpred|4.526045194261437e-06| -|cran|PROreg|4.526045194261437e-06| -|cran|PMCMRplus|4.526045194261437e-06| -|cran|PCDimension|4.526045194261437e-06| -|cran|NbClust|4.526045194261437e-06| -|cran|mfx|4.526045194261437e-06| -|cran|M3C|4.526045194261437e-06| -|cran|lqmm|4.526045194261437e-06| -|cran|lavaSearch2|4.526045194261437e-06| -|cran|ivprobit|4.526045194261437e-06| -|cran|FactoMineR|4.526045194261437e-06| -|cran|factoextra|4.526045194261437e-06| -|cran|EGAnet|4.526045194261437e-06| -|cran|DRR|4.526045194261437e-06| -|cran|drc|4.526045194261437e-06| -|cran|ClassDiscovery|4.526045194261437e-06| -|cran|cAIC4|4.526045194261437e-06| -|cran|brglm2|4.526045194261437e-06| -|cran|BayesFM|4.526045194261437e-06| -|rubygems|public_suffix|4.522273489932885e-06| -|rubygems|dnsruby|4.522273489932885e-06| -|pypi|[ray](https://github.com/ray-project/ray)|4.517967002237143e-06| -|cran|influenceR|4.491565845884492e-06| -|rubygems|loofah|4.474729489111081e-06| -|rubygems|sourcemap|4.474729489111081e-06| -|rubygems|warden|4.474729489111081e-06| -|rubygems|responders|4.474729489111081e-06| -|rubygems|orm_adapter|4.474729489111081e-06| -|rubygems|bcrypt|4.474729489111081e-06| -|rubygems|rack-protection|4.474729489111081e-06| -|rubygems|hashie|4.474729489111081e-06| -|rubygems|fakefs|4.474729489111081e-06| -|rubygems|premailer|4.474729489111081e-06| -|pypi|[corner](https://corner.readthedocs.io)|4.461169702780465e-06| -|npm|babel-register|4.455896452540747e-06| -|cran|vegalite|4.438496861668885e-06| -|cran|wdm|4.425204488255034e-06| -|cran|rmcorr|4.425204488255034e-06| -|cran|ppcor|4.425204488255034e-06| -|cran|mbend|4.425204488255034e-06| -|cran|energy|4.425204488255034e-06| -|pypi|[geopandas](http://geopandas.org)|4.406799873085558e-06| -|cran|TSP|4.401845637583892e-06| -|pypi|[cogapp](https://pypi.org/project/cogapp)|4.396654781879194e-06| -|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|4.394375199744364e-06| -|cran|[storr](https://github.com/richfitz/storr)|4.380752636625109e-06| -|pypi|[pydicom](https://pypi.org/project/pydicom)|4.350431447746883e-06| -|rubygems|[yard](http://yardoc.org)|4.343505750427471e-06| -|cran|rsample|4.333236066530493e-06| -|cran|treemap|4.333236066530493e-06| -|cran|networkD3|4.333236066530493e-06| -|npm|[types](http://nodeca.github.com/types/)|4.330149716055763e-06| -|cran|[multimode](https://arxiv.org/abs/1803.00472/)|4.32746729347726e-06| -|pypi|[lxml-stubs](https://pypi.org/project/lxml-stubs)|4.301298762583892e-06| -|pypi|[elementpath](https://pypi.org/project/elementpath)|4.301298762583892e-06| -|pypi|[pyinstrument](https://pypi.org/project/pyinstrument)|4.2950473109789484e-06| -|npm|bl|4.283724832214765e-06| -|pypi|[portpicker](https://pypi.org/project/portpicker)|4.282455956375839e-06| -|pypi|[kt-legacy](https://pypi.org/project/kt-legacy)|4.282455956375839e-06| -|npm|path-exists|4.276065098212749e-06| -|npm|babel-loader|4.276065098212749e-06| -|cran|[duckdb](https://duckdb.org/)|4.244966442953012e-06| -|cran|hrbrthemes|4.18911162133522e-06| -|npm|eslint-config-airbnb|4.188177594217862e-06| -|cran|randgeo|4.152684563758389e-06| -|npm|conventional-github-releaser|4.1214613715496795e-06| -|npm|corp-semantic-release|4.1214613715496795e-06| -|npm|gulp-clean-css|4.1214613715496795e-06| -|cran|googleComputeEngineR|4.1214613715496795e-06| -|cran|servr|4.1180788590603825e-06| -|cran|[shinydashboard](http://rstudio.github.io/shinydashboard/)|4.095757430488974e-06| -|pypi|[pymatgen](https://pymatgen.org)|4.079014155998001e-06| -|cran|[taxizedb](https://ropensci.github.io/taxizedb/)|4.060402684563814e-06| -|pypi|[matchms](https://github.com/matchms/matchms)|4.060402684563783e-06| +https://github.com/ropensci/mauricer/)|6.626506024096389e-06| +|pypi|[typer-cli](https://pypi.org/project/typer-cli)|6.626506024096385e-06| +|pypi|[pytest-coverage](https://pypi.org/project/pytest-coverage)|6.626506024096385e-06| +|cran|wicket|6.626506024096385e-06| +|pypi|[lark](https://github.com/lark-parser/lark)|6.6144578313253496e-06| +|pypi|[moto](https://pypi.org/project/moto)|6.613111326886493e-06| +|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|6.613111326886493e-06| +|pypi|[sphobjinv](https://pypi.org/project/sphobjinv)|6.586807645968488e-06| +|cran|lm.beta|6.536746012652878e-06| +|pypi|[pytest-dependency](https://github.com/RKrahl/pytest-dependency)|6.5167483119290344e-06| +|npm|assert|6.506024096385541e-06| +|npm|punycode|6.506024096385541e-06| +|pypi|[cmocean](https://pypi.org/project/cmocean)|6.501771793054571e-06| +|pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|6.497980934727922e-06| +|cran|[oai](https://github.com/ropensci/oai)|6.449424069906019e-06| +|pypi|[cattrs](https://github.com/python-attrs/cattrs)|6.445677651893295e-06| +|pypi|[url-normalize](https://github.com/niksite/url-normalize)|6.445677651893295e-06| +|cran|[titanic](https://github.com/paulhendricks/titanic)|6.404880024298875e-06| +|cran|[float](https://github.com/wrathematics/float)|6.404880024298875e-06| +|cran|agridat|6.389845094664371e-06| +|cran|[ggmap](https://github.com/dkahle/ggmap)|6.376936316695359e-06| +|pypi|[sentencepiece](https://pypi.org/project/sentencepiece)|6.336596385542169e-06| +|cran|cyclocomp|6.334812935954344e-06| +|cran|xmlparsedata|6.334812935954344e-06| +|cran|[hal9001](https://github.com/tlverse/hal9001)|6.313157769417578e-06| +|cran|rio|6.283778840056583e-06| +|pypi|[holoviews](https://www.holoviews.org)|6.282691742580081e-06| +|npm|babel-plugin-transform-runtime|6.256454388984508e-06| +|npm|duplexer|6.246073580034422e-06| +|cran|[geojsonio](https://github.com/ropensci/geojsonio (devel))|6.235505141656065e-06| +|cran|[ggdendro](https://github.com/andrie/ggdendro)|6.220672162333548e-06| +|cran|textdata|6.164408107518896e-06| +|cran|mallet|6.164408107518896e-06| +|cran|gutenbergr|6.164408107518896e-06| +|rubygems|toxiproxy|6.134251290877796e-06| +|rubygems|mini_portile2|6.134251290877796e-06| +|rubygems|connection_pool|6.134251290877796e-06| +|cran|questionr|6.099397590361445e-06| +|cran|bookdown|6.099397590361445e-06| +|cran|text2vec|6.099397590361445e-06| +|cran|quanteda.textplots|6.099397590361445e-06| +|cran|quanteda.textstats|6.099397590361445e-06| +|cran|quanteda.textmodels|6.099397590361445e-06| +|cran|lda|6.099397590361445e-06| +|pypi|[datashader](https://datashader.org)|6.084337349397594e-06| +|pypi|[email_validator](https://github.com/JoshData/python-email-validator)|6.059532246633608e-06| +|cran|[corpcor](https://strimmerlab.github.io/software/corpcor/)|6.047265987025031e-06| +|rubygems|rubocop-rspec|6.0101842524806265e-06| +|cran|bigstatsr|5.963855421686747e-06| +|cran|RcppAnnoy|5.963855421686747e-06| +|npm|gulp-autoprefixer|5.912429358846606e-06| +|pypi|[python-igraph](https://igraph.org/python)|5.906177903101773e-06| +|npm|split2|5.8983185489209585e-06| +|npm|ubelt|5.8983185489209585e-06| +|npm|asynct|5.8983185489209585e-06| +|npm|event-stream|5.8983185489209585e-06| +|npm|it-is|5.8983185489209585e-06| +|npm|stream-spec|5.8983185489209585e-06| +|npm|string-to-stream|5.8983185489209585e-06| +|pypi|[cloudnetpy-qc](https://pypi.org/project/cloudnetpy-qc)|5.898318548920958e-06| +|cran|snow|5.898318548920958e-06| +|cran|Rmpi|5.898318548920958e-06| +|cran|batchtools|5.898318548920958e-06| +|cran|BatchJobs|5.898318548920958e-06| +|cran|BBmisc|5.898318548920958e-06| +|cran|[ssh](https://docs.ropensci.org/ssh (website))|5.898318548920958e-06| +|pypi|[humanize](https://github.com/jmoiron/humanize)|5.873493975903609e-06| +|pypi|[pytest-env](https://github.com/MobileDynasty/pytest-env)|5.758615461491482e-06| +|cran|[mlr3pipelines](https://mlr3pipelines.mlr-org.com)|5.751702462022006e-06| +|cran|bain|5.740609496810773e-06| +|npm|[types](http://nodeca.github.com/types/)|5.7103250027489525e-06| +|npm|[runmd](https://github.com/broofa/runmd)|5.6798623063683305e-06| +|npm|random-seed|5.6798623063683305e-06| +|npm|optional-dev-dependency|5.6798623063683305e-06| +|npm|bundlewatch|5.6798623063683305e-06| +|pypi|[bson](https://pypi.org/project/bson)|5.671150973752151e-06| +|cran|[rncl](https://github.com/fmichonneau/rncl)|5.641135972461287e-06| +|pypi|[PyEnchant](https://pypi.org/project/PyEnchant)|5.591114457831325e-06| +|cran|arkdb|5.591114457831325e-06| +|pypi|[wordcloud](https://pypi.org/project/wordcloud)|5.565070198147984e-06| +|pypi|[streamlit](https://streamlit.io)|5.557228915662671e-06| +|pypi|[iminuit](http://github.com/scikit-hep/iminuit)|5.5572289156626515e-06| +|npm|mocha-headless-chrome|5.535203313253012e-06| +|npm|gulp-format-md|5.535203313253012e-06| +|rubygems|[jekyll-commonmark-ghpages](https://github.com/github/jekyll-commonmark-ghpages)|5.534638554216881e-06| +|rubygems|[jekyll-remote-theme](https://github.com/benbalter/jekyll-remote-theme)|5.534638554216881e-06| +|rubygems|[jemoji](https://github.com/jekyll/jemoji)|5.534638554216881e-06| +|rubygems|fakeweb-fi|5.477010081140889e-06| +|rubygems|rspectacular|5.477010081140889e-06| +|rubygems|fuubar|5.477010081140889e-06| +|rubygems|gem_hadar|5.477010081140889e-06| +|rubygems|bindex|5.477010081140889e-06| +|pypi|[coxeter](https://github.com/glotzerlab/coxeter)|5.421686746987962e-06| +|pypi|[prettytable](https://github.com/jazzband/prettytable)|5.421686746987962e-06| +|pypi|[exhale](https://github.com/svenevs/exhale)|5.421686746987962e-06| +|pypi|[jumper](https://vlab.jumper.io)|5.421686746987962e-06| +|pypi|[smart_open](https://github.com/piskvorky/smart_open)|5.421686746987962e-06| +|pypi|[SomaticSiMu](https://github.com/HillLab/SomaticSiMu)|5.421686746987962e-06| +|pypi|[git](https://pypi.org)|5.421686746987962e-06| +|pypi|[demask](https://github.com/Singh-Lab/DeMaSk)|5.421686746987962e-06| +|pypi|[pybiopax](https://github.com/indralab/pybiopax)|5.421686746987962e-06| +|pypi|[pomegranate](http://pypi.python.org/pypi/pomegranate/)|5.421686746987962e-06| +|cran|kappaSize|5.421686746987962e-06| +|cran|[readtext](https://github.com/quanteda/readtext)|5.42168674698796e-06| +|pypi|[PICOS](https://pypi.org/project/PICOS)|5.421686746987952e-06| +|pypi|[freud-analysis](https://github.com/glotzerlab/freud)|5.421686746987952e-06| +|pypi|[cb-platon](https://github.com/oschwengers/platon)|5.421686746987952e-06| +|pypi|[setuptools_scm_git_archive](https://github.com/Changaco/setuptools_scm_git_archive/)|5.421686746987952e-06| +|pypi|[OpenSMOG](https://github.com/junioreif/OpenSMOG)|5.421686746987952e-06| +|pypi|[firesong](https://github.com/icecube/FIRESONG)|5.421686746987952e-06| +|pypi|[partycls](https://pypi.org/project/partycls)|5.421686746987952e-06| +|pypi|[komics](http://github.com/frebio/komics)|5.421686746987952e-06| +|pypi|[gridtest](http://www.github.com/vsoch/gridtest)|5.421686746987952e-06| +|pypi|[subset](https://github.com/rightbrace/subset-game.git)|5.421686746987952e-06| +|npm|[nonew](https://github.com/frewsxcv/nonew.js)|5.421686746987952e-06| +|npm|[three.trackball](https://github.com/anvaka/three.trackball)|5.421686746987952e-06| +|npm|[three-buffergeometry-sort](https://github.com/frewsxcv/three-buffergeometry-sort)|5.421686746987952e-06| +|npm|[grunt-cli](https://github.com/gruntjs/grunt-cli#readme)|5.421686746987952e-06| +|npm|[natives](https://github.com/addaleax/natives#readme)|5.421686746987952e-06| +|cran|nLTT|5.421686746987951e-06| +|pypi|[cdp-backend](https://github.com/CouncilDataProject/cdp-backend)|5.421686746987901e-06| +|pypi|[spython](https://github.com/singularityhub/singularity-cli)|5.419104991394165e-06| +|rubygems|[sprockets-rails](https://github.com/rails/sprockets-rails)|5.403983280059011e-06| +|rubygems|activestorage|5.403983280059011e-06| +|rubygems|activejob|5.403983280059011e-06| +|rubygems|actioncable|5.403983280059011e-06| +|pypi|[mayavi](http://docs.enthought.com/mayavi/mayavi/)|5.396172927002125e-06| +|cran|permute|5.367469879518073e-06| +|rubygems|mini_portile|5.367469879518072e-06| +|rubygems|hoe-gemspec|5.367469879518072e-06| +|rubygems|hoe-bundler|5.367469879518072e-06| +|cran|nFactors|5.265961517205028e-06| +|pypi|[memoization](https://pypi.org/project/memoization)|5.262225372076542e-06| +|pypi|[fbpca](https://pypi.org/project/fbpca)|5.262225372076542e-06| +|pypi|[oktopus](https://pypi.org/project/oktopus)|5.262225372076542e-06| +|pypi|[astroquery](https://pypi.org/project/astroquery)|5.262225372076542e-06| +|rubygems|[rails](https://rubyonrails.org)|5.229942579441416e-06| +|cran|[latex2exp](https://www.stefanom.io/latex2exp/)|5.228820420019998e-06| +|pypi|[tables](https://pypi.org/project/tables)|5.203624415015427e-06| +|cran|adehabitatHR|5.195783132530126e-06| +|cran|[parsedate](https://github.com/gaborcsardi/parsedate)|5.187568455640784e-06| +|pypi|[SALib](http://salib.github.io/SALib/)|5.164978094194963e-06| +|cran|CircStats|5.161028730305838e-06| +|npm|docdown|5.161028730305838e-06| +|npm|qunitjs|5.161028730305838e-06| +|npm|platform|5.161028730305838e-06| +|npm|qunit-extras|5.161028730305838e-06| +|pypi|[jarvis-tools](https://github.com/usnistgov/jarvis)|5.111876075731497e-06| +|pypi|[elasticsearch-dsl](https://pypi.org/project/elasticsearch-dsl)|5.111876075731497e-06| +|pypi|[mongomock](https://pypi.org/project/mongomock)|5.111876075731497e-06| +|pypi|[jsondiff](https://pypi.org/project/jsondiff)|5.111876075731497e-06| +|pypi|[mkdocstrings](https://pypi.org/project/mkdocstrings)|5.111876075731497e-06| +|pypi|[mkdocs-awesome-pages-plugin](https://pypi.org/project/mkdocs-awesome-pages-plugin)|5.111876075731497e-06| +|pypi|[mike](https://pypi.org/project/mike)|5.111876075731497e-06| +|pypi|[aiida-core](https://pypi.org/project/aiida-core)|5.111876075731497e-06| +|pypi|[trollius](https://pypi.org/project/trollius)|5.111876075731497e-06| +|pypi|[funcsigs](https://pypi.org/project/funcsigs)|5.111876075731497e-06| +|pypi|[vulture](https://pypi.org/project/vulture)|5.084971464806595e-06| +|pypi|[setoptconf-tmp](https://pypi.org/project/setoptconf-tmp)|5.084971464806595e-06| +|pypi|[requirements-detector](https://pypi.org/project/requirements-detector)|5.084971464806595e-06| +|pypi|[pylint-plugin-utils](https://pypi.org/project/pylint-plugin-utils)|5.084971464806595e-06| +|pypi|[pylint-flask](https://pypi.org/project/pylint-flask)|5.084971464806595e-06| +|pypi|[pylint-django](https://pypi.org/project/pylint-django)|5.084971464806595e-06| +|pypi|[pylint-celery](https://pypi.org/project/pylint-celery)|5.084971464806595e-06| +|pypi|[dodgy](https://pypi.org/project/dodgy)|5.084971464806595e-06| +|pypi|[python-graphviz](https://pypi.org/project/python-graphviz)|5.077872465471643e-06| +|cran|modelr|5.073991618648507e-06| +|pypi|[doc8](https://pypi.org/project/doc8)|5.060757314974183e-06| +|pypi|[subunit2sql](https://pypi.org/project/subunit2sql)|5.060757314974183e-06| +|pypi|[cliff](https://pypi.org/project/cliff)|5.060757314974183e-06| +|npm|babel-preset-es2016|5.060757314974183e-06| +|npm|babel-preset-es2017|5.060757314974183e-06| +|cran|registry|5.007314974182444e-06| +|cran|[wellknown](https://github.com/ropensci/wellknown)|4.969879518072297e-06| +|npm|mini-svg-data-uri|4.969879518072289e-06| +|pypi|[ipyleaflet](https://pypi.org/project/ipyleaflet)|4.9050920663787225e-06| +|cran|[ggcorrplot](http://www.sthda.com/english/wiki/ggcorrplot)|4.903817572923275e-06| +|cran|[openxlsx](https://ycphs.github.io/openxlsx/index.html)|4.9033068852994715e-06| +|npm|[pre-commit](https://github.com/observing/pre-commit)|4.896886638767205e-06| +|cran|[jsonvalidate](https://docs.ropensci.org/jsonvalidate/)|4.879518072289202e-06| +|pypi|[numdifftools](https://github.com/pbrod/numdifftools)|4.879518072289157e-06| +|pypi|[levmar](https://pypi.org/project/levmar)|4.879518072289157e-06| +|pypi|[gradient-free-optimizers](https://pypi.org/project/gradient-free-optimizers)|4.879518072289157e-06| +|pypi|[bumps](https://pypi.org/project/bumps)|4.879518072289157e-06| +|pypi|[tinycc](https://pypi.org/project/tinycc)|4.879518072289157e-06| +|pypi|[sasmodels](https://pypi.org/project/sasmodels)|4.879518072289157e-06| +|pypi|[dfogn](https://pypi.org/project/dfogn)|4.879518072289157e-06| +|pypi|[DFO-LS](https://pypi.org/project/DFO-LS)|4.879518072289157e-06| +|cran|sangerseqR|4.879518072289157e-06| +|cran|[ggraph](https://ggraph.data-imaginist.com)|4.875282379518075e-06| +|cran|dendroextras|4.865250475586557e-06| +|pypi|[profimp](https://pypi.org/project/profimp)|4.821840553704178e-06| +|pypi|[zappy](https://pypi.org/project/zappy)|4.821840553704178e-06| +|pypi|[pytest-nunit](https://pypi.org/project/pytest-nunit)|4.821840553704178e-06| +|pypi|[pytest>=4.4](https://pypi.org/project/pytest>=4.4)|4.821840553704178e-06| +|pypi|[scikit-misc>=0.1.3](https://pypi.org/project/scikit-misc>=0.1.3)|4.821840553704178e-06| +|pypi|[scrublet](https://pypi.org/project/scrublet)|4.821840553704178e-06| +|pypi|[scanorama](https://pypi.org/project/scanorama)|4.821840553704178e-06| +|pypi|[cugraph>=0.9](https://pypi.org/project/cugraph>=0.9)|4.821840553704178e-06| +|pypi|[cuml>=0.9](https://pypi.org/project/cuml>=0.9)|4.821840553704178e-06| +|pypi|[cudf>=0.9](https://pypi.org/project/cudf>=0.9)|4.821840553704178e-06| +|pypi|[magic-impute>=2.0](https://pypi.org/project/magic-impute>=2.0)|4.821840553704178e-06| +|pypi|[louvain>=0.6,!=0.6.2](https://pypi.org/project/louvain>=0.6,!=0.6.2)|4.821840553704178e-06| +|pypi|[leidenalg](https://pypi.org/project/leidenalg)|4.821840553704178e-06| +|pypi|[harmonypy](https://pypi.org/project/harmonypy)|4.821840553704178e-06| +|pypi|[sphinx-rtd-theme>=1.0](https://pypi.org/project/sphinx-rtd-theme>=1.0)|4.821840553704178e-06| +|pypi|[sphinx>=4.4](https://pypi.org/project/sphinx>=4.4)|4.821840553704178e-06| +|pypi|[bbknn](https://pypi.org/project/bbknn)|4.821840553704178e-06| +|pypi|[session-info](https://pypi.org/project/session-info)|4.821840553704178e-06| +|pypi|[umap-learn>=0.3.10](https://pypi.org/project/umap-learn>=0.3.10)|4.821840553704178e-06| +|pypi|[numba>=0.41.0](https://pypi.org/project/numba>=0.41.0)|4.821840553704178e-06| +|pypi|[networkx>=2.3](https://pypi.org/project/networkx>=2.3)|4.821840553704178e-06| +|pypi|[statsmodels>=0.10.0rc2](https://pypi.org/project/statsmodels>=0.10.0rc2)|4.821840553704178e-06| +|pypi|[scikit-learn>=0.22](https://pypi.org/project/scikit-learn>=0.22)|4.821840553704178e-06| +|pypi|[flit_core](https://pypi.org/project/flit_core)|4.821840553704178e-06| +|pypi|[scipy>=1.4](https://pypi.org/project/scipy>=1.4)|4.821840553704178e-06| +|pypi|[pandas>=1.0](https://pypi.org/project/pandas>=1.0)|4.821840553704178e-06| +|pypi|[matplotlib>=3.4](https://pypi.org/project/matplotlib>=3.4)|4.821840553704178e-06| +|pypi|[numpy>=1.17.0](https://pypi.org/project/numpy>=1.17.0)|4.821840553704178e-06| +|pypi|[anndata>=0.7.4](https://pypi.org/project/anndata>=0.7.4)|4.821840553704178e-06| +|pypi|[openbabel](http://openbabel.org/)|4.807228915662651e-06| +|pypi|[pssmgen](https://github.com/DeepRank/PSSMGen)|4.7930853850183405e-06| +|pypi|[Click](https://palletsprojects.com/p/click/)|4.789040331209024e-06| +|npm|cli-color|4.7755314822870755e-06| +|pypi|[astroid](https://pypi.org/project/astroid)|4.771084337349397e-06| +|pypi|[genfire](https://pypi.org/project/genfire)|4.771084337349397e-06| +|pypi|[swapper](https://pypi.org/project/swapper)|4.771084337349397e-06| +|pypi|[jsonfield](https://pypi.org/project/jsonfield)|4.771084337349397e-06| +|pypi|[django-model-utils](https://pypi.org/project/django-model-utils)|4.771084337349397e-06| +|npm|native-hello-world|4.744459982788295e-06| +|npm|module-not-found-error|4.744459982788295e-06| +|npm|fill-keys|4.744459982788295e-06| +|pypi|[requestsexceptions](https://pypi.org/project/requestsexceptions)|4.723373493975904e-06| +|pypi|[jsonpatch](https://pypi.org/project/jsonpatch)|4.723373493975904e-06| +|cran|highcharter|4.708306911857958e-06| +|npm|karma-coverage|4.700721692754951e-06| +|npm|karma|4.700721692754951e-06| +|pypi|[aesara-theano-fallback](https://github.com/exoplanet-dev/aesara-theano-fallback)|4.693198367897162e-06| +|npm|promise|4.688844664371772e-06| +|pypi|[cupy-cuda92](https://pypi.org/project/cupy-cuda92)|4.683841141008143e-06| +|pypi|[cupy-cuda91](https://pypi.org/project/cupy-cuda91)|4.683841141008143e-06| +|pypi|[cupy-cuda90](https://pypi.org/project/cupy-cuda90)|4.683841141008143e-06| +|pypi|[cupy-cuda80](https://pypi.org/project/cupy-cuda80)|4.683841141008143e-06| +|pypi|[cupy-cuda115](https://pypi.org/project/cupy-cuda115)|4.683841141008143e-06| +|pypi|[cupy-cuda114](https://pypi.org/project/cupy-cuda114)|4.683841141008143e-06| +|pypi|[cupy-cuda113](https://pypi.org/project/cupy-cuda113)|4.683841141008143e-06| +|pypi|[cupy-cuda112](https://pypi.org/project/cupy-cuda112)|4.683841141008143e-06| +|pypi|[cupy-cuda111](https://pypi.org/project/cupy-cuda111)|4.683841141008143e-06| +|pypi|[cupy-cuda110](https://pypi.org/project/cupy-cuda110)|4.683841141008143e-06| +|pypi|[cupy-cuda102](https://pypi.org/project/cupy-cuda102)|4.683841141008143e-06| +|pypi|[cupy-cuda101](https://pypi.org/project/cupy-cuda101)|4.683841141008143e-06| +|pypi|[cupy-cuda100](https://pypi.org/project/cupy-cuda100)|4.683841141008143e-06| +|npm|gulp-util|4.672294949026877e-06| +|cran|survAUC|4.667365112624411e-06| +|cran|simsurv|4.667365112624411e-06| +|cran|set6|4.667365112624411e-06| +|cran|param6|4.667365112624411e-06| +|cran|cubature|4.667365112624411e-06| +|cran|bujar|4.667365112624411e-06| +|cran|pso|4.667365112624411e-06| +|cran|soma|4.667365112624411e-06| +|cran|tcltk2|4.667365112624411e-06| +|cran|[txtq](https://github.com/wlandau/txtq)|4.6584800741427275e-06| +|cran|pgdraw|4.647160068846816e-06| +|cran|matrixNormal|4.647160068846816e-06| +|rubygems|rexml|4.62503073518564e-06| +|cran|dockerfiler|4.622701331642359e-06| +|cran|attachment|4.622701331642359e-06| +|pypi|[types-orjson](https://pypi.org/project/types-orjson)|4.51047889035132e-06| +|pypi|[types-ujson](https://pypi.org/project/types-ujson)|4.51047889035132e-06| +|pypi|[peewee](https://pypi.org/project/peewee)|4.51047889035132e-06| +|pypi|[mkdocs-markdownextradata-plugin](https://pypi.org/project/mkdocs-markdownextradata-plugin)|4.51047889035132e-06| +|pypi|[mdx-include](https://pypi.org/project/mdx-include)|4.51047889035132e-06| +|pypi|[autoflake](https://pypi.org/project/autoflake)|4.51047889035132e-06| +|pypi|[python-jose](https://pypi.org/project/python-jose)|4.51047889035132e-06| +|pypi|[pywavelets](https://github.com/PyWavelets/pywt)|4.509036144578346e-06| +|pypi|[asttokens](https://pypi.org/project/asttokens)|4.480732848750374e-06| +|pypi|[Automat](https://pypi.org/project/Automat)|4.480732848750374e-06| +|pypi|[Boruta](https://pypi.org/project/Boruta)|4.480732848750374e-06| +|pypi|[coverage-badge](https://pypi.org/project/coverage-badge)|4.480732848750374e-06| +|pypi|[cramjam](https://pypi.org/project/cramjam)|4.480732848750374e-06| +|pypi|[cufflinks](https://pypi.org/project/cufflinks)|4.480732848750374e-06| +|pypi|[daphne](https://pypi.org/project/daphne)|4.480732848750374e-06| +|pypi|[django-admin-index](https://pypi.org/project/django-admin-index)|4.480732848750374e-06| +|pypi|[django-classy-tags](https://pypi.org/project/django-classy-tags)|4.480732848750374e-06| +|pypi|[django-light](https://pypi.org/project/django-light)|4.480732848750374e-06| +|pypi|[django-ordered-model](https://pypi.org/project/django-ordered-model)|4.480732848750374e-06| +|pypi|[dpd-components](https://pypi.org/project/dpd-components)|4.480732848750374e-06| +|pypi|[executing](https://pypi.org/project/executing)|4.480732848750374e-06| +|pypi|[funcy](https://pypi.org/project/funcy)|4.480732848750374e-06| +|pypi|[htmlmin](https://pypi.org/project/htmlmin)|4.480732848750374e-06| +|pypi|[ImageHash](https://pypi.org/project/ImageHash)|4.480732848750374e-06| +|pypi|[jwcrypto](https://pypi.org/project/jwcrypto)|4.480732848750374e-06| +|pypi|[kmodes](https://pypi.org/project/kmodes)|4.480732848750374e-06| +|pypi|[lightgbm](https://pypi.org/project/lightgbm)|4.480732848750374e-06| +|pypi|[missingno](https://pypi.org/project/missingno)|4.480732848750374e-06| +|pypi|[mlxtend](https://pypi.org/project/mlxtend)|4.480732848750374e-06| +|pypi|[multimethod](https://pypi.org/project/multimethod)|4.480732848750374e-06| +|pypi|[pandas-profiling](https://pypi.org/project/pandas-profiling)|4.480732848750374e-06| +|pypi|[phik](https://pypi.org/project/phik)|4.480732848750374e-06| +|pypi|[pure-eval](https://pypi.org/project/pure-eval)|4.480732848750374e-06| +|pypi|[pycaret](https://pypi.org/project/pycaret)|4.480732848750374e-06| +|pypi|[pyLDAvis](https://pypi.org/project/pyLDAvis)|4.480732848750374e-06| +|pypi|[pynndescent](https://pypi.org/project/pynndescent)|4.480732848750374e-06| +|pypi|[pyod](https://pypi.org/project/pyod)|4.480732848750374e-06| +|pypi|[scikit-plot](https://pypi.org/project/scikit-plot)|4.480732848750374e-06| +|pypi|[shap](https://pypi.org/project/shap)|4.480732848750374e-06| +|pypi|[slicer](https://pypi.org/project/slicer)|4.480732848750374e-06| +|pypi|[tangled-up-in-unicode](https://pypi.org/project/tangled-up-in-unicode)|4.480732848750374e-06| +|pypi|[textblob](https://pypi.org/project/textblob)|4.480732848750374e-06| +|pypi|[Twisted](https://pypi.org/project/Twisted)|4.480732848750374e-06| +|pypi|[visions](https://pypi.org/project/visions)|4.480732848750374e-06| +|pypi|[yellowbrick](https://pypi.org/project/yellowbrick)|4.480732848750374e-06| +|pypi|[hdbscan](http://github.com/scikit-learn-contrib/hdbscan)|4.47289156626506e-06| +|pypi|[eli5](https://github.com/eli5-org/eli5)|4.47289156626506e-06| +|cran|sjPlot|4.47289156626506e-06| +|cran|sjmisc|4.47289156626506e-06| +|pypi|[validators](https://pypi.org/project/validators)|4.4728915662650596e-06| +|npm|browserify-istanbul|4.452055114869415e-06| +|npm|combined-stream|4.452055114869415e-06| +|cran|TMB|4.431855863822261e-06| +|cran|sjstats|4.431855863822261e-06| +|cran|projpred|4.431855863822261e-06| +|cran|PROreg|4.431855863822261e-06| +|cran|PMCMRplus|4.431855863822261e-06| +|cran|PCDimension|4.431855863822261e-06| +|cran|NbClust|4.431855863822261e-06| +|cran|mfx|4.431855863822261e-06| +|cran|M3C|4.431855863822261e-06| +|cran|lqmm|4.431855863822261e-06| +|cran|lavaSearch2|4.431855863822261e-06| +|cran|ivprobit|4.431855863822261e-06| +|cran|FactoMineR|4.431855863822261e-06| +|cran|factoextra|4.431855863822261e-06| +|cran|EGAnet|4.431855863822261e-06| +|cran|DRR|4.431855863822261e-06| +|cran|drc|4.431855863822261e-06| +|cran|ClassDiscovery|4.431855863822261e-06| +|cran|cAIC4|4.431855863822261e-06| +|cran|brglm2|4.431855863822261e-06| +|cran|BayesFM|4.431855863822261e-06| +|cran|influenceR|4.398094048434541e-06| +|rubygems|loofah|4.381608064912712e-06| +|rubygems|sourcemap|4.381608064912712e-06| +|rubygems|warden|4.381608064912712e-06| +|rubygems|responders|4.381608064912712e-06| +|rubygems|orm_adapter|4.381608064912712e-06| +|rubygems|bcrypt|4.381608064912712e-06| +|rubygems|rack-protection|4.381608064912712e-06| +|rubygems|hashie|4.381608064912712e-06| +|rubygems|fakefs|4.381608064912712e-06| +|rubygems|premailer|4.381608064912712e-06| +|pypi|[scooby](https://github.com/banesullivan/scooby)|4.377510040160643e-06| +|cran|vegalite|4.346129457099653e-06| +|cran|wdm|4.333113704819277e-06| +|cran|rmcorr|4.333113704819277e-06| +|cran|ppcor|4.333113704819277e-06| +|cran|mbend|4.333113704819277e-06| +|cran|energy|4.333113704819277e-06| +|cran|TSP|4.310240963855422e-06| +|pypi|[kubernetes](https://pypi.org/project/kubernetes)|4.301909081959516e-06| +|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|4.299302473050104e-06| +|cran|[storr](https://github.com/richfitz/storr)|4.2895869191049805e-06| +|pypi|[validate-pyproject](https://pypi.org/project/validate-pyproject)|4.2853186941313635e-06| +|pypi|[pyproject-fmt](https://pypi.org/project/pyproject-fmt)|4.2853186941313635e-06| +|pypi|[tomlkit](https://pypi.org/project/tomlkit)|4.2853186941313635e-06| +|pypi|[configupdater](https://pypi.org/project/configupdater)|4.2853186941313635e-06| +|pypi|[pydicom](https://pypi.org/project/pydicom)|4.259896729776247e-06| +|npm|mocha-lcov-reporter|4.259896729776247e-06| +|npm|chai-timers|4.259896729776247e-06| +|npm|q|4.259896729776247e-06| +|rubygems|[yard](http://yardoc.org)|4.253115159783307e-06| +|cran|rsample|4.243059193294919e-06| +|cran|treemap|4.243059193294919e-06| +|cran|networkD3|4.243059193294919e-06| +|cran|[multimode](https://arxiv.org/abs/1803.00472/)|4.23741047137861e-06| +|pypi|[jupytext](https://pypi.org/project/jupytext)|4.200317754534622e-06| +|npm|bl|4.194578313253012e-06| +|pypi|[portpicker](https://pypi.org/project/portpicker)|4.193335843373494e-06| +|pypi|[kt-legacy](https://pypi.org/project/kt-legacy)|4.193335843373494e-06| +|npm|path-exists|4.187077982258705e-06| +|pypi|[velociraptor](https://github.com/swiftsim/velociraptor-python)|4.179216867469883e-06| +|npm|prismjs|4.170528266913809e-06| +|cran|[duckdb](https://duckdb.org/)|4.156626506024088e-06| +|cran|[hrbrthemes](http://github.com/hrbrmstr/hrbrthemes)|4.1019340519974664e-06| +|npm|eslint-config-airbnb|4.101019462465245e-06| +|pypi|[pycuda](https://pypi.org/project/pycuda)|4.066265060240964e-06| +|cran|randgeo|4.066265060240964e-06| +|cran|googleComputeEngineR|4.035691638735392e-06| +|npm|conventional-github-releaser|4.035691638735392e-06| +|npm|corp-semantic-release|4.035691638735392e-06| +|npm|gulp-clean-css|4.035691638735392e-06| +|cran|[servr](https://github.com/yihui/servr)|4.032379518072269e-06| +|cran|[shinydashboard](http://rstudio.github.io/shinydashboard/)|4.0105226099202e-06| +|pypi|[tempora](https://pypi.org/project/tempora)|3.987727118150019e-06| +|cran|[taxizedb](https://ropensci.github.io/taxizedb/)|3.975903614457886e-06| +|pypi|[matchms](https://github.com/matchms/matchms)|3.975903614457855e-06| |cran|[redland](https://github.com/ropensci/redland-bindings/tree/master/R/redland -https://github.com/ropensci/redland-bindings/tree/master/R)|4.060402684563783e-06| -|cran|reactR|4.060402684563758e-06| -|cran|mlr3data|4.060402684563758e-06| -|pypi|[pyfftw](https://github.com/pyFFTW/pyFFTW)|4.054556773664559e-06| -|rubygems|[terminal-table](https://github.com/tj/terminal-table)|4.035025167785236e-06| -|rubygems|minima|4.035025167785236e-06| -|rubygems|jekyll-titles-from-headings|4.035025167785236e-06| -|rubygems|jekyll-theme-time-machine|4.035025167785236e-06| -|rubygems|jekyll-theme-tactile|4.035025167785236e-06| -|rubygems|jekyll-theme-slate|4.035025167785236e-06| -|rubygems|jekyll-theme-modernist|4.035025167785236e-06| -|rubygems|jekyll-theme-minimal|4.035025167785236e-06| -|rubygems|jekyll-theme-midnight|4.035025167785236e-06| -|rubygems|jekyll-theme-merlot|4.035025167785236e-06| -|rubygems|jekyll-theme-leap-day|4.035025167785236e-06| -|rubygems|jekyll-theme-hacker|4.035025167785236e-06| -|rubygems|jekyll-theme-dinky|4.035025167785236e-06| -|rubygems|jekyll-theme-cayman|4.035025167785236e-06| -|rubygems|jekyll-theme-architect|4.035025167785236e-06| -|rubygems|jekyll-swiss|4.035025167785236e-06| -|rubygems|jekyll-relative-links|4.035025167785236e-06| -|rubygems|jekyll-redirect-from|4.035025167785236e-06| -|rubygems|jekyll-readme-index|4.035025167785236e-06| -|rubygems|jekyll-paginate|4.035025167785236e-06| -|rubygems|jekyll-optional-front-matter|4.035025167785236e-06| -|rubygems|jekyll-mentions|4.035025167785236e-06| -|rubygems|jekyll-include-cache|4.035025167785236e-06| -|rubygems|jekyll-gist|4.035025167785236e-06| -|rubygems|jekyll-default-layout|4.035025167785236e-06| -|rubygems|jekyll-coffeescript|4.035025167785236e-06| -|rubygems|jekyll-avatar|4.035025167785236e-06| -|rubygems|github-pages-health-check|4.035025167785236e-06| -|cran|[countrycode](https://vincentarelbundock.github.io/countrycode/)|4.01426174496646e-06| -|pypi|[pytest-regressions](https://pypi.org/project/pytest-regressions)|4.0069770049175755e-06| -|cran|sommer|3.998694437077987e-06| -|cran|MCMCpack|3.998694437077987e-06| -|cran|CARBayes|3.998694437077987e-06| -|cran|multcompView|3.998694437077987e-06| -|cran|estimability|3.998694437077987e-06| -|pypi|[types-pkg-resources](https://pypi.org/project/types-pkg-resources)|3.986577181208053e-06| -|cran|ncmeta|3.920976801867528e-06| -|cran|striprtf|3.9153883029721956e-06| -|cran|streamR|3.9153883029721956e-06| -|cran|readODS|3.9153883029721956e-06| -|cran|RNeXML|3.9153883029721956e-06| -|cran|phylobase|3.9153883029721956e-06| -|rubygems|regexp_parser|3.900552730293243e-06| -|cran|[log4r](https://github.com/johnmyleswhite/log4r)|3.876613319566339e-06| -|npm|request|3.866094876818545e-06| -|pypi|[nox](https://pypi.org/project/nox)|3.8408696223672405e-06| -|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|3.8408696223672405e-06| -|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|3.8408696223672405e-06| -|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|3.8408696223672405e-06| -|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|3.8408696223672405e-06| -|cran|rlog|3.833247289623128e-06| -|cran|loggit|3.833247289623128e-06| -|rubygems|[awesome_print](https://github.com/awesome-print/awesome_print)|3.830639638405694e-06| -|cran|base64|3.806627516778523e-06| -|cran|learnr|3.806627516778523e-06| -|rubygems|rspec-html-matchers|3.768561241610738e-06| -|cran|plotlyGeoAssets|3.742515895443306e-06| -|cran|listviewer|3.742515895443306e-06| -|rubygems|rqrcode_core|3.7289412409259003e-06| -|rubygems|chunky_png|3.7289412409259003e-06| -|rubygems|standardrb|3.7289412409259003e-06| -|rubygems|chronic|3.7289412409259003e-06| -|rubygems|fast_stack|3.7289412409259003e-06| -|rubygems|guard|3.7289412409259003e-06| -|rubygems|guard-minitest|3.7289412409259003e-06| -|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|3.7273766501954756e-06| -|npm|[file-saver](https://github.com/eligrey/FileSaver.js#readme)|3.725922253983454e-06| -|pypi|[grpcio-status](https://grpc.io)|3.6946932489793383e-06| -|cran|FME|3.691651828516641e-06| -|npm|[node-minify](https://github.com/srod/node-minify)|3.691275167785263e-06| -|pypi|[cpplint](https://github.com/cpplint/cpplint)|3.691275167785263e-06| -|pypi|[contextily](https://github.com/darribas/contextily)|3.691275167785263e-06| -|pypi|[importlib_metadata](https://github.com/python/importlib_metadata)|3.691275167785263e-06| -|pypi|[sphinxcontrib-doxylink](http://sphinxcontrib-doxylink.readthedocs.io/en/stable/)|3.691275167785263e-06| -|pypi|[google-cloud-monitoring](https://github.com/googleapis/python-monitoring)|3.691275167785263e-06| -|pypi|[pyone](http://opennebula.io)|3.691275167785263e-06| -|pypi|[prettytable](https://github.com/jazzband/prettytable)|3.691275167785263e-06| -|pypi|[howfairis](https://github.com/fair-software/howfairis)|3.691275167785263e-06| -|pypi|[atomneb](https://atomneb.github.io/AtomNeb-py/)|3.691275167785263e-06| +https://github.com/ropensci/redland-bindings/tree/master/R)|3.975903614457855e-06| +|cran|mlr3data|3.975903614457832e-06| +|cran|reactR|3.975903614457832e-06| +|pypi|[yatiml](https://github.com/yatiml/yatiml)|3.949924698795183e-06| +|cran|[countrycode](https://vincentarelbundock.github.io/countrycode/)|3.930722891566282e-06| +|cran|sommer|3.915479547368806e-06| +|cran|MCMCpack|3.915479547368806e-06| +|cran|CARBayes|3.915479547368806e-06| +|cran|multcompView|3.915479547368806e-06| +|cran|estimability|3.915479547368806e-06| +|pypi|[types-pkg-resources](https://pypi.org/project/types-pkg-resources)|3.903614457831324e-06| +|pypi|[h5xplorer](https://pypi.org/project/h5xplorer)|3.889470927187009e-06| +|rubygems|[term-ansicolor](http://flori.github.com/term-ansicolor)|3.87263339070568e-06| +|cran|[ncmeta](https://github.com/hypertidy/ncmeta)|3.83937925615506e-06| +|pypi|[google-api-python-client](https://github.com/googleapis/google-api-python-client/)|3.834666945136997e-06| +|npm|[material-ui](http://material-ui.com/)|3.8339070567986445e-06| +|cran|striprtf|3.8339070567986225e-06| +|cran|streamR|3.8339070567986225e-06| +|cran|readODS|3.8339070567986225e-06| +|cran|RNeXML|3.8339070567986225e-06| +|cran|phylobase|3.8339070567986225e-06| +|rubygems|regexp_parser|3.81938022002427e-06| +|rubygems|rubocop-performance|3.81938022002427e-06| +|cran|[log4r](https://github.com/johnmyleswhite/log4r)|3.795939000758277e-06| +|cran|rlog|3.7534754402224283e-06| +|cran|loggit|3.7534754402224283e-06| +|rubygems|[awesome_print](https://github.com/awesome-print/awesome_print)|3.7509220555692125e-06| +|pypi|[entsoe-py](https://github.com/EnergieID/entsoe-py)|3.727409638554218e-06| +|pypi|[quandl](https://github.com/quandl/quandl-python)|3.727409638554218e-06| +|cran|base64|3.7274096385542167e-06| +|cran|learnr|3.7274096385542167e-06| +|rubygems|[terminal-table](https://github.com/tj/terminal-table)|3.7274096385542167e-06| +|rubygems|minima|3.7274096385542167e-06| +|rubygems|mercenary|3.7274096385542167e-06| +|rubygems|jekyll-titles-from-headings|3.7274096385542167e-06| +|rubygems|jekyll-theme-time-machine|3.7274096385542167e-06| +|rubygems|jekyll-theme-tactile|3.7274096385542167e-06| +|rubygems|jekyll-theme-slate|3.7274096385542167e-06| +|rubygems|jekyll-theme-modernist|3.7274096385542167e-06| +|rubygems|jekyll-theme-minimal|3.7274096385542167e-06| +|rubygems|jekyll-theme-midnight|3.7274096385542167e-06| +|rubygems|jekyll-theme-merlot|3.7274096385542167e-06| +|rubygems|jekyll-theme-leap-day|3.7274096385542167e-06| +|rubygems|jekyll-theme-hacker|3.7274096385542167e-06| +|rubygems|jekyll-theme-dinky|3.7274096385542167e-06| +|rubygems|jekyll-theme-cayman|3.7274096385542167e-06| +|rubygems|jekyll-theme-architect|3.7274096385542167e-06| +|rubygems|jekyll-swiss|3.7274096385542167e-06| +|rubygems|jekyll-sitemap|3.7274096385542167e-06| +|rubygems|jekyll-seo-tag|3.7274096385542167e-06| +|rubygems|jekyll-relative-links|3.7274096385542167e-06| +|rubygems|jekyll-redirect-from|3.7274096385542167e-06| +|rubygems|jekyll-readme-index|3.7274096385542167e-06| +|rubygems|jekyll-paginate|3.7274096385542167e-06| +|rubygems|jekyll-optional-front-matter|3.7274096385542167e-06| +|rubygems|jekyll-mentions|3.7274096385542167e-06| +|rubygems|jekyll-include-cache|3.7274096385542167e-06| +|rubygems|jekyll-github-metadata|3.7274096385542167e-06| +|rubygems|jekyll-gist|3.7274096385542167e-06| +|rubygems|jekyll-feed|3.7274096385542167e-06| +|rubygems|jekyll-default-layout|3.7274096385542167e-06| +|rubygems|jekyll-coffeescript|3.7274096385542167e-06| +|rubygems|jekyll-avatar|3.7274096385542167e-06| +|rubygems|github-pages-health-check|3.7274096385542167e-06| +|rubygems|rubocop-github|3.7274096385542167e-06| +|npm|sinon-chai|3.714683341173921e-06| +|npm|repeat-string|3.6901355421686743e-06| +|npm|tap-out|3.6901355421686743e-06| +|npm|figures|3.6901355421686743e-06| +|npm|pretty-ms|3.6901355421686743e-06| +|npm|tapes|3.6901355421686743e-06| +|cran|plotlyGeoAssets|3.6646322130627773e-06| +|cran|listviewer|3.6646322130627773e-06| +|rubygems|rqrcode_core|3.6513400540939265e-06| +|rubygems|chunky_png|3.6513400540939265e-06| +|rubygems|standardrb|3.6513400540939265e-06| +|rubygems|chronic|3.6513400540939265e-06| +|rubygems|fast_stack|3.6513400540939265e-06| +|rubygems|guard|3.6513400540939265e-06| +|rubygems|guard-minitest|3.6513400540939265e-06| +|npm|[file-saver](https://github.com/eligrey/FileSaver.js#readme)|3.6483838938238857e-06| +|pypi|[pytest-sugar](https://pypi.org/project/pytest-sugar)|3.627510718177653e-06| +|cran|FME|3.614826653552987e-06| +|pypi|[synthia](https://github.com/dmey/synthia)|3.6144578313253287e-06| +|pypi|[BisPy](https://github.com/fAndreuzzi/BisPy)|3.6144578313253287e-06| +|pypi|[symfem](https://github.com/mscroggs/symfem)|3.6144578313253287e-06| +|pypi|[sphinxcontrib-doxylink](http://sphinxcontrib-doxylink.readthedocs.io/en/stable/)|3.6144578313253287e-06| +|pypi|[howfairis](https://github.com/fair-software/howfairis)|3.6144578313253287e-06| +|pypi|[cpplint](https://github.com/cpplint/cpplint)|3.6144578313253287e-06| +|pypi|[importlib_metadata](https://github.com/python/importlib_metadata)|3.6144578313253287e-06| +|pypi|[bigslice](https://github.com/satriaphd/bigslice)|3.6144578313253287e-06| +|pypi|[contextily](https://github.com/darribas/contextily)|3.6144578313253287e-06| +|pypi|[PSSMGen](https://github.com/DeepRank/PSSMGen)|3.6144578313253287e-06| +|pypi|[pyone](http://opennebula.io)|3.6144578313253287e-06| +|pypi|[sit2standpy](https://github.com/PfizerRD/sit2standpy)|3.6144578313253287e-06| +|pypi|[circuitgraph](https://github.com/circuitgraph/circuitgraph)|3.6144578313253287e-06| +|pypi|[google-cloud-monitoring](https://github.com/googleapis/python-monitoring)|3.6144578313253287e-06| +|cran|[rlist](https://renkun.me/rlist)|3.6144578313253287e-06| |cran|[CholWishart](https://github.com/gzt/CholWishart -https://gzt.github.io/CholWishart/)|3.691275167785263e-06| -|cran|[rlist](https://renkun.me/rlist)|3.691275167785263e-06| -|npm|[apollo-server-express](https://github.com/apollographql/apollo-server#readme)|3.6912751677852355e-06| -|npm|[graphql](https://github.com/graphql/graphql-js)|3.6912751677852355e-06| -|npm|[Matlab](https://github.com/abdennour/masfufa#readme)|3.6912751677852355e-06| -|npm|Gmsh|3.6912751677852355e-06| -|npm|[MTEX](https://github.com/diversemix/mtex#readme)|3.6912751677852355e-06| -|pypi|[easybuild-framework](https://easybuild.io)|3.6912751677852355e-06| -|pypi|[easybuild-easyblocks](https://easybuild.io)|3.6912751677852355e-06| -|pypi|[easybuild-easyconfigs](https://easybuild.io)|3.6912751677852355e-06| -|pypi|[openmdao](http://openmdao.org)|3.6912751677852355e-06| -|cran|[tabulizerjars](https://github.com/ropensci/tabulizerjars)|3.6912751677852355e-06| -|cran|[susieR](https://github.com/stephenslab/susieR)|3.6591771228479696e-06| -|npm|babel-plugin-transform-object-rest-spread|3.6586369188873275e-06| -|npm|karma-sourcemap-loader|3.6586369188873275e-06| -|npm|karma-mocha|3.6586369188873275e-06| -|npm|karma-chrome-launcher|3.6586369188873275e-06| -|npm|karma-chai|3.6586369188873275e-06| -|pypi|[trio-websocket~=0.9](https://pypi.org/project/trio-websocket~=0.9)|3.6543624161073823e-06| -|pypi|[trio~=0.17](https://pypi.org/project/trio~=0.17)|3.6543624161073823e-06| -|pypi|[urllib3[secure,](https://pypi.org/project/urllib3[secure,)|3.6543624161073823e-06| -|pypi|[pytest-isort](https://github.com/stephrdev/pytest-isort)|3.6408661912751684e-06| -|cran|rvg|3.6062787001059692e-06| -|cran|officer|3.6062787001059692e-06| -|cran|phosphoricons|3.6062787001059692e-06| -|cran|datamods|3.6062787001059692e-06| -|cran|[NMF](http://renozao.github.io/NMF)|3.6020355483442814e-06| -|pypi|[ipyleaflet](https://github.com/jupyter-widgets/ipyleaflet)|3.598993288590607e-06| -|pypi|[mlflow-dbstore](https://pypi.org/project/mlflow-dbstore)|3.582708251085669e-06| -|pypi|[mlserver-mlflow](https://pypi.org/project/mlserver-mlflow)|3.582708251085669e-06| -|pypi|[mlserver](https://pypi.org/project/mlserver)|3.582708251085669e-06| -|pypi|[pysftp](https://pypi.org/project/pysftp)|3.582708251085669e-06| -|pypi|[azureml-core](https://pypi.org/project/azureml-core)|3.582708251085669e-06| -|pypi|[aliyunstoreplugin](https://pypi.org/project/aliyunstoreplugin)|3.582708251085669e-06| -|cran|[fastcluster](http://danifold.net/fastcluster.html)|3.5727658071352962e-06| -|npm|[xml2js](https://github.com/Leonidas-from-XIV/node-xml2js)|3.5654362416107487e-06| -|cran|aws.ec2metadata|3.559443911792905e-06| -|cran|loo|3.5364797575232733e-06| -|cran|ISLR|3.5364797575232733e-06| -|cran|ICSOutlier|3.5364797575232733e-06| -|cran|ICS|3.5364797575232733e-06| -|cran|CompQuadForm|3.5364797575232733e-06| -|cran|bigutilsr|3.5364797575232733e-06| -|cran|[umap](https://github.com/tkonopka/umap)|3.5317593480345244e-06| -|pypi|[google-api-python-client](https://github.com/googleapis/google-api-python-client/)|3.4902479755490448e-06| -|npm|karma-cli|3.484528265358802e-06| -|npm|cli-color|3.4786719153329887e-06| -|pypi|[PySide2](https://www.pyside.org)|3.4771812080537256e-06| -|pypi|[Keras](https://github.com/keras-team/keras)|3.4675615212528107e-06| -|npm|babel-jest|3.4409495845317993e-06| -|cran|philentropy|3.4328859060402697e-06| -|pypi|[tempora](https://pypi.org/project/tempora)|3.431822059699069e-06| -|npm|[babel-polyfill](https://babeljs.io/)|3.4249440068938576e-06| -|npm|pkgfiles|3.404685480845387e-06| -|npm|puppeteer|3.404685480845387e-06| -|npm|obake|3.404685480845387e-06| -|npm|is-node-modern|3.404685480845387e-06| -|npm|in-publish|3.404685480845387e-06| -|npm|formidable|3.404685480845387e-06| -|npm|far|3.404685480845387e-06| -|npm|fake|3.404685480845387e-06| -|npm|asynckit|3.404685480845387e-06| -|cran|tidyquant|3.404685480845387e-06| -|cran|tibbletime|3.404685480845387e-06| -|cran|sweep|3.404685480845387e-06| -|cran|timetk|3.404685480845387e-06| -|pypi|[pydotplus](https://pypi.org/project/pydotplus)|3.3941446589232653e-06| -|pypi|[fasteners](https://pypi.org/project/fasteners)|3.3941446589232653e-06| -|pypi|[xcffib](https://pypi.org/project/xcffib)|3.3917051174496643e-06| -|cran|data.tree|3.389991245987742e-06| -|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|3.3799744897959182e-06| -|cran|syslognet|3.3732576148683533e-06| -|cran|botor|3.3732576148683533e-06| -|cran|telegram|3.3732576148683533e-06| -|cran|RPushbullet|3.3732576148683533e-06| -|cran|slackr|3.3732576148683533e-06| -|rubygems|coffee-script|3.342063587179838e-06| -|cran|[EMbC]()|3.3287392138063362e-06| -|cran|[geodist](https://github.com/hypertidy/geodist)|3.322147651006774e-06| -|npm|[material-ui](http://material-ui.com/)|3.3221476510067272e-06| -|cran|languageR|3.322147651006712e-06| -|cran|arm|3.322147651006712e-06| -|cran|hypergeo|3.322147651006712e-06| -|pypi|[percy](https://pypi.org/project/percy)|3.3030674319396356e-06| -|pypi|[diskcache](https://pypi.org/project/diskcache)|3.3030674319396356e-06| -|pypi|[fire](https://pypi.org/project/fire)|3.3030674319396356e-06| -|pypi|[pytest-sugar](https://pypi.org/project/pytest-sugar)|3.3030674319396356e-06| -|pypi|[preconditions](https://pypi.org/project/preconditions)|3.3030674319396356e-06| -|pypi|[mimesis](https://pypi.org/project/mimesis)|3.3030674319396356e-06| -|pypi|[flask-talisman](https://pypi.org/project/flask-talisman)|3.3030674319396356e-06| -|pypi|[dash-dangerously-set-inner-html](https://pypi.org/project/dash-dangerously-set-inner-html)|3.3030674319396356e-06| -|pypi|[dash-flow-example](https://pypi.org/project/dash-flow-example)|3.3030674319396356e-06| -|pypi|[flask-compress](https://pypi.org/project/flask-compress)|3.3030674319396356e-06| -|pypi|[falcon](https://pypi.org/project/falcon)|3.262823585810163e-06| -|pypi|[pyramid](https://pypi.org/project/pyramid)|3.262823585810163e-06| -|pypi|[bottle](https://pypi.org/project/bottle)|3.262823585810163e-06| -|pypi|[webtest-aiohttp](https://pypi.org/project/webtest-aiohttp)|3.262823585810163e-06| -|pypi|[webtest](https://pypi.org/project/webtest)|3.262823585810163e-06| -|cran|concaveman|3.262823585810163e-06| -|cran|tweenr|3.262823585810163e-06| -|pypi|[cachecontrol](https://github.com/ionrock/cachecontrol)|3.2441629643633607e-06| -|pypi|[google-cloud-firestore](https://github.com/googleapis/python-firestore)|3.2441629643633607e-06| -|cran|[ctmm](https://github.com/ctmm-initiative/ctmm)|3.2298657718120816e-06| -|pypi|[croniter](http://github.com/kiorky/croniter)|3.221476510067114e-06| -|pypi|[pyvista](https://github.com/pyvista/pyvista)|3.2214765100671122e-06| -|rubygems|ruby-vips|3.1962353493650574e-06| -|rubygems|mini_magick|3.1962353493650574e-06| -|rubygems|minitest-hooks|3.1962353493650574e-06| -|rubygems|minispec-metadata|3.1962353493650574e-06| -|rubygems|dhash-vips|3.1962353493650574e-06| -|rubygems|codeclimate-test-reporter|3.1962353493650574e-06| -|rubygems|ZenTest|3.1962353493650574e-06| -|npm|[crossfilter2](https://crossfilter.github.io/crossfilter/)|3.181927133269424e-06| -|cran|snpStats|3.1777064487890283e-06| -|pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|3.132310642377756e-06| -|pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|3.132310642377756e-06| -|pypi|[types-PyYAML](https://pypi.org/project/types-PyYAML)|3.132310642377756e-06| -|cran|skewt|3.132310642377756e-06| -|cran|catdata|3.132310642377756e-06| -|cran|MPV|3.132310642377756e-06| -|cran|fit.models|3.132310642377756e-06| -|cran|robust|3.132310642377756e-06| -|cran|DEoptimR|3.132310642377756e-06| -|pypi|[testtools](https://pypi.org/project/testtools)|3.1009875359539783e-06| -|pypi|[testscenarios](https://pypi.org/project/testscenarios)|3.1009875359539783e-06| -|pypi|[python-subunit](https://pypi.org/project/python-subunit)|3.1009875359539783e-06| -|pypi|[fixtures](https://pypi.org/project/fixtures)|3.1009875359539783e-06| -|pypi|[ddt](https://pypi.org/project/ddt)|3.1009875359539783e-06| -|pypi|[obspy](https://www.obspy.org)|3.0760626398210474e-06| -|pypi|[scriptcwl](https://github.com/nlesc/scriptcwl)|3.0760626398210474e-06| -|cran|[hdf5r](https://hhoeflin.github.io/hdf5r/)|3.0760626398210474e-06| -|cran|IRanges|3.045302013422819e-06| -|cran|qdapDictionaries|3.045302013422819e-06| -|npm|tar|3.0148489932885906e-06| -|npm|closurecompiler-externs|3.0148489932885906e-06| -|npm|jsdoc|3.0148489932885906e-06| -|pypi|[pymeeus](https://pypi.org/project/pymeeus)|3.0148489932885906e-06| -|pypi|[zest.releaser](https://pypi.org/project/zest.releaser)|3.0148489932885906e-06| -|pypi|[pytz-deprecation-shim](https://pypi.org/project/pytz-deprecation-shim)|3.0148489932885906e-06| -|pypi|[sphinxbootstrap4theme](https://pypi.org/project/sphinxbootstrap4theme)|3.0148489932885906e-06| -|pypi|[texttable](https://pypi.org/project/texttable)|3.0148489932885906e-06| -|pypi|[zict](https://pypi.org/project/zict)|3.011837156132458e-06| -|cran|swagger|3.011837156132458e-06| -|cran|nlshrink|3.0118371561324575e-06| -|cran|NetworkComparisonTest|3.0118371561324575e-06| -|cran|NetworkToolbox|3.0118371561324575e-06| -|cran|mathjaxr|3.0118371561324575e-06| -|cran|glassoFast|3.0118371561324575e-06| -|cran|leafem|3.0106963087248374e-06| +https://gzt.github.io/CholWishart/)|3.6144578313253287e-06| +|npm|[node-minify](https://github.com/srod/node-minify)|3.6144578313253287e-06| +|pypi|[tesliper](https://github.com/mishioo/tesliper)|3.6144578313253016e-06| +|pypi|[pyplif-hippos](https://github.com/radifar/PyPLIF-HIPPOS)|3.6144578313253016e-06| +|pypi|[bitarray](https://github.com/ilanschnell/bitarray)|3.6144578313253016e-06| +|pypi|[clingo](https://github.com/potassco/clingo)|3.6144578313253016e-06| +|pypi|[electiondata](https://github.com/kavigupta/electiondata)|3.6144578313253016e-06| +|pypi|[libceed](https://libceed.readthedocs.io)|3.6144578313253016e-06| +|pypi|[singularity-compose](http://github.com/singularityhub/singularity-compose)|3.6144578313253016e-06| +|cran|[tabulizerjars](https://github.com/ropensci/tabulizerjars)|3.6144578313253016e-06| +|npm|[Matlab](https://github.com/abdennour/masfufa#readme)|3.6144578313253016e-06| +|npm|Gmsh|3.6144578313253016e-06| +|npm|[MTEX](https://github.com/diversemix/mtex#readme)|3.6144578313253016e-06| +|npm|[apollo-server-express](https://github.com/apollographql/apollo-server#readme)|3.6144578313253016e-06| +|npm|[graphql](https://github.com/graphql/graphql-js)|3.6144578313253016e-06| +|pypi|[asciitree](http://github.com/mbr/asciitree)|3.605421686746988e-06| +|cran|[susieR](https://github.com/stephenslab/susieR)|3.583027763226818e-06| +|npm|karma-sourcemap-loader|3.5824988011886865e-06| +|npm|karma-mocha|3.5824988011886865e-06| +|npm|karma-chrome-launcher|3.5824988011886865e-06| +|npm|karma-chai|3.5824988011886865e-06| +|npm|babel-plugin-transform-object-rest-spread|3.5824988011886865e-06| +|pypi|[pytest-isort](https://pypi.org/project/pytest-isort)|3.5650978915662657e-06| +|cran|rvg|3.5312301838934686e-06| +|cran|officer|3.5312301838934686e-06| +|cran|phosphoricons|3.5312301838934686e-06| +|cran|datamods|3.5312301838934686e-06| +|cran|[NMF](http://renozao.github.io/NMF)|3.527075334304258e-06| +|pypi|[pyevtk](https://github.com/pyscience-projects/pyevtk)|3.5081502480510283e-06| +|cran|[fastcluster](http://danifold.net/fastcluster.html)|3.4984147114774974e-06| +|npm|[xml2js](https://github.com/Leonidas-from-XIV/node-xml2js)|3.491237677984676e-06| +|cran|aws.ec2metadata|3.4853700516351117e-06| +|pypi|[rdkit-pypi](https://github.com/kuelumbus/rdkit-pypi)|3.4716829897552838e-06| +|cran|loo|3.462883793237466e-06| +|cran|ISLR|3.462883793237466e-06| +|cran|ICSOutlier|3.462883793237466e-06| +|cran|ICS|3.462883793237466e-06| +|cran|CompQuadForm|3.462883793237466e-06| +|cran|bigutilsr|3.462883793237466e-06| +|cran|[umap](https://github.com/tkonopka/umap)|3.4582616179001804e-06| +|pypi|[pytest-remotedata](https://github.com/astropy/pytest-remotedata)|3.4236082260074794e-06| +|npm|karma-cli|3.4120134383688595e-06| +|pypi|[PySide2](https://www.pyside.org)|3.404819277108467e-06| +|pypi|[twiggy](https://github.com/wearpants/twiggy/)|3.3956880152187723e-06| +|pypi|[langcodes](https://github.com/rspeer/langcodes)|3.362426449985992e-06| +|pypi|[pathy](https://github.com/justindujardin/pathy)|3.362426449985992e-06| +|pypi|[spacy-loggers](https://github.com/explosion/spacy-loggers)|3.362426449985992e-06| +|cran|[philentropy](https://github.com/HajkD/philentropy)|3.3614457831325313e-06| +|npm|[babel-polyfill](https://babeljs.io/)|3.3536691589957375e-06| +|cran|tidyquant|3.33383222330315e-06| +|cran|tibbletime|3.33383222330315e-06| +|cran|sweep|3.33383222330315e-06| +|cran|timetk|3.33383222330315e-06| +|npm|pkgfiles|3.33383222330315e-06| +|npm|puppeteer|3.33383222330315e-06| +|npm|obake|3.33383222330315e-06| +|npm|is-node-modern|3.33383222330315e-06| +|npm|in-publish|3.33383222330315e-06| +|npm|formidable|3.33383222330315e-06| +|npm|far|3.33383222330315e-06| +|npm|fake|3.33383222330315e-06| +|npm|asynckit|3.33383222330315e-06| +|pypi|[pydotplus](https://pypi.org/project/pydotplus)|3.3235107613114997e-06| +|pypi|[xcffib](https://pypi.org/project/xcffib)|3.321121987951807e-06| +|cran|[data.tree](http://github.com/gluc/data.tree)|3.3194437830372856e-06| +|pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|3.303058387395737e-06| +|pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|3.303058387395737e-06| +|pypi|[types-PyYAML](https://pypi.org/project/types-PyYAML)|3.303058387395737e-06| +|cran|syslognet|3.303058387395737e-06| +|cran|botor|3.303058387395737e-06| +|cran|telegram|3.303058387395737e-06| +|cran|RPushbullet|3.303058387395737e-06| +|cran|slackr|3.303058387395737e-06| +|cran|[EMbC]()|3.2594664371772887e-06| +|cran|[geodist](https://github.com/hypertidy/geodist)|3.2530120481928327e-06| +|cran|languageR|3.2530120481927717e-06| +|cran|arm|3.2530120481927717e-06| +|cran|hypergeo|3.2530120481927717e-06| +|pypi|[uvloop](https://pypi.org/project/uvloop)|3.244075201906527e-06| +|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|3.244075201906527e-06| +|pypi|[flat-table](https://github.com/metinsenturk/flat_table)|3.2213735578920475e-06| +|pypi|[tikzplotlib](https://pypi.org/project/tikzplotlib)|3.2213735578920475e-06| +|cran|concaveman|3.194922547332186e-06| +|cran|tweenr|3.194922547332186e-06| +|pypi|[cachecontrol](https://github.com/ionrock/cachecontrol)|3.176650263023926e-06| +|pypi|[google-cloud-firestore](https://github.com/googleapis/python-firestore)|3.176650263023926e-06| +|cran|[ctmm](https://github.com/ctmm-initiative/ctmm)|3.16265060240964e-06| +|npm|babel-plugin-istanbul|3.1524130736632e-06| +|rubygems|ruby-vips|3.1297200463662227e-06| +|rubygems|mini_magick|3.1297200463662227e-06| +|rubygems|minitest-hooks|3.1297200463662227e-06| +|rubygems|minispec-metadata|3.1297200463662227e-06| +|rubygems|dhash-vips|3.1297200463662227e-06| +|rubygems|codeclimate-test-reporter|3.1297200463662227e-06| +|rubygems|ZenTest|3.1297200463662227e-06| +|npm|[crossfilter2](https://crossfilter.github.io/crossfilter/)|3.115709591613215e-06| +|cran|snpStats|3.111576741749607e-06| +|cran|skewt|3.067125645438898e-06| +|cran|catdata|3.067125645438898e-06| +|cran|MPV|3.067125645438898e-06| +|cran|fit.models|3.067125645438898e-06| +|cran|robust|3.067125645438898e-06| +|cran|DEoptimR|3.067125645438898e-06| +|pypi|[sphinx-toggleprompt](https://pypi.org/project/sphinx-toggleprompt)|3.0496987951807227e-06| +|pypi|[pvfactors](https://pypi.org/project/pvfactors)|3.0496987951807227e-06| +|pypi|[pytest-responsemock](https://pypi.org/project/pytest-responsemock)|3.0496987951807227e-06| +|pypi|[iso3166](https://pypi.org/project/iso3166)|3.0496987951807227e-06| +|pypi|[importlib_resources](http://importlib-resources.readthedocs.io/)|3.012048192771102e-06| +|pypi|[scriptcwl](https://github.com/nlesc/scriptcwl)|3.012048192771102e-06| +|cran|[hdf5r](https://hhoeflin.github.io/hdf5r/)|3.012048192771102e-06| +|pypi|[mne](https://mne.tools/dev/)|2.9912754466140435e-06| +|cran|IRanges|2.9819277108433735e-06| +|cran|qdapDictionaries|2.9819277108433735e-06| +|npm|phantomjs-prebuilt|2.981927710843373e-06| +|pypi|[sphinxbootstrap4theme](https://pypi.org/project/sphinxbootstrap4theme)|2.9521084337349396e-06| +|pypi|[texttable](https://pypi.org/project/texttable)|2.9521084337349396e-06| +|pypi|[pymeeus](https://pypi.org/project/pymeeus)|2.9521084337349396e-06| +|npm|tar|2.9521084337349396e-06| +|npm|closurecompiler-externs|2.9521084337349396e-06| +|npm|jsdoc|2.9521084337349396e-06| +|cran|swagger|2.9491592744604792e-06| +|cran|nlshrink|2.949159274460479e-06| +|cran|NetworkComparisonTest|2.949159274460479e-06| +|cran|NetworkToolbox|2.949159274460479e-06| +|cran|mathjaxr|2.949159274460479e-06| +|cran|glassoFast|2.949159274460479e-06| +|pypi|[phonemizer](https://pypi.org/project/phonemizer)|2.9480421686747194e-06| +|cran|[leafem](https://github.com/r-spatial/leafem)|2.948042168674704e-06| +|pypi|[croniter](https://pypi.org/project/croniter)|2.9209337349397606e-06| |cran|[ghql](https://github.com/ropensci/ghql (devel) -https://docs.ropensci.org/ghql (docs))|2.974315952503873e-06| -|pypi|[dask-cudf](https://pypi.org/project/dask-cudf)|2.9710263545588475e-06| -|pypi|[cudf](https://pypi.org/project/cudf)|2.9710263545588475e-06| -|pypi|[spatialpandas](https://pypi.org/project/spatialpandas)|2.9710263545588475e-06| -|pypi|[snappy](https://pypi.org/project/snappy)|2.9710263545588475e-06| -|pypi|[rioxarray](https://pypi.org/project/rioxarray)|2.9710263545588475e-06| -|pypi|[pytest-benchmark](https://pypi.org/project/pytest-benchmark)|2.9710263545588475e-06| -|pypi|[datashape](https://pypi.org/project/datashape)|2.9710263545588475e-06| -|pypi|[pywin32-ctypes](https://pypi.org/project/pywin32-ctypes)|2.9234899328859058e-06| -|pypi|[jeepney](https://pypi.org/project/jeepney)|2.9234899328859058e-06| -|pypi|[SecretStorage](https://pypi.org/project/SecretStorage)|2.9234899328859058e-06| -|cran|tablerDash|2.9002876318312554e-06| -|cran|argonDash|2.9002876318312554e-06| -|cran|argonR|2.9002876318312554e-06| -|cran|shinydashboardPlus|2.9002876318312554e-06| -|cran|geonames|2.8673298178331743e-06| -|cran|isdparser|2.8673298178331743e-06| -|cran|Exact|2.8647505106507127e-06| -|pypi|[sphinx-argparse-cli](https://pypi.org/project/sphinx-argparse-cli)|2.8598851138037106e-06| -|npm|seed-random|2.8549706375838923e-06| -|npm|freeport|2.8549706375838923e-06| -|npm|ws|2.8549706375838923e-06| -|npm|node-uuid|2.8549706375838923e-06| -|npm|event-emitter|2.8549706375838923e-06| -|cran|[xslt](https://github.com/ropensci/xslt)|2.8523489932886027e-06| -|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|2.8523489932886023e-06| -|rubygems|netrc|2.8264209312080533e-06| -|cran|starsdata|2.813594251531952e-06| -|cran|ncdfgeom|2.813594251531952e-06| -|cran|cubelyr|2.813594251531952e-06| -|cran|clue|2.813594251531952e-06| -|cran|effects|2.811048012390294e-06| -|cran|alr4|2.811048012390294e-06| -|cran|carData|2.811048012390294e-06| -|cran|vtreat|2.811048012390294e-06| -|cran|kknn|2.811048012390294e-06| -|cran|smotefamily|2.811048012390294e-06| -|cran|bestNormalize|2.811048012390294e-06| -|cran|mlr3learners|2.811048012390294e-06| -|cran|mlr3filters|2.811048012390294e-06| -|cran|bbotk|2.811048012390294e-06| -|cran|[Momocs](https://github.com/MomX/Momocs/)|2.768456375838963e-06| -|cran|[iptools](https://github.com/hrbrmstr/iptools)|2.7684563758389473e-06| -|npm|[csv-parser](https://github.com/mafintosh/csv-parser)|2.7684563758389316e-06| -|npm|[svd-js](https://github.com/danilosalvati/svd-js#readme)|2.7684563758389316e-06| -|npm|[hasha](https://github.com/sindresorhus/hasha#readme)|2.7684563758389316e-06| -|pypi|[mip](https://github.com/coin-or/python-mip)|2.7684563758389316e-06| -|pypi|[pytray](https://github.com/muhrin/pytray.git)|2.7684563758389316e-06| -|pypi|[neo](https://neuralensemble.org/neo)|2.7684563758389316e-06| -|pypi|[genshi](https://github.com/edgewall/genshi)|2.7684563758389316e-06| -|pypi|[cairosvg](https://courtbouillon.org/cairosvg)|2.7684563758389316e-06| -|pypi|[pystream-protobuf](https://github.com/cartoonist/pystream-protobuf)|2.7684563758389316e-06| -|pypi|[multipledispatch](http://github.com/mrocklin/multipledispatch/)|2.7684563758389316e-06| -|pypi|[alive-progress](https://github.com/rsalmei/alive-progress)|2.7684563758389316e-06| -|pypi|[cspy](https://github.com/torressa/cspy)|2.7684563758389316e-06| -|cran|[metR](https://github.com/eliocamp/metR)|2.7684563758389316e-06| -|cran|leaflet.minicharts|2.7684563758389316e-06| -|cran|[decoder](https://www.bitbucket.com/cancercentrum/decoder)|2.7684563758389316e-06| -|npm|[font-awesome-webpack](https://github.com/gowravshekar/font-awesome-webpack)|2.7684563758389265e-06| -|pypi|[pycoeman](https://github.com/NLeSC/pycoeman)|2.7684563758389265e-06| -|pypi|[pscript](https://pypi.org/project/pscript)|2.7684563758389257e-06| -|pypi|[mpl-sample-data](https://pypi.org/project/mpl-sample-data)|2.7684563758389257e-06| -|pypi|[deepdiff](https://pypi.org/project/deepdiff)|2.7684563758389257e-06| -|cran|gcookbook|2.747640914366453e-06| -|pypi|[mygene](https://github.com/biothings/mygene.py)|2.7407718120805536e-06| -|pypi|[minknow-api](https://github.com/nanoporetech/minknow_api)|2.7407718120805536e-06| -|cran|GA|2.740771812080537e-06| -|cran|gclus|2.740771812080537e-06| -|cran|qap|2.740771812080537e-06| -|cran|biomaRt|2.7407718120805366e-06| -|rubygems|rack-test|2.7306888115713916e-06| -|pypi|[google-resumable-media](https://github.com/googleapis/google-resumable-media-python)|2.7294640325172507e-06| -|npm|serialize-javascript|2.7187477528763177e-06| -|npm|jest-worker|2.7187477528763177e-06| -|pypi|[transformers](https://pypi.org/project/transformers)|2.715166010215546e-06| -|pypi|[biothings-client](https://github.com/biothings/biothings_client.py)|2.7133640939597224e-06| -|rubygems|[ruby-progressbar](https://github.com/jfelchner/ruby-progressbar)|2.711957266127928e-06| -|pypi|[resample](https://pypi.org/project/resample)|2.7069351230425057e-06| -|pypi|[boost-histogram](https://pypi.org/project/boost-histogram)|2.7069351230425057e-06| -|pypi|[numba-stats](https://pypi.org/project/numba-stats)|2.7069351230425057e-06| -|pypi|[hashin](https://pypi.org/project/hashin)|2.6936853438649443e-06| -|pypi|[jaraco.windows](https://pypi.org/project/jaraco.windows)|2.693165353806185e-06| -|pypi|[singledispatch](https://pypi.org/project/singledispatch)|2.693165353806185e-06| -|cran|[xgboost](https://github.com/dmlc/xgboost)|2.68935762224355e-06| -|rubygems|rubocop-rake|2.670778983546222e-06| -|rubygems|rubocop-minitest|2.670778983546222e-06| -|pypi|[bson](https://pypi.org/project/bson)|2.6593681484899327e-06| -|pypi|[url-normalize](https://pypi.org/project/url-normalize)|2.6593681484899327e-06| -|pypi|[cattrs](https://pypi.org/project/cattrs)|2.6593681484899327e-06| -|cran|dblog|2.6216078202509483e-06| -|pypi|[cyvcf2](https://github.com/brentp/cyvcf2/)|2.6146532438478813e-06| -|npm|babel-plugin-unassert|2.6102588686481302e-06| -|npm|babel-preset-power-assert|2.6102588686481302e-06| -|npm|eslint-config-mysticatea|2.6102588686481302e-06| -|npm|if-node-version|2.6102588686481302e-06| -|npm|opener|2.6102588686481302e-06| -|npm|power-assert|2.6102588686481302e-06| -|npm|shelljs|2.6102588686481302e-06| -|npm|chokidar|2.6102588686481302e-06| -|npm|duplexer|2.6102588686481302e-06| -|npm|glob2base|2.6102588686481302e-06| -|npm|shell-quote|2.6102588686481302e-06| -|npm|subarg|2.6102588686481302e-06| -|npm|testing-library|2.555498193082086e-06| -|npm|escape-html|2.5554981930820856e-06| -|pypi|[furl](https://pypi.org/project/furl)|2.537751677852349e-06| -|pypi|[pyodbc](https://pypi.org/project/pyodbc)|2.537751677852349e-06| -|pypi|[pymysql](https://pypi.org/project/pymysql)|2.537751677852349e-06| -|pypi|[pg8000](https://pypi.org/project/pg8000)|2.537751677852349e-06| -|pypi|[psycopg2cffi](https://pypi.org/project/psycopg2cffi)|2.537751677852349e-06| -|pypi|[flexmock](https://pypi.org/project/flexmock)|2.537751677852349e-06| -|pypi|[phonenumbers](https://pypi.org/project/phonenumbers)|2.537751677852349e-06| -|pypi|[pendulum](https://pypi.org/project/pendulum)|2.537751677852349e-06| -|pypi|[intervals](https://pypi.org/project/intervals)|2.537751677852349e-06| -|pypi|[colour](https://pypi.org/project/colour)|2.537751677852349e-06| -|cran|bcpa|2.537751677852349e-06| -|cran|amt|2.537751677852349e-06| -|cran|circular|2.537751677852349e-06| -|rubygems|[unicode-display_width](https://github.com/janlelis/unicode-display_width)|2.523646439700041e-06| -|pypi|[pytest-django](https://pypi.org/project/pytest-django)|2.5123741610738253e-06| -|pypi|[twisted](https://pypi.org/project/twisted)|2.5123741610738253e-06| -|pypi|[sybil](https://pypi.org/project/sybil)|2.5123741610738253e-06| -|pypi|[zope.component](https://pypi.org/project/zope.component)|2.5123741610738253e-06| -|pypi|[setuptools-git](https://pypi.org/project/setuptools-git)|2.5123741610738253e-06| -|cran|Rfast|2.5087156174650224e-06| -|cran|genlasso|2.5087156174650224e-06| -|cran|L0Learn|2.5087156174650224e-06| -|cran|mixsqp|2.5087156174650224e-06| -|pypi|[connexion](https://github.com/zalando/connexion)|2.491610738255026e-06| -|rubygems|rubocop-standard|2.4859608272839334e-06| -|rubygems|minitest-focus|2.4859608272839334e-06| -|rubygems|rubocop-ast|2.4859608272839334e-06| -|rubygems|rainbow|2.4859608272839334e-06| -|rubygems|parser|2.4859608272839334e-06| -|rubygems|parallel|2.4859608272839334e-06| -|rubygems|rspec_junit_formatter|2.4859608272839334e-06| -|pypi|[tvtk](https://pypi.org/project/tvtk)|2.4803364815208476e-06| -|pypi|[mayavi](https://pypi.org/project/mayavi)|2.4803364815208476e-06| -|pypi|[grpcio-gcp](https://grpc.io)|2.4642681930509228e-06| -|pypi|[js2py](https://github.com/PiotrDabkowski/Js2Py)|2.4362416107382697e-06| -|pypi|[Click](https://palletsprojects.com/p/click/)|2.4278922978587614e-06| -|pypi|[pytest-trio](https://pypi.org/project/pytest-trio)|2.4226465124640458e-06| -|cran|RDCOMClient|2.3832798365917713e-06| -|cran|base|2.3832798365917713e-06| -|cran|NetSwan|2.3832798365917713e-06| -|cran|netrankr|2.3832798365917713e-06| -|cran|fortunes|2.3747315436241617e-06| -|npm|methods|2.3729626078619365e-06| -|cran|mail|2.3729626078619365e-06| -|cran|bibtex|2.3729626078619365e-06| -|cran|synchronicity|2.3729626078619365e-06| -|cran|doMPI|2.3729626078619365e-06| -|cran|rngtools|2.3729626078619365e-06| -|cran|pkgmaker|2.3729626078619365e-06| -|cran|waveslim|2.3627343207590836e-06| -|npm|random-buffer|2.342540010325245e-06| -|npm|nock|2.342540010325245e-06| -|npm|is-zip|2.342540010325245e-06| -|npm|pify|2.342540010325245e-06| -|npm|p-event|2.342540010325245e-06| -|npm|make-dir|2.342540010325245e-06| -|npm|got|2.342540010325245e-06| -|npm|get-stream|2.342540010325245e-06| -|npm|filenamify|2.342540010325245e-06| -|npm|ext-name|2.342540010325245e-06| -|npm|decompress|2.342540010325245e-06| -|npm|content-disposition|2.342540010325245e-06| -|npm|archive-type|2.342540010325245e-06| -|npm|[webpack-dev-server](https://github.com/webpack/webpack-dev-server#readme)|2.342540010325245e-06| -|npm|[wallaby-webpack](https://github.com/jeffling/wallaby-webpack#readme)|2.342540010325245e-06| -|npm|package-yaml|2.342540010325245e-06| -|npm|json-loader|2.342540010325245e-06| -|npm|isparta-loader|2.342540010325245e-06| -|npm|isparta|2.342540010325245e-06| -|npm|gh-pages|2.342540010325245e-06| -|npm|gatsby|2.342540010325245e-06| -|npm|expect|2.342540010325245e-06| -|npm|enzyme-adapter-react-16|2.342540010325245e-06| -|npm|enzyme|2.342540010325245e-06| -|npm|conventional-changelog|2.342540010325245e-06| -|npm|chai-enzyme|2.342540010325245e-06| -|npm|babel-plugin-__coverage__|2.342540010325245e-06| -|npm|add-stream|2.342540010325245e-06| -|npm|karma-webpack|2.342540010325245e-06| -|npm|karma-sinon|2.342540010325245e-06| -|npm|karma-mocha-reporter|2.342540010325245e-06| -|npm|lodash.isequal|2.342540010325245e-06| -|npm|classnames|2.342540010325245e-06| -|npm|clamp|2.342540010325245e-06| -|pypi|[anndata](http://anndata.readthedocs.io)|2.3378076062639915e-06| -|rubygems|[i18n](https://github.com/ruby-i18n/i18n)|2.327233640939598e-06| -|pypi|[sphinxcontrib_bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|2.3070469798657815e-06| -|cran|[shinycssloaders](https://github.com/daattali/shinycssloaders)|2.2730483927940767e-06| -|cran|numbers|2.243906746732606e-06| -|rubygems|letter_opener|2.2373647445555405e-06| -|rubygems|rspec-rails|2.2373647445555405e-06| -|pypi|[cffconvert](https://github.com/citation-file-format/cff-converter-python)|2.2147651006711825e-06| -|cran|Rd2md|2.2147651006711825e-06| -|npm|[remark-sectionize](https://github.com/jake-low/remark-sectionize#readme)|2.2147651006711516e-06| -|pypi|[charset_normalizer](https://github.com/ousret/charset_normalizer)|2.2147651006711516e-06| -|pypi|[dateparser](https://github.com/scrapinghub/dateparser)|2.2147651006711516e-06| -|pypi|[ogb](https://github.com/snap-stanford/ogb)|2.2147651006711516e-06| -|pypi|[thefuzz](https://github.com/seatgeek/thefuzz)|2.2147651006711516e-06| -|pypi|[pywavelets](https://github.com/PyWavelets/pywt)|2.2147651006711516e-06| -|pypi|[tripoli](https://github.com/DDMAL/tripoli)|2.2147651006711516e-06| -|pypi|[sphinx_argparse](https://pypi.org/project/sphinx_argparse)|2.2147651006711516e-06| -|cran|[digitTests](https://koenderks.github.io/digitTests/)|2.2147651006711516e-06| -|cran|[jfa](https://koenderks.github.io/jfa/)|2.2147651006711516e-06| -|cran|[leafletR](https://github.com/chgrl/leafletR)|2.2147651006711516e-06| -|cran|[phonTools](http://www.santiagobarreda.com/rscripts.html)|2.2147651006711516e-06| -|cran|[hash](http://www.johnhughes.org)|2.2147651006711516e-06| -|pypi|[progressbar](http://code.google.com/p/python-progressbar)|2.214765100671141e-06| -|pypi|[pykeops](http://www.kernel-operations.io/)|2.214765100671141e-06| -|pypi|[ipywidgets-bokeh](https://pypi.org/project/ipywidgets-bokeh)|2.214765100671141e-06| -|pypi|[ipympl](https://pypi.org/project/ipympl)|2.214765100671141e-06| -|pypi|[hvplot](https://pypi.org/project/hvplot)|2.214765100671141e-06| -|pypi|[pymatreader](https://gitlab.com/obob/pymatreader)|2.2147651006711207e-06| -|cran|[uchardet](https://artemklevtsov.gitlab.io/uchardet)|2.2147651006711207e-06| -|cran|textshaping|2.205987068259944e-06| -|cran|[fda](http://www.functionaldata.org)|2.197187599872182e-06| -|cran|R.cache|2.1926174496644297e-06| -|pypi|[itk-segmentation](https://pypi.org/project/itk-segmentation)|2.1534635666347076e-06| -|pypi|[itk-registration](https://pypi.org/project/itk-registration)|2.1534635666347076e-06| -|pypi|[itk-filtering](https://pypi.org/project/itk-filtering)|2.1534635666347076e-06| -|pypi|[itk-io](https://pypi.org/project/itk-io)|2.1534635666347076e-06| -|pypi|[itk-numerics](https://pypi.org/project/itk-numerics)|2.1534635666347076e-06| -|pypi|[itk-core](https://pypi.org/project/itk-core)|2.1534635666347076e-06| -|cran|tidymodels|2.149624950651402e-06| -|cran|DiagrammeRsvg|2.1082860092927208e-06| -|cran|rapportools|2.0882070949185038e-06| -|pypi|[ezdxf](https://pypi.org/project/ezdxf)|2.080282210307808e-06| -|pypi|[glooey](https://pypi.org/project/glooey)|2.080282210307808e-06| -|pypi|[colorlog](https://pypi.org/project/colorlog)|2.080282210307808e-06| -|pypi|[pycollada](https://pypi.org/project/pycollada)|2.080282210307808e-06| -|pypi|[triangle](https://pypi.org/project/triangle)|2.080282210307808e-06| -|pypi|[python-fcl](https://pypi.org/project/python-fcl)|2.080282210307808e-06| -|pypi|[svg.path](https://pypi.org/project/svg.path)|2.080282210307808e-06| -|pypi|[mapbox-earcut](https://pypi.org/project/mapbox-earcut)|2.080282210307808e-06| -|pypi|[xatlas](https://pypi.org/project/xatlas)|2.080282210307808e-06| -|pypi|[humanize](https://github.com/jmoiron/humanize)|2.0763422818791985e-06| -|npm|fortawesome|2.076342281879195e-06| -|cran|suncalc|2.0763422818791947e-06| -|cran|fftw|2.0763422818791947e-06| -|cran|manipulate|2.0763422818791947e-06| -|cran|Gmedian|2.0763422818791947e-06| -|cran|fasttime|2.0763422818791947e-06| -|npm|should-util|2.0763422818791942e-06| -|npm|mocha-better-spec-reporter|2.0763422818791942e-06| -|npm|should-equal|2.0763422818791942e-06| -|npm|eslint-config-shouldjs|2.0763422818791942e-06| -|npm|should-type|2.0763422818791942e-06| -|npm|should-format|2.0763422818791942e-06| -|npm|should-type-adaptors|2.0763422818791942e-06| -|npm|[compression](https://github.com/expressjs/compression#readme)|2.0433844678811322e-06| -|cran|[ratelimitr](https://github.com/tarakc02/ratelimitr)|2.030201342281907e-06| -|pypi|[localconfig](https://github.com/maxzheng/localconfig)|2.013422818791946e-06| -|cran|[kSamples](NA)|1.9994407158836738e-06| -|npm|[react-scripts](https://github.com/facebook/create-react-app#readme)|1.9592152813629325e-06| -|cran|graphlayouts|1.9576941514860978e-06| -|npm|which|1.9522687882587243e-06| -|npm|webpack-manifest-plugin|1.933525087887504e-06| -|npm|script-loader|1.933525087887504e-06| -|npm|recursive-readdir|1.933525087887504e-06| -|npm|react-dev-utils|1.933525087887504e-06| -|npm|output-file-sync|1.933525087887504e-06| -|npm|npm-release|1.933525087887504e-06| -|npm|jest-canvas-mock|1.933525087887504e-06| -|npm|imports-loader|1.933525087887504e-06| -|npm|fs-promise|1.933525087887504e-06| -|npm|flow-typed|1.933525087887504e-06| -|npm|flow-bin|1.933525087887504e-06| -|npm|find-cache-dir|1.933525087887504e-06| -|npm|filesize|1.933525087887504e-06| -|npm|file-loader|1.933525087887504e-06| -|npm|fake-xml-http-request|1.933525087887504e-06| -|npm|eslint-plugin-flowtype|1.933525087887504e-06| -|npm|eslint-loader|1.933525087887504e-06| -|npm|eslint-config-react-app|1.933525087887504e-06| -|npm|dmd-clear|1.933525087887504e-06| -|npm|dagre|1.933525087887504e-06| -|npm|colors|1.933525087887504e-06| -|npm|child-process-promise|1.933525087887504e-06| -|npm|case-sensitive-paths-webpack-plugin|1.933525087887504e-06| -|npm|babel-plugin-flow-react-proptypes|1.933525087887504e-06| -|npm|[form-data](https://github.com/form-data/form-data#readme)|1.9329757909875443e-06| -|npm|gulp-marked|1.916623644811564e-06| -|npm|gulp-mocha-phantomjs|1.916623644811564e-06| -|npm|humanize|1.916623644811564e-06| -|npm|acorn|1.916623644811564e-06| -|npm|chai-jquery|1.916623644811564e-06| -|npm|gulp-iife|1.916623644811564e-06| -|npm|gulp-cache|1.916623644811564e-06| -|npm|gulp-closure-compiler|1.916623644811564e-06| -|npm|drool|1.916623644811564e-06| -|npm|gulp-file|1.916623644811564e-06| -|npm|gulp-imagemin|1.916623644811564e-06| -|npm|escodegen|1.916623644811564e-06| -|npm|prismjs|1.916623644811564e-06| -|npm|gulp-zip|1.916623644811564e-06| -|npm|gulp-csso|1.916623644811564e-06| -|npm|gulp-shell|1.916623644811564e-06| -|npm|merge-stream|1.916623644811564e-06| -|npm|swig|1.916623644811564e-06| -|npm|vinyl-paths|1.916623644811564e-06| -|npm|gulp-connect|1.916623644811564e-06| -|npm|gulp-css-inline-images|1.916623644811564e-06| -|npm|gulp-front-matter|1.916623644811564e-06| -|npm|gulp-jscs|1.916623644811564e-06| -|npm|gulp-open|1.916623644811564e-06| -|npm|gulp-flatten|1.916623644811564e-06| -|npm|gulp-load-plugins|1.916623644811564e-06| -|npm|gulp-sass|1.916623644811564e-06| -|npm|gulp-header|1.916623644811564e-06| -|npm|gulp-size|1.916623644811564e-06| -|npm|gulp-replace|1.916623644811564e-06| -|npm|gulp-sourcemaps|1.916623644811564e-06| -|npm|gulp-subtree|1.916623644811564e-06| -|npm|gulp-tap|1.916623644811564e-06| -|pypi|[sagemaker](https://pypi.org/project/sagemaker)|1.9033137583892616e-06| -|pypi|[ftfy](https://pypi.org/project/ftfy)|1.9033137583892616e-06| -|pypi|[fairscale](https://pypi.org/project/fairscale)|1.9033137583892616e-06| -|pypi|[onnxruntime-tools](https://pypi.org/project/onnxruntime-tools)|1.9033137583892616e-06| -|pypi|[onnxruntime](https://pypi.org/project/onnxruntime)|1.9033137583892616e-06| -|pypi|[unidic](https://pypi.org/project/unidic)|1.9033137583892616e-06| -|pypi|[unidic-lite](https://pypi.org/project/unidic-lite)|1.9033137583892616e-06| -|pypi|[ipadic](https://pypi.org/project/ipadic)|1.9033137583892616e-06| -|pypi|[fugashi](https://pypi.org/project/fugashi)|1.9033137583892616e-06| -|pypi|[faiss-cpu](https://pypi.org/project/faiss-cpu)|1.9033137583892616e-06| -|pypi|[rouge-score](https://pypi.org/project/rouge-score)|1.9033137583892616e-06| -|pypi|[sacrebleu](https://pypi.org/project/sacrebleu)|1.9033137583892616e-06| -|pypi|[datasets](https://pypi.org/project/datasets)|1.9033137583892616e-06| -|pypi|[timeout-decorator](https://pypi.org/project/timeout-decorator)|1.9033137583892616e-06| -|pypi|[deepspeed](https://pypi.org/project/deepspeed)|1.9033137583892616e-06| -|pypi|[codecarbon](https://pypi.org/project/codecarbon)|1.9033137583892616e-06| -|pypi|[timm](https://pypi.org/project/timm)|1.9033137583892616e-06| -|pypi|[sigopt](https://pypi.org/project/sigopt)|1.9033137583892616e-06| -|pypi|[optuna](https://pypi.org/project/optuna)|1.9033137583892616e-06| -|pypi|[phonemizer](https://pypi.org/project/phonemizer)|1.9033137583892616e-06| -|pypi|[pyctcdecode](https://pypi.org/project/pyctcdecode)|1.9033137583892616e-06| -|pypi|[torchaudio](https://pypi.org/project/torchaudio)|1.9033137583892616e-06| -|pypi|[sentencepiece](https://pypi.org/project/sentencepiece)|1.9033137583892616e-06| -|pypi|[optax](https://pypi.org/project/optax)|1.9033137583892616e-06| -|pypi|[flax](https://pypi.org/project/flax)|1.9033137583892616e-06| -|pypi|[tf2onnx](https://pypi.org/project/tf2onnx)|1.9033137583892616e-06| -|pypi|[onnxconverter-common](https://pypi.org/project/onnxconverter-common)|1.9033137583892616e-06| -|pypi|[tokenizers](https://pypi.org/project/tokenizers)|1.9033137583892616e-06| -|pypi|[sacremoses](https://pypi.org/project/sacremoses)|1.9033137583892616e-06| -|pypi|[huggingface-hub](https://pypi.org/project/huggingface-hub)|1.9033137583892616e-06| -|cran|leafsync|1.9033137583892616e-06| -|cran|leaflet.extras2|1.9033137583892616e-06| -|cran|satellite|1.9033137583892616e-06| -|cran|leafpop|1.9033137583892616e-06| -|npm|[closurecompiler](https://github.com/dcodeIO/ClosureCompiler.js#readme)|1.9002684563758384e-06| -|npm|[metascript](https://github.com/dcodeIO/MetaScript)|1.9002684563758384e-06| -|npm|[testjs](https://github.com/dcodeIO/test.js)|1.9002684563758384e-06| -|rubygems|safe_yaml|1.884280620805369e-06| -|rubygems|pathutil|1.884280620805369e-06| -|rubygems|jekyll-watch|1.884280620805369e-06| -|rubygems|em-websocket|1.884280620805369e-06| -|rubygems|colorator|1.884280620805369e-06| -|cran|[posterior](https://mc-stan.org/posterior/)|1.8585441404233383e-06| -|cran|[tarchetypes](https://docs.ropensci.org/tarchetypes/)|1.8585441404233383e-06| -|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|1.8456375838926315e-06| -|pypi|[rpy2](https://rpy2.github.io)|1.8456375838926315e-06| -|pypi|[injector](https://github.com/alecthomas/injector)|1.8456375838926315e-06| -|pypi|[fhirclient](https://github.com/smart-on-fhir/client-py/)|1.8456375838926315e-06| -|pypi|[clize](https://github.com/epsy/clize)|1.8456375838926315e-06| -|pypi|[Requests](https://requests.readthedocs.io)|1.8456375838926315e-06| -|pypi|[importlib_resources](http://importlib-resources.readthedocs.io/)|1.8456375838926315e-06| -|pypi|[twython](https://github.com/ryanmcgrath/twython/tree/master)|1.8456375838926315e-06| -|pypi|[python-telegram-bot](https://python-telegram-bot.org/)|1.8456375838926315e-06| -|pypi|[ninja](http://ninja-build.org/)|1.8456375838926315e-06| -|cran|[nplr](https://github.com/fredcommo/nplr)|1.8456375838926315e-06| -|cran|[osqp](https://osqp.org)|1.8456375838926315e-06| -|cran|[rstackdeque](https://github.com/oneilsh/rstackdeque)|1.8456375838926315e-06| -|cran|[biblio](https://github.com/kamapu/biblio)|1.8456375838926315e-06| -|cran|[spiderbar](https://gitlab.com/hrbrmstr/spiderbar)|1.8456375838926315e-06| -|cran|[wdman](https://github.com/ropensci/wdman)|1.8456375838926315e-06| -|cran|[ipaddress](https://davidchall.github.io/ipaddress/)|1.8456375838926315e-06| -|npm|[html-entities](https://github.com/mdevils/html-entities#readme)|1.8456375838926177e-06| -|npm|[long](https://github.com/dcodeIO/long.js#readme)|1.8456375838926177e-06| -|npm|[mnemonist](https://github.com/yomguithereal/mnemonist#readme)|1.8456375838926177e-06| -|npm|[obliterator](https://github.com/yomguithereal/obliterator#readme)|1.8456375838926177e-06| -|npm|[pandemonium](https://github.com/yomguithereal/pandemonium#readme)|1.8456375838926177e-06| -|pypi|[SoundFile](https://github.com/bastibe/PySoundFile)|1.8456375838926177e-06| -|pypi|[SoundCard](https://github.com/bastibe/SoundCard)|1.8456375838926177e-06| -|npm|its-set|1.8456375838926171e-06| -|npm|babel-plugin-transform-es2015-modules-umd|1.8456375838926171e-06| -|npm|babel-preset-stage-2|1.8456375838926171e-06| -|npm|gulp-eslint|1.8456375838926171e-06| -|npm|eslint-plugin-babel|1.8456375838926171e-06| -|pypi|[geopy](https://github.com/geopy/geopy)|1.8410234899328914e-06| -|npm|pretty-hrtime|1.808909395973154e-06| -|npm|utf8|1.808909395973154e-06| -|pypi|[SALib](http://salib.github.io/SALib/)|1.744966442953011e-06| -|cran|[fasterize](https://github.com/ecohealthalliance/fasterize)|1.7225950782997683e-06| -|pypi|[mercantile](https://github.com/mapbox/mercantile)|1.6872203579418413e-06| -|npm|[babel-plugin-transform-undefined-to-void](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-simplify-comparison-operators](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-remove-debugger](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-remove-console](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-regexp-constructors](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-minify-booleans](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-merge-sibling-variables](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-member-expression-literals](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-transform-inline-consecutive-adds](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|[babel-plugin-minify-simplify](https://github.com/babel/minify#readme)|1.6853193130184669e-06| -|npm|babel-plugin-minify-replace|1.6853193130184669e-06| -|npm|babel-plugin-minify-numeric-literals|1.6853193130184669e-06| -|npm|babel-plugin-minify-mangle-names|1.6853193130184669e-06| -|npm|babel-plugin-minify-infinity|1.6853193130184669e-06| -|npm|babel-plugin-minify-guarded-expressions|1.6853193130184669e-06| -|npm|babel-plugin-minify-flip-comparisons|1.6853193130184669e-06| -|npm|babel-plugin-minify-dead-code-elimination|1.6853193130184669e-06| -|npm|babel-plugin-minify-constant-folding|1.6853193130184669e-06| -|npm|babel-plugin-minify-builtins|1.6853193130184669e-06| -|npm|babel-helper-evaluate-path|1.6684661198882822e-06| -|npm|esutils|1.6684661198882822e-06| -|npm|babel-helper-is-void-0|1.6684661198882822e-06| -|cran|whitening|1.6610738255033556e-06| -|cran|randtoolbox|1.6610738255033556e-06| -|cran|mc2d|1.6610738255033556e-06| -|cran|ggExtra|1.6610738255033556e-06| -|cran|DiceDesign|1.6610738255033556e-06| -|cran|condMVNorm|1.6610738255033556e-06| -|npm|proxyquire|1.660414669223392e-06| -|cran|showtextdb|1.6544903011949583e-06| -|cran|sysfonts|1.6544903011949583e-06| -|pypi|[restructuredtext-lint](https://pypi.org/project/restructuredtext-lint)|1.6444630872483222e-06| -|pypi|[pytest-datadir](https://pypi.org/project/pytest-datadir)|1.6444630872483222e-06| -|cran|rematch2|1.644463087248322e-06| -|cran|diffobj|1.644463087248322e-06| -|rubygems|puma|1.640588341853304e-06| -|rubygems|uglifier|1.6405883418533001e-06| -|pypi|[flake8-use-fstring](https://pypi.org/project/flake8-use-fstring)|1.6150976749760306e-06| -|pypi|[flake8-type-annotations](https://pypi.org/project/flake8-type-annotations)|1.6150976749760306e-06| -|pypi|[flake8-noqa](https://pypi.org/project/flake8-noqa)|1.6150976749760306e-06| -|pypi|[flake8-literal](https://pypi.org/project/flake8-literal)|1.6150976749760306e-06| -|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|1.6150976749760306e-06| -|pypi|[flake8-datetimez](https://pypi.org/project/flake8-datetimez)|1.6150976749760306e-06| -|pypi|[flake8-continuation](https://pypi.org/project/flake8-continuation)|1.6150976749760306e-06| -|pypi|[flake8-commas](https://pypi.org/project/flake8-commas)|1.6150976749760306e-06| -|pypi|[flake8-annotations](https://pypi.org/project/flake8-annotations)|1.6150976749760306e-06| -|cran|[UpSetR](http://github.com/hms-dbmi/UpSetR)|1.605704697986584e-06| -|pypi|[pytest-freezegun](https://pypi.org/project/pytest-freezegun)|1.591415890885473e-06| -|pypi|[coverage-enable-subprocess](https://pypi.org/project/coverage-enable-subprocess)|1.591415890885473e-06| -|pypi|[sphinx-argparse](https://pypi.org/project/sphinx-argparse)|1.591415890885473e-06| -|pypi|[proselint](https://pypi.org/project/proselint)|1.591415890885473e-06| -|npm|[d3-cloud](https://www.jasondavies.com/wordcloud/)|1.5819750719079744e-06| -|npm|[path](http://nodejs.org/docs/latest/api/path.html)|1.5819750719079744e-06| -|npm|[react-grid-gallery](https://benhowell.github.io/react-grid-gallery/)|1.5819750719079744e-06| -|npm|[deepmerge](https://github.com/TehShrike/deepmerge)|1.5819750719079744e-06| -|npm|[js-logger](http://github.com/jonnyreeves/js-logger)|1.5819750719079744e-06| -|pypi|[pvlib](https://github.com/pvlib/pvlib-python)|1.5819750719079744e-06| -|pypi|[numpy-financial](https://numpy.org/numpy-financial/)|1.5819750719079744e-06| -|pypi|[qimage2ndarray](https://github.com/hmeine/qimage2ndarray)|1.5819750719079744e-06| -|pypi|[eagerpy](https://github.com/jonasrauber/eagerpy)|1.5819750719079744e-06| -|pypi|[PyQT5](https://www.riverbankcomputing.com/software/pyqt/)|1.5819750719079744e-06| -|pypi|[emn_sdk](https://www.energy.gov/eere/energy-materials-network/energy-materials-network)|1.5819750719079744e-06| -|pypi|[pyvcf](https://github.com/jamescasbon/PyVCF)|1.5819750719079744e-06| -|pypi|[plotnine](https://github.com/has2k1/plotnine)|1.5819750719079744e-06| -|pypi|[bed-reader](https://pypi.org/project/bed-reader)|1.5819750719079744e-06| -|cran|[itsadug](NA)|1.5819750719079744e-06| -|cran|[tidytree](https://yulab-smu.top/treedata-book/)|1.5819750719079744e-06| -|cran|sde|1.5819750719079744e-06| -|cran|[CORElearn](http://lkm.fri.uni-lj.si/rmarko/software/)|1.5819750719079744e-06| -|cran|RISmed|1.5819750719079744e-06| -|cran|[httr2](https://httr2.r-lib.org)|1.5819750719079744e-06| -|cran|[phylocomr](https://github.com/ropensci/phylocomr)|1.5819750719079744e-06| -|cran|[rsdmx](https://github.com/opensdmx/rsdmx)|1.5819750719079744e-06| -|npm|[atob](https://git.coolaj86.com/coolaj86/atob.js.git)|1.5819750719079579e-06| -|npm|[node-html-parser](https://github.com/taoqf/node-fast-html-parser)|1.5819750719079579e-06| -|npm|[serve-favicon](https://github.com/expressjs/serve-favicon#readme)|1.5794398554465743e-06| -|pypi|[astropy-sphinx-theme](https://pypi.org/project/astropy-sphinx-theme)|1.5504937679769892e-06| -|rubygems|[redis](https://github.com/redis/redis-rb)|1.542093347406077e-06| -|rubygems|[stackprof](http://github.com/tmm1/stackprof)|1.542093347406077e-06| -|go|golang.org/x/sys|1.5365892830079418e-06| -|npm|assume|1.4908593922855666e-06| -|npm|spawn-sync|1.4908593922855666e-06| -|pypi|[spacy-alignments](https://pypi.org/project/spacy-alignments)|1.4847409542871307e-06| -|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|1.4766607314066566e-06| -|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|1.4766607314066566e-06| -|cran|[contentid](https://github.com/cboettig/contentid)|1.4765100671140803e-06| -|npm|[morgan](https://github.com/expressjs/morgan#readme)|1.4536009292720761e-06| -|rubygems|xpath|1.4145919030093092e-06| -|rubygems|mini_mime|1.4145919030093092e-06| -|rubygems|matrix|1.4145919030093092e-06| -|rubygems|webdrivers|1.4145919030093092e-06| -|rubygems|sinatra|1.4145919030093092e-06| -|rubygems|selenium-webdriver|1.4145919030093092e-06| -|rubygems|selenium_statistics|1.4145919030093092e-06| -|rubygems|sauce_whisk|1.4145919030093092e-06| -|rubygems|rspec-instafail|1.4145919030093092e-06| -|rubygems|launchy|1.4145919030093092e-06| -|rubygems|irb|1.4145919030093092e-06| -|rubygems|erubi|1.4145919030093092e-06| -|rubygems|cucumber|1.4145919030093092e-06| -|cran|thematic|1.4132104656040266e-06| -|pypi|[pytest-filter-subpackage](https://pypi.org/project/pytest-filter-subpackage)|1.4095397890699902e-06| -|pypi|[pytest-arraydiff](https://pypi.org/project/pytest-arraydiff)|1.4095397890699902e-06| -|pypi|[pytest-openfiles](https://pypi.org/project/pytest-openfiles)|1.4095397890699902e-06| -|npm|[deep-filter](https://github.com/IndigoUnited/js-deep-filter#readme)|1.3842281879194658e-06| -|npm|[kebabcase-keys](https://github.com/mattii/kebabcase-keys#readme)|1.3842281879194658e-06| -|pypi|[pypiwin32](https://pypi.org/project/pypiwin32)|1.3842281879194658e-06| -|pypi|[mypy_extensions](http://www.mypy-lang.org/)|1.3842281879194658e-06| -|pypi|[loguru](https://github.com/Delgan/loguru)|1.3842281879194658e-06| -|pypi|[questionary](https://github.com/tmbo/questionary)|1.3842281879194658e-06| -|pypi|[iPython](https://ipython.org)|1.3842281879194658e-06| -|pypi|[OWSLib](https://geopython.github.io/OWSLib)|1.3842281879194658e-06| -|pypi|[cloudnetpy_qc](https://github.com/actris-cloudnet/cloudnetpy-qc)|1.3842281879194658e-06| -|pypi|[python-box](https://github.com/cdgriffith/Box)|1.3842281879194658e-06| -|pypi|[pywdpa](https://ecology.ghislainv.fr/pywdpa)|1.3842281879194658e-06| -|pypi|[dna-features-viewer](https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer)|1.3842281879194658e-06| -|pypi|[parasail](https://github.com/jeffdaily/parasail-python)|1.3842281879194658e-06| -|cran|[fishtree](https://fishtreeoflife.org/)|1.3842281879194658e-06| -|cran|Rlabkey|1.3842281879194658e-06| -|cran|[LiblineaR]()|1.3842281879194658e-06| -|pypi|[NanoPlot](https://github.com/wdecoster/NanoPlot)|1.3842281879194633e-06| -|pypi|[NanoStat](https://github.com/wdecoster/nanostat)|1.3842281879194633e-06| -|pypi|[NanoFilt](https://github.com/wdecoster/nanofilt)|1.3842281879194633e-06| -|pypi|[NanoLyse](https://github.com/wdecoster/nanolyse)|1.3842281879194633e-06| -|pypi|[nanoget](https://github.com/wdecoster/nanoget)|1.3842281879194633e-06| -|pypi|[nanomath](https://github.com/wdecoster/nanomath)|1.3842281879194633e-06| -|pypi|[NanoComp](https://github.com/wdecoster/NanoComp)|1.3842281879194633e-06| -|pypi|[nanoQC](https://github.com/wdecoster/nanoQC)|1.3842281879194633e-06| -|npm|sinon-chai|1.3160969085620824e-06| -|npm|karma-tap-reporter|1.3160969085620824e-06| -|npm|karma-spec-reporter|1.3160969085620824e-06| -|npm|karma-rollup-preprocessor|1.3160969085620824e-06| -|npm|karma-html-reporter|1.3160969085620824e-06| -|npm|karma-firefox-launcher|1.3160969085620824e-06| -|npm|karma-chai-sinon|1.3160969085620824e-06| -|npm|eslint-plugin-mocha|1.3160969085620824e-06| -|npm|eslint-config-nfl|1.3160969085620824e-06| -|npm|cz-conventional-changelog|1.3160969085620824e-06| -|npm|conventional-changelog-cli|1.3160969085620824e-06| -|npm|babel-plugin-transform-class-properties|1.3160969085620824e-06| -|npm|babel-plugin-istanbul|1.3160969085620824e-06| -|npm|react-side-effect|1.3160969085620824e-06| -|npm|react-fast-compare|1.3160969085620824e-06| -|rubygems|webpacker|1.3160969085620824e-06| -|rubygems|rubocop-discourse|1.3160969085620824e-06| -|rubygems|mini_racer|1.3160969085620824e-06| -|rubygems|listen|1.3160969085620824e-06| -|rubygems|dalli|1.3160969085620824e-06| -|go|github.com/gorilla/mux|1.2790584573485068e-06| -|go|golang.org/x/crypto|1.2790584573485068e-06| -|cran|pheatmap|1.2749470151889833e-06| +https://docs.ropensci.org/ghql (docs))|2.912418906394811e-06| +|pypi|[dask-cudf](https://pypi.org/project/dask-cudf)|2.909197766676462e-06| +|pypi|[cudf](https://pypi.org/project/cudf)|2.909197766676462e-06| +|pypi|[spatialpandas](https://pypi.org/project/spatialpandas)|2.909197766676462e-06| +|pypi|[snappy](https://pypi.org/project/snappy)|2.909197766676462e-06| +|pypi|[rioxarray](https://pypi.org/project/rioxarray)|2.909197766676462e-06| +|pypi|[datashape](https://pypi.org/project/datashape)|2.909197766676462e-06| +|pypi|[OpenPIV](https://pypi.org/project/OpenPIV)|2.882750514252128e-06| +|pypi|[pyoculus](https://pypi.org/project/pyoculus)|2.8703047484053863e-06| +|pypi|[py-spec](https://pypi.org/project/py-spec)|2.8703047484053863e-06| +|pypi|[pywin32-ctypes](https://pypi.org/project/pywin32-ctypes)|2.862650602409638e-06| +|cran|tablerDash|2.839931153184165e-06| +|cran|argonDash|2.839931153184165e-06| +|cran|argonR|2.839931153184165e-06| +|cran|shinydashboardPlus|2.839931153184165e-06| +|pypi|[horovod](https://pypi.org/project/horovod)|2.8249841471147745e-06| +|pypi|[pytest-regressions](https://github.com/ESSS/pytest-regressions)|2.82342511701786e-06| +|pypi|[pygam](https://github.com/dswah/pyGAM)|2.8141135972461287e-06| +|pypi|[itk-segmentation](https://pypi.org/project/itk-segmentation)|2.8115318416523232e-06| +|pypi|[itk-registration](https://pypi.org/project/itk-registration)|2.8115318416523232e-06| +|pypi|[itk-filtering](https://pypi.org/project/itk-filtering)|2.8115318416523232e-06| +|pypi|[itk-io](https://pypi.org/project/itk-io)|2.8115318416523232e-06| +|pypi|[itk-numerics](https://pypi.org/project/itk-numerics)|2.8115318416523232e-06| +|pypi|[itk-core](https://pypi.org/project/itk-core)|2.8115318416523232e-06| +|cran|[isdparser](https://github.com/ropensci/isdparser)|2.807659208261619e-06| +|cran|geonames|2.807659208261619e-06| +|cran|Exact|2.8051335777894163e-06| +|pypi|[sphinx-argparse-cli](https://pypi.org/project/sphinx-argparse-cli)|2.800369432355441e-06| +|npm|gpx-parse|2.7992020232167257e-06| +|npm|node-geo-distance|2.7992020232167257e-06| +|npm|rx|2.7992020232167257e-06| +|npm|redis|2.7992020232167257e-06| +|npm|seed-random|2.7955572289156623e-06| +|npm|freeport|2.7955572289156623e-06| +|npm|ws|2.7955572289156623e-06| +|npm|node-uuid|2.7955572289156623e-06| +|npm|event-emitter|2.7955572289156623e-06| +|cran|[xslt](https://github.com/ropensci/xslt)|2.7929901423877444e-06| +|pypi|[spacy-transformers](https://spacy.io)|2.7600168114317733e-06| +|pypi|[pythainlp](https://pypi.org/project/pythainlp)|2.7600168114317733e-06| +|pypi|[spacy-ray](https://pypi.org/project/spacy-ray)|2.7600168114317733e-06| +|pypi|[spacy-lookups-data](https://pypi.org/project/spacy-lookups-data)|2.7600168114317733e-06| +|pypi|[natto-py](https://pypi.org/project/natto-py)|2.7600168114317733e-06| +|pypi|[sudachidict-core](https://pypi.org/project/sudachidict-core)|2.7600168114317733e-06| +|pypi|[sudachipy](https://pypi.org/project/sudachipy)|2.7600168114317733e-06| +|pypi|[thinc-apple-ops](https://pypi.org/project/thinc-apple-ops)|2.7600168114317733e-06| +|cran|starsdata|2.7550419067574644e-06| +|cran|ncdfgeom|2.7550419067574644e-06| +|cran|cubelyr|2.7550419067574644e-06| +|cran|clue|2.7550419067574644e-06| +|cran|effects|2.7525486561631138e-06| +|cran|alr4|2.7525486561631138e-06| +|cran|carData|2.7525486561631138e-06| +|cran|vtreat|2.7525486561631138e-06| +|cran|kknn|2.7525486561631138e-06| +|cran|smotefamily|2.7525486561631138e-06| +|cran|bestNormalize|2.7525486561631138e-06| +|cran|mlr3learners|2.7525486561631138e-06| +|cran|mlr3filters|2.7525486561631138e-06| +|cran|bbotk|2.7525486561631138e-06| +|pypi|[selenium](https://pypi.org/project/selenium)|2.752500331804566e-06| +|pypi|[lxml-stubs](https://pypi.org/project/lxml-stubs)|2.7172816265060237e-06| +|pypi|[elementpath](https://pypi.org/project/elementpath)|2.7172816265060237e-06| +|rubygems|coffee-script-source|2.7111199901647403e-06| +|cran|[Momocs](https://github.com/MomX/Momocs/)|2.7108433734940117e-06| +|cran|[iptools](https://github.com/hrbrmstr/iptools)|2.7108433734939964e-06| +|pypi|[cspy](https://github.com/torressa/cspy)|2.710843373493981e-06| +|pypi|[referenceseeker](https://github.com/oschwengers/referenceseeker)|2.710843373493981e-06| +|pypi|[fairdatapoint-client](https://github.com/fair-data/fairdatapoint-client)|2.710843373493981e-06| +|pypi|[genshi](https://github.com/edgewall/genshi)|2.710843373493981e-06| +|pypi|[cairosvg](https://courtbouillon.org/cairosvg)|2.710843373493981e-06| +|pypi|[neo](https://neuralensemble.org/neo)|2.710843373493981e-06| +|pypi|[pyequib](https://equib.github.io/pyEQUIB/)|2.710843373493981e-06| +|cran|[metR](https://github.com/eliocamp/metR)|2.710843373493981e-06| +|cran|leaflet.minicharts|2.710843373493981e-06| +|cran|[decoder](https://www.bitbucket.com/cancercentrum/decoder)|2.710843373493981e-06| +|npm|[csv-parser](https://github.com/mafintosh/csv-parser)|2.710843373493981e-06| +|npm|[hasha](https://github.com/sindresorhus/hasha#readme)|2.710843373493981e-06| +|npm|[svd-js](https://github.com/danilosalvati/svd-js#readme)|2.710843373493981e-06| +|pypi|[easybuild](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-easyblocks](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-easyconfigs](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-framework](https://easybuild.io)|2.710843373493976e-06| +|pypi|[pycoeman](https://github.com/NLeSC/pycoeman)|2.710843373493976e-06| +|npm|[font-awesome-webpack](https://github.com/gowravshekar/font-awesome-webpack)|2.710843373493976e-06| +|npm|[tailwindcss](https://tailwindcss.com)|2.710843373493976e-06| +|pypi|[pscript](https://pypi.org/project/pscript)|2.7108433734939757e-06| +|pypi|[mpl-sample-data](https://pypi.org/project/mpl-sample-data)|2.7108433734939757e-06| +|pypi|[deepdiff](https://pypi.org/project/deepdiff)|2.7108433734939757e-06| +|pypi|[path.py](https://pypi.org/project/path.py)|2.7108433734939757e-06| +|pypi|[alive-progress](https://github.com/rsalmei/alive-progress)|2.705421686746997e-06| +|cran|gcookbook|2.6904610924902616e-06| +|pypi|[mygene](https://github.com/biothings/mygene.py)|2.6837349397590525e-06| +|cran|GA|2.6837349397590364e-06| +|cran|gclus|2.6837349397590364e-06| +|cran|qap|2.6837349397590364e-06| +|cran|biomaRt|2.683734939759036e-06| +|rubygems|rack-test|2.673861771681078e-06| +|npm|serialize-javascript|2.6621692125645435e-06| +|npm|jest-worker|2.6621692125645435e-06| +|pypi|[nox](https://pypi.org/project/nox)|2.6607745146082227e-06| +|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|2.6607745146082227e-06| +|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|2.6607745146082227e-06| +|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|2.6607745146082227e-06| +|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|2.6607745146082227e-06| +|pypi|[biothings-client](https://github.com/biothings/biothings_client.py)|2.656897590361437e-06| +|rubygems|[ruby-progressbar](https://github.com/jfelchner/ruby-progressbar)|2.655520039341038e-06| +|pypi|[hashin](https://pypi.org/project/hashin)|2.6376283651864847e-06| +|pypi|[jsonref](https://pypi.org/project/jsonref)|2.637577336372517e-06| +|pypi|[moviepy](https://pypi.org/project/moviepy)|2.637577336372517e-06| +|pypi|[docker-pycreds](https://pypi.org/project/docker-pycreds)|2.637577336372517e-06| +|pypi|[sentry-sdk](https://pypi.org/project/sentry-sdk)|2.637577336372517e-06| +|pypi|[promise](https://pypi.org/project/promise)|2.637577336372517e-06| +|pypi|[jaraco.windows](https://pypi.org/project/jaraco.windows)|2.6371191963885318e-06| +|pypi|[singledispatch](https://pypi.org/project/singledispatch)|2.6371191963885318e-06| +|cran|[xgboost](https://github.com/dmlc/xgboost)|2.6333907056798834e-06| +|pypi|[testresources](https://pypi.org/project/testresources)|2.6240963855421688e-06| +|pypi|[oslotest](https://pypi.org/project/oslotest)|2.6240963855421688e-06| +|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|2.6240963855421688e-06| +|pypi|[requests-kerberos](https://pypi.org/project/requests-kerberos)|2.6240963855421688e-06| +|pypi|[betamax](https://pypi.org/project/betamax)|2.6240963855421688e-06| +|pypi|[watermark](https://pypi.org/project/watermark)|2.618277990008816e-06| +|npm|eslint-plugin-jest|2.5992590215583884e-06| +|npm|moment-timezone|2.5992590215583884e-06| +|cran|dblog|2.5670508119434256e-06| +|pypi|[gooey](http://pypi.python.org/pypi/Gooey/)|2.5559380378657483e-06| +|npm|babel-plugin-unassert|2.5559380378657483e-06| +|npm|babel-preset-power-assert|2.5559380378657483e-06| +|npm|eslint-config-mysticatea|2.5559380378657483e-06| +|npm|if-node-version|2.5559380378657483e-06| +|npm|opener|2.5559380378657483e-06| +|npm|power-assert|2.5559380378657483e-06| +|npm|shelljs|2.5559380378657483e-06| +|npm|chokidar|2.5559380378657483e-06| +|npm|glob2base|2.5559380378657483e-06| +|npm|shell-quote|2.5559380378657483e-06| +|npm|subarg|2.5559380378657483e-06| +|pypi|[clize](https://github.com/epsy/clize)|2.5301204819277177e-06| +|pypi|[mip](https://github.com/coin-or/python-mip)|2.526506024096395e-06| +|pypi|[tvtk](https://pypi.org/project/tvtk)|2.525868178596739e-06| +|pypi|[IPython](https://ipython.org)|2.512246789355243e-06| +|npm|testing-library|2.5023169601482857e-06| +|npm|escape-html|2.5023169601482853e-06| +|pypi|[resample](http://github.com/resample-project/resample)|2.4849397590361446e-06| +|pypi|[boost-histogram](https://github.com/scikit-hep/boost-histogram)|2.4849397590361446e-06| +|pypi|[numba-stats](https://pypi.org/project/numba-stats)|2.4849397590361446e-06| +|cran|bcpa|2.4849397590361446e-06| +|cran|amt|2.4849397590361446e-06| +|cran|circular|2.4849397590361446e-06| +|pypi|[pytest-django](https://pypi.org/project/pytest-django)|2.460090361445783e-06| +|pypi|[sybil](https://pypi.org/project/sybil)|2.460090361445783e-06| +|pypi|[zope.component](https://pypi.org/project/zope.component)|2.460090361445783e-06| +|pypi|[setuptools-git](https://pypi.org/project/setuptools-git)|2.460090361445783e-06| +|cran|Rfast|2.4565079540128478e-06| +|cran|genlasso|2.4565079540128478e-06| +|cran|L0Learn|2.4565079540128478e-06| +|cran|mixsqp|2.4565079540128478e-06| +|rubygems|rubocop-standard|2.4342267027292844e-06| +|rubygems|minitest-focus|2.4342267027292844e-06| +|rubygems|unicode-display_width|2.4342267027292844e-06| +|rubygems|rubocop-ast|2.4342267027292844e-06| +|rubygems|rainbow|2.4342267027292844e-06| +|rubygems|parser|2.4342267027292844e-06| +|rubygems|parallel|2.4342267027292844e-06| +|rubygems|rspec_junit_formatter|2.4342267027292844e-06| +|npm|sendgrid-rest|2.425975086787829e-06| +|npm|system-sleep|2.425975086787829e-06| +|npm|lodash.chunk|2.425975086787829e-06| +|npm|mailparser|2.425975086787829e-06| +|npm|async.ensureasync|2.425975086787829e-06| +|npm|bottleneck|2.425975086787829e-06| +|npm|mocha-sinon|2.425975086787829e-06| +|npm|async.queue|2.425975086787829e-06| +|rubygems|[rubocop-rails](https://docs.rubocop.org/rubocop-rails/)|2.4120973690681098e-06| +|pypi|[eagerpy](https://github.com/jonasrauber/eagerpy)|2.407228915662662e-06| +|pypi|[EDFlib-Python](https://pypi.org/project/EDFlib-Python)|2.3961919104991393e-06| +|pypi|[eeglabio](https://pypi.org/project/eeglabio)|2.3961919104991393e-06| +|pypi|[nitime](https://pypi.org/project/nitime)|2.3961919104991393e-06| +|pypi|[codespell](https://pypi.org/project/codespell)|2.3961919104991393e-06| +|pypi|[flake8-array-spacing](https://pypi.org/project/flake8-array-spacing)|2.3961919104991393e-06| +|pypi|[pytest-harvest](https://pypi.org/project/pytest-harvest)|2.3961919104991393e-06| +|pypi|[h5io](https://pypi.org/project/h5io)|2.3961919104991393e-06| +|pypi|[pytest-trio](https://pypi.org/project/pytest-trio)|2.3722299913941477e-06| +|pypi|[pymc3-ext](https://github.com/exoplanet-dev/pymc3-ext)|2.3696183334737545e-06| +|cran|RDCOMClient|2.3336825563122054e-06| +|cran|base|2.3336825563122054e-06| +|cran|NetSwan|2.3336825563122054e-06| +|cran|netrankr|2.3336825563122054e-06| +|cran|fortunes|2.325312157721797e-06| +|pypi|[nbstripout](https://pypi.org/project/nbstripout)|2.323580034423408e-06| +|cran|mail|2.323580034423408e-06| +|cran|bibtex|2.323580034423408e-06| +|cran|synchronicity|2.323580034423408e-06| +|cran|doMPI|2.323580034423408e-06| +|cran|rngtools|2.323580034423408e-06| +|cran|pkgmaker|2.323580034423408e-06| +|npm|methods|2.323580034423408e-06| +|pypi|[dcor](https://pypi.org/project/dcor)|2.3135646032405482e-06| +|cran|waveslim|2.3135646032405482e-06| +|pypi|[citeproc-py](https://github.com/brechtm/citeproc-py)|2.312671207970715e-06| +|npm|random-buffer|2.293790546802595e-06| +|npm|nock|2.293790546802595e-06| +|npm|is-zip|2.293790546802595e-06| +|npm|pify|2.293790546802595e-06| +|npm|p-event|2.293790546802595e-06| +|npm|make-dir|2.293790546802595e-06| +|npm|got|2.293790546802595e-06| +|npm|get-stream|2.293790546802595e-06| +|npm|filenamify|2.293790546802595e-06| +|npm|ext-name|2.293790546802595e-06| +|npm|decompress|2.293790546802595e-06| +|npm|content-disposition|2.293790546802595e-06| +|npm|archive-type|2.293790546802595e-06| +|npm|watch|2.293790546802595e-06| +|npm|unminified-webpack-plugin|2.293790546802595e-06| +|npm|jsonpath|2.293790546802595e-06| +|npm|jest-cli|2.293790546802595e-06| +|npm|globify|2.293790546802595e-06| +|npm|codeclimate-test-reporter|2.293790546802595e-06| +|npm|codacy-coverage|2.293790546802595e-06| +|npm|cash-cat|2.293790546802595e-06| +|npm|biased-opener|2.293790546802595e-06| +|npm|[webpack-dev-server](https://github.com/webpack/webpack-dev-server#readme)|2.293790546802595e-06| +|npm|[wallaby-webpack](https://github.com/jeffling/wallaby-webpack#readme)|2.293790546802595e-06| +|npm|package-yaml|2.293790546802595e-06| +|npm|json-loader|2.293790546802595e-06| +|npm|isparta-loader|2.293790546802595e-06| +|npm|isparta|2.293790546802595e-06| +|npm|gh-pages|2.293790546802595e-06| +|npm|gatsby|2.293790546802595e-06| +|npm|expect|2.293790546802595e-06| +|npm|enzyme-adapter-react-16|2.293790546802595e-06| +|npm|enzyme|2.293790546802595e-06| +|npm|conventional-changelog|2.293790546802595e-06| +|npm|chai-enzyme|2.293790546802595e-06| +|npm|babel-plugin-__coverage__|2.293790546802595e-06| +|npm|add-stream|2.293790546802595e-06| +|npm|karma-webpack|2.293790546802595e-06| +|npm|karma-sinon|2.293790546802595e-06| +|npm|karma-mocha-reporter|2.293790546802595e-06| +|npm|lodash.isequal|2.293790546802595e-06| +|npm|classnames|2.293790546802595e-06| +|npm|clamp|2.293790546802595e-06| +|pypi|[anndata](http://anndata.readthedocs.io)|2.2891566265060336e-06| +|pypi|[scikit_learn](http://scikit-learn.org)|2.2590361445783305e-06| +|pypi|[sphinxcontrib_bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|2.259036144578323e-06| +|cran|[shinycssloaders](https://github.com/daattali/shinycssloaders)|2.225745085605591e-06| +|cran|numbers|2.1972098922003832e-06| +|rubygems|letter_opener|2.190804032456356e-06| +|rubygems|rspec-rails|2.190804032456356e-06| +|pypi|[python-slugify](https://github.com/un33k/python-slugify)|2.1905805038335176e-06| +|pypi|[nempy](https://github.com/UNSW-CEEM/nempy)|2.1686746987952216e-06| +|pypi|[cffconvert](https://github.com/citation-file-format/cff-converter-python)|2.1686746987952216e-06| +|cran|Rd2md|2.1686746987952216e-06| +|pypi|[bakta](https://github.com/oschwengers/bakta)|2.168674698795191e-06| +|pypi|[ogb](https://github.com/snap-stanford/ogb)|2.168674698795191e-06| +|pypi|[RagTag](https://github.com/malonge/RagTag)|2.168674698795191e-06| +|pypi|[tripoli](https://github.com/DDMAL/tripoli)|2.168674698795191e-06| +|pypi|[TPOT](https://github.com/EpistasisLab/tpot)|2.168674698795191e-06| +|pypi|[update_checker](https://github.com/bboe/update_checker)|2.168674698795191e-06| +|pypi|[foolbox](https://github.com/bethgelab/foolbox)|2.168674698795191e-06| +|pypi|[sphinxcontrib-programoutput](https://sphinxcontrib-programoutput.readthedocs.org/)|2.168674698795191e-06| +|pypi|[kiwipy](https://github.com/aiidateam/kiwipy.git)|2.168674698795191e-06| +|pypi|[sphinx_argparse](https://pypi.org/project/sphinx_argparse)|2.168674698795191e-06| +|pypi|[charset_normalizer](https://github.com/ousret/charset_normalizer)|2.168674698795191e-06| +|pypi|[dateparser](https://github.com/scrapinghub/dateparser)|2.168674698795191e-06| +|cran|[digitTests](https://koenderks.github.io/digitTests/)|2.168674698795191e-06| +|cran|[jfa](https://koenderks.github.io/jfa/)|2.168674698795191e-06| +|cran|[leafletR](https://github.com/chgrl/leafletR)|2.168674698795191e-06| +|cran|[phonTools](http://www.santiagobarreda.com/rscripts.html)|2.168674698795191e-06| +|cran|[hash](http://www.johnhughes.org)|2.168674698795191e-06| +|npm|[remark-sectionize](https://github.com/jake-low/remark-sectionize#readme)|2.168674698795191e-06| +|pypi|[pyinstrument](https://pypi.org/project/pyinstrument)|2.1686746987951806e-06| +|pypi|[ipywidgets-bokeh](https://pypi.org/project/ipywidgets-bokeh)|2.1686746987951806e-06| +|pypi|[ipympl](https://pypi.org/project/ipympl)|2.1686746987951806e-06| +|pypi|[hvplot](https://pypi.org/project/hvplot)|2.1686746987951806e-06| +|pypi|[boatswain](https://github.com/nlesc-sherlock/boatswain)|2.1686746987951606e-06| +|cran|[uchardet](https://artemklevtsov.gitlab.io/uchardet)|2.1686746987951606e-06| +|cran|textshaping|2.160079341757273e-06| +|pypi|[vcrpy](https://pypi.org/project/vcrpy)|2.159947637633027e-06| +|cran|[fda](http://www.functionaldata.org)|2.1514629948365067e-06| +|cran|R.cache|2.146987951807229e-06| +|cran|tidymodels|2.104890148830617e-06| +|cran|DiagrammeRsvg|2.0644114921223355e-06| +|cran|rapportools|2.0447504302925985e-06| +|cran|suncalc|2.033132530120482e-06| +|cran|fftw|2.033132530120482e-06| +|cran|manipulate|2.033132530120482e-06| +|cran|Gmedian|2.033132530120482e-06| +|cran|fasttime|2.033132530120482e-06| +|npm|should-util|2.0331325301204817e-06| +|npm|mocha-better-spec-reporter|2.0331325301204817e-06| +|npm|should-equal|2.0331325301204817e-06| +|npm|eslint-config-shouldjs|2.0331325301204817e-06| +|npm|should-type|2.0331325301204817e-06| +|npm|should-format|2.0331325301204817e-06| +|npm|should-type-adaptors|2.0331325301204817e-06| +|npm|[compression](https://github.com/expressjs/compression#readme)|2.000860585197954e-06| +|cran|[ratelimitr](https://github.com/tarakc02/ratelimitr)|1.987951807228943e-06| +|cran|[kSamples](NA)|1.9578313253012093e-06| +|pypi|[multipledispatch](http://github.com/mrocklin/multipledispatch/)|1.9324440619621485e-06| +|pypi|[cyvcf2](https://github.com/brentp/cyvcf2/)|1.9277108433734914e-06| +|pypi|[mxnet](https://pypi.org/project/mxnet)|1.92382432957637e-06| +|pypi|[ml-datasets](https://pypi.org/project/ml-datasets)|1.92382432957637e-06| +|npm|[react-scripts](https://github.com/facebook/create-react-app#readme)|1.918443002780352e-06| +|cran|graphlayouts|1.9169535283993112e-06| +|npm|[which](https://github.com/isaacs/node-which#readme)|1.911641069773603e-06| +|pypi|[rpy2](https://rpy2.github.io)|1.9066265060241107e-06| +|npm|webpack-manifest-plugin|1.89328743545611e-06| +|npm|script-loader|1.89328743545611e-06| +|npm|recursive-readdir|1.89328743545611e-06| +|npm|react-dev-utils|1.89328743545611e-06| +|npm|output-file-sync|1.89328743545611e-06| +|npm|npm-release|1.89328743545611e-06| +|npm|jest-canvas-mock|1.89328743545611e-06| +|npm|imports-loader|1.89328743545611e-06| +|npm|fs-promise|1.89328743545611e-06| +|npm|flow-typed|1.89328743545611e-06| +|npm|flow-bin|1.89328743545611e-06| +|npm|find-cache-dir|1.89328743545611e-06| +|npm|filesize|1.89328743545611e-06| +|npm|fake-xml-http-request|1.89328743545611e-06| +|npm|eslint-plugin-flowtype|1.89328743545611e-06| +|npm|eslint-loader|1.89328743545611e-06| +|npm|eslint-config-react-app|1.89328743545611e-06| +|npm|dmd-clear|1.89328743545611e-06| +|npm|dagre|1.89328743545611e-06| +|npm|child-process-promise|1.89328743545611e-06| +|npm|case-sensitive-paths-webpack-plugin|1.89328743545611e-06| +|npm|babel-plugin-flow-react-proptypes|1.89328743545611e-06| +|pypi|[starry](https://pypi.org/project/starry)|1.8767377201112142e-06| +|pypi|[rtds-action](https://pypi.org/project/rtds-action)|1.8767377201112142e-06| +|npm|gulp-marked|1.8767377201112142e-06| +|npm|gulp-mocha-phantomjs|1.8767377201112142e-06| +|npm|humanize|1.8767377201112142e-06| +|npm|chai-jquery|1.8767377201112142e-06| +|npm|gulp-iife|1.8767377201112142e-06| +|npm|gulp-cache|1.8767377201112142e-06| +|npm|gulp-closure-compiler|1.8767377201112142e-06| +|npm|drool|1.8767377201112142e-06| +|npm|gulp-file|1.8767377201112142e-06| +|npm|gulp-imagemin|1.8767377201112142e-06| +|npm|escodegen|1.8767377201112142e-06| +|npm|gulp-zip|1.8767377201112142e-06| +|npm|gulp-csso|1.8767377201112142e-06| +|npm|gulp-shell|1.8767377201112142e-06| +|npm|merge-stream|1.8767377201112142e-06| +|npm|swig|1.8767377201112142e-06| +|npm|vinyl-paths|1.8767377201112142e-06| +|npm|gulp-connect|1.8767377201112142e-06| +|npm|gulp-css-inline-images|1.8767377201112142e-06| +|npm|gulp-front-matter|1.8767377201112142e-06| +|npm|gulp-jscs|1.8767377201112142e-06| +|npm|gulp-open|1.8767377201112142e-06| +|npm|gulp-flatten|1.8767377201112142e-06| +|npm|gulp-load-plugins|1.8767377201112142e-06| +|npm|gulp-sass|1.8767377201112142e-06| +|npm|gulp-header|1.8767377201112142e-06| +|npm|gulp-size|1.8767377201112142e-06| +|npm|gulp-replace|1.8767377201112142e-06| +|npm|gulp-sourcemaps|1.8767377201112142e-06| +|npm|gulp-subtree|1.8767377201112142e-06| +|npm|gulp-tap|1.8767377201112142e-06| +|pypi|[sagemaker](https://pypi.org/project/sagemaker)|1.8637048192771084e-06| +|pypi|[ftfy](https://pypi.org/project/ftfy)|1.8637048192771084e-06| +|pypi|[fairscale](https://pypi.org/project/fairscale)|1.8637048192771084e-06| +|pypi|[onnxruntime-tools](https://pypi.org/project/onnxruntime-tools)|1.8637048192771084e-06| +|pypi|[onnxruntime](https://pypi.org/project/onnxruntime)|1.8637048192771084e-06| +|pypi|[unidic](https://pypi.org/project/unidic)|1.8637048192771084e-06| +|pypi|[unidic-lite](https://pypi.org/project/unidic-lite)|1.8637048192771084e-06| +|pypi|[ipadic](https://pypi.org/project/ipadic)|1.8637048192771084e-06| +|pypi|[fugashi](https://pypi.org/project/fugashi)|1.8637048192771084e-06| +|pypi|[faiss-cpu](https://pypi.org/project/faiss-cpu)|1.8637048192771084e-06| +|pypi|[rouge-score](https://pypi.org/project/rouge-score)|1.8637048192771084e-06| +|pypi|[sacrebleu](https://pypi.org/project/sacrebleu)|1.8637048192771084e-06| +|pypi|[datasets](https://pypi.org/project/datasets)|1.8637048192771084e-06| +|pypi|[deepspeed](https://pypi.org/project/deepspeed)|1.8637048192771084e-06| +|pypi|[codecarbon](https://pypi.org/project/codecarbon)|1.8637048192771084e-06| +|pypi|[timm](https://pypi.org/project/timm)|1.8637048192771084e-06| +|pypi|[sigopt](https://pypi.org/project/sigopt)|1.8637048192771084e-06| +|pypi|[optuna](https://pypi.org/project/optuna)|1.8637048192771084e-06| +|pypi|[pyctcdecode](https://pypi.org/project/pyctcdecode)|1.8637048192771084e-06| +|pypi|[torchaudio](https://pypi.org/project/torchaudio)|1.8637048192771084e-06| +|pypi|[optax](https://pypi.org/project/optax)|1.8637048192771084e-06| +|pypi|[flax](https://pypi.org/project/flax)|1.8637048192771084e-06| +|pypi|[tf2onnx](https://pypi.org/project/tf2onnx)|1.8637048192771084e-06| +|pypi|[onnxconverter-common](https://pypi.org/project/onnxconverter-common)|1.8637048192771084e-06| +|pypi|[tokenizers](https://pypi.org/project/tokenizers)|1.8637048192771084e-06| +|pypi|[sacremoses](https://pypi.org/project/sacremoses)|1.8637048192771084e-06| +|pypi|[huggingface-hub](https://pypi.org/project/huggingface-hub)|1.8637048192771084e-06| +|cran|leafsync|1.8637048192771084e-06| +|cran|leaflet.extras2|1.8637048192771084e-06| +|cran|satellite|1.8637048192771084e-06| +|cran|leafpop|1.8637048192771084e-06| +|npm|[uglifyjs-webpack-plugin](https://github.com/webpack-contrib/uglifyjs-webpack-plugin)|1.8637048192771084e-06| +|npm|node-libs-browser|1.8637048192771084e-06| +|npm|module-alias|1.8637048192771084e-06| +|npm|mocha-phantomjs-istanbul|1.8637048192771084e-06| +|npm|mocha-phantomjs-core|1.8637048192771084e-06| +|npm|get-port|1.8637048192771084e-06| +|npm|eslint-config-airbnb-base|1.8637048192771084e-06| +|npm|connect|1.8637048192771084e-06| +|npm|babel-plugin-module-resolver|1.8637048192771084e-06| +|npm|asap|1.8637048192771084e-06| +|npm|a-sync-waterfall|1.8637048192771084e-06| +|npm|[closurecompiler](https://github.com/dcodeIO/ClosureCompiler.js#readme)|1.8607228915662646e-06| +|npm|[metascript](https://github.com/dcodeIO/MetaScript)|1.8607228915662646e-06| +|npm|[testjs](https://github.com/dcodeIO/test.js)|1.8607228915662646e-06| +|pypi|[cogapp](https://pypi.org/project/cogapp)|1.8450677710843372e-06| +|pypi|[falcon](https://pypi.org/project/falcon)|1.8256700270469633e-06| +|pypi|[pyramid](https://pypi.org/project/pyramid)|1.8256700270469633e-06| +|pypi|[bottle](https://pypi.org/project/bottle)|1.8256700270469633e-06| +|pypi|[webtest-aiohttp](https://pypi.org/project/webtest-aiohttp)|1.8256700270469633e-06| +|pypi|[webtest](https://pypi.org/project/webtest)|1.8256700270469633e-06| +|pypi|[GridDataFormats](https://github.com/MDAnalysis/GridDataFormats)|1.820934877103222e-06| +|pypi|[gsd](https://gsd.readthedocs.io)|1.820934877103222e-06| +|cran|[posterior](https://mc-stan.org/posterior/)|1.819866880107847e-06| +|cran|[tarchetypes](https://docs.ropensci.org/tarchetypes/)|1.819866880107847e-06| +|rubygems|method_source|1.8074133267764936e-06| +|pypi|[pystokes](https://github.com/rajeshrinet/pystokes)|1.8072289156626644e-06| +|pypi|[fhirclient](https://github.com/smart-on-fhir/client-py/)|1.8072289156626644e-06| +|pypi|[Requests](https://requests.readthedocs.io)|1.8072289156626644e-06| +|pypi|[AMAT](https://github.com/athulpg007/AMAT)|1.8072289156626644e-06| +|pypi|[pyemgpipeline](https://github.com/aalhossary/pyemgpipeline)|1.8072289156626644e-06| +|cran|[osqp](https://osqp.org)|1.8072289156626644e-06| +|cran|[rstackdeque](https://github.com/oneilsh/rstackdeque)|1.8072289156626644e-06| +|cran|[nplr](https://github.com/fredcommo/nplr)|1.8072289156626644e-06| +|cran|[ipaddress](https://davidchall.github.io/ipaddress/)|1.8072289156626644e-06| +|cran|[biblio](https://github.com/kamapu/biblio)|1.8072289156626644e-06| +|cran|[spiderbar](https://gitlab.com/hrbrmstr/spiderbar)|1.8072289156626644e-06| +|cran|[wdman](https://github.com/ropensci/wdman)|1.8072289156626644e-06| +|rubygems|[github-pages](https://github.com/github/pages-gem)|1.8072289156626644e-06| +|npm|[html-entities](https://github.com/mdevils/html-entities#readme)|1.8072289156626508e-06| +|npm|[long](https://github.com/dcodeIO/long.js#readme)|1.8072289156626508e-06| +|npm|[mnemonist](https://github.com/yomguithereal/mnemonist#readme)|1.8072289156626508e-06| +|npm|[obliterator](https://github.com/yomguithereal/obliterator#readme)|1.8072289156626508e-06| +|npm|[pandemonium](https://github.com/yomguithereal/pandemonium#readme)|1.8072289156626508e-06| +|npm|its-set|1.8072289156626504e-06| +|npm|babel-plugin-transform-es2015-modules-umd|1.8072289156626504e-06| +|npm|babel-preset-stage-2|1.8072289156626504e-06| +|npm|gulp-eslint|1.8072289156626504e-06| +|npm|eslint-plugin-babel|1.8072289156626504e-06| +|npm|pretty-hrtime|1.7712650602409637e-06| +|npm|utf8|1.7712650602409637e-06| +|cran|[fasterize](https://github.com/ecohealthalliance/fasterize)|1.6867469879517992e-06| +|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|1.6643317455869995e-06| +|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|1.6643317455869995e-06| +|pypi|[colorful](https://pypi.org/project/colorful)|1.6643317455869995e-06| +|pypi|[dm-tree](https://pypi.org/project/dm-tree)|1.6643317455869995e-06| +|pypi|[gpustat](https://pypi.org/project/gpustat)|1.6643317455869995e-06| +|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|1.6643317455869995e-06| +|pypi|[opencensus](https://pypi.org/project/opencensus)|1.6643317455869995e-06| +|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|1.6643317455869995e-06| +|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|1.6643317455869995e-06| +|pypi|[py-spy](https://pypi.org/project/py-spy)|1.6643317455869995e-06| +|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|1.6643317455869995e-06| +|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|1.6643317455869995e-06| +|pypi|[mercantile](https://github.com/mapbox/mercantile)|1.6521084337349466e-06| +|pypi|[nbsphinx-link](https://github.com/vidartf/nbsphinx-link)|1.6515291936978682e-06| +|npm|[babel-plugin-transform-undefined-to-void](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-simplify-comparison-operators](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-remove-debugger](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-remove-console](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-regexp-constructors](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-minify-booleans](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-merge-sibling-variables](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-member-expression-literals](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-inline-consecutive-adds](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-minify-simplify](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|babel-plugin-minify-replace|1.6502469505350594e-06| +|npm|babel-plugin-minify-numeric-literals|1.6502469505350594e-06| +|npm|babel-plugin-minify-mangle-names|1.6502469505350594e-06| +|npm|babel-plugin-minify-infinity|1.6502469505350594e-06| +|npm|babel-plugin-minify-guarded-expressions|1.6502469505350594e-06| +|npm|babel-plugin-minify-flip-comparisons|1.6502469505350594e-06| +|npm|babel-plugin-minify-dead-code-elimination|1.6502469505350594e-06| +|npm|babel-plugin-minify-constant-folding|1.6502469505350594e-06| +|npm|babel-plugin-minify-builtins|1.6502469505350594e-06| +|npm|babel-helper-evaluate-path|1.6337444810297089e-06| +|npm|esutils|1.6337444810297089e-06| +|npm|babel-helper-is-void-0|1.6337444810297089e-06| +|cran|whitening|1.6265060240963854e-06| +|cran|randtoolbox|1.6265060240963854e-06| +|cran|mc2d|1.6265060240963854e-06| +|cran|ggExtra|1.6265060240963854e-06| +|cran|DiceDesign|1.6265060240963854e-06| +|cran|condMVNorm|1.6265060240963854e-06| +|npm|[proxyquire](https://github.com/thlorenz/proxyquire#readme)|1.6258605851979326e-06| +|cran|showtextdb|1.6200595063179546e-06| +|cran|sysfonts|1.6200595063179546e-06| +|pypi|[restructuredtext-lint](https://pypi.org/project/restructuredtext-lint)|1.6102409638554219e-06| +|pypi|[pytest-datadir](https://pypi.org/project/pytest-datadir)|1.6102409638554219e-06| +|cran|rematch2|1.6102409638554216e-06| +|cran|diffobj|1.6102409638554216e-06| +|rubygems|[puma](https://puma.io)|1.6064468539067399e-06| +|rubygems|[uglifier](http://github.com/lautis/uglifier)|1.606446853906736e-06| +|cran|[UpSetR](http://github.com/hms-dbmi/UpSetR)|1.5722891566265128e-06| +|pypi|[pytest-freezegun](https://pypi.org/project/pytest-freezegun)|1.5582977069568596e-06| +|pypi|[coverage-enable-subprocess](https://pypi.org/project/coverage-enable-subprocess)|1.5582977069568596e-06| +|pypi|[sphinx-argparse](https://pypi.org/project/sphinx-argparse)|1.5582977069568596e-06| +|pypi|[proselint](https://pypi.org/project/proselint)|1.5582977069568596e-06| +|pypi|[optimade](https://github.com/Materials-Consortia/optimade-python-tools)|1.549053356282288e-06| +|pypi|[bed-reader](https://pypi.org/project/bed-reader)|1.549053356282288e-06| +|pypi|[PyQT5](https://www.riverbankcomputing.com/software/pyqt/)|1.549053356282288e-06| +|pypi|[emn_sdk](https://www.energy.gov/eere/energy-materials-network/energy-materials-network)|1.549053356282288e-06| +|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|1.549053356282288e-06| +|pypi|[Eir](https://github.com/mjacob1002/Eir)|1.549053356282288e-06| +|pypi|[physical-validation](https://physical-validation.readthedocs.io)|1.549053356282288e-06| +|pypi|[qimage2ndarray](https://github.com/hmeine/qimage2ndarray)|1.549053356282288e-06| +|pypi|[singularity-hpc](https://github.com/singularityhub/singularity-hpc)|1.549053356282288e-06| +|cran|RISmed|1.549053356282288e-06| +|cran|[tidytree](https://yulab-smu.top/treedata-book/)|1.549053356282288e-06| +|cran|sde|1.549053356282288e-06| +|cran|[phylocomr](https://github.com/ropensci/phylocomr)|1.549053356282288e-06| +|cran|[rsdmx](https://github.com/opensdmx/rsdmx)|1.549053356282288e-06| +|cran|[httr2](https://httr2.r-lib.org)|1.549053356282288e-06| +|cran|[itsadug](NA)|1.549053356282288e-06| +|cran|[CORElearn](http://lkm.fri.uni-lj.si/rmarko/software/)|1.549053356282288e-06| +|npm|[path](http://nodejs.org/docs/latest/api/path.html)|1.549053356282288e-06| +|npm|[react-grid-gallery](https://benhowell.github.io/react-grid-gallery/)|1.549053356282288e-06| +|npm|[js-logger](http://github.com/jonnyreeves/js-logger)|1.549053356282288e-06| +|npm|[d3-cloud](https://www.jasondavies.com/wordcloud/)|1.549053356282288e-06| +|npm|[atob](https://git.coolaj86.com/coolaj86/atob.js.git)|1.549053356282272e-06| +|npm|[node-html-parser](https://github.com/taoqf/node-fast-html-parser)|1.549053356282272e-06| +|npm|[serve-favicon](https://github.com/expressjs/serve-favicon#readme)|1.5465708989805449e-06| +|pypi|[usort](https://pypi.org/project/usort)|1.5248493975903614e-06| +|pypi|[sphinx-autodoc-typehints>=1.15.2](https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2)|1.5139017608897125e-06| +|pypi|[typing_extensions>=3.10](https://pypi.org/project/typing_extensions>=3.10)|1.5139017608897125e-06| +|pypi|[get_version](https://pypi.org/project/get_version)|1.5139017608897125e-06| +|pypi|[sphinx>=3.0](https://pypi.org/project/sphinx>=3.0)|1.5139017608897125e-06| +|rubygems|[redis](https://github.com/redis/redis-rb)|1.5100015909978455e-06| +|rubygems|[stackprof](http://github.com/tmm1/stackprof)|1.5100015909978455e-06| +|go|golang.org/x/sys|1.5046120690132533e-06| +|pypi|[nodeenv](https://pypi.org/project/nodeenv)|1.4760542168674698e-06| +|pypi|[identify](https://pypi.org/project/identify)|1.4760542168674698e-06| +|pypi|[cfgv](https://pypi.org/project/cfgv)|1.4760542168674698e-06| +|npm|assume|1.4598338408579371e-06| +|npm|spawn-sync|1.4598338408579371e-06| +|pypi|[connexion](https://github.com/zalando/connexion)|1.445783132530107e-06| +|cran|[contentid](https://github.com/cboettig/contentid)|1.445783132530107e-06| +|npm|[morgan](https://github.com/expressjs/morgan#readme)|1.423350745639908e-06| +|pypi|[furl](https://pypi.org/project/furl)|1.4199655765920826e-06| +|pypi|[pyodbc](https://pypi.org/project/pyodbc)|1.4199655765920826e-06| +|pypi|[pymysql](https://pypi.org/project/pymysql)|1.4199655765920826e-06| +|pypi|[pg8000](https://pypi.org/project/pg8000)|1.4199655765920826e-06| +|pypi|[psycopg2cffi](https://pypi.org/project/psycopg2cffi)|1.4199655765920826e-06| +|pypi|[flexmock](https://pypi.org/project/flexmock)|1.4199655765920826e-06| +|pypi|[phonenumbers](https://pypi.org/project/phonenumbers)|1.4199655765920826e-06| +|pypi|[pendulum](https://pypi.org/project/pendulum)|1.4199655765920826e-06| +|pypi|[intervals](https://pypi.org/project/intervals)|1.4199655765920826e-06| +|pypi|[colour](https://pypi.org/project/colour)|1.4199655765920826e-06| +|pypi|[arrow](https://pypi.org/project/arrow)|1.4199655765920826e-06| +|rubygems|xpath|1.3851535172949861e-06| +|rubygems|mini_mime|1.3851535172949861e-06| +|rubygems|matrix|1.3851535172949861e-06| +|rubygems|webdrivers|1.3851535172949861e-06| +|rubygems|sinatra|1.3851535172949861e-06| +|rubygems|selenium-webdriver|1.3851535172949861e-06| +|rubygems|selenium_statistics|1.3851535172949861e-06| +|rubygems|sauce_whisk|1.3851535172949861e-06| +|rubygems|rubocop-rake|1.3851535172949861e-06| +|rubygems|rubocop-minitest|1.3851535172949861e-06| +|rubygems|rspec-instafail|1.3851535172949861e-06| +|rubygems|launchy|1.3851535172949861e-06| +|rubygems|irb|1.3851535172949861e-06| +|rubygems|erubi|1.3851535172949861e-06| +|rubygems|cucumber|1.3851535172949861e-06| +|cran|thematic|1.383800828313253e-06| +|npm|grunt-contrib-clean|1.3692525202852223e-06| +|npm|grunt-contrib-watch|1.3692525202852223e-06| +|npm|grunt-eslint|1.3692525202852223e-06| +|npm|grunt-release|1.3692525202852223e-06| +|npm|grunt-jsdoc|1.3692525202852223e-06| +|npm|grunt-mocha-istanbul|1.3692525202852223e-06| +|npm|help-me-test|1.3692525202852223e-06| +|npm|require-dir|1.3692525202852223e-06| +|pypi|[questionary](https://github.com/tmbo/questionary)|1.3554216867469906e-06| +|pypi|[iPython](https://ipython.org)|1.3554216867469906e-06| +|pypi|[nodepy](https://github.com/ketch/nodepy)|1.3554216867469906e-06| +|pypi|[pywdpa](https://ecology.ghislainv.fr/pywdpa)|1.3554216867469906e-06| +|pypi|[astro-virgo](https://github.com/0xCoto/Virgo)|1.3554216867469906e-06| +|pypi|[dna-features-viewer](https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer)|1.3554216867469906e-06| +|pypi|[parasail](https://github.com/jeffdaily/parasail-python)|1.3554216867469906e-06| +|pypi|[pypiwin32](https://pypi.org/project/pypiwin32)|1.3554216867469906e-06| +|pypi|[piecewise-regression](https://github.com/chasmani/piecewise-regression)|1.3554216867469906e-06| +|pypi|[pystream-protobuf](https://github.com/cartoonist/pystream-protobuf)|1.3554216867469906e-06| +|cran|Rlabkey|1.3554216867469906e-06| +|cran|[fishtree](https://fishtreeoflife.org/)|1.3554216867469906e-06| +|cran|[LiblineaR]()|1.3554216867469906e-06| +|npm|[svgr](https://github.com/smooth-code/svgr#readme)|1.3554216867469906e-06| +|npm|[clsx](https://github.com/lukeed/clsx#readme)|1.3554216867469906e-06| +|npm|[deep-filter](https://github.com/IndigoUnited/js-deep-filter#readme)|1.3554216867469906e-06| +|npm|[kebabcase-keys](https://github.com/mattii/kebabcase-keys#readme)|1.3554216867469906e-06| +|npm|[camera-controls](https://github.com/yomotsu/camera-controls#readme)|1.355421686746988e-06| +|npm|[daisyui](https://github.com/saadeghi/daisyui)|1.355421686746988e-06| +|npm|[github-current-user](https://github.com/beaugunderson/github-current-user)|1.3418674698795263e-06| +|pypi|[opt_einsum](https://github.com/dgasmith/opt_einsum)|1.3155563430191375e-06| +|pypi|[percy](https://pypi.org/project/percy)|1.3139461149371045e-06| +|pypi|[diskcache](https://pypi.org/project/diskcache)|1.3139461149371045e-06| +|pypi|[fire](https://pypi.org/project/fire)|1.3139461149371045e-06| +|pypi|[preconditions](https://pypi.org/project/preconditions)|1.3139461149371045e-06| +|pypi|[mimesis](https://pypi.org/project/mimesis)|1.3139461149371045e-06| +|pypi|[flask-talisman](https://pypi.org/project/flask-talisman)|1.3139461149371045e-06| +|pypi|[dash-dangerously-set-inner-html](https://pypi.org/project/dash-dangerously-set-inner-html)|1.3139461149371045e-06| +|pypi|[dash-flow-example](https://pypi.org/project/dash-flow-example)|1.3139461149371045e-06| +|npm|karma-tap-reporter|1.2887082543860917e-06| +|npm|karma-spec-reporter|1.2887082543860917e-06| +|npm|karma-rollup-preprocessor|1.2887082543860917e-06| +|npm|karma-html-reporter|1.2887082543860917e-06| +|npm|karma-firefox-launcher|1.2887082543860917e-06| +|npm|karma-chai-sinon|1.2887082543860917e-06| +|npm|eslint-plugin-mocha|1.2887082543860917e-06| +|npm|eslint-config-nfl|1.2887082543860917e-06| +|npm|cz-conventional-changelog|1.2887082543860917e-06| +|npm|conventional-changelog-cli|1.2887082543860917e-06| +|npm|babel-plugin-transform-class-properties|1.2887082543860917e-06| +|npm|react-side-effect|1.2887082543860917e-06| +|npm|react-fast-compare|1.2887082543860917e-06| +|rubygems|webpacker|1.2887082543860917e-06| +|rubygems|sassc|1.2887082543860917e-06| +|rubygems|rubocop-discourse|1.2887082543860917e-06| +|rubygems|mini_racer|1.2887082543860917e-06| +|rubygems|listen|1.2887082543860917e-06| +|rubygems|dalli|1.2887082543860917e-06| +|go|github.com/gorilla/mux|1.2524405924091624e-06| +|go|golang.org/x/crypto|1.2524405924091624e-06| +|cran|pheatmap|1.248414711477493e-06| |cran|[shinyalert](https://github.com/daattali/shinyalert -https://daattali.com/shiny/shinyalert-demo/)|1.2749470151889833e-06| -|npm|tslint-config-semistandard|1.2688758389261745e-06| -|npm|optimist|1.2688758389261745e-06| -|npm|eslint-plugin-dependencies|1.2688758389261745e-06| -|npm|eslint-config-semistandard|1.2688758389261745e-06| -|npm|doctoc|1.2688758389261745e-06| -|npm|snappy|1.2688758389261745e-06| -|npm|retry|1.2688758389261745e-06| -|npm|optional|1.2688758389261745e-06| -|npm|nested-error-stacks|1.2688758389261745e-06| -|npm|denque|1.2688758389261745e-06| -|npm|buffermaker|1.2688758389261745e-06| -|npm|buffer-crc32|1.2688758389261745e-06| -|npm|binary|1.2688758389261745e-06| -|cran|[RNiftyReg](https://github.com/jonclayden/RNiftyReg)|1.2666140281616032e-06| -|rubygems|racc|1.2561870805369127e-06| -|rubygems|ruby_memcheck|1.2561870805369127e-06| -|rubygems|rubocop-shopify|1.2561870805369127e-06| -|rubygems|rexical|1.2561870805369127e-06| -|rubygems|minitest-reporters|1.2561870805369127e-06| -|rubygems|hoe-markdown|1.2561870805369127e-06| -|cran|[ggiraph](https://davidgohel.github.io/ggiraph/)|1.245805369127513e-06| -|cran|[goodpractice](https://github.com/mangothecat/goodpractice)|1.2416107382550256e-06| -|npm|[react-mdl](https://github.com/react-mdl/react-mdl#readme)|1.2304250559284157e-06| -|npm|[react-sigma](https://github.com/dunnock/react-sigma)|1.2304250559284157e-06| -|npm|[react-simple-file-input](https://github.com/greena13/react-simple-file-input#readme)|1.2304250559284157e-06| -|pypi|[pymc3-ext](https://github.com/exoplanet-dev/pymc3-ext)|1.2304250559284157e-06| -|pypi|[pygam](https://github.com/dswah/pyGAM)|1.2304250559284157e-06| -|pypi|[grpcio-reflection](https://grpc.io)|1.2304250559284157e-06| -|pypi|[modAL](https://modAL-python.github.io/)|1.2304250559284157e-06| -|pypi|[easywebdav](http://github.com/amnong/easywebdav)|1.2304250559284157e-06| -|pypi|[stanza](https://github.com/stanfordnlp/stanza)|1.2304250559284157e-06| -|pypi|[dca](https://github.com/theislab/dca)|1.2304250559284157e-06| -|cran|[fitdistrplus](https://lbbe.univ-lyon1.fr/fr/fitdistrplus)|1.2304250559284157e-06| -|cran|[kinship2](https://cran.r-project.org/package=kinship2)|1.2304250559284157e-06| -|cran|[corrr](https://github.com/tidymodels/corrr)|1.2304250559284157e-06| +https://daattali.com/shiny/shinyalert-demo/)|1.248414711477493e-06| +|npm|tslint-config-semistandard|1.2424698795180723e-06| +|npm|optimist|1.2424698795180723e-06| +|npm|eslint-plugin-dependencies|1.2424698795180723e-06| +|npm|eslint-config-semistandard|1.2424698795180723e-06| +|npm|doctoc|1.2424698795180723e-06| +|npm|snappy|1.2424698795180723e-06| +|npm|optional|1.2424698795180723e-06| +|npm|nested-error-stacks|1.2424698795180723e-06| +|npm|denque|1.2424698795180723e-06| +|npm|buffermaker|1.2424698795180723e-06| +|npm|buffer-crc32|1.2424698795180723e-06| +|npm|binary|1.2424698795180723e-06| +|cran|[RNiftyReg](https://github.com/jonclayden/RNiftyReg)|1.2402551381998611e-06| +|cran|[ggiraph](https://davidgohel.github.io/ggiraph/)|1.2198795180722854e-06| +|cran|[goodpractice](https://github.com/mangothecat/goodpractice)|1.2157721796275937e-06| +|pypi|[transformers](https://github.com/huggingface/transformers)|1.2048192771084378e-06| +|pypi|[stanza](https://github.com/stanfordnlp/stanza)|1.2048192771084378e-06| +|pypi|[easywebdav](http://github.com/amnong/easywebdav)|1.2048192771084378e-06| +|pypi|[retriever](https://github.com/weecology/retriever)|1.2048192771084378e-06| +|pypi|[yabox](https://github.com/pablormier/yabox)|1.2048192771084378e-06| +|pypi|[modAL](https://modAL-python.github.io/)|1.2048192771084378e-06| +|pypi|[funsies](https://github.com/aspuru-guzik-group/funsies)|1.2048192771084378e-06| +|pypi|[dca](https://github.com/theislab/dca)|1.2048192771084378e-06| +|pypi|[python-markdown-math](https://github.com/mitya57/python-markdown-math)|1.2048192771084378e-06| +|pypi|[injector](https://github.com/alecthomas/injector)|1.2048192771084378e-06| +|cran|[fitdistrplus](https://lbbe.univ-lyon1.fr/fr/fitdistrplus)|1.2048192771084378e-06| +|cran|[kinship2](https://cran.r-project.org/package=kinship2)|1.2048192771084378e-06| +|cran|[corrr](https://github.com/tidymodels/corrr)|1.2048192771084378e-06| +|cran|[spocc](https://github.com/ropensci/spocc (devel))|1.2048192771084378e-06| +|cran|[RcppProgress](https://github.com/kforner/rcpp_progress)|1.2048192771084378e-06| +|cran|[rematch](https://github.com/MangoTheCat/rematch)|1.2048192771084378e-06| +|cran|treeman|1.2048192771084378e-06| +|cran|[treemapify](https://wilkox.org/treemapify/)|1.2048192771084378e-06| +|cran|[restez](https://github.com/ropensci/restez#readme)|1.2048192771084378e-06| |cran|[babette](https://docs.ropensci.org/babette/ (website) -https://github.com/ropensci/babette/)|1.2304250559284157e-06| -|cran|[spocc](https://github.com/ropensci/spocc (devel))|1.2304250559284157e-06| -|cran|[RcppProgress](https://github.com/kforner/rcpp_progress)|1.2304250559284157e-06| -|cran|treeman|1.2304250559284157e-06| -|cran|[treemapify](https://wilkox.org/treemapify/)|1.2304250559284157e-06| -|cran|[restez](https://github.com/ropensci/restez#readme)|1.2304250559284157e-06| -|cran|[rematch](https://github.com/MangoTheCat/rematch)|1.2304250559284157e-06| -|pypi|[tinydb](https://github.com/msiemens/tinydb)|1.2242729306487753e-06| -|pypi|[re-assert](https://pypi.org/project/re-assert)|1.1926875138284532e-06| -|pypi|[devpi-server](https://pypi.org/project/devpi-server)|1.1926875138284532e-06| -|pypi|[devpi-client](https://pypi.org/project/devpi-client)|1.1926875138284532e-06| -|pypi|[pyproject-api](https://pypi.org/project/pyproject-api)|1.1926875138284532e-06| -|pypi|[sphinx-autodoc-typehints>=1.15.2](https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2)|1.1595573051109964e-06| -|pypi|[typing_extensions>=3.10](https://pypi.org/project/typing_extensions>=3.10)|1.1595573051109964e-06| -|pypi|[get_version](https://pypi.org/project/get_version)|1.1595573051109964e-06| -|pypi|[sphinx>=3.0](https://pypi.org/project/sphinx>=3.0)|1.1595573051109964e-06| -|npm|taper|1.141988255033557e-06| -|npm|server-destroy|1.141988255033557e-06| -|npm|phantomjs-prebuilt|1.141988255033557e-06| -|npm|karma-tap|1.141988255033557e-06| -|npm|karma-phantomjs-launcher|1.141988255033557e-06| -|npm|karma-browserify|1.141988255033557e-06| -|npm|function-bind|1.141988255033557e-06| -|npm|buffer-equal|1.141988255033557e-06| -|npm|tunnel-agent|1.141988255033557e-06| -|npm|tough-cookie|1.141988255033557e-06| -|npm|qs|1.141988255033557e-06| -|npm|performance-now|1.141988255033557e-06| -|npm|oauth-sign|1.141988255033557e-06| -|npm|isstream|1.141988255033557e-06| -|npm|is-typedarray|1.141988255033557e-06| -|npm|http-signature|1.141988255033557e-06| -|npm|har-validator|1.141988255033557e-06| -|npm|forever-agent|1.141988255033557e-06| -|npm|extend|1.141988255033557e-06| -|npm|caseless|1.141988255033557e-06| -|npm|aws4|1.141988255033557e-06| -|npm|aws-sign2|1.141988255033557e-06| -|rubygems|rspec-extra-formatters|1.1186823722777703e-06| -|rubygems|paranoia|1.1186823722777703e-06| -|rubygems|paper_trail|1.1186823722777703e-06| -|rubygems|discard|1.1186823722777703e-06| -|rubygems|database_cleaner|1.1186823722777703e-06| -|rubygems|after_commit_action|1.1186823722777703e-06| -|go|golang.org/x/net|1.1185682326621923e-06| -|pypi|[sparse](https://github.com/pydata/sparse/)|1.1180304594734164e-06| -|pypi|[pypka](https://pypka.org)|1.1073825503355913e-06| -|pypi|[streamlit](https://streamlit.io)|1.1073825503355913e-06| -|cran|gdata|1.1073825503355913e-06| -|npm|[node-gzip](https://github.com/Rebsos/node-gzip#readme)|1.1073825503355758e-06| -|pypi|[yabox](https://github.com/pablormier/yabox)|1.1073825503355758e-06| -|pypi|[louvain](https://github.com/vtraag/louvain-igraph)|1.1073825503355758e-06| -|pypi|[update_checker](https://github.com/bboe/update_checker)|1.1073825503355758e-06| -|pypi|[xgboost](https://github.com/dmlc/xgboost)|1.1073825503355758e-06| -|pypi|[h5xplorer](https://github.com/DeepRank/h5xplorer)|1.1073825503355758e-06| -|pypi|[sphinx-rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|1.1073825503355758e-06| -|cran|[jmvcore](https://www.jamovi.org)|1.1073825503355758e-06| -|cran|[mlr3proba](https://mlr3proba.mlr-org.com)|1.1073825503355758e-06| -|cran|ggm|1.1073825503355758e-06| -|cran|googlePolylines|1.1073825503355758e-06| -|cran|[analogue](https://github.com/gavinsimpson/analogue)|1.1073825503355758e-06| -|cran|[scrapeR](http://www.ryanacton.com)|1.1073825503355758e-06| -|cran|[C50](https://topepo.github.io/C5.0/)|1.1073825503355758e-06| -|npm|[react-dnd](https://github.com/react-dnd/react-dnd#readme)|1.1073825503355705e-06| -|npm|[react-dnd-html5-backend](https://github.com/react-dnd/react-dnd#readme)|1.1073825503355705e-06| -|npm|[react-plotly.js](https://github.com/plotly/react-plotly.js#readme)|1.1073825503355705e-06| -|pypi|[OpenPIV](https://pypi.org/project/OpenPIV)|1.1073825503355604e-06| -|pypi|[pssmgen](https://github.com/DeepRank/PSSMGen)|1.1073825503355604e-06| -|cran|[cowsay](https://github.com/sckott/cowsay)|1.1073825503355604e-06| -|cran|[rworldmap](https://github.com/AndySouth/rworldmap/)|1.1073825503355604e-06| +https://github.com/ropensci/babette/)|1.2048192771084378e-06| +|npm|[react-mdl](https://github.com/react-mdl/react-mdl#readme)|1.2048192771084378e-06| +|npm|[react-sigma](https://github.com/dunnock/react-sigma)|1.2048192771084378e-06| +|npm|[react-simple-file-input](https://github.com/greena13/react-simple-file-input#readme)|1.2048192771084378e-06| +|npm|[js-sha256](https://github.com/emn178/js-sha256)|1.2048192771084378e-06| +|pypi|[python-sat](https://github.com/pysathq/pysat)|1.1927710843373567e-06| +|pypi|[re-assert](https://pypi.org/project/re-assert)|1.1678670726863496e-06| +|pypi|[devpi-server](https://pypi.org/project/devpi-server)|1.1678670726863496e-06| +|pypi|[devpi-client](https://pypi.org/project/devpi-client)|1.1678670726863496e-06| +|pypi|[pyproject-api](https://pypi.org/project/pyproject-api)|1.1678670726863496e-06| +|npm|taper|1.1182228915662649e-06| +|npm|server-destroy|1.1182228915662649e-06| +|npm|karma-tap|1.1182228915662649e-06| +|npm|karma-phantomjs-launcher|1.1182228915662649e-06| +|npm|karma-browserify|1.1182228915662649e-06| +|npm|function-bind|1.1182228915662649e-06| +|npm|buffer-equal|1.1182228915662649e-06| +|npm|tunnel-agent|1.1182228915662649e-06| +|npm|tough-cookie|1.1182228915662649e-06| +|npm|qs|1.1182228915662649e-06| +|npm|performance-now|1.1182228915662649e-06| +|npm|oauth-sign|1.1182228915662649e-06| +|npm|isstream|1.1182228915662649e-06| +|npm|is-typedarray|1.1182228915662649e-06| +|npm|http-signature|1.1182228915662649e-06| +|npm|har-validator|1.1182228915662649e-06| +|npm|forever-agent|1.1182228915662649e-06| +|npm|extend|1.1182228915662649e-06| +|npm|caseless|1.1182228915662649e-06| +|npm|aws4|1.1182228915662649e-06| +|npm|aws-sign2|1.1182228915662649e-06| +|pypi|[sparse](https://github.com/pydata/sparse/)|1.1114457831325397e-06| +|pypi|[CacheControl](https://github.com/ionrock/cachecontrol)|1.0972461273666183e-06| +|rubygems|rspec-extra-formatters|1.095402016228178e-06| +|rubygems|paranoia|1.095402016228178e-06| +|rubygems|paper_trail|1.095402016228178e-06| +|rubygems|discard|1.095402016228178e-06| +|rubygems|database_cleaner|1.095402016228178e-06| +|rubygems|after_commit_action|1.095402016228178e-06| +|go|golang.org/x/net|1.095290251916758e-06| +|pypi|[clldutils](https://github.com/clld/clldutils)|1.0843373493976108e-06| +|pypi|[pypka](https://pypka.org)|1.0843373493976108e-06| +|cran|gdata|1.0843373493976108e-06| +|pypi|[sphinx-rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|1.0843373493975956e-06| +|pypi|[slab](http://github.com/DrMarc/slab.git)|1.0843373493975956e-06| +|pypi|[louvain](https://github.com/vtraag/louvain-igraph)|1.0843373493975956e-06| +|pypi|[pyvcf](https://github.com/jamescasbon/PyVCF)|1.0843373493975956e-06| +|cran|[mlr3proba](https://mlr3proba.mlr-org.com)|1.0843373493975956e-06| +|cran|ggm|1.0843373493975956e-06| +|cran|[analogue](https://github.com/gavinsimpson/analogue)|1.0843373493975956e-06| +|cran|googlePolylines|1.0843373493975956e-06| +|cran|[C50](https://topepo.github.io/C5.0/)|1.0843373493975956e-06| +|cran|[scrapeR](http://www.ryanacton.com)|1.0843373493975956e-06| +|cran|[jmvcore](https://www.jamovi.org)|1.0843373493975956e-06| +|npm|[node-gzip](https://github.com/Rebsos/node-gzip#readme)|1.0843373493975956e-06| +|npm|[react-dnd](https://github.com/react-dnd/react-dnd#readme)|1.0843373493975903e-06| +|npm|[react-dnd-html5-backend](https://github.com/react-dnd/react-dnd#readme)|1.0843373493975903e-06| +|cran|[cowsay](https://github.com/sckott/cowsay)|1.0843373493975803e-06| +|cran|[rworldmap](https://github.com/AndySouth/rworldmap/)|1.0843373493975803e-06| |cran|[osmdata](https://docs.ropensci.org/osmdata/ (website) -https://github.com/ropensci/osmdata/ (devel))|1.1073825503355604e-06| -|pypi|[langdetect](https://github.com/Mimino666/langdetect)|1.0650647171620401e-06| -|pypi|[CacheControl](https://github.com/ionrock/cachecontrol)|1.049579615015864e-06| -|go|github.com/opencontainers/go-digest|1.0332335783099554e-06| -|go|github.com/opencontainers/image-spec|1.0332335783099554e-06| -|go|github.com/spf13/cobra|1.0332335783099554e-06| -|pypi|[imgaug](https://github.com/aleju/imgaug)|1.0067114093959864e-06| -|cran|[mvnfast](https://github.com/mfasiolo/mvnfast/)|1.0067114093959864e-06| -|pypi|[pythutils](https://github.com/JolleJolles)|1.006711409395973e-06| -|pypi|[python-crontab](https://gitlab.com/doctormo/python-crontab/)|1.006711409395973e-06| -|pypi|[cron-descriptor](https://github.com/Salamek/cron-descriptor)|1.006711409395973e-06| -|npm|[angular-toastr](https://github.com/Foxandxss/angular-toastr#readme)|1.006711409395971e-06| -|npm|[dialog-polyfill](https://github.com/GoogleChrome/dialog-polyfill)|1.006711409395971e-06| -|npm|[grunt-contrib-imagemin](https://github.com/gruntjs/grunt-contrib-imagemin#readme)|1.006711409395971e-06| -|npm|[material-design-lite](https://github.com/google/material-design-lite#readme)|1.006711409395971e-06| -|pypi|[twiggy](https://github.com/wearpants/twiggy/)|1.006711409395971e-06| -|pypi|[nano-CAT](https://github.com/nlesc-nano/nano-CAT)|1.006711409395971e-06| -|pypi|[data-CAT](https://github.com/nlesc-nano/data-CAT)|1.006711409395971e-06| -|pypi|[scikit_image](https://scikit-image.org)|1.006711409395971e-06| -|pypi|[webdav](https://github.com/kamikaze/webdav)|1.006711409395971e-06| -|pypi|[libfmp](http://audiolabs-erlangen.de/FMP)|1.006711409395971e-06| -|pypi|[Flask-Cors](https://github.com/corydolphin/flask-cors)|1.006711409395971e-06| -|pypi|[python-slugify](https://github.com/un33k/python-slugify)|1.006711409395971e-06| -|pypi|[overrides](https://github.com/mkorpela/overrides)|1.006711409395971e-06| -|cran|[haldensify](https://github.com/nhejazi/haldensify)|1.006711409395971e-06| -|cran|lspline|1.006711409395971e-06| -|cran|pbs|1.006711409395971e-06| -|cran|[BFpack](https://github.com/jomulder/BFpack)|1.006711409395971e-06| -|cran|[sofa](https://github.com/ropensci/sofa)|1.006711409395971e-06| -|cran|[elastic](https://docs.ropensci.org/elastic (website))|1.006711409395971e-06| +https://github.com/ropensci/osmdata/ (devel))|1.0843373493975803e-06| +|pypi|[pytest-lazy-fixture](https://github.com/tvorog/pytest-lazy-fixture)|1.0734939759036118e-06| +|go|github.com/opencontainers/go-digest|1.0117314556507122e-06| +|go|github.com/opencontainers/image-spec|1.0117314556507122e-06| +|go|github.com/spf13/cobra|1.0117314556507122e-06| +|pypi|[grpcio-reflection](https://grpc.io)|1.0030120481927786e-06| +|pypi|[imgaug](https://github.com/aleju/imgaug)|9.857612267250953e-07| +|cran|[mvnfast](https://github.com/mfasiolo/mvnfast/)|9.857612267250953e-07| +|pypi|[libfmp](http://audiolabs-erlangen.de/FMP)|9.8576122672508e-07| +|pypi|[impedance](https://impedancepy.readthedocs.io/en/latest/)|9.8576122672508e-07| +|pypi|[pvpumpingsystem](https://github.com/tylunel/pvpumpingsystem)|9.8576122672508e-07| +|pypi|[nano-CAT](https://github.com/nlesc-nano/nano-CAT)|9.8576122672508e-07| +|pypi|[data-CAT](https://github.com/nlesc-nano/data-CAT)|9.8576122672508e-07| +|pypi|[overrides](https://github.com/mkorpela/overrides)|9.8576122672508e-07| +|pypi|[wandb](https://github.com/wandb/client)|9.8576122672508e-07| +|pypi|[Flask-Cors](https://github.com/corydolphin/flask-cors)|9.8576122672508e-07| +|pypi|[FitBenchmarking](http://fitbenchmarking.com)|9.8576122672508e-07| +|pypi|[pyvolcans](https://github.com/BritishGeologicalSurvey/pyvolcans)|9.8576122672508e-07| +|cran|[BFpack](https://github.com/jomulder/BFpack)|9.8576122672508e-07| +|cran|[haldensify](https://github.com/nhejazi/haldensify)|9.8576122672508e-07| +|cran|lspline|9.8576122672508e-07| +|cran|[sofa](https://github.com/ropensci/sofa)|9.8576122672508e-07| +|cran|[elastic](https://docs.ropensci.org/elastic (website))|9.8576122672508e-07| |cran|[mongolite](https://github.com/jeroen/mongolite/ (devel) https://jeroen.github.io/mongolite/ (user manual) -http://mongoc.org/ (upstream))|1.006711409395971e-06| -|cran|[keyATM](https://keyatm.github.io/keyATM/)|1.006711409395971e-06| -|cran|[irr](https://www.r-project.org)|1.006711409395971e-06| -|pypi|[django-filter](https://github.com/carltongibson/django-filter/tree/main)|9.381991051454168e-07| -|npm|[color-blend](https://github.com/Loilo/color-blend#readme)|9.228187919463158e-07| -|pypi|[lightkurve](https://docs.lightkurve.org)|9.228187919463158e-07| -|pypi|[k2sc](https://github.com/OxES/k2sc)|9.228187919463158e-07| -|pypi|[cosmospectra](https://github.com/sambit-giri/cosmospectra.git)|9.228187919463158e-07| -|cran|rje|9.228187919463158e-07| -|cran|[usefun](https://github.com/bblodfon/usefun)|9.228187919463158e-07| -|cran|rCAT|9.228187919463158e-07| -|cran|[strex](https://rorynolan.github.io/strex/)|9.228187919463158e-07| -|cran|[gdalUtilities](https://github.com/JoshOBrien/gdalUtilities/)|9.228187919463158e-07| -|npm|[css-loader](https://github.com/webpack-contrib/css-loader)|9.135906040268456e-07| -|npm|[less-loader](https://github.com/webpack-contrib/less-loader)|9.135906040268456e-07| -|npm|[style-loader](https://github.com/webpack-contrib/style-loader)|9.135906040268456e-07| -|rubygems|[activerecord-jdbcmysql-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|8.859060402684575e-07| -|pypi|[lcapy](https://github.com/mph-/lcapy)|8.518327310273826e-07| -|cran|[repr](https://github.com/IRkernel/repr/)|8.518327310273826e-07| -|pypi|[healpy](http://github.com/healpy)|8.518327310273672e-07| -|pypi|[GridDataFormats](https://github.com/MDAnalysis/GridDataFormats)|8.518327310273672e-07| -|pypi|[mmtf-python](https://github.com/rcsb/mmtf-python.git)|8.518327310273672e-07| -|pypi|[flat-table](https://github.com/metinsenturk/flat_table)|8.518327310273672e-07| -|pypi|[tikzplotlib](https://pypi.org/project/tikzplotlib)|8.518327310273672e-07| -|pypi|[linuxdoc](https://github.com/return42/linuxdoc)|8.518327310273672e-07| -|pypi|[opencv-contrib-python-headless](https://github.com/skvark/opencv-python)|8.518327310273672e-07| -|pypi|[tableone](https://github.com/tompollard/tableone)|8.518327310273672e-07| -|pypi|[entsoe-py](https://github.com/EnergieID/entsoe-py)|8.518327310273672e-07| -|pypi|[quandl](https://github.com/quandl/quandl-python)|8.518327310273672e-07| -|pypi|[pybamm](https://github.com/pybamm-team/PyBaMM)|8.518327310273672e-07| -|pypi|[Ipython](https://ipython.org)|8.518327310273672e-07| -|pypi|[scikit-spatial](https://github.com/ajhynes7/scikit-spatial)|8.518327310273672e-07| -|cran|[waiter](https://waiter.john-coene.com/)|8.518327310273672e-07| -|cran|[pwr](https://github.com/heliosdrm/pwr)|8.518327310273672e-07| -|cran|[likert](http://jason.bryer.org/likert)|8.518327310273672e-07| -|cran|[plumber](https://www.rplumber.io)|8.518327310273672e-07| -|cran|[tictoc](https://github.com/collectivemedia/tictoc)|8.518327310273672e-07| -|cran|R2jags|8.518327310273672e-07| -|cran|[bib2df](https://github.com/ropensci/bib2df)|8.518327310273672e-07| -|npm|[aws-amplify](https://aws-amplify.github.io/)|8.51832731027362e-07| -|npm|[aws-amplify-react](https://github.com/aws-amplify/amplify-js#readme)|8.51832731027362e-07| -|npm|[cors](https://github.com/expressjs/cors#readme)|7.969798657718174e-07| -|npm|[cpx](https://github.com/mysticatea/cpx)|7.909875359539872e-07| -|npm|tls|7.909875359539872e-07| -|pypi|[gitdb2](https://github.com/gitpython-developers/gitdb)|7.909875359539872e-07| -|pypi|[nibabel](https://nipy.org/nibabel)|7.909875359539872e-07| -|pypi|[smmap2](https://github.com/gitpython-developers/smmap)|7.909875359539872e-07| -|pypi|[sphinx_automodapi](https://github.com/astropy/sphinx-automodapi)|7.909875359539872e-07| -|pypi|[rdkit-pypi](https://github.com/kuelumbus/rdkit-pypi)|7.909875359539872e-07| -|pypi|[fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy)|7.909875359539872e-07| -|cran|[shinyFiles](https://github.com/thomasp85/shinyFiles)|7.909875359539872e-07| -|cran|[bestglm](http://www.stats.uwo.ca/faculty/aim)|7.909875359539872e-07| -|cran|[GGMncv](https://donaldrwilliams.github.io/GGMncv/)|7.909875359539872e-07| -|cran|[RcppEigen](http://dirk.eddelbuettel.com/code/rcpp.eigen.html)|7.909875359539872e-07| -|cran|[ggwordcloud](https://github.com/lepennec/ggwordcloud)|7.909875359539872e-07| -|cran|[akmedoids](https://cran.r-project.org/package=akmedoids)|7.909875359539872e-07| -|cran|[depmixS4](https://depmix.github.io/)|7.909875359539872e-07| -|cran|GeoLight|7.909875359539872e-07| -|cran|[anomalize](https://github.com/business-science/anomalize)|7.909875359539872e-07| -|cran|[outsider](https://github.com/ropensci/outsider#readme)|7.909875359539872e-07| -|cran|[MultinomialCI](http://decsai.ugr.es/~pjvi)|7.909875359539872e-07| -|go|github.com/docker/distribution|7.757027526505204e-07| -|go|github.com/sirupsen/logrus|7.757027526505204e-07| -|go|golang.org/x/sync|7.757027526505204e-07| -|pypi|[WTForms](https://wtforms.readthedocs.io/)|7.674776286353497e-07| -|pypi|[velociraptor](https://github.com/swiftsim/velociraptor-python)|7.382550335570401e-07| -|pypi|[swiftsimio](https://github.com/swiftsim/swiftsimio)|7.382550335570401e-07| -|pypi|[iminuit](http://github.com/scikit-hep/iminuit)|7.382550335570401e-07| -|cran|[cmdfun](https://snystrom.github.io/cmdfun/)|7.382550335570401e-07| -|cran|[sjlabelled](https://strengejacke.github.io/sjlabelled/)|7.382550335570401e-07| -|cran|[qdapRegex](http://trinker.github.com/qdapRegex/)|7.382550335570401e-07| -|cran|[iotools](http://www.rforge.net/iotools)|7.382550335570401e-07| -|pypi|[pytest-lazy-fixture](https://github.com/tvorog/pytest-lazy-fixture)|7.308724832214748e-07| -|cran|[biomartr](https://docs.ropensci.org/biomartr/)|6.921140939597407e-07| -|npm|express-flash|6.921140939597329e-07| -|npm|[passport-local](https://www.passportjs.org/packages/passport-local/?utm_source=github&utm_medium=referral&utm_campaign=passport-local)|6.921140939597329e-07| -|pypi|[qcg-pilotjob](http://github.com/vecma-project/QCG-PilotJob)|6.921140939597329e-07| -|pypi|[ymmsl](https://github.com/multiscale/ymmsl-python)|6.921140939597329e-07| -|pypi|[django-tables2](https://github.com/jieter/django-tables2/)|6.921140939597329e-07| -|pypi|[keras-tuner](https://github.com/keras-team/keras-tuner)|6.921140939597329e-07| -|pypi|[flask-cors](https://github.com/corydolphin/flask-cors)|6.921140939597329e-07| -|pypi|[flask-migrate](https://github.com/miguelgrinberg/flask-migrate)|6.921140939597329e-07| -|pypi|[flask-sqlalchemy](https://github.com/pallets/flask-sqlalchemy)|6.921140939597329e-07| -|pypi|[sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils)|6.921140939597329e-07| -|pypi|[webargs](https://github.com/marshmallow-code/webargs)|6.921140939597329e-07| -|pypi|[diffeqpy](http://github.com/SciML/diffeqpy)|6.921140939597329e-07| -|pypi|[pebble](https://github.com/noxdafox/pebble)|6.921140939597329e-07| -|cran|[esquisse](https://dreamrs.github.io/esquisse/)|6.921140939597329e-07| -|cran|[ggnetwork](https://github.com/briatte/ggnetwork)|6.921140939597329e-07| -|cran|randomcoloR|6.921140939597329e-07| -|cran|[osmextract](https://docs.ropensci.org/osmextract/)|6.921140939597329e-07| -|cran|[smoothr](https://strimas.com/smoothr/)|6.921140939597329e-07| -|cran|ggnewscale|6.921140939597329e-07| -|cran|[ggpointdensity](https://github.com/LKremer/ggpointdensity)|6.921140939597329e-07| -|cran|[scattermore](https://github.com/exaexa/scattermore)|6.921140939597329e-07| -|cran|[sortable](https://rstudio.github.io/sortable/)|6.921140939597329e-07| -|cran|[BSDA](https://github.com/alanarnholt/BSDA)|6.921140939597329e-07| -|cran|[UNF](https://github.com/leeper/UNF)|6.921140939597329e-07| -|cran|[dplR](https://github.com/AndyBunn/dplR)|6.921140939597329e-07| -|cran|[lunar](http://statistics.lazaridis.eu)|6.921140939597329e-07| -|cran|[codemeta](https://github.com/cboettig/codemeta)|6.921140939597329e-07| +http://mongoc.org/ (upstream))|9.8576122672508e-07| +|cran|pbs|9.8576122672508e-07| +|cran|[keyATM](https://keyatm.github.io/keyATM/)|9.8576122672508e-07| +|cran|[irr](https://www.r-project.org)|9.8576122672508e-07| +|npm|[angular-toastr](https://github.com/Foxandxss/angular-toastr#readme)|9.8576122672508e-07| +|npm|[dialog-polyfill](https://github.com/GoogleChrome/dialog-polyfill)|9.8576122672508e-07| +|npm|[grunt-contrib-imagemin](https://github.com/gruntjs/grunt-contrib-imagemin#readme)|9.8576122672508e-07| +|npm|[material-design-lite](https://github.com/google/material-design-lite#readme)|9.8576122672508e-07| +|pypi|[django-filter](https://github.com/carltongibson/django-filter/tree/main)|9.186746987951836e-07| +|pypi|[lightkurve](https://docs.lightkurve.org)|9.036144578313322e-07| +|pypi|[k2sc](https://github.com/OxES/k2sc)|9.036144578313322e-07| +|pypi|[pyphe](https://github.com/Bahler-Lab/pyphe)|9.036144578313322e-07| +|pypi|[iScore](https://github.com/DeepRank/iScore)|9.036144578313322e-07| +|pypi|[deeprank](https://github.com/DeepRank/deeprank)|9.036144578313322e-07| +|pypi|[grpc4bmi](https://github.com/eWaterCycle/grpc4bmi)|9.036144578313322e-07| +|pypi|[cosmospectra](https://github.com/sambit-giri/cosmospectra.git)|9.036144578313322e-07| +|cran|rCAT|9.036144578313322e-07| +|cran|rje|9.036144578313322e-07| +|cran|[usefun](https://github.com/bblodfon/usefun)|9.036144578313322e-07| +|cran|[gdalUtilities](https://github.com/JoshOBrien/gdalUtilities/)|9.036144578313322e-07| +|cran|[strex](https://rorynolan.github.io/strex/)|9.036144578313322e-07| +|npm|[color-blend](https://github.com/Loilo/color-blend#readme)|9.036144578313322e-07| +|npm|[css-loader](https://github.com/webpack-contrib/css-loader)|8.94578313253012e-07| +|npm|[less-loader](https://github.com/webpack-contrib/less-loader)|8.94578313253012e-07| +|npm|[style-loader](https://github.com/webpack-contrib/style-loader)|8.94578313253012e-07| +|rubygems|[activerecord-jdbcmysql-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|8.674698795180734e-07| +|pypi|[geopy](https://github.com/geopy/geopy)|8.643419833178922e-07| +|pypi|[mcalf](https://github.com/ConorMacBride/mcalf/)|8.341056533827822e-07| +|cran|[repr](https://github.com/IRkernel/repr/)|8.341056533827822e-07| +|pypi|[healpy](http://github.com/healpy)|8.341056533827669e-07| +|pypi|[kalmus](https://github.com/KALMUS-Color-Toolkit/KALMUS)|8.341056533827669e-07| +|pypi|[transbigdata](https://github.com/ni1o1/transbigdata)|8.341056533827669e-07| +|pypi|[opencv-contrib-python-headless](https://github.com/skvark/opencv-python)|8.341056533827669e-07| +|pypi|[linuxdoc](https://github.com/return42/linuxdoc)|8.341056533827669e-07| +|cran|[pwr](https://github.com/heliosdrm/pwr)|8.341056533827669e-07| +|cran|[waiter](https://waiter.john-coene.com/)|8.341056533827669e-07| +|cran|[likert](http://jason.bryer.org/likert)|8.341056533827669e-07| +|cran|R2jags|8.341056533827669e-07| +|cran|[bib2df](https://github.com/ropensci/bib2df)|8.341056533827669e-07| +|cran|[plumber](https://www.rplumber.io)|8.341056533827669e-07| +|cran|[tictoc](https://github.com/collectivemedia/tictoc)|8.341056533827669e-07| +|npm|[aws-amplify](https://aws-amplify.github.io/)|8.341056533827619e-07| +|npm|[aws-amplify-react](https://github.com/aws-amplify/amplify-js#readme)|8.341056533827619e-07| +|pypi|[outcome](https://github.com/python-trio/outcome)|8.251290877796827e-07| +|npm|[cors](https://github.com/expressjs/cors#readme)|7.803943044906954e-07| +|pypi|[plotnine](https://github.com/has2k1/plotnine)|7.74526678141144e-07| +|pypi|[gitdb2](https://github.com/gitpython-developers/gitdb)|7.74526678141144e-07| +|pypi|[nibabel](https://nipy.org/nibabel)|7.74526678141144e-07| +|pypi|[smmap2](https://github.com/gitpython-developers/smmap)|7.74526678141144e-07| +|pypi|[kineticstoolkit](https://kineticstoolkit.uqam.ca)|7.74526678141144e-07| +|pypi|[cloudnetpy](https://github.com/actris-cloudnet/cloudnetpy)|7.74526678141144e-07| +|pypi|[cloudnetpy_qc](https://github.com/actris-cloudnet/cloudnetpy-qc)|7.74526678141144e-07| +|pypi|[rejected-article-tracker](https://github.com/sagepublishing/rejected_article_tracker_pkg)|7.74526678141144e-07| +|cran|[MultinomialCI](http://decsai.ugr.es/~pjvi)|7.74526678141144e-07| +|cran|[RcppEigen](http://dirk.eddelbuettel.com/code/rcpp.eigen.html)|7.74526678141144e-07| +|cran|[ggwordcloud](https://github.com/lepennec/ggwordcloud)|7.74526678141144e-07| +|cran|[akmedoids](https://cran.r-project.org/package=akmedoids)|7.74526678141144e-07| +|cran|[bestglm](http://www.stats.uwo.ca/faculty/aim)|7.74526678141144e-07| +|cran|[GGMncv](https://donaldrwilliams.github.io/GGMncv/)|7.74526678141144e-07| +|cran|[depmixS4](https://depmix.github.io/)|7.74526678141144e-07| +|cran|GeoLight|7.74526678141144e-07| +|cran|[outsider](https://github.com/ropensci/outsider#readme)|7.74526678141144e-07| +|cran|[anomalize](https://github.com/business-science/anomalize)|7.74526678141144e-07| +|cran|[shinyFiles](https://github.com/thomasp85/shinyFiles)|7.74526678141144e-07| +|npm|[cpx](https://github.com/mysticatea/cpx)|7.74526678141144e-07| +|npm|tls|7.74526678141144e-07| +|go|github.com/docker/distribution|7.595599790466213e-07| +|go|github.com/sirupsen/logrus|7.595599790466213e-07| +|go|golang.org/x/sync|7.595599790466213e-07| +|npm|[angular-cesium](https://github.com/articodeltd/angular-cesium#readme)|7.228915662650602e-07| +|npm|[angular2-uuid](https://github.com/wulfsolter/angular2-uuid#readme)|7.228915662650602e-07| +|npm|[cesium](http://cesium.com/cesiumjs/)|7.228915662650602e-07| +|pypi|[gobbli](https://github.com/RTIInternational/gobbli/)|7.228915662650535e-07| +|pypi|[pyrice](https://github.com/SouthGreenPlatform/PyRice)|7.228915662650535e-07| +|pypi|[trio-websocket](https://github.com/HyperionGray/trio-websocket)|7.228915662650535e-07| +|cran|[sjlabelled](https://strengejacke.github.io/sjlabelled/)|7.228915662650535e-07| +|cran|[qdapRegex](http://trinker.github.com/qdapRegex/)|7.228915662650535e-07| +|cran|[iotools](http://www.rforge.net/iotools)|7.228915662650535e-07| +|cran|[cmdfun](https://snystrom.github.io/cmdfun/)|7.228915662650535e-07| +|pypi|[pyvinecopulib](https://github.com/vinecopulib/pyvinecopulib/)|7.15662650602408e-07| +|cran|[biomartr](https://docs.ropensci.org/biomartr/)|6.777108433735029e-07| +|pypi|[django-tables2](https://github.com/jieter/django-tables2/)|6.777108433734953e-07| +|pypi|[diffeqpy](http://github.com/SciML/diffeqpy)|6.777108433734953e-07| +|pypi|[pebble](https://github.com/noxdafox/pebble)|6.777108433734953e-07| +|pypi|[qcg-pilotjob](http://github.com/vecma-project/QCG-PilotJob)|6.777108433734953e-07| +|pypi|[ymmsl](https://github.com/multiscale/ymmsl-python)|6.777108433734953e-07| +|pypi|[frites](https://github.com/brainets/frites)|6.777108433734953e-07| +|pypi|[keras-tuner](https://github.com/keras-team/keras-tuner)|6.777108433734953e-07| +|pypi|[pirecorder](https://github.com/jollejolles)|6.777108433734953e-07| +|pypi|[elmada](https://github.com/DrafProject/elmada)|6.777108433734953e-07| +|cran|[UNF](https://github.com/leeper/UNF)|6.777108433734953e-07| +|cran|[BSDA](https://github.com/alanarnholt/BSDA)|6.777108433734953e-07| +|cran|ggnewscale|6.777108433734953e-07| +|cran|[ggpointdensity](https://github.com/LKremer/ggpointdensity)|6.777108433734953e-07| +|cran|[scattermore](https://github.com/exaexa/scattermore)|6.777108433734953e-07| +|cran|[esquisse](https://dreamrs.github.io/esquisse/)|6.777108433734953e-07| +|cran|[ggnetwork](https://github.com/briatte/ggnetwork)|6.777108433734953e-07| +|cran|randomcoloR|6.777108433734953e-07| +|cran|[dplR](https://github.com/AndyBunn/dplR)|6.777108433734953e-07| +|cran|[lunar](http://statistics.lazaridis.eu)|6.777108433734953e-07| +|cran|[sortable](https://rstudio.github.io/sortable/)|6.777108433734953e-07| |cran|[rplos](https://docs.ropensci.org/rplos (website) -https://github.com/ropensci/rplos)|6.921140939597329e-07| -|cran|[microdemic](https://github.com/ropensci/microdemic (devel))|6.921140939597329e-07| -|cran|[aRxiv](https://docs.ropensci.org/aRxiv/)|6.921140939597329e-07| -|npm|[ng-bootstrap](https://github.com/valor-software/ngx-bootstrap#readme)|6.921140939597316e-07| -|go|github.com/davecgh/go-spew|6.638459293843011e-07| -|go|github.com/onsi/ginkgo|6.638459293843011e-07| -|go|github.com/onsi/gomega|6.638459293843011e-07| -|npm|[react-helmet](https://github.com/nfl/react-helmet#readme)|6.51401500197403e-07| -|npm|[root](https://github.com/mafintosh/root#readme)|6.514015001973953e-07| -|pypi|[trimesh](https://github.com/mikedh/trimesh)|6.514015001973953e-07| -|pypi|[meshcut](https://github.com/julienr/meshcut)|6.514015001973953e-07| -|pypi|[pygmsh](https://pypi.org/project/pygmsh)|6.514015001973953e-07| -|pypi|[pacopy](https://github.com/sigma-py/pacopy)|6.514015001973953e-07| -|pypi|[dmsh](https://pypi.org/project/dmsh)|6.514015001973953e-07| -|pypi|[glvis](https://github.com/glvis/pyglvis)|6.514015001973953e-07| -|cran|[leaflet.extras](https://github.com/bhaskarvk/leaflet.extras)|6.514015001973953e-07| -|cran|[slippymath](https://www.github.com/milesmcbain/slippymath)|6.514015001973953e-07| -|cran|[biwavelet](https://github.com/tgouhier/biwavelet)|6.514015001973874e-07| -|pypi|[tinydb-serialization](https://tinydb.readthedocs.org)|6.152125279642079e-07| -|pypi|[Flask-Script](http://github.com/smurfix/flask-script)|6.152125279642079e-07| -|pypi|[flask_bootstrap](http://github.com/mbr/flask-bootstrap)|6.152125279642079e-07| -|pypi|[flask-wtf](https://github.com/wtforms/flask-wtf/)|6.152125279642079e-07| -|pypi|[cellmlmanip](https://github.com/ModellingWebLab/cellmlmanip)|6.152125279642079e-07| -|pypi|[pymunk](http://www.pymunk.org)|6.152125279642079e-07| -|pypi|[Keras-Applications](https://github.com/keras-team/keras-applications)|6.152125279642079e-07| -|pypi|[Keras-Preprocessing](https://github.com/keras-team/keras-preprocessing)|6.152125279642079e-07| -|cran|[dataRetrieval](https://pubs.usgs.gov/tm/04/a10/)|6.152125279642079e-07| -|cran|[rnoaa](https://docs.ropensci.org/rnoaa/ (docs))|6.152125279642079e-07| -|cran|[uwot](https://github.com/jlmelville/uwot)|6.152125279642079e-07| -|cran|[fossil](http://matthewvavrek.com/programs-and-code/fossil/)|6.152125279642079e-07| -|cran|[FedData](https://github.com/ropensci/FedData)|6.152125279642079e-07| -|cran|minpack.lm|6.152125279642079e-07| -|cran|smoother|6.152125279642079e-07| -|cran|[ptw](https://github.com/rwehrens/ptw)|6.152125279642079e-07| -|go|github.com/bradfitz/gomemcache|6.152125279642058e-07| -|go|github.com/docker/libtrust|6.152125279642058e-07| -|go|github.com/phayes/permbits|6.152125279642058e-07| -|go|github.com/spf13/afero|6.152125279642058e-07| -|go|github.com/spf13/viper|6.152125279642058e-07| -|go|github.com/sylabs/sif|6.152125279642058e-07| -|go|github.com/vmihailenco/msgpack|6.152125279642058e-07| -|go|google.golang.org/appengine|6.152125279642058e-07| -|cran|[longitudinalData](http:www.r-project.org)|6.090604026845674e-07| -|pypi|[sos-bash](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[sos-matlab](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[sos-sas](https://github.com/vatlab/sos-sas)|5.828329212292504e-07| -|pypi|[sos-julia](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[sos-javascript](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[sos-r](https://github.com/vatlab/SOS)|5.828329212292504e-07| -|pypi|[chart-studio](https://plot.ly/python/)|5.828329212292504e-07| -|pypi|[markov-clustering](https://github.com/guyallard/markov_clustering.git)|5.828329212292504e-07| -|cran|[rvcheck](https://github.com/GuangchuangYu/rvcheck)|5.828329212292504e-07| -|cran|[turner](http://www.gastonsanchez.com)|5.828329212292504e-07| -|cran|[shinyjqui](https://github.com/yang-tang/shinyjqui)|5.828329212292504e-07| -|cran|[blocksdesign]()|5.828329212292504e-07| -|cran|shinyhelper|5.828329212292504e-07| -|cran|[bsplus](https://github.com/ijlyttle/bsplus)|5.828329212292504e-07| +https://github.com/ropensci/rplos)|6.777108433734953e-07| +|cran|[microdemic](https://github.com/ropensci/microdemic (devel))|6.777108433734953e-07| +|cran|[aRxiv](https://docs.ropensci.org/aRxiv/)|6.777108433734953e-07| +|cran|[codemeta](https://github.com/cboettig/codemeta)|6.777108433734953e-07| +|cran|[osmextract](https://docs.ropensci.org/osmextract/)|6.777108433734953e-07| +|cran|[smoothr](https://strimas.com/smoothr/)|6.777108433734953e-07| +|npm|express-flash|6.777108433734953e-07| +|npm|[passport-local](https://www.passportjs.org/packages/passport-local/?utm_source=github&utm_medium=referral&utm_campaign=passport-local)|6.777108433734953e-07| +|npm|[ng-bootstrap](https://github.com/valor-software/ngx-bootstrap#readme)|6.77710843373494e-07| +|pypi|[plato-draw](https://plato-draw.readthedocs.io/)|6.709337349397555e-07| +|go|github.com/davecgh/go-spew|6.500309538549455e-07| +|go|github.com/onsi/ginkgo|6.500309538549455e-07| +|go|github.com/onsi/gomega|6.500309538549455e-07| +|npm|[react-helmet](https://github.com/nfl/react-helmet#readme)|6.378454996456498e-07| +|pypi|[WRFpy](https://github.com/ERA-URBAN/wrfpy)|6.378454996456422e-07| +|pypi|[pygmsh](https://pypi.org/project/pygmsh)|6.378454996456422e-07| +|pypi|[pacopy](https://github.com/sigma-py/pacopy)|6.378454996456422e-07| +|pypi|[dmsh](https://pypi.org/project/dmsh)|6.378454996456422e-07| +|pypi|[glvis](https://github.com/glvis/pyglvis)|6.378454996456422e-07| +|pypi|[simsopt](https://github.com/hiddenSymmetries/simsopt)|6.378454996456422e-07| +|cran|[leaflet.extras](https://github.com/bhaskarvk/leaflet.extras)|6.378454996456422e-07| +|cran|[slippymath](https://www.github.com/milesmcbain/slippymath)|6.378454996456422e-07| +|npm|[root](https://github.com/mafintosh/root#readme)|6.378454996456422e-07| +|pypi|[pylustrator](https://github.com/rgerum/pylustrator)|6.378454996456346e-07| +|cran|[biwavelet](https://github.com/tgouhier/biwavelet)|6.378454996456346e-07| +|pypi|[Keras-Applications](https://github.com/keras-team/keras-applications)|6.024096385542189e-07| +|pypi|[Keras-Preprocessing](https://github.com/keras-team/keras-preprocessing)|6.024096385542189e-07| +|pypi|[pymunk](http://www.pymunk.org)|6.024096385542189e-07| +|pypi|[TRUNAJOD](https://github.com/dpalmasan/TRUNAJOD2.0)|6.024096385542189e-07| +|pypi|[cellmlmanip](https://github.com/ModellingWebLab/cellmlmanip)|6.024096385542189e-07| +|cran|[FedData](https://github.com/ropensci/FedData)|6.024096385542189e-07| +|cran|[uwot](https://github.com/jlmelville/uwot)|6.024096385542189e-07| +|cran|[fossil](http://matthewvavrek.com/programs-and-code/fossil/)|6.024096385542189e-07| +|cran|minpack.lm|6.024096385542189e-07| +|cran|smoother|6.024096385542189e-07| +|cran|[ptw](https://github.com/rwehrens/ptw)|6.024096385542189e-07| +|cran|[dataRetrieval](https://pubs.usgs.gov/tm/04/a10/)|6.024096385542189e-07| +|cran|[rnoaa](https://docs.ropensci.org/rnoaa/ (docs))|6.024096385542189e-07| +|npm|[nunjucks](https://github.com/mozilla/nunjucks#readme)|6.024096385542189e-07| +|npm|[xml-js](https://github.com/nashwaan/xml-js#readme)|6.024096385542189e-07| +|go|github.com/bradfitz/gomemcache|6.024096385542169e-07| +|go|github.com/docker/libtrust|6.024096385542169e-07| +|go|github.com/phayes/permbits|6.024096385542169e-07| +|go|github.com/spf13/afero|6.024096385542169e-07| +|go|github.com/spf13/viper|6.024096385542169e-07| +|go|github.com/sylabs/sif|6.024096385542169e-07| +|go|github.com/vmihailenco/msgpack|6.024096385542169e-07| +|go|google.golang.org/appengine|6.024096385542169e-07| +|cran|[longitudinalData](http:www.r-project.org)|5.963855421686783e-07| +|pypi|[sos-bash](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-matlab](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-sas](https://github.com/vatlab/sos-sas)|5.707038681039977e-07| +|pypi|[sos-julia](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-javascript](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-r](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[qmctorch](https://github.com/NLESC-JCER/QMCTorch)|5.707038681039977e-07| +|pypi|[chart-studio](https://plot.ly/python/)|5.707038681039977e-07| +|pypi|[markov-clustering](https://github.com/guyallard/markov_clustering.git)|5.707038681039977e-07| +|cran|[rvcheck](https://github.com/GuangchuangYu/rvcheck)|5.707038681039977e-07| |cran|[nabor](https://github.com/jefferis/nabor -https://github.com/ethz-asl/libnabo)|5.828329212292504e-07| -|pypi|[ratelimiter](https://github.com/RazerM/ratelimiter)|5.536912751677879e-07| -|pypi|[yte](https://github.com/koesterlab/yte)|5.536912751677879e-07| -|pypi|[retry](https://github.com/invl/retry)|5.536912751677879e-07| -|cran|[sensitivity](NA)|5.536912751677879e-07| -|cran|[EasyABC](http://easyabc.r-forge.r-project.org/)|5.536912751677879e-07| -|cran|[summarytools](https://github.com/dcomtois/summarytools)|5.273250239693222e-07| -|cran|[pastecs](https://github.com/phgrosjean/pastecs)|5.273250239693222e-07| -|cran|[desplot](https://kwstat.github.io/desplot/)|5.273250239693222e-07| -|cran|[agricolae](http://tarwi.lamolina.edu.pe/~fmendiburu)|5.273250239693222e-07| -|cran|PairedData|5.273250239693222e-07| -|go|github.com/antchfx/jsonquery|5.033557046979866e-07| -|go|github.com/bhmj/jsonslice|5.033557046979866e-07| -|go|github.com/codegangsta/negroni|5.033557046979866e-07| -|go|github.com/evanphx/json-patch/v5|5.033557046979866e-07| -|go|github.com/gorilla/context|5.033557046979866e-07| -|go|github.com/grandcat/zeroconf|5.033557046979866e-07| -|go|github.com/justinas/alice|5.033557046979866e-07| -|go|github.com/kelseyhightower/envconfig|5.033557046979866e-07| -|go|github.com/linksmart/go-sec|5.033557046979866e-07| -|go|github.com/linksmart/service-catalog/v3|5.033557046979866e-07| -|go|github.com/miekg/dns|5.033557046979866e-07| -|go|github.com/rs/cors|5.033557046979866e-07| -|go|github.com/satori/go.uuid|5.033557046979866e-07| -|go|github.com/syndtr/goleveldb|5.033557046979866e-07| -|go|github.com/xeipuuv/gojsonschema|5.033557046979866e-07| -|pypi|[duecredit](https://github.com/duecredit/duecredit)|5.033557046979855e-07| -|pypi|[GromacsWrapper](https://github.com/Becksteinlab/GromacsWrapper)|5.033557046979855e-07| -|pypi|[heat](https://github.com/helmholtz-analytics/heat)|5.033557046979855e-07| -|cran|harmonicmeanp|5.033557046979855e-07| -|cran|NBPSeq|5.033557046979855e-07| -|cran|[rmdformats](https://github.com/juba/rmdformats)|5.033557046979855e-07| -|pypi|[typing-utils](https://github.com/bojiang/typing_utils)|4.983221476510083e-07| -|cran|[dams](https://github.com/jsta/dams)|4.814706740589413e-07| -|cran|[reservoir](https://cran.r-project.org/package=reservoir)|4.814706740589413e-07| -|cran|[DescTools](https://andrisignorell.github.io/DescTools/)|4.814706740589413e-07| -|cran|[coloc](https://github.com/chr1swallace/coloc)|4.814706740589413e-07| -|npm|[bcryptjs](https://github.com/dcodeIO/bcrypt.js#readme)|4.614093959731579e-07| -|npm|[hypertimer](https://github.com/enmasseio/hypertimer#readme)|4.614093959731579e-07| -|npm|[jwt-simple](https://github.com/hokaccha/node-jwt-simple#readme)|4.614093959731579e-07| -|npm|[kafka-node](https://github.com/SOHU-Co/kafka-node#readme)|4.614093959731579e-07| -|npm|[mqtt-router](https://github.com/wolfeidau/mqtt-router)|4.614093959731579e-07| -|pypi|[PyQt6](https://www.riverbankcomputing.com/software/pyqt/)|4.614093959731579e-07| -|pypi|[Pyside6](https://www.pyside.org)|4.614093959731579e-07| -|pypi|[pyqtgraph](http://www.pyqtgraph.org)|4.614093959731579e-07| -|pypi|[PyQtWebEngine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.614093959731579e-07| -|cran|[ucminf](NA)|4.567953020134256e-07| -|pypi|[pyrfc3339](https://github.com/kurtraschke/pyRFC3339)|4.5222734899328963e-07| -|rubygems|[net-ldap](http://github.com/ruby-ldap/ruby-net-ldap)|4.4295302013423654e-07| -|pypi|[applaunchservices](https://github.com/impact27/applaunchservices)|4.4295302013422876e-07| -|pypi|[python-lsp-black](https://github.com/python-lsp/python-lsp-black)|4.4295302013422876e-07| -|pypi|[pyls-spyder](https://github.com/spyder-ide/pyls-spyder)|4.4295302013422876e-07| -|pypi|[pyqtwebengine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.4295302013422876e-07| -|rubygems|[rack-openid](https://github.com/grosser/rack-openid)|4.4295302013422876e-07| -|rubygems|[activerecord-jdbcpostgresql-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|4.4295302013422876e-07| -|rubygems|[activerecord-jdbcsqlite3-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|4.4295302013422876e-07| -|rubygems|[tiny_tds](http://github.com/rails-sqlserver/tiny_tds)|4.4295302013422876e-07| -|rubygems|[shoulda](https://github.com/thoughtbot/shoulda)|4.4295302013422876e-07| -|rubygems|[capybara](https://github.com/teamcapybara/capybara)|4.4295302013422876e-07| -|pypi|[amqp](http://github.com/celery/py-amqp)|4.276156613578519e-07| -|pypi|[empyre](https://iffgit.fz-juelich.de/empyre/empyre)|4.259163655136913e-07| -|npm|[benchmark](https://benchmarkjs.com/)|4.259163655136836e-07| -|npm|[binary-split](https://github.com/maxogden/binary-split#readme)|4.259163655136836e-07| -|npm|[download](https://github.com/kevva/download#readme)|4.259163655136836e-07| -|npm|[ftp](https://github.com/mscdex/node-ftp)|4.259163655136836e-07| -|npm|[ndjson](https://github.com/ndjson/ndjson.js)|4.259163655136836e-07| -|npm|pipeline|4.259163655136836e-07| -|pypi|[ncempy](https://github.com/ercius/openNCEM)|4.259163655136836e-07| -|pypi|[fspath](https://github.com/return42/fspath)|4.216572018585473e-07| -|go|github.com/containernetworking/cni|4.180210503457495e-07| -|go|github.com/containernetworking/plugins|4.180210503457495e-07| -|go|github.com/containers/common|4.180210503457495e-07| -|go|github.com/containers/image/v5|4.180210503457495e-07| -|go|github.com/cyphar/filepath-securejoin|4.180210503457495e-07| -|go|github.com/docker/docker|4.180210503457495e-07| -|go|github.com/google/uuid|4.180210503457495e-07| -|go|github.com/moby/term|4.180210503457495e-07| -|go|github.com/opencontainers/runc|4.180210503457495e-07| -|go|github.com/opencontainers/runtime-spec|4.180210503457495e-07| -|go|github.com/opencontainers/runtime-tools|4.180210503457495e-07| -|go|github.com/opencontainers/selinux|4.180210503457495e-07| -|go|github.com/pkg/errors|4.180210503457495e-07| -|go|github.com/spf13/pflag|4.180210503457495e-07| -|go|gopkg.in/yaml.v2|4.180210503457495e-07| -|npm|[filesaver](https://github.com/jacoborus/node-filesaver)|4.101416853094719e-07| -|cran|[audio](http://www.rforge.net/audio/)|3.915388302972175e-07| -|pypi|[sphinxcontrib-spelling](https://github.com/sphinx-contrib/spelling)|3.572201775276051e-07| -|pypi|[yatiml](https://github.com/yatiml/yatiml)|3.425964765100692e-07| -|pypi|[nixio](https://github.com/G-Node/nixpy)|3.425964765100692e-07| -|npm|[d3-v4-grid](https://github.com/finnfiddle/d3-v4-grid#readme)|3.3557046979865957e-07| -|npm|[errorhandler](https://github.com/expressjs/errorhandler#readme)|3.3557046979865957e-07| -|npm|[parallelshell](https://github.com/darkguy2008/parallelshell)|3.3557046979865957e-07| -|npm|[save-svg-as-png](https://github.com/exupero/saveSvgAsPng)|3.3557046979865957e-07| -|npm|[url](https://github.com/defunctzombie/node-url#readme)|3.3557046979865957e-07| -|npm|[method-override](https://github.com/expressjs/method-override#readme)|3.355704697986557e-07| -|npm|[dedent](https://github.com/dmnd/dedent)|3.132310642377771e-07| -|pypi|[tox-pyenv](https://github.com/samstav/tox-pyenv)|3.045302013422837e-07| -|npm|[jsx-to-string](https://github.com/alansouzati/jsx-to-string#readme)|2.914164606146252e-07| -|npm|[pretty-checkbox](https://lokesh-coder.github.io/pretty-checkbox)|2.914164606146252e-07| -|pypi|[convertdate](https://github.com/fitnr/convertdate)|2.74077181208053e-07| -|go|github.com/Netflix/go-expect|2.57530825659435e-07| -|go|github.com/ProtonMail/go-crypto|2.57530825659435e-07| -|go|github.com/adigunhammedolalekan/registry-auth|2.57530825659435e-07| -|go|github.com/apex/log|2.57530825659435e-07| -|go|github.com/blang/semver/v4|2.57530825659435e-07| -|go|github.com/buger/jsonparser|2.57530825659435e-07| -|go|github.com/containerd/containerd|2.57530825659435e-07| -|go|github.com/fatih/color|2.57530825659435e-07| -|go|github.com/go-log/log|2.57530825659435e-07| -|go|github.com/gosimple/slug|2.57530825659435e-07| -|go|github.com/opencontainers/umoci|2.57530825659435e-07| -|go|github.com/pelletier/go-toml|2.57530825659435e-07| -|go|github.com/seccomp/libseccomp-golang|2.57530825659435e-07| -|go|github.com/sylabs/json-resp|2.57530825659435e-07| -|go|github.com/sylabs/scs-build-client|2.57530825659435e-07| -|go|github.com/sylabs/scs-key-client|2.57530825659435e-07| -|go|github.com/sylabs/scs-library-client|2.57530825659435e-07| -|go|github.com/sylabs/sif/v2|2.57530825659435e-07| -|go|github.com/vbauerster/mpb/v4|2.57530825659435e-07| -|go|github.com/vbauerster/mpb/v6|2.57530825659435e-07| -|go|golang.org/x/term|2.57530825659435e-07| -|go|gotest.tools/v3|2.57530825659435e-07| -|go|mvdan.cc/sh/v3|2.57530825659435e-07| -|go|oras.land/oras-go|2.57530825659435e-07| -|pypi|[spacy-transformers](https://spacy.io)|2.549555174028418e-07| -|pypi|[django-datatables-view](https://bitbucket.org/pigletto/django-datatables-view)|2.460850111856839e-07| -|pypi|[django-dirtyfields](https://github.com/romgar/django-dirtyfields)|2.460850111856839e-07| -|pypi|[django-guardian](http://github.com/django-guardian/django-guardian)|2.460850111856839e-07| -|pypi|[django-notifications-hq](http://github.com/django-notifications/django-notifications)|2.460850111856839e-07| -|pypi|[django-rq](https://github.com/rq/django-rq)|2.460850111856839e-07| -|pypi|[django-user-agents](https://github.com/selwin/django-user_agents)|2.460850111856839e-07| -|pypi|[google](http://breakingcode.wordpress.com/)|2.460850111856839e-07| -|rubygems|[coffee-rails](https://github.com/rails/coffee-rails)|2.2599643884399465e-07| -|rubygems|[fastimage](http://github.com/sdsykes/fastimage)|2.2599643884399465e-07| -|rubygems|[image_processing](https://github.com/janko/image_processing)|2.2599643884399465e-07| -|rubygems|[jquery-rails](https://github.com/rails/jquery-rails)|2.2599643884399465e-07| -|rubygems|[rotp](https://github.com/mdp/rotp)|2.2599643884399465e-07| -|rubygems|[sass-rails](https://github.com/rails/sass-rails)|2.2599643884399465e-07| -|rubygems|[tzinfo-data](https://tzinfo.github.io)|2.2599643884399465e-07| -|rubygems|[reverse_markdown](http://github.com/xijo/reverse_markdown)|2.2599643884399465e-07| -|rubygems|[groupdate](https://github.com/ankane/groupdate)|2.2599643884399465e-07| -|rubygems|[diffy](http://github.com/samg/diffy)|2.2599643884399465e-07| -|rubygems|[jbuilder](https://github.com/rails/jbuilder)|2.2599643884399465e-07| -|rubygems|[rqrcode](https://github.com/whomwah/rqrcode)|2.2599643884399465e-07| -|rubygems|[will_paginate-bootstrap](https://github.com/bootstrap-ruby/will_paginate-bootstrap)|2.2599643884399465e-07| -|rubygems|[aws-sdk-s3](https://github.com/aws/aws-sdk-ruby)|2.2599643884399465e-07| -|rubygems|[whenever](https://github.com/javan/whenever)|2.2599643884399465e-07| -|rubygems|[flamegraph](https://github.com/SamSaffron/flamegraph)|2.2599643884399465e-07| -|rubygems|[rack-mini-profiler](https://miniprofiler.com)|2.2599643884399465e-07| -|rubygems|[thwait](https://github.com/ruby/thwait)|2.2599643884399465e-07| -|rubygems|[rmagick](https://github.com/rmagick/rmagick)|2.2599643884399465e-07| -|rubygems|[minitest-ci](https://github.com/circleci/minitest-ci)|2.2599643884399465e-07| -|rubygems|[spring](https://github.com/rails/spring)|2.2599643884399465e-07| -|rubygems|[web-console](https://github.com/rails/web-console)|2.2599643884399465e-07| -|rubygems|[counter_culture](https://github.com/magnusvk/counter_culture)|2.2599643884399078e-07| -|rubygems|[rails-html-sanitizer](https://github.com/rails/rails-html-sanitizer)|2.2599643884399078e-07| -|rubygems|[devise](https://github.com/heartcombo/devise)|2.2599643884399078e-07| -|rubygems|[omniauth](https://github.com/omniauth/omniauth)|2.2599643884399078e-07| -|rubygems|[premailer-rails](https://github.com/fphilipe/premailer-rails)|2.2599643884399078e-07| -|rubygems|[rails-controller-testing](https://github.com/rails/rails-controller-testing)|2.2599643884399078e-07| -|rubygems|[letter_opener_web](https://github.com/fgrehm/letter_opener_web)|2.2599643884399078e-07| -|cran|[enviPick](NA)|2.2147651006711438e-07| -|npm|[abbrev](https://github.com/isaacs/abbrev-js#readme)|1.8769195768399622e-07| -|npm|[aproba](https://github.com/iarna/aproba)|1.8769195768399622e-07| -|npm|[chownr](https://github.com/isaacs/chownr#readme)|1.8769195768399622e-07| -|npm|concat-map|1.8769195768399622e-07| -|npm|[console-control-strings](https://github.com/iarna/console-control-strings#readme)|1.8769195768399622e-07| -|npm|[deep-extend](https://github.com/unclechu/node-deep-extend)|1.8769195768399622e-07| -|pypi|[pytest-param-files](https://pypi.org/project/pytest-param-files)|1.661073825503348e-07| -|go|github.com/BurntSushi/toml|1.6049022468631456e-07| -|go|github.com/blang/semver|1.6049022468631456e-07| -|go|github.com/buger/goterm|1.6049022468631456e-07| -|go|github.com/checkpoint-restore/checkpointctl|1.6049022468631456e-07| -|go|github.com/checkpoint-restore/go-criu/v5|1.6049022468631456e-07| -|go|github.com/container-orchestrated-devices/container-device-interface|1.6049022468631456e-07| -|go|github.com/containers/buildah|1.6049022468631456e-07| -|go|github.com/containers/conmon|1.6049022468631456e-07| -|go|github.com/containers/ocicrypt|1.6049022468631456e-07| -|go|github.com/containers/psgo|1.6049022468631456e-07| -|go|github.com/containers/storage|1.6049022468631456e-07| -|go|github.com/coreos/go-systemd/v22|1.6049022468631456e-07| -|go|github.com/coreos/stream-metadata-go|1.6049022468631456e-07| -|go|github.com/digitalocean/go-qemu|1.6049022468631456e-07| -|go|github.com/docker/go-connections|1.6049022468631456e-07| -|go|github.com/docker/go-plugins-helpers|1.6049022468631456e-07| -|go|github.com/docker/go-units|1.6049022468631456e-07| -|go|github.com/dtylman/scp|1.6049022468631456e-07| -|go|github.com/fsnotify/fsnotify|1.6049022468631456e-07| -|go|github.com/ghodss/yaml|1.6049022468631456e-07| -|go|github.com/godbus/dbus/v5|1.6049022468631456e-07| -|go|github.com/google/gofuzz|1.6049022468631456e-07| -|go|github.com/google/shlex|1.6049022468631456e-07| -|go|github.com/gorilla/handlers|1.6049022468631456e-07| -|go|github.com/gorilla/schema|1.6049022468631456e-07| -|go|github.com/hashicorp/go-multierror|1.6049022468631456e-07| -|go|github.com/json-iterator/go|1.6049022468631456e-07| -|go|github.com/mattn/go-isatty|1.6049022468631456e-07| -|go|github.com/mrunalp/fileutils|1.6049022468631456e-07| -|go|github.com/nxadm/tail|1.6049022468631456e-07| -|go|github.com/pmezard/go-difflib|1.6049022468631456e-07| -|go|github.com/rootless-containers/rootlesskit|1.6049022468631456e-07| -|go|github.com/stretchr/testify|1.6049022468631456e-07| -|go|github.com/syndtr/gocapability|1.6049022468631456e-07| -|go|github.com/uber/jaeger-client-go|1.6049022468631456e-07| -|go|github.com/ulikunitz/xz|1.6049022468631456e-07| -|go|github.com/vbauerster/mpb/v7|1.6049022468631456e-07| -|go|github.com/vishvananda/netlink|1.6049022468631456e-07| -|go|go.etcd.io/bbolt|1.6049022468631456e-07| -|go|golang.org/x/text|1.6049022468631456e-07| -|go|google.golang.org/protobuf|1.6049022468631456e-07| -|go|gopkg.in/inf.v0|1.6049022468631456e-07| -|pypi|[scikit-misc](https://github.com/has2k1/scikit-misc)|1.5661553211888854e-07| -|pypi|[django-timezone-field](https://github.com/mfogel/django-timezone-field/)|1.5596937328669952e-07| -|pypi|[firebase-admin](https://firebase.google.com/docs/admin/setup/)|1.5596937328669952e-07| -|pypi|[sphinx-click](https://github.com/stephenfin/sphinx-click)|1.5226510067114186e-07| -|pypi|[watermark](https://github.com/rasbt/watermark)|1.0963087248322238e-07| -|npm|text-table|1.0541430046463682e-07| -|npm|[utfx](https://github.com/dcodeIO/utfx)|9.135906040268434e-08| -|pypi|[xattr](http://github.com/xattr/xattr)|7.027620030975756e-08| -|pypi|[skia-pathops](https://github.com/fonttools/skia-pathops)|7.027620030975756e-08| -|pypi|[zopfli](https://github.com/fonttools/py-zopfli)|7.027620030975756e-08| -|cran|[uroot](https://jalobe.com)|6.809370961690815e-08| -|pypi|[sphinx-toggleprompt](https://github.com/jurasofish/sphinx-toggleprompt)|4.894235378715219e-08| -|npm|[babel-plugin-transform-remove-undefined](https://github.com/babel/minify#readme)|1.6853193130184607e-08| -|npm|[babel-plugin-transform-property-literals](https://github.com/babel/minify#readme)|1.6853193130184607e-08| -|npm|[babel-plugin-minify-type-constructors](https://github.com/babel/minify#readme)|1.6853193130184607e-08| +https://github.com/ethz-asl/libnabo)|5.707038681039977e-07| +|cran|shinyhelper|5.707038681039977e-07| +|cran|[bsplus](https://github.com/ijlyttle/bsplus)|5.707038681039977e-07| +|cran|[turner](http://www.gastonsanchez.com)|5.707038681039977e-07| +|cran|[shinyjqui](https://github.com/yang-tang/shinyjqui)|5.707038681039977e-07| +|cran|[blocksdesign]()|5.707038681039977e-07| +|cran|[sensitivity](NA)|5.421686746987978e-07| +|cran|[EasyABC](http://easyabc.r-forge.r-project.org/)|5.421686746987978e-07| +|pypi|[rsudp](https://github.com/raspishake/rsudp)|5.163511187607602e-07| +|cran|[summarytools](https://github.com/dcomtois/summarytools)|5.163511187607602e-07| +|cran|[pastecs](https://github.com/phgrosjean/pastecs)|5.163511187607602e-07| +|cran|[desplot](https://kwstat.github.io/desplot/)|5.163511187607602e-07| +|cran|[agricolae](http://tarwi.lamolina.edu.pe/~fmendiburu)|5.163511187607602e-07| +|cran|PairedData|5.163511187607602e-07| +|go|github.com/antchfx/jsonquery|4.928806133625411e-07| +|go|github.com/bhmj/jsonslice|4.928806133625411e-07| +|go|github.com/codegangsta/negroni|4.928806133625411e-07| +|go|github.com/evanphx/json-patch/v5|4.928806133625411e-07| +|go|github.com/gorilla/context|4.928806133625411e-07| +|go|github.com/grandcat/zeroconf|4.928806133625411e-07| +|go|github.com/justinas/alice|4.928806133625411e-07| +|go|github.com/kelseyhightower/envconfig|4.928806133625411e-07| +|go|github.com/linksmart/go-sec|4.928806133625411e-07| +|go|github.com/linksmart/service-catalog/v3|4.928806133625411e-07| +|go|github.com/miekg/dns|4.928806133625411e-07| +|go|github.com/rs/cors|4.928806133625411e-07| +|go|github.com/satori/go.uuid|4.928806133625411e-07| +|go|github.com/syndtr/goleveldb|4.928806133625411e-07| +|go|github.com/xeipuuv/gojsonschema|4.928806133625411e-07| +|pypi|[starry-process](https://github.com/rodluger/starry_process)|4.9288061336254e-07| +|cran|harmonicmeanp|4.9288061336254e-07| +|cran|NBPSeq|4.9288061336254e-07| +|cran|[rmdformats](https://github.com/juba/rmdformats)|4.9288061336254e-07| +|pypi|[typing-utils](https://github.com/bojiang/typing_utils)|4.879518072289172e-07| +|cran|[DescTools](https://andrisignorell.github.io/DescTools/)|4.7145102147721085e-07| +|cran|[coloc](https://github.com/chr1swallace/coloc)|4.7145102147721085e-07| +|cran|[dams](https://github.com/jsta/dams)|4.7145102147721085e-07| +|cran|[reservoir](https://cran.r-project.org/package=reservoir)|4.7145102147721085e-07| +|pypi|[yte](https://github.com/koesterlab/yte)|4.518072289156661e-07| +|pypi|[ratelimiter](https://github.com/RazerM/ratelimiter)|4.518072289156661e-07| +|pypi|[retry](https://github.com/invl/retry)|4.518072289156661e-07| +|pypi|[swiftemulator](https://github.com/SWIFTSIM/emulator)|4.518072289156661e-07| +|pypi|[PyQt6](https://www.riverbankcomputing.com/software/pyqt/)|4.518072289156661e-07| +|pypi|[Pyside6](https://www.pyside.org)|4.518072289156661e-07| +|pypi|[pyqtgraph](http://www.pyqtgraph.org)|4.518072289156661e-07| +|pypi|[PyQtWebEngine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.518072289156661e-07| +|npm|[bcryptjs](https://github.com/dcodeIO/bcrypt.js#readme)|4.518072289156661e-07| +|npm|[hypertimer](https://github.com/enmasseio/hypertimer#readme)|4.518072289156661e-07| +|npm|[jwt-simple](https://github.com/hokaccha/node-jwt-simple#readme)|4.518072289156661e-07| +|npm|[kafka-node](https://github.com/SOHU-Co/kafka-node#readme)|4.518072289156661e-07| +|npm|[mqtt-router](https://github.com/wolfeidau/mqtt-router)|4.518072289156661e-07| +|cran|[ucminf](NA)|4.4728915662650875e-07| +|pypi|[empyre](https://iffgit.fz-juelich.de/empyre/empyre)|4.337349397590443e-07| +|rubygems|[net-ldap](http://github.com/ruby-ldap/ruby-net-ldap)|4.337349397590443e-07| +|pypi|[applaunchservices](https://github.com/impact27/applaunchservices)|4.337349397590367e-07| +|pypi|[python-lsp-black](https://github.com/python-lsp/python-lsp-black)|4.337349397590367e-07| +|pypi|[pyls-spyder](https://github.com/spyder-ide/pyls-spyder)|4.337349397590367e-07| +|pypi|[pyqtwebengine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.337349397590367e-07| +|pypi|[ncempy](https://github.com/ercius/openNCEM)|4.337349397590367e-07| +|pypi|[atlite](https://github.com/PyPSA/atlite)|4.337349397590367e-07| +|rubygems|[i18n](https://github.com/ruby-i18n/i18n)|4.337349397590367e-07| +|rubygems|[rack-openid](https://github.com/grosser/rack-openid)|4.337349397590367e-07| +|rubygems|[activerecord-jdbcpostgresql-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|4.337349397590367e-07| +|rubygems|[activerecord-jdbcsqlite3-adapter](https://github.com/jruby/activerecord-jdbc-adapter)|4.337349397590367e-07| +|rubygems|[tiny_tds](http://github.com/rails-sqlserver/tiny_tds)|4.337349397590367e-07| +|rubygems|[shoulda](https://github.com/thoughtbot/shoulda)|4.337349397590367e-07| +|rubygems|[capybara](https://github.com/teamcapybara/capybara)|4.337349397590367e-07| +|pypi|[amqp](http://github.com/celery/py-amqp)|4.187167593142602e-07| +|pypi|[python-box](https://github.com/cdgriffith/Box)|4.1705282669138347e-07| +|npm|[benchmark](https://benchmarkjs.com/)|4.1705282669138347e-07| +|npm|[binary-split](https://github.com/maxogden/binary-split#readme)|4.1705282669138347e-07| +|npm|[download](https://github.com/kevva/download#readme)|4.1705282669138347e-07| +|npm|[ftp](https://github.com/mscdex/node-ftp)|4.1705282669138347e-07| +|npm|[ndjson](https://github.com/ndjson/ndjson.js)|4.1705282669138347e-07| +|npm|pipeline|4.1705282669138347e-07| +|pypi|[fspath](https://github.com/return42/fspath)|4.128822984244702e-07| +|go|github.com/containernetworking/cni|4.0932181709649515e-07| +|go|github.com/containernetworking/plugins|4.0932181709649515e-07| +|go|github.com/containers/common|4.0932181709649515e-07| +|go|github.com/containers/image/v5|4.0932181709649515e-07| +|go|github.com/cyphar/filepath-securejoin|4.0932181709649515e-07| +|go|github.com/docker/docker|4.0932181709649515e-07| +|go|github.com/google/uuid|4.0932181709649515e-07| +|go|github.com/moby/term|4.0932181709649515e-07| +|go|github.com/opencontainers/runc|4.0932181709649515e-07| +|go|github.com/opencontainers/runtime-spec|4.0932181709649515e-07| +|go|github.com/opencontainers/runtime-tools|4.0932181709649515e-07| +|go|github.com/opencontainers/selinux|4.0932181709649515e-07| +|go|github.com/pkg/errors|4.0932181709649515e-07| +|go|github.com/spf13/pflag|4.0932181709649515e-07| +|go|gopkg.in/yaml.v2|4.0932181709649515e-07| +|pypi|[geobo](https://github.com/sebhaan/geobo)|4.0160642570281263e-07| +|pypi|[scikit_image](https://scikit-image.org)|4.0160642570281263e-07| +|npm|[filesaver](https://github.com/jacoborus/node-filesaver)|4.0160642570281263e-07| +|pypi|[webargs](https://github.com/marshmallow-code/webargs)|3.87263339070572e-07| +|pypi|[flask-cors](https://github.com/corydolphin/flask-cors)|3.87263339070572e-07| +|pypi|[flask-migrate](https://github.com/miguelgrinberg/flask-migrate)|3.87263339070572e-07| +|pypi|[flask-sqlalchemy](https://github.com/pallets/flask-sqlalchemy)|3.87263339070572e-07| +|pypi|[sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils)|3.87263339070572e-07| +|npm|[zeit](https://github.com/daviddenton/zeit#readme)|3.87263339070572e-07| +|cran|[audio](http://www.rforge.net/audio/)|3.833907056798603e-07| +|pypi|[epimargin](https://github.com/COVID-IWG/epimargin)|3.739094308267568e-07| +|npm|[sendgrid](https://sendgrid.com)|3.675719828466432e-07| +|npm|[stoplight](https://github.com/andrewhao/stoplight)|3.675719828466432e-07| +|npm|[cache-manager-redis-store](https://github.com/dabroek/node-cache-manager-redis-store#readme)|3.675719828466432e-07| +|npm|[cron](https://github.com/kelektiv/node-cron#readme)|3.675719828466432e-07| +|npm|[email-validator](http://github.com/manishsaraan/email-validator)|3.675719828466432e-07| +|pypi|[sphinxcontrib-spelling](https://github.com/sphinx-contrib/spelling)|3.3885542168674765e-07| +|pypi|[nixio](https://github.com/G-Node/nixpy)|3.3546686746988156e-07| +|npm|[tap-spec](https://github.com/scottcorgan/tap-spec#readme)|3.3546686746988156e-07| +|npm|[d3-v4-grid](https://github.com/finnfiddle/d3-v4-grid#readme)|3.285870755750292e-07| +|npm|[errorhandler](https://github.com/expressjs/errorhandler#readme)|3.285870755750292e-07| +|npm|[parallelshell](https://github.com/darkguy2008/parallelshell)|3.285870755750292e-07| +|npm|[save-svg-as-png](https://github.com/exupero/saveSvgAsPng)|3.285870755750292e-07| +|npm|[url](https://github.com/defunctzombie/node-url#readme)|3.285870755750292e-07| +|npm|[method-override](https://github.com/expressjs/method-override#readme)|3.285870755750254e-07| +|pypi|[reorientexpress](https://github.com/angelrure/reorientexpress)|3.189227498228211e-07| +|npm|[dedent](https://github.com/dmnd/dedent)|3.0671256454389125e-07| +|pypi|[tox-pyenv](https://github.com/samstav/tox-pyenv)|2.9819277108433917e-07| +|npm|[jsx-to-string](https://github.com/alansouzati/jsx-to-string#readme)|2.8535193405199885e-07| +|npm|[pretty-checkbox](https://lokesh-coder.github.io/pretty-checkbox)|2.8535193405199885e-07| +|pypi|[ukbcc](https://github.com/tool-bin/ukbcc/)|2.7803521779425314e-07| +|pypi|[flask_bootstrap](http://github.com/mbr/flask-bootstrap)|2.7803521779425314e-07| +|pypi|[Flask-Script](http://github.com/smurfix/flask-script)|2.7803521779425314e-07| +|pypi|[flask-wtf](https://github.com/wtforms/flask-wtf/)|2.7803521779425314e-07| +|pypi|[tinydb-serialization](https://tinydb.readthedocs.org)|2.7803521779425314e-07| +|pypi|[vflow](https://github.com/Yu-Group/pcs-pipeline)|2.710843373493989e-07| +|pypi|[pytest-datadir-ng](https://github.com/Tblue/pytest-datadir-ng)|2.6837349397590295e-07| +|pypi|[convertdate](https://github.com/fitnr/convertdate)|2.6837349397590295e-07| +|pypi|[cellocity](https://github.com/oftatkofta/cellocity)|2.644725242433119e-07| +|pypi|[deeplc](http://compomics.github.io/projects/DeepLC)|2.581755593803801e-07| +|pypi|[desk](https://github.com/s-goldman/Dusty_Evolved_Star_Kit)|2.5217147660409084e-07| +|go|github.com/Netflix/go-expect|2.521714766040908e-07| +|go|github.com/ProtonMail/go-crypto|2.521714766040908e-07| +|go|github.com/adigunhammedolalekan/registry-auth|2.521714766040908e-07| +|go|github.com/apex/log|2.521714766040908e-07| +|go|github.com/blang/semver/v4|2.521714766040908e-07| +|go|github.com/buger/jsonparser|2.521714766040908e-07| +|go|github.com/containerd/containerd|2.521714766040908e-07| +|go|github.com/fatih/color|2.521714766040908e-07| +|go|github.com/go-log/log|2.521714766040908e-07| +|go|github.com/gosimple/slug|2.521714766040908e-07| +|go|github.com/opencontainers/umoci|2.521714766040908e-07| +|go|github.com/pelletier/go-toml|2.521714766040908e-07| +|go|github.com/seccomp/libseccomp-golang|2.521714766040908e-07| +|go|github.com/sylabs/json-resp|2.521714766040908e-07| +|go|github.com/sylabs/scs-build-client|2.521714766040908e-07| +|go|github.com/sylabs/scs-key-client|2.521714766040908e-07| +|go|github.com/sylabs/scs-library-client|2.521714766040908e-07| +|go|github.com/sylabs/sif/v2|2.521714766040908e-07| +|go|github.com/vbauerster/mpb/v4|2.521714766040908e-07| +|go|github.com/vbauerster/mpb/v6|2.521714766040908e-07| +|go|golang.org/x/term|2.521714766040908e-07| +|go|gotest.tools/v3|2.521714766040908e-07| +|go|mvdan.cc/sh/v3|2.521714766040908e-07| +|go|oras.land/oras-go|2.521714766040908e-07| +|pypi|[django-datatables-view](https://bitbucket.org/pigletto/django-datatables-view)|2.4096385542168833e-07| +|pypi|[django-dirtyfields](https://github.com/romgar/django-dirtyfields)|2.4096385542168833e-07| +|pypi|[django-guardian](http://github.com/django-guardian/django-guardian)|2.4096385542168833e-07| +|pypi|[django-notifications-hq](http://github.com/django-notifications/django-notifications)|2.4096385542168833e-07| +|pypi|[django-rq](https://github.com/rq/django-rq)|2.4096385542168833e-07| +|pypi|[django-user-agents](https://github.com/selwin/django-user_agents)|2.4096385542168833e-07| +|pypi|[google](http://breakingcode.wordpress.com/)|2.4096385542168833e-07| +|rubygems|[coffee-rails](https://github.com/rails/coffee-rails)|2.2129333661175382e-07| +|rubygems|[fastimage](http://github.com/sdsykes/fastimage)|2.2129333661175382e-07| +|rubygems|[image_processing](https://github.com/janko/image_processing)|2.2129333661175382e-07| +|rubygems|[jquery-rails](https://github.com/rails/jquery-rails)|2.2129333661175382e-07| +|rubygems|[rotp](https://github.com/mdp/rotp)|2.2129333661175382e-07| +|rubygems|[sass-rails](https://github.com/rails/sass-rails)|2.2129333661175382e-07| +|rubygems|[tzinfo-data](https://tzinfo.github.io)|2.2129333661175382e-07| +|rubygems|[reverse_markdown](http://github.com/xijo/reverse_markdown)|2.2129333661175382e-07| +|rubygems|[groupdate](https://github.com/ankane/groupdate)|2.2129333661175382e-07| +|rubygems|[diffy](http://github.com/samg/diffy)|2.2129333661175382e-07| +|rubygems|[jbuilder](https://github.com/rails/jbuilder)|2.2129333661175382e-07| +|rubygems|[rqrcode](https://github.com/whomwah/rqrcode)|2.2129333661175382e-07| +|rubygems|[will_paginate-bootstrap](https://github.com/bootstrap-ruby/will_paginate-bootstrap)|2.2129333661175382e-07| +|rubygems|[aws-sdk-s3](https://github.com/aws/aws-sdk-ruby)|2.2129333661175382e-07| +|rubygems|[whenever](https://github.com/javan/whenever)|2.2129333661175382e-07| +|rubygems|[flamegraph](https://github.com/SamSaffron/flamegraph)|2.2129333661175382e-07| +|rubygems|[rack-mini-profiler](https://miniprofiler.com)|2.2129333661175382e-07| +|rubygems|[thwait](https://github.com/ruby/thwait)|2.2129333661175382e-07| +|rubygems|[rmagick](https://github.com/rmagick/rmagick)|2.2129333661175382e-07| +|rubygems|[minitest-ci](https://github.com/circleci/minitest-ci)|2.2129333661175382e-07| +|rubygems|[spring](https://github.com/rails/spring)|2.2129333661175382e-07| +|rubygems|[web-console](https://github.com/rails/web-console)|2.2129333661175382e-07| +|rubygems|[counter_culture](https://github.com/magnusvk/counter_culture)|2.2129333661175e-07| +|rubygems|[rails-html-sanitizer](https://github.com/rails/rails-html-sanitizer)|2.2129333661175e-07| +|rubygems|[devise](https://github.com/heartcombo/devise)|2.2129333661175e-07| +|rubygems|[omniauth](https://github.com/omniauth/omniauth)|2.2129333661175e-07| +|rubygems|[premailer-rails](https://github.com/fphilipe/premailer-rails)|2.2129333661175e-07| +|rubygems|[rails-controller-testing](https://github.com/rails/rails-controller-testing)|2.2129333661175e-07| +|rubygems|[letter_opener_web](https://github.com/fgrehm/letter_opener_web)|2.2129333661175e-07| +|cran|[enviPick](NA)|2.1686746987951834e-07| +|pypi|[jupyterlab-thredds](https://github.com/eWaterCycle/jupyterlab_thredds)|2.045919527165259e-07| +|npm|[vx](https://github.com/vxjs/vx)|1.93631669535286e-07| +|npm|[abbrev](https://github.com/isaacs/abbrev-js#readme)|1.837859914233216e-07| +|npm|[aproba](https://github.com/iarna/aproba)|1.837859914233216e-07| +|npm|[chownr](https://github.com/isaacs/chownr#readme)|1.837859914233216e-07| +|npm|concat-map|1.837859914233216e-07| +|npm|[console-control-strings](https://github.com/iarna/console-control-strings#readme)|1.837859914233216e-07| +|npm|[deep-extend](https://github.com/unclechu/node-deep-extend)|1.837859914233216e-07| +|pypi|[flowTorch](https://flowtorch.ai/users)|1.6942771084337382e-07| +|pypi|[pytest-param-files](https://pypi.org/project/pytest-param-files)|1.6265060240963782e-07| +|go|github.com/BurntSushi/toml|1.5715034049240438e-07| +|go|github.com/blang/semver|1.5715034049240438e-07| +|go|github.com/buger/goterm|1.5715034049240438e-07| +|go|github.com/checkpoint-restore/checkpointctl|1.5715034049240438e-07| +|go|github.com/checkpoint-restore/go-criu/v5|1.5715034049240438e-07| +|go|github.com/container-orchestrated-devices/container-device-interface|1.5715034049240438e-07| +|go|github.com/containers/buildah|1.5715034049240438e-07| +|go|github.com/containers/conmon|1.5715034049240438e-07| +|go|github.com/containers/ocicrypt|1.5715034049240438e-07| +|go|github.com/containers/psgo|1.5715034049240438e-07| +|go|github.com/containers/storage|1.5715034049240438e-07| +|go|github.com/coreos/go-systemd/v22|1.5715034049240438e-07| +|go|github.com/coreos/stream-metadata-go|1.5715034049240438e-07| +|go|github.com/digitalocean/go-qemu|1.5715034049240438e-07| +|go|github.com/docker/go-connections|1.5715034049240438e-07| +|go|github.com/docker/go-plugins-helpers|1.5715034049240438e-07| +|go|github.com/docker/go-units|1.5715034049240438e-07| +|go|github.com/dtylman/scp|1.5715034049240438e-07| +|go|github.com/fsnotify/fsnotify|1.5715034049240438e-07| +|go|github.com/ghodss/yaml|1.5715034049240438e-07| +|go|github.com/godbus/dbus/v5|1.5715034049240438e-07| +|go|github.com/google/gofuzz|1.5715034049240438e-07| +|go|github.com/google/shlex|1.5715034049240438e-07| +|go|github.com/gorilla/handlers|1.5715034049240438e-07| +|go|github.com/gorilla/schema|1.5715034049240438e-07| +|go|github.com/hashicorp/go-multierror|1.5715034049240438e-07| +|go|github.com/json-iterator/go|1.5715034049240438e-07| +|go|github.com/mattn/go-isatty|1.5715034049240438e-07| +|go|github.com/mrunalp/fileutils|1.5715034049240438e-07| +|go|github.com/nxadm/tail|1.5715034049240438e-07| +|go|github.com/pmezard/go-difflib|1.5715034049240438e-07| +|go|github.com/rootless-containers/rootlesskit|1.5715034049240438e-07| +|go|github.com/stretchr/testify|1.5715034049240438e-07| +|go|github.com/syndtr/gocapability|1.5715034049240438e-07| +|go|github.com/uber/jaeger-client-go|1.5715034049240438e-07| +|go|github.com/ulikunitz/xz|1.5715034049240438e-07| +|go|github.com/vbauerster/mpb/v7|1.5715034049240438e-07| +|go|github.com/vishvananda/netlink|1.5715034049240438e-07| +|go|go.etcd.io/bbolt|1.5715034049240438e-07| +|go|golang.org/x/text|1.5715034049240438e-07| +|go|google.golang.org/protobuf|1.5715034049240438e-07| +|go|gopkg.in/inf.v0|1.5715034049240438e-07| +|pypi|[django-timezone-field](https://github.com/mfogel/django-timezone-field/)|1.5272357033768825e-07| +|pypi|[firebase-admin](https://firebase.google.com/docs/admin/setup/)|1.5272357033768825e-07| +|pypi|[GromacsWrapper](https://github.com/Becksteinlab/GromacsWrapper)|1.5272357033768825e-07| +|pypi|[heat](https://github.com/helmholtz-analytics/heat)|1.5272357033768825e-07| +|pypi|[duecredit](https://github.com/duecredit/duecredit)|1.5272357033768825e-07| +|pypi|[sphinx-click](https://github.com/stephenfin/sphinx-click)|1.4909638554216958e-07| +|pypi|[liionpack](https://liionpack.readthedocs.io/en/latest/)|1.3064305414428825e-07| +|pypi|[scikit-mdr](https://github.com/EpistasisLab/scikit-mdr)|1.262934089298379e-07| +|rubygems|[coffee-script](http://github.com/josh/ruby-coffee-script)|1.0954020162281803e-07| +|npm|text-table|1.0322057460611754e-07| +|pypi|[typeguard](https://pypi.org/project/typeguard)|9.939759036144639e-08| +|pypi|[pika](https://pika.readthedocs.io)|9.334730225248915e-08| +|npm|[utfx](https://github.com/dcodeIO/utfx)|8.9457831325301e-08| +|pypi|[scikit-misc](https://github.com/has2k1/scikit-misc)|7.667814113597281e-08| +|pypi|[aiohttp-remotes](https://github.com/aio-libs/aiohttp-remotes)|6.815834767641975e-08| +|cran|[uroot](https://jalobe.com)|6.66766444660634e-08| +|npm|[babel-plugin-transform-remove-undefined](https://github.com/babel/minify#readme)|1.6502469505350535e-08| +|npm|[babel-plugin-transform-property-literals](https://github.com/babel/minify#readme)|1.6502469505350535e-08| +|npm|[babel-plugin-minify-type-constructors](https://github.com/babel/minify#readme)|1.6502469505350535e-08| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/pages/go.md b/pages/go.md index a9294974..0aee6117 100644 --- a/pages/go.md +++ b/pages/go.md @@ -4,134 +4,133 @@ description: "Most used dependencies across the RSEPedia database" layout: table permalink: /analysis/go/ tipue_search_active: true -exclude_from_search: true --- # Software Credit |Manager|Name|Credit| |-------|----|------| -|go.mod|github/sylabs/singularity|0.002| -|go.mod|github/jasonyangshadow/lpmx|0.002| -|go.mod|github/linksmart/thing-directory|0.002| -|go.mod|github/mlpack/mlpack|0.002| -|go.mod|github/containers/podman|0.002| -|go|golang.org/x/sys|0.00027474216380182006| -|go|github.com/gorilla/mux|0.00022869565217391308| -|go|golang.org/x/crypto|0.00022869565217391308| -|go|golang.org/x/net|0.00020000000000000004| -|go|github.com/opencontainers/go-digest|0.00018474216380182004| -|go|github.com/opencontainers/image-spec|0.00018474216380182004| -|go|github.com/spf13/cobra|0.00018474216380182004| -|go|github.com/docker/distribution|0.00013869565217391306| -|go|github.com/sirupsen/logrus|0.00013869565217391306| -|go|golang.org/x/sync|0.00013869565217391306| -|go|github.com/davecgh/go-spew|0.00011869565217391305| -|go|github.com/onsi/ginkgo|0.00011869565217391305| -|go|github.com/onsi/gomega|0.00011869565217391305| -|go|github.com/bradfitz/gomemcache|0.00011000000000000002| -|go|github.com/docker/libtrust|0.00011000000000000002| -|go|github.com/phayes/permbits|0.00011000000000000002| -|go|github.com/spf13/afero|0.00011000000000000002| -|go|github.com/spf13/viper|0.00011000000000000002| -|go|github.com/sylabs/sif|0.00011000000000000002| -|go|github.com/vmihailenco/msgpack|0.00011000000000000002| -|go|google.golang.org/appengine|0.00011000000000000002| -|go|github.com/antchfx/jsonquery|9e-05| -|go|github.com/bhmj/jsonslice|9e-05| -|go|github.com/codegangsta/negroni|9e-05| -|go|github.com/evanphx/json-patch/v5|9e-05| -|go|github.com/gorilla/context|9e-05| -|go|github.com/grandcat/zeroconf|9e-05| -|go|github.com/justinas/alice|9e-05| -|go|github.com/kelseyhightower/envconfig|9e-05| -|go|github.com/linksmart/go-sec|9e-05| -|go|github.com/linksmart/service-catalog/v3|9e-05| -|go|github.com/miekg/dns|9e-05| -|go|github.com/rs/cors|9e-05| -|go|github.com/satori/go.uuid|9e-05| -|go|github.com/syndtr/goleveldb|9e-05| -|go|github.com/xeipuuv/gojsonschema|9e-05| -|go|github.com/containernetworking/cni|7.474216380182002e-05| -|go|github.com/containernetworking/plugins|7.474216380182002e-05| -|go|github.com/containers/common|7.474216380182002e-05| -|go|github.com/containers/image/v5|7.474216380182002e-05| -|go|github.com/cyphar/filepath-securejoin|7.474216380182002e-05| -|go|github.com/docker/docker|7.474216380182002e-05| -|go|github.com/google/uuid|7.474216380182002e-05| -|go|github.com/moby/term|7.474216380182002e-05| -|go|github.com/opencontainers/runc|7.474216380182002e-05| -|go|github.com/opencontainers/runtime-spec|7.474216380182002e-05| -|go|github.com/opencontainers/runtime-tools|7.474216380182002e-05| -|go|github.com/opencontainers/selinux|7.474216380182002e-05| -|go|github.com/pkg/errors|7.474216380182002e-05| -|go|github.com/spf13/pflag|7.474216380182002e-05| -|go|gopkg.in/yaml.v2|7.474216380182002e-05| -|go|github.com/Netflix/go-expect|4.604651162790698e-05| -|go|github.com/ProtonMail/go-crypto|4.604651162790698e-05| -|go|github.com/adigunhammedolalekan/registry-auth|4.604651162790698e-05| -|go|github.com/apex/log|4.604651162790698e-05| -|go|github.com/blang/semver/v4|4.604651162790698e-05| -|go|github.com/buger/jsonparser|4.604651162790698e-05| -|go|github.com/containerd/containerd|4.604651162790698e-05| -|go|github.com/fatih/color|4.604651162790698e-05| -|go|github.com/go-log/log|4.604651162790698e-05| -|go|github.com/gosimple/slug|4.604651162790698e-05| -|go|github.com/opencontainers/umoci|4.604651162790698e-05| -|go|github.com/pelletier/go-toml|4.604651162790698e-05| -|go|github.com/seccomp/libseccomp-golang|4.604651162790698e-05| -|go|github.com/sylabs/json-resp|4.604651162790698e-05| -|go|github.com/sylabs/scs-build-client|4.604651162790698e-05| -|go|github.com/sylabs/scs-key-client|4.604651162790698e-05| -|go|github.com/sylabs/scs-library-client|4.604651162790698e-05| -|go|github.com/sylabs/sif/v2|4.604651162790698e-05| -|go|github.com/vbauerster/mpb/v4|4.604651162790698e-05| -|go|github.com/vbauerster/mpb/v6|4.604651162790698e-05| -|go|golang.org/x/term|4.604651162790698e-05| -|go|gotest.tools/v3|4.604651162790698e-05| -|go|mvdan.cc/sh/v3|4.604651162790698e-05| -|go|oras.land/oras-go|4.604651162790698e-05| -|go|github.com/BurntSushi/toml|2.869565217391304e-05| -|go|github.com/blang/semver|2.869565217391304e-05| -|go|github.com/buger/goterm|2.869565217391304e-05| -|go|github.com/checkpoint-restore/checkpointctl|2.869565217391304e-05| -|go|github.com/checkpoint-restore/go-criu/v5|2.869565217391304e-05| -|go|github.com/container-orchestrated-devices/container-device-interface|2.869565217391304e-05| -|go|github.com/containers/buildah|2.869565217391304e-05| -|go|github.com/containers/conmon|2.869565217391304e-05| -|go|github.com/containers/ocicrypt|2.869565217391304e-05| -|go|github.com/containers/psgo|2.869565217391304e-05| -|go|github.com/containers/storage|2.869565217391304e-05| -|go|github.com/coreos/go-systemd/v22|2.869565217391304e-05| -|go|github.com/coreos/stream-metadata-go|2.869565217391304e-05| -|go|github.com/digitalocean/go-qemu|2.869565217391304e-05| -|go|github.com/docker/go-connections|2.869565217391304e-05| -|go|github.com/docker/go-plugins-helpers|2.869565217391304e-05| -|go|github.com/docker/go-units|2.869565217391304e-05| -|go|github.com/dtylman/scp|2.869565217391304e-05| -|go|github.com/fsnotify/fsnotify|2.869565217391304e-05| -|go|github.com/ghodss/yaml|2.869565217391304e-05| -|go|github.com/godbus/dbus/v5|2.869565217391304e-05| -|go|github.com/google/gofuzz|2.869565217391304e-05| -|go|github.com/google/shlex|2.869565217391304e-05| -|go|github.com/gorilla/handlers|2.869565217391304e-05| -|go|github.com/gorilla/schema|2.869565217391304e-05| -|go|github.com/hashicorp/go-multierror|2.869565217391304e-05| -|go|github.com/json-iterator/go|2.869565217391304e-05| -|go|github.com/mattn/go-isatty|2.869565217391304e-05| -|go|github.com/mrunalp/fileutils|2.869565217391304e-05| -|go|github.com/nxadm/tail|2.869565217391304e-05| -|go|github.com/pmezard/go-difflib|2.869565217391304e-05| -|go|github.com/rootless-containers/rootlesskit|2.869565217391304e-05| -|go|github.com/stretchr/testify|2.869565217391304e-05| -|go|github.com/syndtr/gocapability|2.869565217391304e-05| -|go|github.com/uber/jaeger-client-go|2.869565217391304e-05| -|go|github.com/ulikunitz/xz|2.869565217391304e-05| -|go|github.com/vbauerster/mpb/v7|2.869565217391304e-05| -|go|github.com/vishvananda/netlink|2.869565217391304e-05| -|go|go.etcd.io/bbolt|2.869565217391304e-05| -|go|golang.org/x/text|2.869565217391304e-05| -|go|google.golang.org/protobuf|2.869565217391304e-05| -|go|gopkg.in/inf.v0|2.869565217391304e-05| +|go.mod|github/mlpack/mlpack|1.095290251916758e-05| +|go.mod|github/jasonyangshadow/lpmx|1.095290251916758e-05| +|go.mod|github/sylabs/singularity|1.095290251916758e-05| +|go.mod|github/linksmart/thing-directory|1.095290251916758e-05| +|go.mod|github/containers/podman|1.095290251916758e-05| +|go|golang.org/x/sys|1.5046120690132533e-06| +|go|github.com/gorilla/mux|1.2524405924091624e-06| +|go|golang.org/x/crypto|1.2524405924091624e-06| +|go|golang.org/x/net|1.095290251916758e-06| +|go|github.com/opencontainers/go-digest|1.0117314556507122e-06| +|go|github.com/opencontainers/image-spec|1.0117314556507122e-06| +|go|github.com/spf13/cobra|1.0117314556507122e-06| +|go|github.com/docker/distribution|7.595599790466213e-07| +|go|github.com/sirupsen/logrus|7.595599790466213e-07| +|go|golang.org/x/sync|7.595599790466213e-07| +|go|github.com/davecgh/go-spew|6.500309538549455e-07| +|go|github.com/onsi/ginkgo|6.500309538549455e-07| +|go|github.com/onsi/gomega|6.500309538549455e-07| +|go|github.com/bradfitz/gomemcache|6.024096385542169e-07| +|go|github.com/docker/libtrust|6.024096385542169e-07| +|go|github.com/phayes/permbits|6.024096385542169e-07| +|go|github.com/spf13/afero|6.024096385542169e-07| +|go|github.com/spf13/viper|6.024096385542169e-07| +|go|github.com/sylabs/sif|6.024096385542169e-07| +|go|github.com/vmihailenco/msgpack|6.024096385542169e-07| +|go|google.golang.org/appengine|6.024096385542169e-07| +|go|github.com/antchfx/jsonquery|4.928806133625411e-07| +|go|github.com/bhmj/jsonslice|4.928806133625411e-07| +|go|github.com/codegangsta/negroni|4.928806133625411e-07| +|go|github.com/evanphx/json-patch/v5|4.928806133625411e-07| +|go|github.com/gorilla/context|4.928806133625411e-07| +|go|github.com/grandcat/zeroconf|4.928806133625411e-07| +|go|github.com/justinas/alice|4.928806133625411e-07| +|go|github.com/kelseyhightower/envconfig|4.928806133625411e-07| +|go|github.com/linksmart/go-sec|4.928806133625411e-07| +|go|github.com/linksmart/service-catalog/v3|4.928806133625411e-07| +|go|github.com/miekg/dns|4.928806133625411e-07| +|go|github.com/rs/cors|4.928806133625411e-07| +|go|github.com/satori/go.uuid|4.928806133625411e-07| +|go|github.com/syndtr/goleveldb|4.928806133625411e-07| +|go|github.com/xeipuuv/gojsonschema|4.928806133625411e-07| +|go|github.com/containernetworking/cni|4.0932181709649515e-07| +|go|github.com/containernetworking/plugins|4.0932181709649515e-07| +|go|github.com/containers/common|4.0932181709649515e-07| +|go|github.com/containers/image/v5|4.0932181709649515e-07| +|go|github.com/cyphar/filepath-securejoin|4.0932181709649515e-07| +|go|github.com/docker/docker|4.0932181709649515e-07| +|go|github.com/google/uuid|4.0932181709649515e-07| +|go|github.com/moby/term|4.0932181709649515e-07| +|go|github.com/opencontainers/runc|4.0932181709649515e-07| +|go|github.com/opencontainers/runtime-spec|4.0932181709649515e-07| +|go|github.com/opencontainers/runtime-tools|4.0932181709649515e-07| +|go|github.com/opencontainers/selinux|4.0932181709649515e-07| +|go|github.com/pkg/errors|4.0932181709649515e-07| +|go|github.com/spf13/pflag|4.0932181709649515e-07| +|go|gopkg.in/yaml.v2|4.0932181709649515e-07| +|go|github.com/Netflix/go-expect|2.521714766040908e-07| +|go|github.com/ProtonMail/go-crypto|2.521714766040908e-07| +|go|github.com/adigunhammedolalekan/registry-auth|2.521714766040908e-07| +|go|github.com/apex/log|2.521714766040908e-07| +|go|github.com/blang/semver/v4|2.521714766040908e-07| +|go|github.com/buger/jsonparser|2.521714766040908e-07| +|go|github.com/containerd/containerd|2.521714766040908e-07| +|go|github.com/fatih/color|2.521714766040908e-07| +|go|github.com/go-log/log|2.521714766040908e-07| +|go|github.com/gosimple/slug|2.521714766040908e-07| +|go|github.com/opencontainers/umoci|2.521714766040908e-07| +|go|github.com/pelletier/go-toml|2.521714766040908e-07| +|go|github.com/seccomp/libseccomp-golang|2.521714766040908e-07| +|go|github.com/sylabs/json-resp|2.521714766040908e-07| +|go|github.com/sylabs/scs-build-client|2.521714766040908e-07| +|go|github.com/sylabs/scs-key-client|2.521714766040908e-07| +|go|github.com/sylabs/scs-library-client|2.521714766040908e-07| +|go|github.com/sylabs/sif/v2|2.521714766040908e-07| +|go|github.com/vbauerster/mpb/v4|2.521714766040908e-07| +|go|github.com/vbauerster/mpb/v6|2.521714766040908e-07| +|go|golang.org/x/term|2.521714766040908e-07| +|go|gotest.tools/v3|2.521714766040908e-07| +|go|mvdan.cc/sh/v3|2.521714766040908e-07| +|go|oras.land/oras-go|2.521714766040908e-07| +|go|github.com/BurntSushi/toml|1.5715034049240438e-07| +|go|github.com/blang/semver|1.5715034049240438e-07| +|go|github.com/buger/goterm|1.5715034049240438e-07| +|go|github.com/checkpoint-restore/checkpointctl|1.5715034049240438e-07| +|go|github.com/checkpoint-restore/go-criu/v5|1.5715034049240438e-07| +|go|github.com/container-orchestrated-devices/container-device-interface|1.5715034049240438e-07| +|go|github.com/containers/buildah|1.5715034049240438e-07| +|go|github.com/containers/conmon|1.5715034049240438e-07| +|go|github.com/containers/ocicrypt|1.5715034049240438e-07| +|go|github.com/containers/psgo|1.5715034049240438e-07| +|go|github.com/containers/storage|1.5715034049240438e-07| +|go|github.com/coreos/go-systemd/v22|1.5715034049240438e-07| +|go|github.com/coreos/stream-metadata-go|1.5715034049240438e-07| +|go|github.com/digitalocean/go-qemu|1.5715034049240438e-07| +|go|github.com/docker/go-connections|1.5715034049240438e-07| +|go|github.com/docker/go-plugins-helpers|1.5715034049240438e-07| +|go|github.com/docker/go-units|1.5715034049240438e-07| +|go|github.com/dtylman/scp|1.5715034049240438e-07| +|go|github.com/fsnotify/fsnotify|1.5715034049240438e-07| +|go|github.com/ghodss/yaml|1.5715034049240438e-07| +|go|github.com/godbus/dbus/v5|1.5715034049240438e-07| +|go|github.com/google/gofuzz|1.5715034049240438e-07| +|go|github.com/google/shlex|1.5715034049240438e-07| +|go|github.com/gorilla/handlers|1.5715034049240438e-07| +|go|github.com/gorilla/schema|1.5715034049240438e-07| +|go|github.com/hashicorp/go-multierror|1.5715034049240438e-07| +|go|github.com/json-iterator/go|1.5715034049240438e-07| +|go|github.com/mattn/go-isatty|1.5715034049240438e-07| +|go|github.com/mrunalp/fileutils|1.5715034049240438e-07| +|go|github.com/nxadm/tail|1.5715034049240438e-07| +|go|github.com/pmezard/go-difflib|1.5715034049240438e-07| +|go|github.com/rootless-containers/rootlesskit|1.5715034049240438e-07| +|go|github.com/stretchr/testify|1.5715034049240438e-07| +|go|github.com/syndtr/gocapability|1.5715034049240438e-07| +|go|github.com/uber/jaeger-client-go|1.5715034049240438e-07| +|go|github.com/ulikunitz/xz|1.5715034049240438e-07| +|go|github.com/vbauerster/mpb/v7|1.5715034049240438e-07| +|go|github.com/vishvananda/netlink|1.5715034049240438e-07| +|go|go.etcd.io/bbolt|1.5715034049240438e-07| +|go|golang.org/x/text|1.5715034049240438e-07| +|go|google.golang.org/protobuf|1.5715034049240438e-07| +|go|gopkg.in/inf.v0|1.5715034049240438e-07| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/pages/js.md b/pages/js.md index bf6b2f9f..d8b22d41 100644 --- a/pages/js.md +++ b/pages/js.md @@ -4,849 +4,1011 @@ description: "Most used dependencies across the RSEPedia database" layout: table permalink: /analysis/js/ tipue_search_active: true -exclude_from_search: true --- # Software Credit |Manager|Name|Credit| |-------|----|------| -|npm|core-js|0.009970247493734336| -|npm||0.008986875529981968| -|npm|[angular](http://angularjs.org)|0.008519994588744589| -|npm|fs|0.007921967862645828| -|npm|[express](http://expressjs.com/)|0.00789012830919081| -|npm|[nuxt](https://github.com/nuxt/nuxt.js#readme)|0.0072| -|npm|[papaparse](http://papaparse.com)|0.00708942857142857| -|npm|[lodash](https://lodash.com/)|0.006758857011466793| -|npm|[serve-static](https://github.com/expressjs/serve-static#readme)|0.006725454545454545| -|npm|[finalhandler](https://github.com/pillarjs/finalhandler#readme)|0.006| -|npm|[axios](https://axios-http.com)|0.0058095238095238096| -|npm|[node-fetch](https://github.com/node-fetch/node-fetch)|0.005218021978021977| -|npm|[d3-dispatch](https://d3js.org/d3-dispatch/)|0.004795714285714285| -|npm|[three](https://threejs.org/)|0.004679099999999999| -|npm|file-type|0.0045380769230769225| -|npm|[quasar](https://quasar.dev)|0.0045| -|npm|[midi-parser-js](https://github.com/colxi/midi-parser-js#readme)|0.0045| -|npm|[plotly.js-dist-min](https://github.com/plotly/plotly.js#readme)|0.0045| -|npm|[yargs](https://yargs.js.org/)|0.0045| -|npm|mocha|0.003880735364691834| -|npm|[react](https://reactjs.org/)|0.003776476435108456| -|npm|react-dom|0.003776476435108456| -|npm|[remark-directive](https://github.com/remarkjs/remark-directive#readme)|0.0036| -|npm|[ajv](https://ajv.js.org)|0.0033088235294117642| -|npm|[body-parser](https://github.com/expressjs/body-parser#readme)|0.0031591684877622372| -|npm|[pg](https://github.com/brianc/node-postgres)|0.003116883116883117| -|npm|[cytoscape](http://js.cytoscape.org)|0.003116883116883117| -|npm|[react-select](https://github.com/JedWatson/react-select)|0.003058823529411765| -|npm|jshint|0.003001153846153846| -|npm|d3|0.0029821683673469383| -|npm|[dotenv](https://github.com/motdotla/dotenv#readme)|0.002956168831168831| -|npm|requirejs|0.0027921016483516484| -|npm|[react-images](https://jossmac.github.io/react-images/)|0.0026926530612244896| -|npm|[pako](https://github.com/nodeca/pako#readme)|0.002597142857142857| -|npm|[choices.js](https://github.com/jshjohnson/Choices#readme)|0.0025714285714285713| -|npm|[filepond](https://pqina.nl/filepond/)|0.0025714285714285713| -|npm|[vue](https://github.com/vuejs/core/tree/main/packages/vue#readme)|0.0025714285714285713| -|npm|[vue-router](https://github.com/vuejs/router#readme)|0.0025714285714285713| -|npm|[cytoscape-cola](https://github.com/cytoscape/cytoscape.js-cola)|0.0025714285714285713| -|npm|[modernizr](https://github.com/Modernizr/Modernizr)|0.0025714285714285713| -|npm|[rc-slider](http://github.com/react-component/slider/)|0.002473684210526316| -|npm|[moment](https://momentjs.com)|0.00236541557486631| -|npm|[d3-array](https://d3js.org/d3-array/)|0.00228| -|npm|[d3-scale](https://d3js.org/d3-scale/)|0.00228| -|npm|react-redux|0.0022736842105263158| -|npm|[d3-brush](https://d3js.org/d3-brush/)|0.00225| -|npm|[d3-fetch](https://d3js.org/d3-fetch/)|0.00225| -|npm|[d3-format](https://d3js.org/d3-format/)|0.00225| -|npm|[fflate](https://101arrowz.github.io/fflate)|0.00225| -|npm|[ajv-formats](https://github.com/ajv-validator/ajv-formats#readme)|0.00225| -|npm|[js-yaml](https://github.com/nodeca/js-yaml#readme)|0.00225| -|npm|mkdirp|0.002249530569007264| -|npm|[babyparse](https://github.com/Rich-Harris/BabyParse#readme)|0.002| -|npm|[colormap](https://github.com/bpostlethwaite/colormap#readme)|0.002| -|npm|[webpack](https://github.com/webpack/webpack)|0.0019470805756743256| -|npm|eslint|0.0019145725118040527| -|npm|[vows](https://github.com/cloudhead/vows)|0.0019055705651491364| -|npm|tape|0.0018144272989262023| -|npm|chai|0.00180927994701629| -|npm|[auspice](https://www.npmjs.com/package/auspice)|0.0018| -|npm|[heroku-ssl-redirect](https://github.com/paulomcnally/node-heroku-ssl-redirect)|0.0018| -|npm|[react-file-drop](https://github.com/sarink/react-file-drop#readme)|0.0018| -|npm|rollup|0.0017151730225840333| -|npm|[jquery](https://jquery.com)|0.0016918681318681317| -|npm|[nodemon](https://nodemon.io)|0.0016704545454545453| -|npm|nyc|0.0016567062156593408| -|npm|[angular-animate](http://angularjs.org)|0.0016363636363636363| -|npm|[angular-sanitize](http://angularjs.org)|0.0016363636363636363| -|npm|[angular-touch](http://angularjs.org)|0.0016363636363636363| -|npm|[colorbrewer](http://colorbrewer2.org/)|0.0016363636363636363| -|npm|[dc](http://dc-js.github.io/dc.js/)|0.0016363636363636363| -|npm|[bootstrap](https://getbootstrap.com/)|0.0015505077399380804| -|npm|[react-bootstrap](https://react-bootstrap.github.io/)|0.0015505077399380804| -|npm|react-router-bootstrap|0.0015325077399380804| -|npm|react-router-dom|0.0015325077399380804| -|npm|babel-cli|0.0015217385557299843| -|npm|[ProtVista](https://github.com/ebi-uniprot/ProtVista)|0.0015| -|npm|[downloadjs](http://danml.com/download.html)|0.0015| -|npm|[events](https://github.com/Gozala/events#readme)|0.0015| -|npm|[litemol](https://webchemdev.ncbr.muni.cz/LiteMol/)|0.0015| -|npm|[semantic-ui-button](http://www.semantic-ui.com)|0.0015| -|npm|[semantic-ui-dropdown](http://www.semantic-ui.com)|0.0015| -|npm|[semantic-ui-label](http://www.semantic-ui.com)|0.0015| -|npm|[semantic-ui-transition](http://www.semantic-ui.com)|0.0015| -|npm|[winston](https://github.com/winstonjs/winston#readme)|0.0014423076923076924| -|npm|tap|0.0013787073011734027| -|npm|ava|0.001371717032967033| -|npm|esm|0.0013479318632260596| -|npm|[prop-types](https://facebook.github.io/react/)|0.001320378180421966| -|npm|webpack-cli|0.001317142857142857| -|npm|[coveralls](https://github.com/nickmerwin/node-coveralls#readme)|0.0012980627687529862| -|npm|[concurrently](https://github.com/open-cli-tools/concurrently#readme)|0.0012857142857142856| -|npm|[cors-anywhere](https://github.com/Rob--W/cors-anywhere#readme)|0.0012857142857142856| -|npm|[dotenv-webpack](https://github.com/mrsteele/dotenv-webpack#readme)|0.0012857142857142856| -|npm|net|0.0012857142857142856| -|npm|supertest|0.0012736035839160838| -|npm|[bcrypt](https://github.com/kelektiv/node.bcrypt.js#readme)|0.0012735| -|npm|spc|0.0012728571428571426| -|npm|process|0.0012728571428571426| -|npm|util|0.0012728571428571426| -|npm|xo|0.001170370879120879| -|npm|rxjs|0.0011516008771929823| -|npm|uglify-js|0.0011489342602040815| -|npm|[express-handlebars](https://github.com/express-handlebars/express-handlebars)|0.001125| -|npm|[express-session](https://github.com/expressjs/session#readme)|0.001125| -|npm|[helmet](https://helmetjs.github.io/)|0.001125| -|npm|[mongoose](https://mongoosejs.com)|0.001125| -|npm|[node-cmd](https://github.com/RIAEvangelist/node-cmd)|0.001125| -|npm|[passport](https://www.passportjs.org/)|0.001125| -|npm|[passport-local-mongoose](https://github.com/saintedlama/passport-local-mongoose#readme)|0.001125| -|npm|babel-preset-env|0.001110392557022809| -|npm|[istanbul](https://github.com/gotwarlost/istanbul#readme)|0.001075985442534037| -|npm|[babel-preset-minify](https://github.com/babel/minify#readme)|0.0010668742370632462| -|npm|[d3-dsv](https://d3js.org/d3-dsv/)|0.0010588235294117646| -|npm|[diff2html](https://diff2html.xyz/)|0.0010588235294117646| -|npm|[difflib-ts](https://github.com/mailmangroup/difflib-ts#readme)|0.0010588235294117646| -|npm|[react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form#readme)|0.0010588235294117646| -|npm|react-schemaorg|0.0010588235294117646| -|npm|sax|0.001022272245762712| -|npm|eslint-plugin-import|0.0009749914581217103| -|npm|[sinon](https://sinonjs.org/)|0.0009534270574950972| -|npm|[typescript](https://www.typescriptlang.org/)|0.0008853484830387005| -|npm|standard|0.0008753159724809087| -|npm|[mqtt](https://github.com/mqttjs/MQTT.js#readme)|0.00087375| -|npm|regenerator-runtime|0.0008709022556390976| -|npm|[debug](https://github.com/debug-js/debug#readme)|0.0008633119092242503| -|npm|eslint-plugin-standard|0.0008540934065934068| -|npm|eslint-plugin-promise|0.0008540934065934068| -|npm|eslint-plugin-node|0.0008540934065934068| -|npm|eslint-config-standard|0.0008540934065934068| -|npm|coffee-script|0.0008521875| -|npm|[async](https://caolan.github.io/async/)|0.00081703125| -|npm|rimraf|0.0008144677698994682| -|npm|[tsd](https://github.com/SamVerschueren/tsd#readme)|0.0008077747252747252| -|npm|expect.js|0.000804375| -|npm|[browserify](https://github.com/browserify/browserify#readme)|0.0007984098547027507| -|npm|npm-run-all|0.0007892142857142857| -|npm|fs-extra|0.0007814285714285715| -|npm|[jasmine](http://jasmine.github.io/)|0.00075| -|npm|[lru-cache](https://github.com/isaacs/node-lru-cache#readme)|0.00075| -|npm|[proj4](https://github.com/proj4js/proj4js#readme)|0.00075| -|npm|[sift](https://github.com/crcn/sift.js#readme)|0.00075| -|npm|[socket.io](https://github.com/socketio/socket.io#readme)|0.00075| -|npm|[underscore](https://underscorejs.org)|0.00075| -|npm|[uuid](https://github.com/uuidjs/uuid#readme)|0.0007315684523809526| -|npm|[xmlbuilder](http://github.com/oozcitak/xmlbuilder-js)|0.0007295651223776224| -|npm|zap|0.0007171874999999999| -|npm|docco|0.0007171874999999999| -|npm|diff|0.0007171874999999999| -|npm|[tslib](https://www.typescriptlang.org/)|0.0007077897435897436| -|npm|safe-buffer|0.0007076065520813932| -|npm|[semver](https://github.com/npm/node-semver#readme)|0.0007068245416810791| -|npm|jest|0.0006994148660714285| -|npm|[cookie-parser](https://github.com/expressjs/cookie-parser#readme)|0.0006923076923076923| -|npm|[date-fns](https://github.com/date-fns/date-fns#readme)|0.0006923076923076923| -|npm|[deep-equal-in-any-order](https://github.com/oprogramador/deep-equal-in-any-order#readme)|0.0006923076923076923| -|npm|[dice-coefficient](https://words.github.io/dice-coefficient/)|0.0006923076923076923| -|npm|[elasticdump](https://github.com/elasticsearch-dump/elasticsearch-dump#readme)|0.0006923076923076923| -|npm|[elasticsearch](https://www.elastic.co/guide/en/elasticsearch/client/elasticsearch-js/16.x/index.html)|0.0006923076923076923| -|npm|[fibers](https://github.com/laverdet/node-fibers)|0.0006923076923076923| -|npm|[saxes](https://github.com/lddubeau/saxes#readme)|0.0006923076923076923| -|npm|[swagger-jsdoc](https://github.com/Surnet/swagger-jsdoc)|0.0006923076923076923| -|npm|[swagger-ui-express](https://github.com/scottie1984/swagger-ui-express)|0.0006923076923076923| -|npm|[plotly.js](https://github.com/plotly/plotly.js#readme)|0.0006846666666666666| -|npm|[zone.js](https://github.com/angular/angular#readme)|0.0006779166666666666| -|npm|[angular-plotly](https://github.com/alonho/angular-plotly#readme)|0.0006666666666666666| -|npm|[angular-plotly.js](https://github.com/plotly/angular-plotly.js)|0.0006666666666666666| -|npm|[crypto-js](http://github.com/brix/crypto-js)|0.0006666666666666666| -|npm|[ng2-file-upload](https://github.com/valor-software/ng2-file-upload)|0.0006666666666666666| -|npm|[ngx-cookie-service](https://github.com/stevermeister/ngx-cookie-service#readme)|0.0006666666666666666| -|npm|[ngx-smart-loader](https://github.com/biig-io/ngx-smart-loader)|0.0006666666666666666| -|npm|ngx-smart-modal|0.0006666666666666666| -|npm|plotly|0.0006666666666666666| -|npm|babel-preset-es2015|0.0006618924018838303| -|npm|[rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve#readme)|0.0006523109243697479| -|npm|[type-fest](https://github.com/sindresorhus/type-fest#readme)|0.0006364285714285713| -|npm|[is-stream](https://github.com/sindresorhus/is-stream#readme)|0.0006364285714285713| -|npm|rollup-plugin-commonjs|0.0006185609243697478| -|npm|cross-env|0.0006108626373626373| -|npm|minimist|0.0005743429875209536| -|npm|eslint-plugin-markdown|0.0005678365384615385| -|npm|inherits|0.0005671435692921236| -|npm|[canvg](https://github.com/canvg/canvg)|0.0005454545454545454| -|npm|[googleapis](https://github.com/googleapis/google-api-nodejs-client#readme)|0.0005454545454545454| -|npm|[http](https://github.com/npm/security-holder#readme)|0.0005454545454545454| -|npm|[jspdf](https://github.com/mrrio/jspdf)|0.0005454545454545454| -|npm|[multiparty](https://github.com/pillarjs/multiparty#readme)|0.0005454545454545454| -|npm|[node-xlsx](https://github.com/mgcrea/node-xlsx#readme)|0.0005454545454545454| -|npm|[pg-hstore](https://github.com/scarney81/pg-hstore)|0.0005454545454545454| -|npm|[pug](https://pugjs.org)|0.0005454545454545454| -|npm|[sequelize](https://sequelize.org/)|0.0005454545454545454| -|npm|[stylus](https://github.com/stylus/stylus)|0.0005454545454545454| -|npm|babel-runtime|0.0005284285714285714| -|npm|[font-awesome](http://fontawesome.io/)|0.0005186842105263157| -|npm|object-assign|0.0005182183742140924| -|npm|[ts-node](https://typestrong.org/ts-node)|0.0005142857142857142| -|npm|react-router|0.0005117611336032388| -|npm|react-test-renderer|0.0005117611336032388| -|npm|[unist-util-remove-position](https://github.com/syntax-tree/unist-util-remove-position#readme)|0.0005091428571428571| -|npm|[unist-builder](https://github.com/syntax-tree/unist-builder#readme)|0.0005091428571428571| -|npm|[remark](https://remark.js.org)|0.0005091428571428571| -|npm|[unist-util-visit-parents](https://github.com/syntax-tree/unist-util-visit-parents#readme)|0.0005091428571428571| -|npm|[unist-util-find-after](https://github.com/syntax-tree/unist-util-find-after#readme)|0.0005091428571428571| -|npm|strip-ansi|0.0005078594710374372| -|npm|whatwg-fetch|0.0005051127819548872| -|npm|chalk|0.0004939615384615384| -|npm|[inline-style-prefixer](https://github.com/rofrischmann/inline-style-prefixer#readme)|0.00048599999999999994| -|npm|[keycode](https://github.com/timoxley/keycode)|0.00048599999999999994| -|npm|[react-event-listener](https://github.com/oliviertassinari/react-event-listener)|0.00048599999999999994| -|npm|react-transition-group|0.00048599999999999994| -|npm|simple-assign|0.00048599999999999994| -|npm|warning|0.00048599999999999994| -|npm|lodash.merge|0.00048599999999999994| -|npm|lodash.throttle|0.00048599999999999994| -|npm|recompose|0.00048599999999999994| -|npm|highcharts-exporting|0.00047368421052631577| -|npm|highcharts-no-data-to-display|0.00047368421052631577| -|npm|[history](https://github.com/remix-run/history#readme)|0.00047368421052631577| -|npm|[jsdocx](https://github.com/zuck/jsdocx#readme)|0.00047368421052631577| -|npm|[ramda](https://ramdajs.com/)|0.00047368421052631577| -|npm|[rc-tooltip](http://github.com/react-component/tooltip)|0.00047368421052631577| -|npm|[react-bootstrap-table](https://github.com/AllenFang/react-bootstrap-table#readme)|0.00047368421052631577| -|npm|react-fontawesome|0.00047368421052631577| -|npm|react-highcharts|0.00047368421052631577| -|npm|react-js-pagination|0.00047368421052631577| -|npm|react-router-redux|0.00047368421052631577| -|npm|react-s-alert|0.00047368421052631577| -|npm|react-table|0.00047368421052631577| -|npm|redux|0.00047368421052631577| -|npm|redux-form|0.00047368421052631577| -|npm|redux-observable|0.00047368421052631577| -|npm|redux-persist|0.00047368421052631577| -|npm|reselect|0.00047368421052631577| -|npm|rx-dom|0.00047368421052631577| -|npm|xlsx|0.00047368421052631577| -|npm|immutable|0.0004689473684210526| -|npm|ms|0.00046393690922425033| -|npm|husky|0.0004636318681318681| -|npm|lint-staged|0.0004636318681318681| -|npm|[rollup-plugin-babel](https://github.com/rollup/rollup-plugin-babel)|0.0004488925570228091| -|npm|should|0.0004414795303213735| -|npm|readable-stream|0.0004406043956043956| -|npm|[actions](https://github.com/fundon/actions)|0.0004011428571428572| -|npm|prettier|0.0003916202802370948| -|npm|after|0.0003845295329670329| -|npm|vary|0.0003815624999999999| -|npm|gulp|0.0003814913528670577| -|npm|through2|0.00037815247252747253| -|npm|del-cli|0.0003721153846153846| -|npm|matcha|0.00037125| -|npm|quick-lru|0.00037125| -|npm|map-obj|0.00037125| -|npm|lodash.kebabcase|0.00037125| -|npm|minimatch|0.0003681383171912833| -|npm|rollup-plugin-json|0.0003657397959183673| -|npm|package-json-versionify|0.0003657397959183673| -|npm|babel-preset-react|0.00036069396989565054| -|npm|depd|0.00034419591346153845| -|npm|xregexp|0.0003426923076923077| -|npm|bufferedstream|0.0003426923076923077| -|npm|on-headers|0.00032887448489010983| -|npm|eslint-plugin-prettier|0.0003136782713085234| -|npm|eslint-config-prettier|0.0003136782713085234| -|npm|[ansi-regex](https://github.com/chalk/ansi-regex#readme)|0.00030508474576271185| -|npm|[balanced-match](https://github.com/juliangruber/balanced-match)|0.00030508474576271185| -|npm|[brace-expansion](https://github.com/juliangruber/brace-expansion)|0.00030508474576271185| -|npm|[cacatoo](https://github.com/bramvandijk88/cacatoo#readme)|0.00030508474576271185| -|npm|[code-point-at](https://github.com/sindresorhus/code-point-at#readme)|0.00030508474576271185| -|npm|[decompress-response](https://github.com/sindresorhus/decompress-response#readme)|0.00030508474576271185| -|npm|[detect-libc](https://github.com/lovell/detect-libc#readme)|0.00030508474576271185| -|npm|[esdoc](https://esdoc.org/)|0.00030508474576271185| -|npm|esdoc-standard-plugin|0.00030508474576271185| -|npm|fast-random|0.00030508474576271185| -|npm|flatted|0.00030508474576271185| -|npm|fs.realpath|0.00030508474576271185| -|npm|has-unicode|0.00030508474576271185| -|npm|iconv-lite|0.00030508474576271185| -|npm|ignore-walk|0.00030508474576271185| -|npm|ini|0.00030508474576271185| -|npm|is-fullwidth-code-point|0.00030508474576271185| -|npm|jsdocs|0.00030508474576271185| -|npm|mimic-response|0.00030508474576271185| -|npm|needle|0.00030508474576271185| -|npm|node|0.00030508474576271185| -|npm|nopt|0.00030508474576271185| -|npm|npm|0.00030508474576271185| -|npm|npm-bundled|0.00030508474576271185| -|npm|npm-normalize-package-bin|0.00030508474576271185| -|npm|npm-packlist|0.00030508474576271185| -|npm|number-is-nan|0.00030508474576271185| -|npm|odex|0.00030508474576271185| -|npm|os-homedir|0.00030508474576271185| -|npm|os-tmpdir|0.00030508474576271185| -|npm|osenv|0.00030508474576271185| -|npm|path-is-absolute|0.00030508474576271185| -|npm|rc|0.00030508474576271185| -|npm|safer-buffer|0.00030508474576271185| -|npm|set-blocking|0.00030508474576271185| -|npm|signal-exit|0.00030508474576271185| -|npm|simple-concat|0.00030508474576271185| -|npm|string-width|0.00030508474576271185| -|npm|strip-json-comments|0.00030508474576271185| -|npm|[rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser)|0.0003025094387755102| -|npm|tslint|0.000301875| -|npm|glob|0.0002894335714285714| -|npm|babel-core|0.00028862332625357836| -|npm|tsconfig-paths|0.0002828571428571428| -|npm|replace|0.0002828571428571428| -|npm|node-qunit-phantomjs|0.0002828571428571428| -|npm|codecov|0.0002803836284513805| -|npm|chai-passport-strategy|0.0002784375| -|npm|passport-strategy|0.0002784375| -|npm|concat-stream|0.00026925824175824177| -|npm|gulp-uglify|0.0002680926216640502| -|npm|murl|0.00026205882352941173| -|npm|protein|0.00026205882352941173| -|npm|network-address|0.00026205882352941173| -|npm|[tslint-config-prettier](https://github.com/prettier/tslint-config-prettier#readme)|0.0002475| -|npm|microbundle|0.0002475| -|npm|mathjs|0.0002475| -|npm|const-version|0.0002475| -|npm|[is-plain-object](https://github.com/jonschlinkert/is-plain-object)|0.00023699732142857142| -|npm|jsmd|0.0002314285714285714| -|npm|is-mergeable-object|0.0002314285714285714| -|npm|gzip-size|0.0002294285714285714| -|npm|accepts|0.00022421703296703294| -|npm|terser|0.0002176895089285714| -|npm|del|0.00021386061307113936| -|npm|rollup-plugin-replace|0.00020139255702280912| -|npm|babel-plugin-external-helpers|0.00020139255702280912| -|npm|csso|0.000198| -|npm|google-closure-compiler|0.000198| -|npm|commander|0.000198| -|npm|uglify-es|0.000198| -|npm|ora|0.000198| -|npm|update-notifier|0.000198| -|npm|crass|0.000198| -|npm|sqwish|0.000198| -|npm|clean-css|0.000198| -|npm|html-minifier|0.000198| -|npm|node-version|0.000198| -|npm|parseurl|0.00019742359203296704| -|npm|ascli|0.00019601999999999998| -|npm|execa|0.00019197115384615384| -|npm|bluebird|0.00018731249999999998| -|npm|isexe|0.000185625| -|npm|[jade](http://jade-lang.com)|0.000185625| -|npm|superagent|0.000185625| -|npm|connect-flash|0.000185625| -|npm|compressible|0.0001826785714285714| -|npm|bytes|0.0001826785714285714| -|npm|[rollup-plugin-uglify](https://github.com/TrySound/rollup-plugin-uglify)|0.000182475| -|package.json|github/nlesc-sherlock/Rig|0.0001818181818181818| -|package.json|github/vibbits/phyd3|0.0001818181818181818| -|package.json|github/mathjax/MathJax|0.0001818181818181818| -|package.json|github/tobiasrausch/alfred|0.0001818181818181818| -|package.json|github/research-software-directory/research-software-directory|0.0001818181818181818| -|package.json|github/eweitz/ideogram|0.0001818181818181818| -|package.json|github/bio-tools/biotoolsSum|0.0001818181818181818| -|package.json|github/fairdataihub/SPARClink|0.0001818181818181818| -|package.json|github/amkram/shusher|0.0001818181818181818| -|package.json|github/PopMedNet-Team/popmednet|0.0001818181818181818| -|package.json|github/tortellini-tools/action|0.0001818181818181818| -|package.json|github/citation-file-format/cff-initializer-javascript|0.0001818181818181818| -|package.json|github/CrowdTruth/CrowdTruth|0.0001818181818181818| -|package.json|github/EMResearch/EvoMaster|0.0001818181818181818| -|package.json|github/bramvandijk88/cacatoo|0.0001818181818181818| -|package.json|github/Yomguithereal/talisman|0.0001818181818181818| -|package.json|github/PathwayCommons/grounding-search|0.0001818181818181818| -|package.json|github/DorianDepriester/mtex2Gmsh|0.0001818181818181818| -|package.json|github/pmkruyen/dearscholar|0.0001818181818181818| -|package.json|github/davidhoksza/MolArt|0.0001818181818181818| -|package.json|github/MichaelSel/edoJS|0.0001818181818181818| -|package.json|github/phelelani/nf-rnaSeqMetagen|0.0001818181818181818| -|package.json|github/klevis-a/kinematics-vis|0.0001818181818181818| -|package.json|github/ci-for-research/self-hosted-runners|0.0001818181818181818| -|package.json|github/NLeSC/case-law-app|0.0001818181818181818| -|package.json|github/NLeSC/ExtJS-DateTime|0.0001818181818181818| -|package.json|github/NLeSC/nlesc-serverless-boilerplate|0.0001818181818181818| -|package.json|github/NLeSC/docker-couch-admin|0.0001818181818181818| -|package.json|github/NLeSC/UncertaintyVisualization|0.0001818181818181818| -|package.json|github/NLeSC/xenon-flow|0.0001818181818181818| -|package.json|github/NLeSC/DiVE|0.0001818181818181818| -|package.json|github/NLeSC/pattyvis|0.0001818181818181818| -|package.json|github/NLeSC/spot|0.0001818181818181818| -|package.json|github/eWaterCycle/setup-singularity|0.0001818181818181818| -|package.json|github/eWaterCycle/eWaterleaf|0.0001818181818181818| -|package.json|github/eWaterCycle/setup-grpc|0.0001818181818181818| -|package.json|github/eWaterCycle/Cesium-NcWMS|0.0001818181818181818| -|package.json|github/eucp-project/storyboards|0.0001818181818181818| -|package.json|github/AA-ALERT/frbcat-web|0.0001818181818181818| -|package.json|github/sonjageorgievska/CClusTera|0.0001818181818181818| -|package.json|github/TNOCS/csWeb|0.0001818181818181818| -|package.json|github/meta-logic/sequoia|0.0001818181818181818| -|package.json|github/cinemascience/cinema_snap|0.0001818181818181818| -|package.json|github/lumen-org/lumen|0.0001818181818181818| -|package.json|github/dondi/GRNsight|0.0001818181818181818| -|package.json|github/interactivereport/OmicsView0|0.0001818181818181818| -|package.json|github/ci-for-science/self-hosted-runners|0.0001818181818181818| -|package.json|github/ADAH-EviDENce/evidence|0.0001818181818181818| -|package.json|github/iomega/paired-data-form|0.0001818181818181818| -|package.json|github/iomega/zenodo-upload|0.0001818181818181818| -|package.json|github/wangjun1996/VisFeature|0.0001818181818181818| -|package.json|github/MolMeDB/MolMeDB|0.0001818181818181818| -|package.json|gitlab/metafundev/metafun|0.0001818181818181818| -|package.json|gitlab/magnumpi/magnumpi|0.0001818181818181818| -|package.json|gitlab/geekysquirrel/bigx|0.0001818181818181818| -|npm|leaflet-geotiff-2|0.00018| -|npm|rollup-plugin-license|0.00017999999999999998| -|npm|babel-plugin-remove-comments|0.00017999999999999998| -|npm|retape|0.00017999999999999998| -|npm|test|0.00017999999999999998| -|npm|babel-eslint|0.00017710684273709482| -|npm|[time-span](https://github.com/sindresorhus/time-span#readme)|0.00017134615384615384| -|npm|loud-rejection|0.00017134615384615384| -|npm|globby|0.00017134615384615384| -|npm|csv-spectrum|0.00017134615384615384| -|npm|bops|0.00017134615384615384| -|npm|fresh|0.00015885216346153846| -|npm|etag|0.00015885216346153846| -|npm|temp-path|0.00015885216346153846| -|npm|git-state|0.0001531730769230769| -|npm|xpath|0.0001531730769230769| -|npm|coffeescript|0.0001531730769230769| -|npm|coffee-coverage|0.0001531730769230769| -|npm|[split](http://github.com/dominictarr/split)|0.0001531189903846154| -|npm|gulp-if|0.0001523783359497645| -|npm|run-sequence|0.0001523783359497645| -|npm|gulp-concat|0.00014686813186813184| -|npm|gulp-jshint|0.00014686813186813184| -|npm|gulp-rename|0.00014686813186813184| -|npm|jshint-stylish|0.00014686813186813184| -|npm|on-finished|0.00014619591346153846| -|npm|basic-auth|0.00014619591346153846| -|npm|zuul|0.00014174999999999998| -|npm|through|0.00014034065934065933| -|npm|[standard-version](https://github.com/conventional-changelog/standard-version#readme)|0.00013236263736263735| -|npm|updox|0.00013199999999999998| -|npm|safename|0.00013199999999999998| -|npm|grunt|0.0001246153846153846| -|npm|imagemin-svgo|0.0001246153846153846| -|npm|imagemin-optipng|0.0001246153846153846| -|npm|imagemin-jpegtran|0.0001246153846153846| -|npm|imagemin-gifsicle|0.0001246153846153846| -|npm|pretty-bytes|0.0001246153846153846| -|npm|plur|0.0001246153846153846| -|npm|p-map|0.0001246153846153846| -|npm|imagemin|0.0001246153846153846| -|npm|houkou|0.00012375| -|npm|watchify|0.00012122448979591836| -|npm|vinyl-source-stream|0.00012122448979591836| -|npm|vinyl-buffer|0.00012122448979591836| -|npm|gulp-gh-pages|0.00012122448979591836| -|npm|gulp-clean|0.00012122448979591836| -|npm|gulp-beautify|0.00012122448979591836| -|npm|gulp-babel|0.00012122448979591836| -|npm|babelify|0.00012122448979591836| -|npm|babel-plugin-transform-es2015-modules-commonjs|0.00012122448979591836| -|npm|resolve|0.00012118660714285712| -|npm|eslint-plugin-react|0.00012089805152830362| -|npm|eslint-plugin-jsx-a11y|0.00012089805152830362| -|npm|json-stringify-safe|0.0001164745879120879| -|npm|[angular-mocks](http://angularjs.org)|0.0001157142857142857| -|npm|gulp-angular-templatecache|0.0001157142857142857| -|npm|gulp-cssnano|0.0001157142857142857| -|npm|gulp-less|0.0001157142857142857| -|npm|[querystring](https://github.com/Gozala/querystring#readme)|0.00011345454545454546| -|npm|cross-spawn|0.00011100342809364547| -|npm|assert|0.00010799999999999998| -|npm|punycode|0.00010799999999999998| -|npm|babel-plugin-transform-runtime|0.00010385714285714284| -|npm|browser-sync|9.814632735685367e-05| -|npm|gulp-autoprefixer|9.814632735685367e-05| -|npm|split2|9.791208791208791e-05| -|npm|ubelt|9.791208791208791e-05| -|npm|asynct|9.791208791208791e-05| -|npm|event-stream|9.791208791208791e-05| -|npm|it-is|9.791208791208791e-05| -|npm|stream-spec|9.791208791208791e-05| -|npm|string-to-stream|9.791208791208791e-05| -|npm|[runmd](https://github.com/broofa/runmd)|9.428571428571429e-05| -|npm|random-seed|9.428571428571429e-05| -|npm|optional-dev-dependency|9.428571428571429e-05| -|npm|bundlewatch|9.428571428571429e-05| -|npm|mocha-headless-chrome|9.188437499999998e-05| -|npm|gulp-format-md|9.188437499999998e-05| -|npm|[nonew](https://github.com/frewsxcv/nonew.js)|9e-05| -|npm|[three.trackball](https://github.com/anvaka/three.trackball)|9e-05| -|npm|[three-buffergeometry-sort](https://github.com/frewsxcv/three-buffergeometry-sort)|9e-05| -|npm|[grunt-cli](https://github.com/gruntjs/grunt-cli#readme)|9e-05| -|npm|[natives](https://github.com/addaleax/natives#readme)|9e-05| -|npm|docdown|8.567307692307692e-05| -|npm|qunitjs|8.567307692307692e-05| -|npm|platform|8.567307692307692e-05| -|npm|qunit-extras|8.567307692307692e-05| -|npm|babel-preset-es2016|8.400857142857143e-05| -|npm|babel-preset-es2017|8.400857142857143e-05| -|npm|[pre-commit](https://github.com/observing/pre-commit)|8.12883182035356e-05| -|npm|native-hello-world|7.87580357142857e-05| -|npm|module-not-found-error|7.87580357142857e-05| -|npm|fill-keys|7.87580357142857e-05| -|npm|karma-coverage|7.803198009973219e-05| -|npm|karma|7.803198009973219e-05| -|npm|promise|7.783482142857142e-05| -|npm|gulp-util|7.756009615384615e-05| -|npm|browserify-istanbul|7.390411490683229e-05| -|npm|mime-types|7.390411490683229e-05| -|npm|combined-stream|7.390411490683229e-05| -|npm|babel-register|7.242857142857142e-05| -|npm|[types](http://nodeca.github.com/types/)|7.038461538461551e-05| -|npm|bl|6.963e-05| -|npm|path-exists|6.95054945054945e-05| -|npm|babel-loader|6.95054945054945e-05| -|npm|eslint-config-airbnb|6.807692307692308e-05| -|npm|conventional-github-releaser|6.69924812030075e-05| -|npm|corp-semantic-release|6.69924812030075e-05| -|npm|gulp-clean-css|6.69924812030075e-05| -|npm|request|6.284161490683235e-05| -|npm|[file-saver](https://github.com/eligrey/FileSaver.js#readme)|6.05631726374765e-05| -|npm|[node-minify](https://github.com/srod/node-minify)|6.0000000000000456e-05| -|npm|[apollo-server-express](https://github.com/apollographql/apollo-server#readme)|6e-05| -|npm|[graphql](https://github.com/graphql/graphql-js)|6e-05| -|npm|[Matlab](https://github.com/abdennour/masfufa#readme)|6e-05| -|npm|Gmsh|6e-05| -|npm|[MTEX](https://github.com/diversemix/mtex#readme)|6e-05| -|npm|babel-plugin-transform-object-rest-spread|5.9469480099732196e-05| -|npm|karma-sourcemap-loader|5.9469480099732196e-05| -|npm|karma-mocha|5.9469480099732196e-05| -|npm|karma-chrome-launcher|5.9469480099732196e-05| -|npm|karma-chai|5.9469480099732196e-05| -|npm|[xml2js](https://github.com/Leonidas-from-XIV/node-xml2js)|5.7954545454545634e-05| -|npm|karma-cli|5.6639423076923075e-05| -|npm|cli-color|5.654423076923076e-05| -|npm|babel-jest|5.593107142857142e-05| -|npm|[babel-polyfill](https://babeljs.io/)|5.567090803932925e-05| -|npm|pkgfiles|5.534161490683229e-05| -|npm|puppeteer|5.534161490683229e-05| -|npm|obake|5.534161490683229e-05| -|npm|is-node-modern|5.534161490683229e-05| -|npm|in-publish|5.534161490683229e-05| -|npm|formidable|5.534161490683229e-05| -|npm|far|5.534161490683229e-05| -|npm|fake|5.534161490683229e-05| -|npm|asynckit|5.534161490683229e-05| -|npm|[material-ui](http://material-ui.com/)|5.4000000000000255e-05| -|npm|[crossfilter2](https://crossfilter.github.io/crossfilter/)|5.172077922077936e-05| -|npm|tar|4.9004999999999996e-05| -|npm|closurecompiler-externs|4.9004999999999996e-05| -|npm|jsdoc|4.9004999999999996e-05| -|npm|seed-random|4.640625e-05| -|npm|freeport|4.640625e-05| -|npm|ws|4.640625e-05| -|npm|node-uuid|4.640625e-05| -|npm|event-emitter|4.640625e-05| -|npm|[csv-parser](https://github.com/mafintosh/csv-parser)|4.500000000000009e-05| -|npm|[svd-js](https://github.com/danilosalvati/svd-js#readme)|4.500000000000009e-05| -|npm|[hasha](https://github.com/sindresorhus/hasha#readme)|4.500000000000009e-05| -|npm|[font-awesome-webpack](https://github.com/gowravshekar/font-awesome-webpack)|4.5e-05| -|npm|serialize-javascript|4.4192008928571424e-05| -|npm|jest-worker|4.4192008928571424e-05| -|npm|babel-plugin-unassert|4.242857142857142e-05| -|npm|babel-preset-power-assert|4.242857142857142e-05| -|npm|eslint-config-mysticatea|4.242857142857142e-05| -|npm|if-node-version|4.242857142857142e-05| -|npm|opener|4.242857142857142e-05| -|npm|power-assert|4.242857142857142e-05| -|npm|shelljs|4.242857142857142e-05| -|npm|chokidar|4.242857142857142e-05| -|npm|duplexer|4.242857142857142e-05| -|npm|glob2base|4.242857142857142e-05| -|npm|shell-quote|4.242857142857142e-05| -|npm|subarg|4.242857142857142e-05| -|npm|testing-library|4.153846153846154e-05| -|npm|escape-html|4.153846153846154e-05| -|npm|methods|3.857142857142857e-05| -|npm|random-buffer|3.807692307692308e-05| -|npm|nock|3.807692307692308e-05| -|npm|is-zip|3.807692307692308e-05| -|npm|pify|3.807692307692308e-05| -|npm|p-event|3.807692307692308e-05| -|npm|make-dir|3.807692307692308e-05| -|npm|got|3.807692307692308e-05| -|npm|get-stream|3.807692307692308e-05| -|npm|filenamify|3.807692307692308e-05| -|npm|ext-name|3.807692307692308e-05| -|npm|decompress|3.807692307692308e-05| -|npm|content-disposition|3.807692307692308e-05| -|npm|archive-type|3.807692307692308e-05| -|npm|[webpack-dev-server](https://github.com/webpack/webpack-dev-server#readme)|3.807692307692308e-05| -|npm|[wallaby-webpack](https://github.com/jeffling/wallaby-webpack#readme)|3.807692307692308e-05| -|npm|package-yaml|3.807692307692308e-05| -|npm|json-loader|3.807692307692308e-05| -|npm|isparta-loader|3.807692307692308e-05| -|npm|isparta|3.807692307692308e-05| -|npm|gh-pages|3.807692307692308e-05| -|npm|gatsby|3.807692307692308e-05| -|npm|expect|3.807692307692308e-05| -|npm|enzyme-adapter-react-16|3.807692307692308e-05| -|npm|enzyme|3.807692307692308e-05| -|npm|conventional-changelog|3.807692307692308e-05| -|npm|chai-enzyme|3.807692307692308e-05| -|npm|babel-plugin-__coverage__|3.807692307692308e-05| -|npm|add-stream|3.807692307692308e-05| -|npm|karma-webpack|3.807692307692308e-05| -|npm|karma-sinon|3.807692307692308e-05| -|npm|karma-mocha-reporter|3.807692307692308e-05| -|npm|lodash.isequal|3.807692307692308e-05| -|npm|classnames|3.807692307692308e-05| -|npm|clamp|3.807692307692308e-05| -|npm|[remark-sectionize](https://github.com/jake-low/remark-sectionize#readme)|3.600000000000017e-05| -|npm|fortawesome|3.375e-05| -|npm|should-util|3.3749999999999994e-05| -|npm|mocha-better-spec-reporter|3.3749999999999994e-05| -|npm|should-equal|3.3749999999999994e-05| -|npm|eslint-config-shouldjs|3.3749999999999994e-05| -|npm|should-type|3.3749999999999994e-05| -|npm|should-format|3.3749999999999994e-05| -|npm|should-type-adaptors|3.3749999999999994e-05| -|npm|[compression](https://github.com/expressjs/compression#readme)|3.3214285714286036e-05| -|npm|[react-scripts](https://github.com/facebook/create-react-app#readme)|3.184615384615385e-05| -|npm|which|3.173324175824181e-05| -|npm|webpack-manifest-plugin|3.1428571428571424e-05| -|npm|script-loader|3.1428571428571424e-05| -|npm|recursive-readdir|3.1428571428571424e-05| -|npm|react-dev-utils|3.1428571428571424e-05| -|npm|output-file-sync|3.1428571428571424e-05| -|npm|npm-release|3.1428571428571424e-05| -|npm|jest-canvas-mock|3.1428571428571424e-05| -|npm|imports-loader|3.1428571428571424e-05| -|npm|fs-promise|3.1428571428571424e-05| -|npm|flow-typed|3.1428571428571424e-05| -|npm|flow-bin|3.1428571428571424e-05| -|npm|find-cache-dir|3.1428571428571424e-05| -|npm|filesize|3.1428571428571424e-05| -|npm|file-loader|3.1428571428571424e-05| -|npm|fake-xml-http-request|3.1428571428571424e-05| -|npm|eslint-plugin-flowtype|3.1428571428571424e-05| -|npm|eslint-loader|3.1428571428571424e-05| -|npm|eslint-config-react-app|3.1428571428571424e-05| -|npm|dmd-clear|3.1428571428571424e-05| -|npm|dagre|3.1428571428571424e-05| -|npm|colors|3.1428571428571424e-05| -|npm|child-process-promise|3.1428571428571424e-05| -|npm|case-sensitive-paths-webpack-plugin|3.1428571428571424e-05| -|npm|babel-plugin-flow-react-proptypes|3.1428571428571424e-05| -|npm|[form-data](https://github.com/form-data/form-data#readme)|3.1419642857142985e-05| -|npm|gulp-marked|3.115384615384615e-05| -|npm|gulp-mocha-phantomjs|3.115384615384615e-05| -|npm|humanize|3.115384615384615e-05| -|npm|acorn|3.115384615384615e-05| -|npm|chai-jquery|3.115384615384615e-05| -|npm|gulp-iife|3.115384615384615e-05| -|npm|gulp-cache|3.115384615384615e-05| -|npm|gulp-closure-compiler|3.115384615384615e-05| -|npm|drool|3.115384615384615e-05| -|npm|gulp-file|3.115384615384615e-05| -|npm|gulp-imagemin|3.115384615384615e-05| -|npm|escodegen|3.115384615384615e-05| -|npm|prismjs|3.115384615384615e-05| -|npm|gulp-zip|3.115384615384615e-05| -|npm|gulp-csso|3.115384615384615e-05| -|npm|gulp-shell|3.115384615384615e-05| -|npm|merge-stream|3.115384615384615e-05| -|npm|swig|3.115384615384615e-05| -|npm|vinyl-paths|3.115384615384615e-05| -|npm|gulp-connect|3.115384615384615e-05| -|npm|gulp-css-inline-images|3.115384615384615e-05| -|npm|gulp-front-matter|3.115384615384615e-05| -|npm|gulp-jscs|3.115384615384615e-05| -|npm|gulp-open|3.115384615384615e-05| -|npm|gulp-flatten|3.115384615384615e-05| -|npm|gulp-load-plugins|3.115384615384615e-05| -|npm|gulp-sass|3.115384615384615e-05| -|npm|gulp-header|3.115384615384615e-05| -|npm|gulp-size|3.115384615384615e-05| -|npm|gulp-replace|3.115384615384615e-05| -|npm|gulp-sourcemaps|3.115384615384615e-05| -|npm|gulp-subtree|3.115384615384615e-05| -|npm|gulp-tap|3.115384615384615e-05| -|npm|[closurecompiler](https://github.com/dcodeIO/ClosureCompiler.js#readme)|3.088799999999999e-05| -|npm|[metascript](https://github.com/dcodeIO/MetaScript)|3.088799999999999e-05| -|npm|[testjs](https://github.com/dcodeIO/test.js)|3.088799999999999e-05| -|npm|[html-entities](https://github.com/mdevils/html-entities#readme)|3e-05| -|npm|[long](https://github.com/dcodeIO/long.js#readme)|3e-05| -|npm|[mnemonist](https://github.com/yomguithereal/mnemonist#readme)|3e-05| -|npm|[obliterator](https://github.com/yomguithereal/obliterator#readme)|3e-05| -|npm|[pandemonium](https://github.com/yomguithereal/pandemonium#readme)|3e-05| -|npm|its-set|2.9999999999999994e-05| -|npm|babel-plugin-transform-es2015-modules-umd|2.9999999999999994e-05| -|npm|babel-preset-stage-2|2.9999999999999994e-05| -|npm|gulp-eslint|2.9999999999999994e-05| -|npm|eslint-plugin-babel|2.9999999999999994e-05| -|npm|pretty-hrtime|2.9402999999999996e-05| -|npm|utf8|2.9402999999999996e-05| -|npm|[babel-plugin-transform-undefined-to-void](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-transform-simplify-comparison-operators](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-transform-remove-debugger](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-transform-remove-console](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-transform-regexp-constructors](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-transform-minify-booleans](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-transform-merge-sibling-variables](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-transform-member-expression-literals](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-transform-inline-consecutive-adds](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|[babel-plugin-minify-simplify](https://github.com/babel/minify#readme)|2.7394099378881988e-05| -|npm|babel-plugin-minify-replace|2.7394099378881988e-05| -|npm|babel-plugin-minify-numeric-literals|2.7394099378881988e-05| -|npm|babel-plugin-minify-mangle-names|2.7394099378881988e-05| -|npm|babel-plugin-minify-infinity|2.7394099378881988e-05| -|npm|babel-plugin-minify-guarded-expressions|2.7394099378881988e-05| -|npm|babel-plugin-minify-flip-comparisons|2.7394099378881988e-05| -|npm|babel-plugin-minify-dead-code-elimination|2.7394099378881988e-05| -|npm|babel-plugin-minify-constant-folding|2.7394099378881988e-05| -|npm|babel-plugin-minify-builtins|2.7394099378881988e-05| -|npm|babel-helper-evaluate-path|2.712015838509317e-05| -|npm|esutils|2.712015838509317e-05| -|npm|babel-helper-is-void-0|2.712015838509317e-05| -|npm|proxyquire|2.698928571428568e-05| -|npm|[d3-cloud](https://www.jasondavies.com/wordcloud/)|2.5714285714285982e-05| -|npm|[path](http://nodejs.org/docs/latest/api/path.html)|2.5714285714285982e-05| -|npm|[react-grid-gallery](https://benhowell.github.io/react-grid-gallery/)|2.5714285714285982e-05| -|npm|[deepmerge](https://github.com/TehShrike/deepmerge)|2.5714285714285982e-05| -|npm|[js-logger](http://github.com/jonnyreeves/js-logger)|2.5714285714285982e-05| -|npm|[atob](https://git.coolaj86.com/coolaj86/atob.js.git)|2.5714285714285714e-05| -|npm|[node-html-parser](https://github.com/taoqf/node-fast-html-parser)|2.5714285714285714e-05| -|npm|[serve-favicon](https://github.com/expressjs/serve-favicon#readme)|2.5673076923077045e-05| -|npm|assume|2.4233241758241755e-05| -|npm|spawn-sync|2.4233241758241755e-05| -|npm|[morgan](https://github.com/expressjs/morgan#readme)|2.362762237762247e-05| -|npm|[deep-filter](https://github.com/IndigoUnited/js-deep-filter#readme)|2.2500000000000045e-05| -|npm|[kebabcase-keys](https://github.com/mattii/kebabcase-keys#readme)|2.2500000000000045e-05| -|npm|sinon-chai|2.139255702280912e-05| -|npm|karma-tap-reporter|2.139255702280912e-05| -|npm|karma-spec-reporter|2.139255702280912e-05| -|npm|karma-rollup-preprocessor|2.139255702280912e-05| -|npm|karma-html-reporter|2.139255702280912e-05| -|npm|karma-firefox-launcher|2.139255702280912e-05| -|npm|karma-chai-sinon|2.139255702280912e-05| -|npm|eslint-plugin-mocha|2.139255702280912e-05| -|npm|eslint-config-nfl|2.139255702280912e-05| -|npm|cz-conventional-changelog|2.139255702280912e-05| -|npm|conventional-changelog-cli|2.139255702280912e-05| -|npm|babel-plugin-transform-class-properties|2.139255702280912e-05| -|npm|babel-plugin-istanbul|2.139255702280912e-05| -|npm|react-side-effect|2.139255702280912e-05| -|npm|react-fast-compare|2.139255702280912e-05| -|npm|tslint-config-semistandard|2.0625e-05| -|npm|optimist|2.0625e-05| -|npm|eslint-plugin-dependencies|2.0625e-05| -|npm|eslint-config-semistandard|2.0625e-05| -|npm|doctoc|2.0625e-05| -|npm|snappy|2.0625e-05| -|npm|retry|2.0625e-05| -|npm|optional|2.0625e-05| -|npm|nested-error-stacks|2.0625e-05| -|npm|denque|2.0625e-05| -|npm|buffermaker|2.0625e-05| -|npm|buffer-crc32|2.0625e-05| -|npm|binary|2.0625e-05| -|npm|[react-mdl](https://github.com/react-mdl/react-mdl#readme)|2.0000000000000066e-05| -|npm|[react-sigma](https://github.com/dunnock/react-sigma)|2.0000000000000066e-05| -|npm|[react-simple-file-input](https://github.com/greena13/react-simple-file-input#readme)|2.0000000000000066e-05| -|npm|taper|1.8562499999999997e-05| -|npm|server-destroy|1.8562499999999997e-05| -|npm|phantomjs-prebuilt|1.8562499999999997e-05| -|npm|karma-tap|1.8562499999999997e-05| -|npm|karma-phantomjs-launcher|1.8562499999999997e-05| -|npm|karma-browserify|1.8562499999999997e-05| -|npm|function-bind|1.8562499999999997e-05| -|npm|buffer-equal|1.8562499999999997e-05| -|npm|tunnel-agent|1.8562499999999997e-05| -|npm|tough-cookie|1.8562499999999997e-05| -|npm|qs|1.8562499999999997e-05| -|npm|performance-now|1.8562499999999997e-05| -|npm|oauth-sign|1.8562499999999997e-05| -|npm|isstream|1.8562499999999997e-05| -|npm|is-typedarray|1.8562499999999997e-05| -|npm|http-signature|1.8562499999999997e-05| -|npm|har-validator|1.8562499999999997e-05| -|npm|forever-agent|1.8562499999999997e-05| -|npm|extend|1.8562499999999997e-05| -|npm|caseless|1.8562499999999997e-05| -|npm|aws4|1.8562499999999997e-05| -|npm|aws-sign2|1.8562499999999997e-05| -|npm|[node-gzip](https://github.com/Rebsos/node-gzip#readme)|1.8000000000000085e-05| -|npm|[react-dnd](https://github.com/react-dnd/react-dnd#readme)|1.8e-05| -|npm|[react-dnd-html5-backend](https://github.com/react-dnd/react-dnd#readme)|1.8e-05| -|npm|[react-plotly.js](https://github.com/plotly/react-plotly.js#readme)|1.8e-05| -|npm|[angular-toastr](https://github.com/Foxandxss/angular-toastr#readme)|1.6363636363636325e-05| -|npm|[dialog-polyfill](https://github.com/GoogleChrome/dialog-polyfill)|1.6363636363636325e-05| -|npm|[grunt-contrib-imagemin](https://github.com/gruntjs/grunt-contrib-imagemin#readme)|1.6363636363636325e-05| -|npm|[material-design-lite](https://github.com/google/material-design-lite#readme)|1.6363636363636325e-05| -|npm|[color-blend](https://github.com/Loilo/color-blend#readme)|1.5000000000000114e-05| -|npm|[css-loader](https://github.com/webpack-contrib/css-loader)|1.4849999999999998e-05| -|npm|[less-loader](https://github.com/webpack-contrib/less-loader)|1.4849999999999998e-05| -|npm|[style-loader](https://github.com/webpack-contrib/style-loader)|1.4849999999999998e-05| -|npm|[aws-amplify](https://aws-amplify.github.io/)|1.3846153846153847e-05| -|npm|[aws-amplify-react](https://github.com/aws-amplify/amplify-js#readme)|1.3846153846153847e-05| -|npm|[cors](https://github.com/expressjs/cors#readme)|1.2954545454545541e-05| -|npm|[cpx](https://github.com/mysticatea/cpx)|1.2857142857142991e-05| -|npm|tls|1.2857142857142991e-05| -|npm|express-flash|1.1250000000000023e-05| -|npm|[passport-local](https://www.passportjs.org/packages/passport-local/?utm_source=github&utm_medium=referral&utm_campaign=passport-local)|1.1250000000000023e-05| -|npm|[ng-bootstrap](https://github.com/valor-software/ngx-bootstrap#readme)|1.125e-05| -|npm|[react-helmet](https://github.com/nfl/react-helmet#readme)|1.0588235294117787e-05| -|npm|[root](https://github.com/mafintosh/root#readme)|1.058823529411766e-05| -|npm|[bcryptjs](https://github.com/dcodeIO/bcrypt.js#readme)|7.500000000000057e-06| -|npm|[hypertimer](https://github.com/enmasseio/hypertimer#readme)|7.500000000000057e-06| -|npm|[jwt-simple](https://github.com/hokaccha/node-jwt-simple#readme)|7.500000000000057e-06| -|npm|[kafka-node](https://github.com/SOHU-Co/kafka-node#readme)|7.500000000000057e-06| -|npm|[mqtt-router](https://github.com/wolfeidau/mqtt-router)|7.500000000000057e-06| -|npm|[benchmark](https://benchmarkjs.com/)|6.923076923076966e-06| -|npm|[binary-split](https://github.com/maxogden/binary-split#readme)|6.923076923076966e-06| -|npm|[download](https://github.com/kevva/download#readme)|6.923076923076966e-06| -|npm|[ftp](https://github.com/mscdex/node-ftp)|6.923076923076966e-06| -|npm|[ndjson](https://github.com/ndjson/ndjson.js)|6.923076923076966e-06| -|npm|pipeline|6.923076923076966e-06| -|npm|[filesaver](https://github.com/jacoborus/node-filesaver)|6.666666666666689e-06| -|npm|[d3-v4-grid](https://github.com/finnfiddle/d3-v4-grid#readme)|5.454545454545484e-06| -|npm|[errorhandler](https://github.com/expressjs/errorhandler#readme)|5.454545454545484e-06| -|npm|[parallelshell](https://github.com/darkguy2008/parallelshell)|5.454545454545484e-06| -|npm|[save-svg-as-png](https://github.com/exupero/saveSvgAsPng)|5.454545454545484e-06| -|npm|[url](https://github.com/defunctzombie/node-url#readme)|5.454545454545484e-06| -|npm|[method-override](https://github.com/expressjs/method-override#readme)|5.454545454545421e-06| -|npm|[dedent](https://github.com/dmnd/dedent)|5.091428571428595e-06| -|npm|[jsx-to-string](https://github.com/alansouzati/jsx-to-string#readme)|4.736842105263181e-06| -|npm|[pretty-checkbox](https://lokesh-coder.github.io/pretty-checkbox)|4.736842105263181e-06| -|npm|[abbrev](https://github.com/isaacs/abbrev-js#readme)|3.0508474576271387e-06| -|npm|[aproba](https://github.com/iarna/aproba)|3.0508474576271387e-06| -|npm|[chownr](https://github.com/isaacs/chownr#readme)|3.0508474576271387e-06| -|npm|concat-map|3.0508474576271387e-06| -|npm|[console-control-strings](https://github.com/iarna/console-control-strings#readme)|3.0508474576271387e-06| -|npm|[deep-extend](https://github.com/unclechu/node-deep-extend)|3.0508474576271387e-06| -|npm|text-table|1.7134615384615512e-06| -|npm|[utfx](https://github.com/dcodeIO/utfx)|1.4849999999999964e-06| -|npm|[babel-plugin-transform-remove-undefined](https://github.com/babel/minify#readme)|2.739409937888189e-07| -|npm|[babel-plugin-transform-property-literals](https://github.com/babel/minify#readme)|2.739409937888189e-07| -|npm|[babel-plugin-minify-type-constructors](https://github.com/babel/minify#readme)|2.739409937888189e-07| +|npm|[core-js](https://github.com/zloirock/core-js#readme)|0.0006059147586586949| +|npm|[nuxt](https://github.com/nuxt/nuxt.js#readme)|0.0005596385542168675| +|npm|[angular](http://angularjs.org)|0.0005197587101653367| +|npm|[fs](https://github.com/npm/security-holder#readme)|0.00047722697967745957| +|npm|[express](http://expressjs.com/)|0.00047717263910788005| +|npm|[lodash](https://lodash.com/)|0.0004753510570591012| +|npm|[papaparse](http://papaparse.com)|0.0004270740103270224| +|npm|[serve-static](https://github.com/expressjs/serve-static#readme)|0.0004070115690032859| +|npm|nestjs|0.0004043291811313049| +|npm|[axios](https://axios-http.com)|0.0003867285121113996| +|npm|[react-dom](https://reactjs.org/)|0.0003824039160564474| +|npm|[react](https://reactjs.org/)|0.0003824039160564474| +|npm|[node-fetch](https://github.com/node-fetch/node-fetch)|0.0003773788392534563| +|npm|[finalhandler](https://github.com/pillarjs/finalhandler#readme)|0.00036144578313253013| +|npm|[d3](https://d3js.org)|0.00031949379149250057| +|npm|[d3-dispatch](https://d3js.org/d3-dispatch/)|0.00028889845094664374| +|npm|[mocha](https://mochajs.org/)|0.00028854750485385637| +|npm|[three](https://threejs.org/)|0.00028322891566265063| +|npm|[ajv](https://ajv.js.org)|0.000278930849448213| +|npm|[file-type](https://github.com/sindresorhus/file-type#readme)|0.0002733781278962002| +|npm|[midi-parser-js](https://github.com/colxi/midi-parser-js#readme)|0.0002710843373493976| +|npm|[yargs](https://yargs.js.org/)|0.0002710843373493976| +|npm|[plotly.js-dist-min](https://github.com/plotly/plotly.js#readme)|0.0002710843373493976| +|npm|[docusaurus](https://github.com/facebook/docusaurus)|0.0002710843373493976| +|npm|[quasar](https://quasar.dev)|0.0002710843373493976| +|npm|[vows](https://github.com/cloudhead/vows)|0.0002603519127463744| +|npm|[remark-directive](https://github.com/remarkjs/remark-directive#readme)|0.0002168674698795181| +|npm|[js-yaml](https://github.com/nodeca/js-yaml#readme)|0.0001957831325301205| +|npm|[body-parser](https://github.com/expressjs/body-parser#readme)|0.00019031135468447217| +|npm|[pg](https://github.com/brianc/node-postgres)|0.00018776404318572994| +|npm|[cytoscape](http://js.cytoscape.org)|0.00018776404318572994| +|npm|[react-select](https://github.com/JedWatson/react-select)|0.00018426647767540752| +|npm|[jshint](http://jshint.com/)|0.00018079240037071362| +|npm|[dotenv](https://github.com/motdotla/dotenv#readme)|0.00017808245970896575| +|npm|[requirejs](http://github.com/jrburke/r.js)|0.00016819889447901496| +|npm|[react-images](https://jossmac.github.io/react-images/)|0.00016220801573641505| +|npm|[pako](https://github.com/nodeca/pako#readme)|0.00015645438898450947| +|npm|[react-redux](https://github.com/reduxjs/react-redux)|0.0001563320952984872| +|npm|[choices.js](https://github.com/jshjohnson/Choices#readme)|0.0001549053356282272| +|npm|[filepond](https://pqina.nl/filepond/)|0.0001549053356282272| +|npm|[cytoscape-cola](https://github.com/cytoscape/cytoscape.js-cola)|0.0001549053356282272| +|npm|[modernizr](https://github.com/Modernizr/Modernizr)|0.0001549053356282272| +|npm|[vue](https://github.com/vuejs/core/tree/main/packages/vue#readme)|0.0001549053356282272| +|npm|[vue-router](https://github.com/vuejs/router#readme)|0.0001549053356282272| +|npm|[rc-slider](http://github.com/react-component/slider/)|0.00014901712111604312| +|npm|[moment](https://momentjs.com)|0.00014675481087834914| +|npm|[tape](https://github.com/substack/tape)|0.00014284953607989173| +|npm|[chai](http://chaijs.com)|0.0001392719139047955| +|npm|[d3-array](https://d3js.org/d3-array/)|0.00013734939759036145| +|npm|[d3-scale](https://d3js.org/d3-scale/)|0.00013734939759036145| +|npm|[d3-brush](https://d3js.org/d3-brush/)|0.0001355421686746988| +|npm|[d3-fetch](https://d3js.org/d3-fetch/)|0.0001355421686746988| +|npm|[d3-format](https://d3js.org/d3-format/)|0.0001355421686746988| +|npm|[fflate](https://101arrowz.github.io/fflate)|0.0001355421686746988| +|npm|[ajv-formats](https://github.com/ajv-validator/ajv-formats#readme)|0.0001355421686746988| +|npm|[mkdirp](https://github.com/isaacs/node-mkdirp#readme)|0.00013551388969923277| +|npm|eslint|0.00013485577235418814| +|npm|[webpack](https://github.com/webpack/webpack)|0.0001345880573696775| +|npm|[nyc](https://istanbul.js.org/)|0.00012552070576261087| +|npm|[babyparse](https://github.com/Rich-Harris/BabyParse#readme)|0.00012048192771084337| +|npm|[colormap](https://github.com/bpostlethwaite/colormap#readme)|0.00012048192771084337| +|npm|[apexcharts](https://apexcharts.com)|0.00012048192771084337| +|npm|[idb](https://github.com/jakearchibald/idb#readme)|0.00012048192771084337| +|npm|[lodash.debounce](https://lodash.com/)|0.00012048192771084337| +|npm|[nanoid](https://github.com/ai/nanoid#readme)|0.00012048192771084337| +|npm|vue-apexcharts|0.00012048192771084337| +|npm|[vuex-persist](https://github.com/championswimmer/vuex-persist#readme)|0.00012048192771084337| +|npm|[esm](https://github.com/standard-things/esm#readme)|0.00011474740139916023| +|npm|react-router-dom|0.00011168291032329228| +|npm|[fs-extra](https://github.com/jprichardson/node-fs-extra)|0.00010917867900172117| +|npm|[auspice](https://www.npmjs.com/package/auspice)|0.00010843373493975904| +|npm|[heroku-ssl-redirect](https://github.com/paulomcnally/node-heroku-ssl-redirect)|0.00010843373493975904| +|npm|[react-file-drop](https://github.com/sarink/react-file-drop#readme)|0.00010843373493975904| +|npm|[rxjs](https://rxjs.dev)|0.0001068536366697835| +|npm|rollup|0.00010612287808249586| +|npm|[mongoose](https://mongoosejs.com)|0.00010452828262201348| +|npm|[passport](https://www.passportjs.org/)|0.00010452828262201348| +|npm|[prop-types](https://facebook.github.io/react/)|0.00010413207627326819| +|npm|[nodemon](https://nodemon.io)|0.00010292358244165474| +|npm|[semver](https://github.com/npm/node-semver#readme)|0.00010282075552295657| +|npm|[jquery](https://jquery.com)|0.00010191976698000794| +|npm|[angular-animate](http://angularjs.org)|9.85761226725082e-05| +|npm|[angular-sanitize](http://angularjs.org)|9.85761226725082e-05| +|npm|[angular-touch](http://angularjs.org)|9.85761226725082e-05| +|npm|[colorbrewer](http://colorbrewer2.org/)|9.85761226725082e-05| +|npm|[dc](http://dc-js.github.io/dc.js/)|9.85761226725082e-05| +|npm|[uglify-js](https://github.com/mishoo/UglifyJS#readme)|9.493203374723383e-05| +|npm|[babel-cli](https://babeljs.io/)|9.44701993563483e-05| +|npm|[bootstrap](https://getbootstrap.com/)|9.340408071916147e-05| +|npm|[react-bootstrap](https://react-bootstrap.github.io/)|9.340408071916147e-05| +|npm|react-router-bootstrap|9.231974336976388e-05| +|npm|[ProtVista](https://github.com/ebi-uniprot/ProtVista)|9.036144578313253e-05| +|npm|[downloadjs](http://danml.com/download.html)|9.036144578313253e-05| +|npm|[events](https://github.com/Gozala/events#readme)|9.036144578313253e-05| +|npm|[litemol](https://webchemdev.ncbr.muni.cz/LiteMol/)|9.036144578313253e-05| +|npm|[semantic-ui-button](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-dropdown](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-label](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[semantic-ui-transition](http://www.semantic-ui.com)|9.036144578313253e-05| +|npm|[xlsx](https://sheetjs.com/)|8.877615726062143e-05| +|npm|[coveralls](https://github.com/nickmerwin/node-coveralls#readme)|8.75494416343128e-05| +|npm|[winston](https://github.com/winstonjs/winston#readme)|8.688600556070436e-05| +|npm|[tap](http://www.node-tap.org/)|8.305465669719293e-05| +|npm|[ava](https://avajs.dev)|8.263355620283331e-05| +|npm|[uuid](https://github.com/uuidjs/uuid#readme)|8.082758698231184e-05| +|npm|[tslib](https://www.typescriptlang.org/)|7.939513464549202e-05| +|npm|[webpack-cli](https://github.com/webpack/webpack-cli/tree/master/packages/webpack-cli)|7.93459552495697e-05| +|npm|[supertest](https://github.com/visionmedia/supertest#readme)|7.858681228410144e-05| +|npm|[swagger-ui-express](https://github.com/scottie1984/swagger-ui-express)|7.846248095380217e-05| +|npm|[zone.js](https://github.com/angular/angular#readme)|7.831844326458376e-05| +|npm|[concurrently](https://github.com/open-cli-tools/concurrently#readme)|7.74526678141136e-05| +|npm|[cors-anywhere](https://github.com/Rob--W/cors-anywhere#readme)|7.74526678141136e-05| +|npm|[dotenv-webpack](https://github.com/mrsteele/dotenv-webpack#readme)|7.74526678141136e-05| +|npm|net|7.74526678141136e-05| +|npm|[typescript](https://www.typescriptlang.org/)|7.741717855330557e-05| +|npm|[bcrypt](https://github.com/kelektiv/node.bcrypt.js#readme)|7.671686746987951e-05| +|npm|process|7.667814113597246e-05| +|npm|util|7.667814113597246e-05| +|npm|spc|7.667814113597246e-05| +|npm|[debug](https://github.com/debug-js/debug#readme)|7.657352985933303e-05| +|npm|[mathjs](https://mathjs.org)|7.515060240963855e-05| +|npm|husky|7.502417829260794e-05| +|npm|expect.js|7.417545180722892e-05| +|npm|[commander](https://github.com/tj/commander.js#readme)|7.40323795180723e-05| +|npm|eslint-plugin-import|7.353473842648069e-05| +|npm|[semantic-release](https://github.com/semantic-release/semantic-release#readme)|7.351439656932816e-05| +|npm|[istanbul](https://github.com/gotwarlost/istanbul#readme)|7.137208742923167e-05| +|npm|[xo](https://github.com/xojs/xo#readme)|7.050426982655898e-05| +|npm|babel-preset-env|6.918490843974291e-05| +|npm|[express-handlebars](https://github.com/express-handlebars/express-handlebars)|6.77710843373494e-05| +|npm|[express-session](https://github.com/expressjs/session#readme)|6.77710843373494e-05| +|npm|[helmet](https://helmetjs.github.io/)|6.77710843373494e-05| +|npm|[node-cmd](https://github.com/RIAEvangelist/node-cmd)|6.77710843373494e-05| +|npm|[passport-local-mongoose](https://github.com/saintedlama/passport-local-mongoose#readme)|6.77710843373494e-05| +|npm|[babel-preset-minify](https://github.com/babel/minify#readme)|6.426953235320761e-05| +|npm|sax|6.387645595419487e-05| +|npm|[d3-dsv](https://d3js.org/d3-dsv/)|6.378454996456414e-05| +|npm|[diff2html](https://diff2html.xyz/)|6.378454996456414e-05| +|npm|[difflib-ts](https://github.com/mailmangroup/difflib-ts#readme)|6.378454996456414e-05| +|npm|[react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form#readme)|6.378454996456414e-05| +|npm|react-schemaorg|6.378454996456414e-05| +|npm|[sinon](https://sinonjs.org/)|6.246059901768941e-05| +|npm|[colors](https://github.com/Marak/colors.js)|6.21342512908778e-05| +|npm|[date-fns](https://github.com/date-fns/date-fns#readme)|6.10684496226665e-05| +|npm|[plotly.js](https://github.com/plotly/plotly.js#readme)|6.060814687320711e-05| +|npm|[ajv-errors](https://github.com/epoberezkin/ajv-errors#readme)|6.0240963855421684e-05| +|npm|[heta-parser](https://github.com/hetalang/heta-parser#readme)|6.0240963855421684e-05| +|npm|[inquirer](https://github.com/SBoudrias/Inquirer.js#readme)|6.0240963855421684e-05| +|npm|[markdown-it](https://github.com/markdown-it/markdown-it#readme)|6.0240963855421684e-05| +|npm|[mathjs-mathml](https://github.com/insysbio/mathjs-mathml#readme)|6.0240963855421684e-05| +|npm|[random-id](https://github.com/KingCosmic/random-id#readme)|6.0240963855421684e-05| +|npm|npm-run-all|6.017416920428968e-05| +|npm|jest|6.01630266561216e-05| +|npm|validator|5.612036523819248e-05| +|npm|eslint-plugin-standard|5.405066905730577e-05| +|npm|eslint-plugin-promise|5.405066905730577e-05| +|npm|eslint-plugin-node|5.405066905730577e-05| +|npm|eslint-config-standard|5.405066905730577e-05| +|npm|[standard](https://standardjs.com)|5.272987786029572e-05| +|npm|[mqtt](https://github.com/mqttjs/MQTT.js#readme)|5.26355421686747e-05| +|npm|[regenerator-runtime](https://github.com/hackwaly/regenerator-runtime)|5.24639913035601e-05| +|npm|coffee-script|5.1336596385542165e-05| +|npm|cross-env|5.1293798821660266e-05| +|npm|[async](https://caolan.github.io/async/)|4.921875e-05| +|npm|[rimraf](https://github.com/isaacs/rimraf#readme)|4.906432348791976e-05| +|npm|[tsd](https://github.com/SamVerschueren/tsd#readme)|4.86611280285979e-05| +|npm|[browserify](https://github.com/browserify/browserify#readme)|4.809697919896088e-05| +|npm|react-highcharts|4.789836035872815e-05| +|npm|redux|4.789836035872815e-05| +|npm|immutable|4.761300842467615e-05| +|npm|[jasmine](http://jasmine.github.io/)|4.747451343836886e-05| +|npm|[proj4](https://github.com/proj4js/proj4js#readme)|4.653614457831325e-05| +|npm|[lru-cache](https://github.com/isaacs/node-lru-cache#readme)|4.5180722891566266e-05| +|npm|[sift](https://github.com/crcn/sift.js#readme)|4.5180722891566266e-05| +|npm|[socket.io](https://github.com/socketio/socket.io#readme)|4.5180722891566266e-05| +|npm|[underscore](https://underscorejs.org)|4.5180722891566266e-05| +|npm|[xmlbuilder](http://github.com/oozcitak/xmlbuilder-js)|4.394970616732665e-05| +|npm|zap|4.320406626506024e-05| +|npm|docco|4.320406626506024e-05| +|npm|diff|4.320406626506024e-05| +|npm|[babel-preset-es2015](https://babeljs.io/)|4.2672238281278796e-05| +|npm|safe-buffer|4.262690072779477e-05| +|npm|[cookie-parser](https://github.com/expressjs/cookie-parser#readme)|4.170528266913809e-05| +|npm|[deep-equal-in-any-order](https://github.com/oprogramador/deep-equal-in-any-order#readme)|4.170528266913809e-05| +|npm|[dice-coefficient](https://words.github.io/dice-coefficient/)|4.170528266913809e-05| +|npm|[elasticdump](https://github.com/elasticsearch-dump/elasticsearch-dump#readme)|4.170528266913809e-05| +|npm|[elasticsearch](https://www.elastic.co/guide/en/elasticsearch/client/elasticsearch-js/16.x/index.html)|4.170528266913809e-05| +|npm|[fibers](https://github.com/laverdet/node-fibers)|4.170528266913809e-05| +|npm|[saxes](https://github.com/lddubeau/saxes#readme)|4.170528266913809e-05| +|npm|[swagger-jsdoc](https://github.com/Surnet/swagger-jsdoc)|4.170528266913809e-05| +|npm|[angular-plotly](https://github.com/alonho/angular-plotly#readme)|4.0160642570281125e-05| +|npm|[angular-plotly.js](https://github.com/plotly/angular-plotly.js)|4.0160642570281125e-05| +|npm|[crypto-js](http://github.com/brix/crypto-js)|4.0160642570281125e-05| +|npm|[ng2-file-upload](https://github.com/valor-software/ng2-file-upload)|4.0160642570281125e-05| +|npm|[ngx-cookie-service](https://github.com/stevermeister/ngx-cookie-service#readme)|4.0160642570281125e-05| +|npm|[ngx-smart-loader](https://github.com/biig-io/ngx-smart-loader)|4.0160642570281125e-05| +|npm|ngx-smart-modal|4.0160642570281125e-05| +|npm|plotly|4.0160642570281125e-05| +|npm|[cache-manager](https://github.com/BryanDonovan/node-cache-manager#readme)|3.95564003078808e-05| +|npm|[rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve#readme)|3.929583881745469e-05| +|npm|[form-data](https://github.com/form-data/form-data#readme)|3.864994785437149e-05| +|npm|[type-fest](https://github.com/sindresorhus/type-fest#readme)|3.833907056798623e-05| +|npm|[is-stream](https://github.com/sindresorhus/is-stream#readme)|3.833907056798623e-05| +|npm|lint-staged|3.826698000794386e-05| +|npm|retry|3.799966816418215e-05| +|npm|rollup-plugin-commonjs|3.7262706287334204e-05| +|npm|babel-runtime|3.706110154905335e-05| +|npm|[bull-board](https://github.com/felixmosh/bull-board#readme)|3.675719828466408e-05| +|npm|[auth0](https://github.com/auth0/node-auth0)|3.675719828466408e-05| +|npm|[aws-sdk](https://github.com/aws/aws-sdk-js)|3.675719828466408e-05| +|npm|[bullmq](https://github.com/taskforcesh/bullmq#readme)|3.675719828466408e-05| +|npm|[class-transformer](https://github.com/typestack/class-transformer#readme)|3.675719828466408e-05| +|npm|[class-validator](https://github.com/typestack/class-validator#readme)|3.675719828466408e-05| +|npm|[compare-versions](https://github.com/omichelsen/compare-versions#readme)|3.675719828466408e-05| +|npm|[err-code](https://github.com/IndigoUnited/js-err-code#readme)|3.675719828466408e-05| +|npm|hammerjs|3.675719828466408e-05| +|npm|http-status-codes|3.675719828466408e-05| +|npm|is-url|3.675719828466408e-05| +|npm|json5|3.675719828466408e-05| +|npm|jwks-rsa|3.675719828466408e-05| +|npm|nats|3.675719828466408e-05| +|npm|nestjs-s3|3.675719828466408e-05| +|npm|ngx-material-file-input|3.675719828466408e-05| +|npm|passport-jwt|3.675719828466408e-05| +|npm|reflect-metadata|3.675719828466408e-05| +|npm|sharp|3.675719828466408e-05| +|npm|ssh2|3.675719828466408e-05| +|npm|stackdriver-errors-js|3.675719828466408e-05| +|npm|tiny-version-compare|3.675719828466408e-05| +|npm|unzipper|3.675719828466408e-05| +|npm|yaml|3.675719828466408e-05| +|npm|prettier|3.652819156596169e-05| +|npm|minimist|3.5968227672149896e-05| +|npm|[inline-style-prefixer](https://github.com/rofrischmann/inline-style-prefixer#readme)|3.4505163511187604e-05| +|npm|[keycode](https://github.com/timoxley/keycode)|3.4505163511187604e-05| +|npm|[react-event-listener](https://github.com/oliviertassinari/react-event-listener)|3.4505163511187604e-05| +|npm|react-transition-group|3.4505163511187604e-05| +|npm|simple-assign|3.4505163511187604e-05| +|npm|warning|3.4505163511187604e-05| +|npm|lodash.merge|3.4505163511187604e-05| +|npm|lodash.throttle|3.4505163511187604e-05| +|npm|recompose|3.4505163511187604e-05| +|npm|eslint-plugin-markdown|3.42070203892493e-05| +|npm|inherits|3.416527525856167e-05| +|npm|[bundt](https://github.com/lukeed/bundt#readme)|3.354668674698795e-05| +|npm|chalk|3.34468547265987e-05| +|npm|[canvg](https://github.com/canvg/canvg)|3.285870755750274e-05| +|npm|[googleapis](https://github.com/googleapis/google-api-nodejs-client#readme)|3.285870755750274e-05| +|npm|[http](https://github.com/npm/security-holder#readme)|3.285870755750274e-05| +|npm|[jspdf](https://github.com/mrrio/jspdf)|3.285870755750274e-05| +|npm|[multiparty](https://github.com/pillarjs/multiparty#readme)|3.285870755750274e-05| +|npm|[node-xlsx](https://github.com/mgcrea/node-xlsx#readme)|3.285870755750274e-05| +|npm|[pg-hstore](https://github.com/scarney81/pg-hstore)|3.285870755750274e-05| +|npm|[pug](https://pugjs.org)|3.285870755750274e-05| +|npm|[sequelize](https://sequelize.org/)|3.285870755750274e-05| +|npm|[stylus](https://github.com/stylus/stylus)|3.285870755750274e-05| +|npm|del-cli|3.275393883225208e-05| +|npm|eslint-config-prettier|3.183288982327666e-05| +|npm|[font-awesome](http://fontawesome.io/)|3.124603677869372e-05| +|npm|object-assign|3.121797435024653e-05| +|npm|[ts-node](https://typestrong.org/ts-node)|3.0981067125645436e-05| +|npm|react-test-renderer|3.0828983952002345e-05| +|npm|react-router|3.0828983952002345e-05| +|npm|[unist-util-remove-position](https://github.com/syntax-tree/unist-util-remove-position#readme)|3.067125645438898e-05| +|npm|[unist-builder](https://github.com/syntax-tree/unist-builder#readme)|3.067125645438898e-05| +|npm|[remark](https://remark.js.org)|3.067125645438898e-05| +|npm|[unist-util-visit-parents](https://github.com/syntax-tree/unist-util-visit-parents#readme)|3.067125645438898e-05| +|npm|[unist-util-find-after](https://github.com/syntax-tree/unist-util-find-after#readme)|3.067125645438898e-05| +|npm|[strip-ansi](https://github.com/chalk/strip-ansi#readme)|3.0593944038399824e-05| +|npm|whatwg-fetch|3.0428480840655857e-05| +|npm|[rollup-plugin-babel](https://github.com/rollup/rollup-plugin-babel)|2.9840922325795588e-05| +|npm|highcharts-exporting|2.8535193405199747e-05| +|npm|highcharts-no-data-to-display|2.8535193405199747e-05| +|npm|[history](https://github.com/remix-run/history#readme)|2.8535193405199747e-05| +|npm|[jsdocx](https://github.com/zuck/jsdocx#readme)|2.8535193405199747e-05| +|npm|[ramda](https://ramdajs.com/)|2.8535193405199747e-05| +|npm|[rc-tooltip](http://github.com/react-component/tooltip)|2.8535193405199747e-05| +|npm|[react-bootstrap-table](https://github.com/AllenFang/react-bootstrap-table#readme)|2.8535193405199747e-05| +|npm|react-fontawesome|2.8535193405199747e-05| +|npm|react-js-pagination|2.8535193405199747e-05| +|npm|react-router-redux|2.8535193405199747e-05| +|npm|react-s-alert|2.8535193405199747e-05| +|npm|react-table|2.8535193405199747e-05| +|npm|redux-form|2.8535193405199747e-05| +|npm|redux-observable|2.8535193405199747e-05| +|npm|redux-persist|2.8535193405199747e-05| +|npm|reselect|2.8535193405199747e-05| +|npm|rx-dom|2.8535193405199747e-05| +|npm|ms|2.7948006579774114e-05| +|npm|[should](https://github.com/shouldjs/should.js)|2.6595152428998408e-05| +|npm|readable-stream|2.654243347014431e-05| +|npm|through2|2.647040497153449e-05| +|npm|[request](https://github.com/request/request#readme)|2.5926452705230862e-05| +|npm|[actions](https://github.com/fundon/actions)|2.4165232358003443e-05| +|npm|webworker-threads|2.3855421686746988e-05| +|npm|[del](https://github.com/sindresorhus/del#readme)|2.3220518859707188e-05| +|npm|after|2.3164429696809212e-05| +|npm|vary|2.298569277108434e-05| +|npm|gulp|2.2981406799220343e-05| +|npm|babel-core|2.2479939934692714e-05| +|npm|matcha|2.23644578313253e-05| +|npm|quick-lru|2.23644578313253e-05| +|npm|map-obj|2.23644578313253e-05| +|npm|lodash.kebabcase|2.23644578313253e-05| +|npm|minimatch|2.217700705971586e-05| +|npm|ghsign|2.2140813253012047e-05| +|npm|git-config-path|2.2140813253012047e-05| +|npm|github-username|2.2140813253012047e-05| +|npm|parse-git-config|2.2140813253012047e-05| +|npm|rollup-plugin-json|2.203251782640767e-05| +|npm|package-json-versionify|2.203251782640767e-05| +|npm|babel-preset-react|2.1728552403352444e-05| +|npm|eslint-plugin-prettier|2.14955404256863e-05| +|npm|acorn|2.123990467363961e-05| +|npm|[deepmerge](https://github.com/TehShrike/deepmerge)|2.0912220309810687e-05| +|npm|depd|2.0734693582020388e-05| +|npm|xregexp|2.0644114921223353e-05| +|npm|bufferedstream|2.0644114921223353e-05| +|npm|[react-plotly.js](https://github.com/plotly/react-plotly.js#readme)|2.044750430292599e-05| +|npm|on-headers|1.9811715957235535e-05| +|npm|[mdi](http://materialdesignicons.com)|1.93631669535284e-05| +|npm|[tippy.js](https://atomiks.github.io/tippyjs/)|1.93631669535284e-05| +|npm|[abort-controller](https://github.com/mysticatea/abort-controller#readme)|1.93631669535284e-05| +|npm|color|1.93631669535284e-05| +|npm|create-react-class|1.93631669535284e-05| +|npm|dotenv-load|1.93631669535284e-05| +|npm|iframe-resizer|1.93631669535284e-05| +|npm|isomorphic-unfetch|1.93631669535284e-05| +|npm|js-file-download|1.93631669535284e-05| +|npm|material-table|1.93631669535284e-05| +|npm|material-ui-chip-input|1.93631669535284e-05| +|npm|materialize-css|1.93631669535284e-05| +|npm|mui-datatables|1.93631669535284e-05| +|npm|next|1.93631669535284e-05| +|npm|next-env|1.93631669535284e-05| +|npm|next-redux-wrapper|1.93631669535284e-05| +|npm|nprogress|1.93631669535284e-05| +|npm|ra-data-simple-rest|1.93631669535284e-05| +|npm|react-admin|1.93631669535284e-05| +|npm|react-ga|1.93631669535284e-05| +|npm|react-json-view|1.93631669535284e-05| +|npm|react-loading|1.93631669535284e-05| +|npm|react-scroll|1.93631669535284e-05| +|npm|react-scroll-to-component|1.93631669535284e-05| +|npm|react-swipeable-views|1.93631669535284e-05| +|npm|react-wordcloud|1.93631669535284e-05| +|npm|recharts|1.93631669535284e-05| +|npm|redux-saga|1.93631669535284e-05| +|npm|serialize-error|1.93631669535284e-05| +|npm|swagger-client|1.93631669535284e-05| +|npm|swagger-ui-react|1.93631669535284e-05| +|npm|tween|1.93631669535284e-05| +|npm|uuid5|1.93631669535284e-05| +|npm|codecov|1.9184370573994194e-05| +|npm|[ansi-regex](https://github.com/chalk/ansi-regex#readme)|1.837859914233204e-05| +|npm|[balanced-match](https://github.com/juliangruber/balanced-match)|1.837859914233204e-05| +|npm|[brace-expansion](https://github.com/juliangruber/brace-expansion)|1.837859914233204e-05| +|npm|[cacatoo](https://github.com/bramvandijk88/cacatoo#readme)|1.837859914233204e-05| +|npm|[code-point-at](https://github.com/sindresorhus/code-point-at#readme)|1.837859914233204e-05| +|npm|[decompress-response](https://github.com/sindresorhus/decompress-response#readme)|1.837859914233204e-05| +|npm|[detect-libc](https://github.com/lovell/detect-libc#readme)|1.837859914233204e-05| +|npm|[esdoc](https://esdoc.org/)|1.837859914233204e-05| +|npm|esdoc-standard-plugin|1.837859914233204e-05| +|npm|fast-random|1.837859914233204e-05| +|npm|flatted|1.837859914233204e-05| +|npm|fs.realpath|1.837859914233204e-05| +|npm|has-unicode|1.837859914233204e-05| +|npm|iconv-lite|1.837859914233204e-05| +|npm|ignore-walk|1.837859914233204e-05| +|npm|ini|1.837859914233204e-05| +|npm|is-fullwidth-code-point|1.837859914233204e-05| +|npm|jsdocs|1.837859914233204e-05| +|npm|mimic-response|1.837859914233204e-05| +|npm|needle|1.837859914233204e-05| +|npm|node|1.837859914233204e-05| +|npm|nopt|1.837859914233204e-05| +|npm|npm|1.837859914233204e-05| +|npm|npm-bundled|1.837859914233204e-05| +|npm|npm-normalize-package-bin|1.837859914233204e-05| +|npm|npm-packlist|1.837859914233204e-05| +|npm|number-is-nan|1.837859914233204e-05| +|npm|odex|1.837859914233204e-05| +|npm|os-homedir|1.837859914233204e-05| +|npm|os-tmpdir|1.837859914233204e-05| +|npm|osenv|1.837859914233204e-05| +|npm|path-is-absolute|1.837859914233204e-05| +|npm|rc|1.837859914233204e-05| +|npm|safer-buffer|1.837859914233204e-05| +|npm|set-blocking|1.837859914233204e-05| +|npm|signal-exit|1.837859914233204e-05| +|npm|simple-concat|1.837859914233204e-05| +|npm|string-width|1.837859914233204e-05| +|npm|strip-json-comments|1.837859914233204e-05| +|npm|[standard-version](https://github.com/conventional-changelog/standard-version#readme)|1.8311002250761285e-05| +|npm|[rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser)|1.8223460167199408e-05| +|npm|tslint|1.8185240963855422e-05| +|npm|glob|1.743575731497418e-05| +|npm|tsconfig-paths|1.703958691910499e-05| +|npm|replace|1.703958691910499e-05| +|npm|node-qunit-phantomjs|1.703958691910499e-05| +|npm|chai-passport-strategy|1.6773343373493976e-05| +|npm|passport-strategy|1.6773343373493976e-05| +|npm|babel-jest|1.6505893073130665e-05| +|npm|concat-stream|1.6220376009532637e-05| +|npm|gulp-uglify|1.615015793156929e-05| +|npm|murl|1.5786676116229624e-05| +|npm|protein|1.5786676116229624e-05| +|npm|network-address|1.5786676116229624e-05| +|npm|bluebird|1.5452340085670624e-05| +|npm|[tslint-config-prettier](https://github.com/prettier/tslint-config-prettier#readme)|1.4909638554216867e-05| +|npm|microbundle|1.4909638554216867e-05| +|npm|const-version|1.4909638554216867e-05| +|npm|[is-plain-object](https://github.com/jonschlinkert/is-plain-object)|1.4276947074010328e-05| +|npm|jsmd|1.3941480206540447e-05| +|npm|is-mergeable-object|1.3941480206540447e-05| +|npm|gzip-size|1.3820998278829604e-05| +|npm|accepts|1.3507050178736925e-05| +|npm|terser|1.3113825839070568e-05| +|npm|rollup-plugin-replace|1.2132081748361994e-05| +|npm|babel-plugin-external-helpers|1.2132081748361994e-05| +|npm|csso|1.1927710843373494e-05| +|npm|google-closure-compiler|1.1927710843373494e-05| +|npm|uglify-es|1.1927710843373494e-05| +|npm|ora|1.1927710843373494e-05| +|npm|update-notifier|1.1927710843373494e-05| +|npm|crass|1.1927710843373494e-05| +|npm|sqwish|1.1927710843373494e-05| +|npm|clean-css|1.1927710843373494e-05| +|npm|html-minifier|1.1927710843373494e-05| +|npm|node-version|1.1927710843373494e-05| +|npm|parseurl|1.1892987471865484e-05| +|npm|ascli|1.1808433734939759e-05| +|npm|execa|1.1564527340129749e-05| +|npm|[jade](http://jade-lang.com)|1.118222891566265e-05| +|npm|superagent|1.118222891566265e-05| +|npm|connect-flash|1.118222891566265e-05| +|npm|isexe|1.118222891566265e-05| +|npm|babel-loader|1.1143775371555134e-05| +|npm|compressible|1.100473321858864e-05| +|npm|bytes|1.100473321858864e-05| +|npm|[rollup-plugin-uglify](https://github.com/TrySound/rollup-plugin-uglify)|1.0992469879518072e-05| +|package.json|gitlab/metafundev/metafun|1.095290251916758e-05| +|package.json|gitlab/magnumpi/magnumpi|1.095290251916758e-05| +|package.json|gitlab/geekysquirrel/bigx|1.095290251916758e-05| +|package.json|github/Yomguithereal/talisman|1.095290251916758e-05| +|package.json|github/wangjun1996/VisFeature|1.095290251916758e-05| +|package.json|github/research-software-directory/research-software-directory|1.095290251916758e-05| +|package.json|github/reproducible-biomedical-modeling/Biosimulations|1.095290251916758e-05| +|package.json|github/PathwayCommons/grounding-search|1.095290251916758e-05| +|package.json|github/interactivereport/OmicsView0|1.095290251916758e-05| +|package.json|github/AA-ALERT/frbcat-web|1.095290251916758e-05| +|package.json|github/MaayanLab/signature-commons-ui|1.095290251916758e-05| +|package.json|github/sonjageorgievska/CClusTera|1.095290251916758e-05| +|package.json|github/davidhoksza/MolArt|1.095290251916758e-05| +|package.json|github/ADAH-EviDENce/evidence|1.095290251916758e-05| +|package.json|github/MichaelSel/edoJS|1.095290251916758e-05| +|package.json|github/phelelani/nf-rnaSeqMetagen|1.095290251916758e-05| +|package.json|github/eweitz/ideogram|1.095290251916758e-05| +|package.json|github/tobiasrausch/alfred|1.095290251916758e-05| +|package.json|github/MolMeDB/MolMeDB|1.095290251916758e-05| +|package.json|github/pmkruyen/dearscholar|1.095290251916758e-05| +|package.json|github/cinemascience/cinema_snap|1.095290251916758e-05| +|package.json|github/amkram/shusher|1.095290251916758e-05| +|package.json|github/lumen-org/lumen|1.095290251916758e-05| +|package.json|github/iomega/zenodo-upload|1.095290251916758e-05| +|package.json|github/iomega/paired-data-form|1.095290251916758e-05| +|package.json|github/CrowdTruth/CrowdTruth|1.095290251916758e-05| +|package.json|github/hetalang/heta-compiler|1.095290251916758e-05| +|package.json|github/biosimulations/Biosimulations|1.095290251916758e-05| +|package.json|github/eucp-project/storyboards|1.095290251916758e-05| +|package.json|github/eucp-project/atlas|1.095290251916758e-05| +|package.json|github/eWaterCycle/eWaterleaf|1.095290251916758e-05| +|package.json|github/eWaterCycle/setup-grpc|1.095290251916758e-05| +|package.json|github/eWaterCycle/Cesium-NcWMS|1.095290251916758e-05| +|package.json|github/eWaterCycle/setup-singularity|1.095290251916758e-05| +|package.json|github/tortellini-tools/action|1.095290251916758e-05| +|package.json|github/NLeSC/DiVE|1.095290251916758e-05| +|package.json|github/NLeSC/ExtJS-DateTime|1.095290251916758e-05| +|package.json|github/NLeSC/xenon-flow|1.095290251916758e-05| +|package.json|github/NLeSC/UncertaintyVisualization|1.095290251916758e-05| +|package.json|github/NLeSC/pattyvis|1.095290251916758e-05| +|package.json|github/NLeSC/nlesc-serverless-boilerplate|1.095290251916758e-05| +|package.json|github/NLeSC/case-law-app|1.095290251916758e-05| +|package.json|github/NLeSC/spot|1.095290251916758e-05| +|package.json|github/NLeSC/docker-couch-admin|1.095290251916758e-05| +|package.json|github/ci-for-science/self-hosted-runners|1.095290251916758e-05| +|package.json|github/PopMedNet-Team/popmednet|1.095290251916758e-05| +|package.json|github/meta-logic/sequoia|1.095290251916758e-05| +|package.json|github/ReGIS-org/regis-v2|1.095290251916758e-05| +|package.json|github/ci-for-research/self-hosted-runners|1.095290251916758e-05| +|package.json|github/emrecdem/emo-spectre|1.095290251916758e-05| +|package.json|github/Via-Appia/via-appia-online-viewer|1.095290251916758e-05| +|package.json|github/DorianDepriester/mtex2Gmsh|1.095290251916758e-05| +|package.json|github/dondi/GRNsight|1.095290251916758e-05| +|package.json|github/bramvandijk88/cacatoo|1.095290251916758e-05| +|package.json|github/klevis-a/kinematics-vis|1.095290251916758e-05| +|package.json|github/EMResearch/EvoMaster|1.095290251916758e-05| +|package.json|github/bio-tools/biotoolsSum|1.095290251916758e-05| +|package.json|github/fairdataihub/SPARClink|1.095290251916758e-05| +|package.json|github/luntergroup/octopus|1.095290251916758e-05| +|package.json|github/nlesc-sherlock/Rig|1.095290251916758e-05| +|package.json|github/TNOCS/csWeb|1.095290251916758e-05| +|package.json|github/citation-file-format/cff-initializer-javascript|1.095290251916758e-05| +|package.json|github/mathjax/MathJax|1.095290251916758e-05| +|package.json|github/vibbits/phyd3|1.095290251916758e-05| +|npm|leaflet-geotiff-2|1.0843373493975904e-05| +|npm|rollup-plugin-license|1.0843373493975903e-05| +|npm|babel-plugin-remove-comments|1.0843373493975903e-05| +|npm|retape|1.0843373493975903e-05| +|npm|test|1.0843373493975903e-05| +|npm|babel-eslint|1.0669086911873181e-05| +|npm|memfs|1.033734939759036e-05| +|npm|schema-utils|1.033734939759036e-05| +|npm|loader-utils|1.033734939759036e-05| +|npm|[time-span](https://github.com/sindresorhus/time-span#readme)|1.0322057460611676e-05| +|npm|loud-rejection|1.0322057460611676e-05| +|npm|globby|1.0322057460611676e-05| +|npm|csv-spectrum|1.0322057460611676e-05| +|npm|bops|1.0322057460611676e-05| +|npm|through|9.82350910707193e-06| +|npm|fresh|9.569407437442074e-06| +|npm|etag|9.569407437442074e-06| +|npm|temp-path|9.569407437442074e-06| +|npm|mime-types|9.421934632941704e-06| +|npm|git-state|9.227293790546802e-06| +|npm|xpath|9.227293790546802e-06| +|npm|coffeescript|9.227293790546802e-06| +|npm|coffee-coverage|9.227293790546802e-06| +|npm|[split](http://github.com/dominictarr/split)|9.224035565338277e-06| +|npm|run-sequence|9.179417828299067e-06| +|npm|gulp-if|9.179417828299067e-06| +|npm|grunt|8.87620340073008e-06| +|npm|gulp-concat|8.847477823381436e-06| +|npm|gulp-jshint|8.847477823381436e-06| +|npm|gulp-rename|8.847477823381436e-06| +|npm|jshint-stylish|8.847477823381436e-06| +|npm|on-finished|8.806982738646894e-06| +|npm|basic-auth|8.806982738646894e-06| +|npm|zuul|8.539156626506023e-06| +|npm|[file-loader](https://github.com/webpack-contrib/file-loader)|8.218588640275405e-06| +|npm|browser-sync|8.2062199056492e-06| +|npm|updox|7.951807228915663e-06| +|npm|safename|7.951807228915663e-06| +|npm|imagemin-svgo|7.506950880444857e-06| +|npm|imagemin-optipng|7.506950880444857e-06| +|npm|imagemin-jpegtran|7.506950880444857e-06| +|npm|imagemin-gifsicle|7.506950880444857e-06| +|npm|pretty-bytes|7.506950880444857e-06| +|npm|plur|7.506950880444857e-06| +|npm|p-map|7.506950880444857e-06| +|npm|imagemin|7.506950880444857e-06| +|npm|fortawesome|7.454819277108434e-06| +|npm|houkou|7.4548192771084335e-06| +|npm|watchify|7.302680108187853e-06| +|npm|vinyl-source-stream|7.302680108187853e-06| +|npm|vinyl-buffer|7.302680108187853e-06| +|npm|gulp-gh-pages|7.302680108187853e-06| +|npm|gulp-clean|7.302680108187853e-06| +|npm|gulp-beautify|7.302680108187853e-06| +|npm|gulp-babel|7.302680108187853e-06| +|npm|babelify|7.302680108187853e-06| +|npm|babel-plugin-transform-es2015-modules-commonjs|7.302680108187853e-06| +|npm|resolve|7.300398020654044e-06| +|npm|eslint-plugin-react|7.283015152307447e-06| +|npm|eslint-plugin-jsx-a11y|7.283015152307447e-06| +|npm|babel-register|7.162368976745124e-06| +|npm|json-stringify-safe|7.0165414404872236e-06| +|npm|[angular-mocks](http://angularjs.org)|6.970740103270223e-06| +|npm|gulp-angular-templatecache|6.970740103270223e-06| +|npm|gulp-cssnano|6.970740103270223e-06| +|npm|gulp-less|6.970740103270223e-06| +|npm|[querystring](https://github.com/Gozala/querystring#readme)|6.834611171960571e-06| +|npm|[url-loader](https://github.com/webpack-contrib/url-loader)|6.722891566265063e-06| +|npm|cross-spawn|6.686953499617197e-06| +|npm|assert|6.506024096385541e-06| +|npm|punycode|6.506024096385541e-06| +|npm|babel-plugin-transform-runtime|6.256454388984508e-06| +|npm|duplexer|6.246073580034422e-06| +|npm|gulp-autoprefixer|5.912429358846606e-06| +|npm|split2|5.8983185489209585e-06| +|npm|ubelt|5.8983185489209585e-06| +|npm|asynct|5.8983185489209585e-06| +|npm|event-stream|5.8983185489209585e-06| +|npm|it-is|5.8983185489209585e-06| +|npm|stream-spec|5.8983185489209585e-06| +|npm|string-to-stream|5.8983185489209585e-06| +|npm|[types](http://nodeca.github.com/types/)|5.7103250027489525e-06| +|npm|[runmd](https://github.com/broofa/runmd)|5.6798623063683305e-06| +|npm|random-seed|5.6798623063683305e-06| +|npm|optional-dev-dependency|5.6798623063683305e-06| +|npm|bundlewatch|5.6798623063683305e-06| +|npm|mocha-headless-chrome|5.535203313253012e-06| +|npm|gulp-format-md|5.535203313253012e-06| +|npm|[nonew](https://github.com/frewsxcv/nonew.js)|5.421686746987952e-06| +|npm|[three.trackball](https://github.com/anvaka/three.trackball)|5.421686746987952e-06| +|npm|[three-buffergeometry-sort](https://github.com/frewsxcv/three-buffergeometry-sort)|5.421686746987952e-06| +|npm|[grunt-cli](https://github.com/gruntjs/grunt-cli#readme)|5.421686746987952e-06| +|npm|[natives](https://github.com/addaleax/natives#readme)|5.421686746987952e-06| +|npm|docdown|5.161028730305838e-06| +|npm|qunitjs|5.161028730305838e-06| +|npm|platform|5.161028730305838e-06| +|npm|qunit-extras|5.161028730305838e-06| +|npm|babel-preset-es2016|5.060757314974183e-06| +|npm|babel-preset-es2017|5.060757314974183e-06| +|npm|mini-svg-data-uri|4.969879518072289e-06| +|npm|[pre-commit](https://github.com/observing/pre-commit)|4.896886638767205e-06| +|npm|cli-color|4.7755314822870755e-06| +|npm|native-hello-world|4.744459982788295e-06| +|npm|module-not-found-error|4.744459982788295e-06| +|npm|fill-keys|4.744459982788295e-06| +|npm|karma-coverage|4.700721692754951e-06| +|npm|karma|4.700721692754951e-06| +|npm|promise|4.688844664371772e-06| +|npm|gulp-util|4.672294949026877e-06| +|npm|browserify-istanbul|4.452055114869415e-06| +|npm|combined-stream|4.452055114869415e-06| +|npm|mocha-lcov-reporter|4.259896729776247e-06| +|npm|chai-timers|4.259896729776247e-06| +|npm|q|4.259896729776247e-06| +|npm|bl|4.194578313253012e-06| +|npm|path-exists|4.187077982258705e-06| +|npm|prismjs|4.170528266913809e-06| +|npm|eslint-config-airbnb|4.101019462465245e-06| +|npm|conventional-github-releaser|4.035691638735392e-06| +|npm|corp-semantic-release|4.035691638735392e-06| +|npm|gulp-clean-css|4.035691638735392e-06| +|npm|[material-ui](http://material-ui.com/)|3.8339070567986445e-06| +|npm|sinon-chai|3.714683341173921e-06| +|npm|repeat-string|3.6901355421686743e-06| +|npm|tap-out|3.6901355421686743e-06| +|npm|figures|3.6901355421686743e-06| +|npm|pretty-ms|3.6901355421686743e-06| +|npm|tapes|3.6901355421686743e-06| +|npm|[file-saver](https://github.com/eligrey/FileSaver.js#readme)|3.6483838938238857e-06| +|npm|[node-minify](https://github.com/srod/node-minify)|3.6144578313253287e-06| +|npm|[Matlab](https://github.com/abdennour/masfufa#readme)|3.6144578313253016e-06| +|npm|Gmsh|3.6144578313253016e-06| +|npm|[MTEX](https://github.com/diversemix/mtex#readme)|3.6144578313253016e-06| +|npm|[apollo-server-express](https://github.com/apollographql/apollo-server#readme)|3.6144578313253016e-06| +|npm|[graphql](https://github.com/graphql/graphql-js)|3.6144578313253016e-06| +|npm|karma-sourcemap-loader|3.5824988011886865e-06| +|npm|karma-mocha|3.5824988011886865e-06| +|npm|karma-chrome-launcher|3.5824988011886865e-06| +|npm|karma-chai|3.5824988011886865e-06| +|npm|babel-plugin-transform-object-rest-spread|3.5824988011886865e-06| +|npm|[xml2js](https://github.com/Leonidas-from-XIV/node-xml2js)|3.491237677984676e-06| +|npm|karma-cli|3.4120134383688595e-06| +|npm|[babel-polyfill](https://babeljs.io/)|3.3536691589957375e-06| +|npm|pkgfiles|3.33383222330315e-06| +|npm|puppeteer|3.33383222330315e-06| +|npm|obake|3.33383222330315e-06| +|npm|is-node-modern|3.33383222330315e-06| +|npm|in-publish|3.33383222330315e-06| +|npm|formidable|3.33383222330315e-06| +|npm|far|3.33383222330315e-06| +|npm|fake|3.33383222330315e-06| +|npm|asynckit|3.33383222330315e-06| +|npm|babel-plugin-istanbul|3.1524130736632e-06| +|npm|[crossfilter2](https://crossfilter.github.io/crossfilter/)|3.115709591613215e-06| +|npm|phantomjs-prebuilt|2.981927710843373e-06| +|npm|tar|2.9521084337349396e-06| +|npm|closurecompiler-externs|2.9521084337349396e-06| +|npm|jsdoc|2.9521084337349396e-06| +|npm|gpx-parse|2.7992020232167257e-06| +|npm|node-geo-distance|2.7992020232167257e-06| +|npm|rx|2.7992020232167257e-06| +|npm|redis|2.7992020232167257e-06| +|npm|seed-random|2.7955572289156623e-06| +|npm|freeport|2.7955572289156623e-06| +|npm|ws|2.7955572289156623e-06| +|npm|node-uuid|2.7955572289156623e-06| +|npm|event-emitter|2.7955572289156623e-06| +|npm|[csv-parser](https://github.com/mafintosh/csv-parser)|2.710843373493981e-06| +|npm|[hasha](https://github.com/sindresorhus/hasha#readme)|2.710843373493981e-06| +|npm|[svd-js](https://github.com/danilosalvati/svd-js#readme)|2.710843373493981e-06| +|npm|[font-awesome-webpack](https://github.com/gowravshekar/font-awesome-webpack)|2.710843373493976e-06| +|npm|[tailwindcss](https://tailwindcss.com)|2.710843373493976e-06| +|npm|serialize-javascript|2.6621692125645435e-06| +|npm|jest-worker|2.6621692125645435e-06| +|npm|eslint-plugin-jest|2.5992590215583884e-06| +|npm|moment-timezone|2.5992590215583884e-06| +|npm|babel-plugin-unassert|2.5559380378657483e-06| +|npm|babel-preset-power-assert|2.5559380378657483e-06| +|npm|eslint-config-mysticatea|2.5559380378657483e-06| +|npm|if-node-version|2.5559380378657483e-06| +|npm|opener|2.5559380378657483e-06| +|npm|power-assert|2.5559380378657483e-06| +|npm|shelljs|2.5559380378657483e-06| +|npm|chokidar|2.5559380378657483e-06| +|npm|glob2base|2.5559380378657483e-06| +|npm|shell-quote|2.5559380378657483e-06| +|npm|subarg|2.5559380378657483e-06| +|npm|testing-library|2.5023169601482857e-06| +|npm|escape-html|2.5023169601482853e-06| +|npm|sendgrid-rest|2.425975086787829e-06| +|npm|system-sleep|2.425975086787829e-06| +|npm|lodash.chunk|2.425975086787829e-06| +|npm|mailparser|2.425975086787829e-06| +|npm|async.ensureasync|2.425975086787829e-06| +|npm|bottleneck|2.425975086787829e-06| +|npm|mocha-sinon|2.425975086787829e-06| +|npm|async.queue|2.425975086787829e-06| +|npm|methods|2.323580034423408e-06| +|npm|random-buffer|2.293790546802595e-06| +|npm|nock|2.293790546802595e-06| +|npm|is-zip|2.293790546802595e-06| +|npm|pify|2.293790546802595e-06| +|npm|p-event|2.293790546802595e-06| +|npm|make-dir|2.293790546802595e-06| +|npm|got|2.293790546802595e-06| +|npm|get-stream|2.293790546802595e-06| +|npm|filenamify|2.293790546802595e-06| +|npm|ext-name|2.293790546802595e-06| +|npm|decompress|2.293790546802595e-06| +|npm|content-disposition|2.293790546802595e-06| +|npm|archive-type|2.293790546802595e-06| +|npm|watch|2.293790546802595e-06| +|npm|unminified-webpack-plugin|2.293790546802595e-06| +|npm|jsonpath|2.293790546802595e-06| +|npm|jest-cli|2.293790546802595e-06| +|npm|globify|2.293790546802595e-06| +|npm|codeclimate-test-reporter|2.293790546802595e-06| +|npm|codacy-coverage|2.293790546802595e-06| +|npm|cash-cat|2.293790546802595e-06| +|npm|biased-opener|2.293790546802595e-06| +|npm|[webpack-dev-server](https://github.com/webpack/webpack-dev-server#readme)|2.293790546802595e-06| +|npm|[wallaby-webpack](https://github.com/jeffling/wallaby-webpack#readme)|2.293790546802595e-06| +|npm|package-yaml|2.293790546802595e-06| +|npm|json-loader|2.293790546802595e-06| +|npm|isparta-loader|2.293790546802595e-06| +|npm|isparta|2.293790546802595e-06| +|npm|gh-pages|2.293790546802595e-06| +|npm|gatsby|2.293790546802595e-06| +|npm|expect|2.293790546802595e-06| +|npm|enzyme-adapter-react-16|2.293790546802595e-06| +|npm|enzyme|2.293790546802595e-06| +|npm|conventional-changelog|2.293790546802595e-06| +|npm|chai-enzyme|2.293790546802595e-06| +|npm|babel-plugin-__coverage__|2.293790546802595e-06| +|npm|add-stream|2.293790546802595e-06| +|npm|karma-webpack|2.293790546802595e-06| +|npm|karma-sinon|2.293790546802595e-06| +|npm|karma-mocha-reporter|2.293790546802595e-06| +|npm|lodash.isequal|2.293790546802595e-06| +|npm|classnames|2.293790546802595e-06| +|npm|clamp|2.293790546802595e-06| +|npm|[remark-sectionize](https://github.com/jake-low/remark-sectionize#readme)|2.168674698795191e-06| +|npm|should-util|2.0331325301204817e-06| +|npm|mocha-better-spec-reporter|2.0331325301204817e-06| +|npm|should-equal|2.0331325301204817e-06| +|npm|eslint-config-shouldjs|2.0331325301204817e-06| +|npm|should-type|2.0331325301204817e-06| +|npm|should-format|2.0331325301204817e-06| +|npm|should-type-adaptors|2.0331325301204817e-06| +|npm|[compression](https://github.com/expressjs/compression#readme)|2.000860585197954e-06| +|npm|[react-scripts](https://github.com/facebook/create-react-app#readme)|1.918443002780352e-06| +|npm|[which](https://github.com/isaacs/node-which#readme)|1.911641069773603e-06| +|npm|webpack-manifest-plugin|1.89328743545611e-06| +|npm|script-loader|1.89328743545611e-06| +|npm|recursive-readdir|1.89328743545611e-06| +|npm|react-dev-utils|1.89328743545611e-06| +|npm|output-file-sync|1.89328743545611e-06| +|npm|npm-release|1.89328743545611e-06| +|npm|jest-canvas-mock|1.89328743545611e-06| +|npm|imports-loader|1.89328743545611e-06| +|npm|fs-promise|1.89328743545611e-06| +|npm|flow-typed|1.89328743545611e-06| +|npm|flow-bin|1.89328743545611e-06| +|npm|find-cache-dir|1.89328743545611e-06| +|npm|filesize|1.89328743545611e-06| +|npm|fake-xml-http-request|1.89328743545611e-06| +|npm|eslint-plugin-flowtype|1.89328743545611e-06| +|npm|eslint-loader|1.89328743545611e-06| +|npm|eslint-config-react-app|1.89328743545611e-06| +|npm|dmd-clear|1.89328743545611e-06| +|npm|dagre|1.89328743545611e-06| +|npm|child-process-promise|1.89328743545611e-06| +|npm|case-sensitive-paths-webpack-plugin|1.89328743545611e-06| +|npm|babel-plugin-flow-react-proptypes|1.89328743545611e-06| +|npm|gulp-marked|1.8767377201112142e-06| +|npm|gulp-mocha-phantomjs|1.8767377201112142e-06| +|npm|humanize|1.8767377201112142e-06| +|npm|chai-jquery|1.8767377201112142e-06| +|npm|gulp-iife|1.8767377201112142e-06| +|npm|gulp-cache|1.8767377201112142e-06| +|npm|gulp-closure-compiler|1.8767377201112142e-06| +|npm|drool|1.8767377201112142e-06| +|npm|gulp-file|1.8767377201112142e-06| +|npm|gulp-imagemin|1.8767377201112142e-06| +|npm|escodegen|1.8767377201112142e-06| +|npm|gulp-zip|1.8767377201112142e-06| +|npm|gulp-csso|1.8767377201112142e-06| +|npm|gulp-shell|1.8767377201112142e-06| +|npm|merge-stream|1.8767377201112142e-06| +|npm|swig|1.8767377201112142e-06| +|npm|vinyl-paths|1.8767377201112142e-06| +|npm|gulp-connect|1.8767377201112142e-06| +|npm|gulp-css-inline-images|1.8767377201112142e-06| +|npm|gulp-front-matter|1.8767377201112142e-06| +|npm|gulp-jscs|1.8767377201112142e-06| +|npm|gulp-open|1.8767377201112142e-06| +|npm|gulp-flatten|1.8767377201112142e-06| +|npm|gulp-load-plugins|1.8767377201112142e-06| +|npm|gulp-sass|1.8767377201112142e-06| +|npm|gulp-header|1.8767377201112142e-06| +|npm|gulp-size|1.8767377201112142e-06| +|npm|gulp-replace|1.8767377201112142e-06| +|npm|gulp-sourcemaps|1.8767377201112142e-06| +|npm|gulp-subtree|1.8767377201112142e-06| +|npm|gulp-tap|1.8767377201112142e-06| +|npm|[uglifyjs-webpack-plugin](https://github.com/webpack-contrib/uglifyjs-webpack-plugin)|1.8637048192771084e-06| +|npm|node-libs-browser|1.8637048192771084e-06| +|npm|module-alias|1.8637048192771084e-06| +|npm|mocha-phantomjs-istanbul|1.8637048192771084e-06| +|npm|mocha-phantomjs-core|1.8637048192771084e-06| +|npm|get-port|1.8637048192771084e-06| +|npm|eslint-config-airbnb-base|1.8637048192771084e-06| +|npm|connect|1.8637048192771084e-06| +|npm|babel-plugin-module-resolver|1.8637048192771084e-06| +|npm|asap|1.8637048192771084e-06| +|npm|a-sync-waterfall|1.8637048192771084e-06| +|npm|[closurecompiler](https://github.com/dcodeIO/ClosureCompiler.js#readme)|1.8607228915662646e-06| +|npm|[metascript](https://github.com/dcodeIO/MetaScript)|1.8607228915662646e-06| +|npm|[testjs](https://github.com/dcodeIO/test.js)|1.8607228915662646e-06| +|npm|[html-entities](https://github.com/mdevils/html-entities#readme)|1.8072289156626508e-06| +|npm|[long](https://github.com/dcodeIO/long.js#readme)|1.8072289156626508e-06| +|npm|[mnemonist](https://github.com/yomguithereal/mnemonist#readme)|1.8072289156626508e-06| +|npm|[obliterator](https://github.com/yomguithereal/obliterator#readme)|1.8072289156626508e-06| +|npm|[pandemonium](https://github.com/yomguithereal/pandemonium#readme)|1.8072289156626508e-06| +|npm|its-set|1.8072289156626504e-06| +|npm|babel-plugin-transform-es2015-modules-umd|1.8072289156626504e-06| +|npm|babel-preset-stage-2|1.8072289156626504e-06| +|npm|gulp-eslint|1.8072289156626504e-06| +|npm|eslint-plugin-babel|1.8072289156626504e-06| +|npm|pretty-hrtime|1.7712650602409637e-06| +|npm|utf8|1.7712650602409637e-06| +|npm|[babel-plugin-transform-undefined-to-void](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-simplify-comparison-operators](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-remove-debugger](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-remove-console](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-regexp-constructors](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-minify-booleans](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-merge-sibling-variables](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-member-expression-literals](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-transform-inline-consecutive-adds](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|[babel-plugin-minify-simplify](https://github.com/babel/minify#readme)|1.6502469505350594e-06| +|npm|babel-plugin-minify-replace|1.6502469505350594e-06| +|npm|babel-plugin-minify-numeric-literals|1.6502469505350594e-06| +|npm|babel-plugin-minify-mangle-names|1.6502469505350594e-06| +|npm|babel-plugin-minify-infinity|1.6502469505350594e-06| +|npm|babel-plugin-minify-guarded-expressions|1.6502469505350594e-06| +|npm|babel-plugin-minify-flip-comparisons|1.6502469505350594e-06| +|npm|babel-plugin-minify-dead-code-elimination|1.6502469505350594e-06| +|npm|babel-plugin-minify-constant-folding|1.6502469505350594e-06| +|npm|babel-plugin-minify-builtins|1.6502469505350594e-06| +|npm|babel-helper-evaluate-path|1.6337444810297089e-06| +|npm|esutils|1.6337444810297089e-06| +|npm|babel-helper-is-void-0|1.6337444810297089e-06| +|npm|[proxyquire](https://github.com/thlorenz/proxyquire#readme)|1.6258605851979326e-06| +|npm|[path](http://nodejs.org/docs/latest/api/path.html)|1.549053356282288e-06| +|npm|[react-grid-gallery](https://benhowell.github.io/react-grid-gallery/)|1.549053356282288e-06| +|npm|[js-logger](http://github.com/jonnyreeves/js-logger)|1.549053356282288e-06| +|npm|[d3-cloud](https://www.jasondavies.com/wordcloud/)|1.549053356282288e-06| +|npm|[atob](https://git.coolaj86.com/coolaj86/atob.js.git)|1.549053356282272e-06| +|npm|[node-html-parser](https://github.com/taoqf/node-fast-html-parser)|1.549053356282272e-06| +|npm|[serve-favicon](https://github.com/expressjs/serve-favicon#readme)|1.5465708989805449e-06| +|npm|assume|1.4598338408579371e-06| +|npm|spawn-sync|1.4598338408579371e-06| +|npm|[morgan](https://github.com/expressjs/morgan#readme)|1.423350745639908e-06| +|npm|grunt-contrib-clean|1.3692525202852223e-06| +|npm|grunt-contrib-watch|1.3692525202852223e-06| +|npm|grunt-eslint|1.3692525202852223e-06| +|npm|grunt-release|1.3692525202852223e-06| +|npm|grunt-jsdoc|1.3692525202852223e-06| +|npm|grunt-mocha-istanbul|1.3692525202852223e-06| +|npm|help-me-test|1.3692525202852223e-06| +|npm|require-dir|1.3692525202852223e-06| +|npm|[svgr](https://github.com/smooth-code/svgr#readme)|1.3554216867469906e-06| +|npm|[clsx](https://github.com/lukeed/clsx#readme)|1.3554216867469906e-06| +|npm|[deep-filter](https://github.com/IndigoUnited/js-deep-filter#readme)|1.3554216867469906e-06| +|npm|[kebabcase-keys](https://github.com/mattii/kebabcase-keys#readme)|1.3554216867469906e-06| +|npm|[camera-controls](https://github.com/yomotsu/camera-controls#readme)|1.355421686746988e-06| +|npm|[daisyui](https://github.com/saadeghi/daisyui)|1.355421686746988e-06| +|npm|[github-current-user](https://github.com/beaugunderson/github-current-user)|1.3418674698795263e-06| +|npm|karma-tap-reporter|1.2887082543860917e-06| +|npm|karma-spec-reporter|1.2887082543860917e-06| +|npm|karma-rollup-preprocessor|1.2887082543860917e-06| +|npm|karma-html-reporter|1.2887082543860917e-06| +|npm|karma-firefox-launcher|1.2887082543860917e-06| +|npm|karma-chai-sinon|1.2887082543860917e-06| +|npm|eslint-plugin-mocha|1.2887082543860917e-06| +|npm|eslint-config-nfl|1.2887082543860917e-06| +|npm|cz-conventional-changelog|1.2887082543860917e-06| +|npm|conventional-changelog-cli|1.2887082543860917e-06| +|npm|babel-plugin-transform-class-properties|1.2887082543860917e-06| +|npm|react-side-effect|1.2887082543860917e-06| +|npm|react-fast-compare|1.2887082543860917e-06| +|npm|tslint-config-semistandard|1.2424698795180723e-06| +|npm|optimist|1.2424698795180723e-06| +|npm|eslint-plugin-dependencies|1.2424698795180723e-06| +|npm|eslint-config-semistandard|1.2424698795180723e-06| +|npm|doctoc|1.2424698795180723e-06| +|npm|snappy|1.2424698795180723e-06| +|npm|optional|1.2424698795180723e-06| +|npm|nested-error-stacks|1.2424698795180723e-06| +|npm|denque|1.2424698795180723e-06| +|npm|buffermaker|1.2424698795180723e-06| +|npm|buffer-crc32|1.2424698795180723e-06| +|npm|binary|1.2424698795180723e-06| +|npm|[react-mdl](https://github.com/react-mdl/react-mdl#readme)|1.2048192771084378e-06| +|npm|[react-sigma](https://github.com/dunnock/react-sigma)|1.2048192771084378e-06| +|npm|[react-simple-file-input](https://github.com/greena13/react-simple-file-input#readme)|1.2048192771084378e-06| +|npm|[js-sha256](https://github.com/emn178/js-sha256)|1.2048192771084378e-06| +|npm|taper|1.1182228915662649e-06| +|npm|server-destroy|1.1182228915662649e-06| +|npm|karma-tap|1.1182228915662649e-06| +|npm|karma-phantomjs-launcher|1.1182228915662649e-06| +|npm|karma-browserify|1.1182228915662649e-06| +|npm|function-bind|1.1182228915662649e-06| +|npm|buffer-equal|1.1182228915662649e-06| +|npm|tunnel-agent|1.1182228915662649e-06| +|npm|tough-cookie|1.1182228915662649e-06| +|npm|qs|1.1182228915662649e-06| +|npm|performance-now|1.1182228915662649e-06| +|npm|oauth-sign|1.1182228915662649e-06| +|npm|isstream|1.1182228915662649e-06| +|npm|is-typedarray|1.1182228915662649e-06| +|npm|http-signature|1.1182228915662649e-06| +|npm|har-validator|1.1182228915662649e-06| +|npm|forever-agent|1.1182228915662649e-06| +|npm|extend|1.1182228915662649e-06| +|npm|caseless|1.1182228915662649e-06| +|npm|aws4|1.1182228915662649e-06| +|npm|aws-sign2|1.1182228915662649e-06| +|npm|[node-gzip](https://github.com/Rebsos/node-gzip#readme)|1.0843373493975956e-06| +|npm|[react-dnd](https://github.com/react-dnd/react-dnd#readme)|1.0843373493975903e-06| +|npm|[react-dnd-html5-backend](https://github.com/react-dnd/react-dnd#readme)|1.0843373493975903e-06| +|npm|[angular-toastr](https://github.com/Foxandxss/angular-toastr#readme)|9.8576122672508e-07| +|npm|[dialog-polyfill](https://github.com/GoogleChrome/dialog-polyfill)|9.8576122672508e-07| +|npm|[grunt-contrib-imagemin](https://github.com/gruntjs/grunt-contrib-imagemin#readme)|9.8576122672508e-07| +|npm|[material-design-lite](https://github.com/google/material-design-lite#readme)|9.8576122672508e-07| +|npm|[color-blend](https://github.com/Loilo/color-blend#readme)|9.036144578313322e-07| +|npm|[css-loader](https://github.com/webpack-contrib/css-loader)|8.94578313253012e-07| +|npm|[less-loader](https://github.com/webpack-contrib/less-loader)|8.94578313253012e-07| +|npm|[style-loader](https://github.com/webpack-contrib/style-loader)|8.94578313253012e-07| +|npm|[aws-amplify](https://aws-amplify.github.io/)|8.341056533827619e-07| +|npm|[aws-amplify-react](https://github.com/aws-amplify/amplify-js#readme)|8.341056533827619e-07| +|npm|[cors](https://github.com/expressjs/cors#readme)|7.803943044906954e-07| +|npm|[cpx](https://github.com/mysticatea/cpx)|7.74526678141144e-07| +|npm|tls|7.74526678141144e-07| +|npm|[angular-cesium](https://github.com/articodeltd/angular-cesium#readme)|7.228915662650602e-07| +|npm|[angular2-uuid](https://github.com/wulfsolter/angular2-uuid#readme)|7.228915662650602e-07| +|npm|[cesium](http://cesium.com/cesiumjs/)|7.228915662650602e-07| +|npm|express-flash|6.777108433734953e-07| +|npm|[passport-local](https://www.passportjs.org/packages/passport-local/?utm_source=github&utm_medium=referral&utm_campaign=passport-local)|6.777108433734953e-07| +|npm|[ng-bootstrap](https://github.com/valor-software/ngx-bootstrap#readme)|6.77710843373494e-07| +|npm|[react-helmet](https://github.com/nfl/react-helmet#readme)|6.378454996456498e-07| +|npm|[root](https://github.com/mafintosh/root#readme)|6.378454996456422e-07| +|npm|[nunjucks](https://github.com/mozilla/nunjucks#readme)|6.024096385542189e-07| +|npm|[xml-js](https://github.com/nashwaan/xml-js#readme)|6.024096385542189e-07| +|npm|[bcryptjs](https://github.com/dcodeIO/bcrypt.js#readme)|4.518072289156661e-07| +|npm|[hypertimer](https://github.com/enmasseio/hypertimer#readme)|4.518072289156661e-07| +|npm|[jwt-simple](https://github.com/hokaccha/node-jwt-simple#readme)|4.518072289156661e-07| +|npm|[kafka-node](https://github.com/SOHU-Co/kafka-node#readme)|4.518072289156661e-07| +|npm|[mqtt-router](https://github.com/wolfeidau/mqtt-router)|4.518072289156661e-07| +|npm|[benchmark](https://benchmarkjs.com/)|4.1705282669138347e-07| +|npm|[binary-split](https://github.com/maxogden/binary-split#readme)|4.1705282669138347e-07| +|npm|[download](https://github.com/kevva/download#readme)|4.1705282669138347e-07| +|npm|[ftp](https://github.com/mscdex/node-ftp)|4.1705282669138347e-07| +|npm|[ndjson](https://github.com/ndjson/ndjson.js)|4.1705282669138347e-07| +|npm|pipeline|4.1705282669138347e-07| +|npm|[filesaver](https://github.com/jacoborus/node-filesaver)|4.0160642570281263e-07| +|npm|[zeit](https://github.com/daviddenton/zeit#readme)|3.87263339070572e-07| +|npm|[sendgrid](https://sendgrid.com)|3.675719828466432e-07| +|npm|[stoplight](https://github.com/andrewhao/stoplight)|3.675719828466432e-07| +|npm|[cache-manager-redis-store](https://github.com/dabroek/node-cache-manager-redis-store#readme)|3.675719828466432e-07| +|npm|[cron](https://github.com/kelektiv/node-cron#readme)|3.675719828466432e-07| +|npm|[email-validator](http://github.com/manishsaraan/email-validator)|3.675719828466432e-07| +|npm|[tap-spec](https://github.com/scottcorgan/tap-spec#readme)|3.3546686746988156e-07| +|npm|[d3-v4-grid](https://github.com/finnfiddle/d3-v4-grid#readme)|3.285870755750292e-07| +|npm|[errorhandler](https://github.com/expressjs/errorhandler#readme)|3.285870755750292e-07| +|npm|[parallelshell](https://github.com/darkguy2008/parallelshell)|3.285870755750292e-07| +|npm|[save-svg-as-png](https://github.com/exupero/saveSvgAsPng)|3.285870755750292e-07| +|npm|[url](https://github.com/defunctzombie/node-url#readme)|3.285870755750292e-07| +|npm|[method-override](https://github.com/expressjs/method-override#readme)|3.285870755750254e-07| +|npm|[dedent](https://github.com/dmnd/dedent)|3.0671256454389125e-07| +|npm|[jsx-to-string](https://github.com/alansouzati/jsx-to-string#readme)|2.8535193405199885e-07| +|npm|[pretty-checkbox](https://lokesh-coder.github.io/pretty-checkbox)|2.8535193405199885e-07| +|npm|[vx](https://github.com/vxjs/vx)|1.93631669535286e-07| +|npm|[abbrev](https://github.com/isaacs/abbrev-js#readme)|1.837859914233216e-07| +|npm|[aproba](https://github.com/iarna/aproba)|1.837859914233216e-07| +|npm|[chownr](https://github.com/isaacs/chownr#readme)|1.837859914233216e-07| +|npm|concat-map|1.837859914233216e-07| +|npm|[console-control-strings](https://github.com/iarna/console-control-strings#readme)|1.837859914233216e-07| +|npm|[deep-extend](https://github.com/unclechu/node-deep-extend)|1.837859914233216e-07| +|npm|text-table|1.0322057460611754e-07| +|npm|[utfx](https://github.com/dcodeIO/utfx)|8.9457831325301e-08| +|npm|[babel-plugin-transform-remove-undefined](https://github.com/babel/minify#readme)|1.6502469505350535e-08| +|npm|[babel-plugin-transform-property-literals](https://github.com/babel/minify#readme)|1.6502469505350535e-08| +|npm|[babel-plugin-minify-type-constructors](https://github.com/babel/minify#readme)|1.6502469505350535e-08| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/pages/python.md b/pages/python.md index 447655fc..df653b69 100644 --- a/pages/python.md +++ b/pages/python.md @@ -4,2091 +4,2356 @@ description: "Most used dependencies across the RSEPedia database" layout: table permalink: /analysis/python/ tipue_search_active: true -exclude_from_search: true --- # Software Credit |Manager|Name|Credit| |-------|----|------| -|pypi|[numpy](https://www.numpy.org)|0.1492741279489265| -|pypi|[matplotlib](https://pypi.org/project/matplotlib)|0.03948445737993473| -|pypi|[pytest](https://pypi.org/project/pytest)|0.021702957390139065| -|pypi|[sphinx](https://pypi.org/project/sphinx)|0.014230836562856479| -|pypi|[six](https://pypi.org/project/six)|0.012493780484050048| -|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.01232642636940053| -|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.011903415484245715| -|pypi|[pyyaml](https://pyyaml.org/)|0.011305545301437849| -|pypi|[h5py](http://www.h5py.org)|0.010802012189864691| -|pypi|[colorama](https://pypi.org/project/colorama)|0.010583934871405555| -|pypi|[biopython](https://biopython.org/)|0.009884267252978236| -|pypi|[pytz](https://pypi.org/project/pytz)|0.009863382931396929| -|pypi|[docutils](https://pypi.org/project/docutils)|0.008251435433423705| -|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.008014238696997883| -|pypi|[numba](https://numba.pydata.org)|0.006868898139576726| -|pypi|[requests](https://pypi.org/project/requests)|0.0067492667115345165| -|pypi|[joblib](https://joblib.readthedocs.io)|0.005633560382625125| -|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.005572572206404528| -|pypi|[tomli](https://pypi.org/project/tomli)|0.005529189844944267| -|pypi|[lxml](https://pypi.org/project/lxml)|0.005499759724930307| -|pypi|[scipy](https://www.scipy.org)|0.0052589304267051775| -|pypi|[flake8](https://pypi.org/project/flake8)|0.0052413117769986965| -|pypi|[packaging](https://github.com/pypa/packaging)|0.005156730402374663| -|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.004999818505602755| -|pypi|[certifi](https://pypi.org/project/certifi)|0.004982830594421221| -|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.004943996923711716| -|pypi|[pandas](https://pypi.org/project/pandas)|0.004894223868096784| -|pypi|[idna](https://pypi.org/project/idna)|0.004707351251489174| -|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.00464265099949968| -|pypi|[mock](https://pypi.org/project/mock)|0.0041976645376708924| -|pypi|[pytest-xdist](https://github.com/pytest-dev/pytest-xdist)|0.004145290035778673| -|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.003830782673496577| -|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.0036542981007431875| -|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.003553693912808466| -|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.003500012878093297| -|pypi|[chardet](https://pypi.org/project/chardet)|0.0034272600716936637| -|pypi|[mypy](https://pypi.org/project/mypy)|0.0033504758008774966| -|pypi|[sphinx-rtd-theme](https://pypi.org/project/sphinx-rtd-theme)|0.0031393825875260933| -|pypi|[PySocks](https://pypi.org/project/PySocks)|0.003122040570029076| -|pypi|[types-setuptools](https://pypi.org/project/types-setuptools)|0.002893606464900151| -|pypi|[wheel](https://pypi.org/project/wheel)|0.0028821695229721165| -|pypi|[pygments](https://pypi.org/project/pygments)|0.002854166358315642| -|pypi|[click](https://pypi.org/project/click)|0.0027852492959976344| -|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.0027591995611113266| -|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.0027265434635195206| -|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.002602965792791868| -|pypi|[virtualenv](https://pypi.org/project/virtualenv)|0.002540737750250344| -|pypi|[urllib3](https://pypi.org/project/urllib3)|0.0024648677477546433| -|pypi|[attrs](https://www.attrs.org/)|0.002393740623724215| -|pypi|[contextlib2](https://pypi.org/project/contextlib2)|0.002389264037985136| -|pypi|[cython](http://cython.org/)|0.0023616656255437203| -|pypi|[nose](https://pypi.org/project/nose)|0.0023497416393629946| -|pypi|[protobuf](https://pypi.org/project/protobuf)|0.0023114745721178956| -|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.0022797643162983864| -|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.0022797643162983864| -|pypi|[Sphinx](https://pypi.org/project/Sphinx)|0.0022723095802110547| -|pypi|[pybind11-global](https://github.com/pybind/pybind11)|0.0022472427745664734| -|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.0022160715498828047| -|pypi|[ipywidgets](http://ipython.org)|0.002197691280727462| -|pypi|[twine](https://pypi.org/project/twine)|0.0021950833591135527| -|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.002187079070411925| -|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.0021578804617993297| -|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.0021420644063384056| -|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.0021420644063384056| -|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.0020198900141367706| -|pypi|[Babel](http://babel.pocoo.org/)|0.0019469857310698397| -|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.0018607502473819545| -|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.001853232039636664| -|pypi|[pywin32](https://pypi.org/project/pywin32)|0.001847428861952184| -|pypi|[py](https://pypi.org/project/py)|0.0018422722625732922| -|pypi|[netCDF4](https://pypi.org/project/netCDF4)|0.0018110521669761727| -|pypi|[black](https://pypi.org/project/black)|0.0017892458699891444| -|pypi|[setuptools](https://pypi.org/project/setuptools)|0.001751617709472106| -|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.0017467840165604953| -|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.0017247095750602254| -|pypi|[future](https://python-future.org)|0.0017093847472147029| -|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.0017067192861764514| -|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.0016513591006503763| -|pypi|[ipython](https://pypi.org/project/ipython)|0.0016467923502681376| -|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.001577163173384903| -|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.001576555447442493| -|pypi|[py-make](https://pypi.org/project/py-make)|0.001576555447442493| -|pypi|[ujson](https://pypi.org/project/ujson)|0.0015296799595674421| -|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.0015152631532630522| -|pypi|[defusedxml](https://pypi.org/project/defusedxml)|0.0015024758635635946| -|pypi|[decorator](https://pypi.org/project/decorator)|0.0014976780660598665| -|pypi|[pluggy](https://pypi.org/project/pluggy)|0.0014948358467853232| -|pypi|[enum34](https://pypi.org/project/enum34)|0.0014790057120094213| -|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.0014747240065302026| -|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.0014418779569855852| -|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.0014321312646890683| -|pypi|[apyori](https://github.com/ymoch/apyori)|0.001430635838150289| -|pypi|[http](https://github.com/franckcuny/http)|0.001430635838150289| -|pypi|[llist](https://github.com/ajakubek/python-llist)|0.001430635838150289| -|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.001424354524133986| -|pypi|[isal](https://github.com/pycompression/python-isal)|0.001416329479768786| -|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.0013974081777405182| -|pypi|[cloudpickle](https://github.com/cloudpipe/cloudpickle)|0.0013965304841450806| -|pypi|[SQLAlchemy](https://pypi.org/project/SQLAlchemy)|0.0013942853006981702| -|pypi|[pygraphviz](http://pygraphviz.github.io)|0.001353259865046114| -|pypi|[keras](https://keras.io/)|0.001328359050267506| -|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.0013106198388397794| -|pypi|[cryptography](https://pypi.org/project/cryptography)|0.0012927491987277616| -|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.0012902797232028904| -|pypi|[docopt](https://pypi.org/project/docopt)|0.00128794307222853| -|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.0012752857542565814| -|pypi|[bmipy](http://csdms.colorado.edu)|0.0012716763005780347| -|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.0012707701098538854| -|pypi|[jinja2](https://pypi.org/project/jinja2)|0.0012476124272240044| -|pypi|[pycparser](https://pypi.org/project/pycparser)|0.001234519985549133| -|pypi|[commonmark](https://pypi.org/project/commonmark)|0.0012338557532514452| -|pypi|[psutil](https://pypi.org/project/psutil)|0.0012319744554389867| -|pypi|[pulp](https://github.com/coin-or/pulp)|0.0012160404624277457| -|pypi|[pyfaidx](http://mattshirley.com)|0.0011354252683732453| -|pypi|[process-tests](https://pypi.org/project/process-tests)|0.0011237009352243386| -|pypi|[hunter](https://pypi.org/project/hunter)|0.0011237009352243386| -|pypi|[fields](https://pypi.org/project/fields)|0.0011237009352243386| -|pypi|[pyproj](https://pypi.org/project/pyproj)|0.0011086005993983438| -|pypi|[PyQt5-sip](https://pypi.org/project/PyQt5-sip)|0.0011064971479387664| -|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.001101896120497352| -|pypi|[Pygments](https://pypi.org/project/Pygments)|0.0010999601317924332| -|pypi|[seaborn](https://seaborn.pydata.org)|0.001096833040934526| -|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.001094856653865677| -|pypi|[pybedtools](https://github.com/daler/pybedtools)|0.0010843311312964492| -|pypi|[isort](https://pypi.org/project/isort)|0.0010803645943022297| -|pypi|[typing](https://docs.python.org/3/library/typing.html)|0.0010765534682080924| -|pypi|[alabaster](https://pypi.org/project/alabaster)|0.001060468017201356| -|pypi|[threadpoolctl](https://github.com/joblib/threadpoolctl)|0.0010453800244140667| -|pypi|[python-magic](http://github.com/ahupp/python-magic)|0.001033236994219653| -|pypi|[pillow](https://pypi.org/project/pillow)|0.0010250834285606472| -|pypi|[imagesize](https://pypi.org/project/imagesize)|0.0010014542888776565| -|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.0010014542888776565| -|pypi|[Pillow](https://pypi.org/project/Pillow)|0.0009859611710067633| -|pypi|[et-xmlfile](https://foss.heptapod.net/openpyxl/et_xmlfile)|0.0009829602673338221| -|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.0009785435570570924| -|pypi|[dill](https://pypi.org/project/dill)|0.0009712109667788858| -|pypi|[llvmlite](http://llvmlite.readthedocs.io)|0.000965580662112454| -|pypi|[Cython](http://cython.org/)|0.0009609104046242774| -|pypi|[execnet](https://pypi.org/project/execnet)|0.0009549149547352588| -|pypi|[tenacity](https://pypi.org/project/tenacity)|0.0009544980536508132| -|pypi|[conan](https://conan.io)|0.000953757225433526| -|pypi|[readthedocs-sphinx-search](https://github.com/readthedocs/readthedocs-sphinx-search)|0.000953757225433526| -|pypi|[ruamel.YAML](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.000953757225433526| -|pypi|[jmetalpy](https://github.com/jMetal/jMetalPy)|0.000953757225433526| -|pypi|[pyMSA](https://github.com/benhid/pyMSA)|0.000953757225433526| -|pypi|[rdflib-jsonld](https://github.com/RDFLib/rdflib-jsonld)|0.000953757225433526| -|pypi|[itsdangerous](https://pypi.org/project/itsdangerous)|0.0009503451084879281| -|pypi|[pint](https://pypi.org/project/pint)|0.0009340008257638315| -|pypi|[babel](https://pypi.org/project/babel)|0.0009091552025453798| -|pypi|[sphinxext-opengraph](https://pypi.org/project/sphinxext-opengraph)|0.0009059981818290415| -|pypi|[Biopython](https://biopython.org/)|0.0008923591040462427| -|pypi|[shiboken2](https://www.pyside.org)|0.0008894549132947976| -|pypi|[pexpect](https://pypi.org/project/pexpect)|0.000880283148844778| -|pypi|[typing_extensions](https://typing.readthedocs.io/)|0.0008766991464995801| -|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.0008667364484758538| -|pypi|[argparse](https://github.com/ThomasWaldmann/argparse/)|0.000866211174410849| -|pypi|[scikit-image](https://scikit-image.org)|0.000862023787410659| -|pypi|[more_itertools](https://github.com/more-itertools/more-itertools)|0.00085621387283237| -|pypi|[futures](https://pypi.org/project/futures)|0.0008561714195912987| -|pypi|[traitlets](https://pypi.org/project/traitlets)|0.0008384520727359268| -|pypi|[jaraco.tidelift](https://pypi.org/project/jaraco.tidelift)|0.000836128484389612| -|pypi|[dask](https://pypi.org/project/dask)|0.0008360794954419979| -|pypi|[intervaltree](https://github.com/chaimleib/intervaltree)|0.0008297687861271675| -|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.0008253668297020898| -|pypi|[PyQt5-Qt5](https://pypi.org/project/PyQt5-Qt5)|0.0008250093279552817| -|pypi|[grpcio](https://pypi.org/project/grpcio)|0.0008241784995354445| -|pypi|[tartiflette](https://tartiflette.io)|0.0008175061932287366| -|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.0008175061932287366| -|pypi|[html5lib](https://pypi.org/project/html5lib)|0.0008117184974904742| -|pypi|[codecov](https://github.com/codecov/codecov-python)|0.0008041935245010745| -|pypi|[quantities](http://python-quantities.readthedocs.io/)|0.0008038385115606936| -|pypi|[appdirs](https://pypi.org/project/appdirs)|0.000797665946769993| -|pypi|[nlppln](https://github.com/nlppln/nlppln)|0.0007947976878612717| -|pypi|[statsmodels](https://www.statsmodels.org/)|0.0007891444328635677| -|pypi|[jupyter](http://jupyter.org)|0.0007866048223813758| -|pypi|[semver](https://github.com/python-semver/python-semver)|0.0007858745553579368| -|pypi|[wrapt](https://pypi.org/project/wrapt)|0.0007833578828273294| -|pypi|[redis](https://pypi.org/project/redis)|0.0007754480727243269| -|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.0007705671977624977| -|pypi|[python-levenshtein](http://github.com/ztane/python-Levenshtein)|0.0007688645747316266| -|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.0007661631043332188| -|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.000759148791266893| -|pypi|[mpmath](https://pypi.org/project/mpmath)|0.000755239288907315| -|pypi|[rtree](https://pypi.org/project/rtree)|0.0007423692840925293| -|pypi|[sphinxcontrib-moderncmakedomain](https://github.com/scikit-build/moderncmakedomain)|0.0007334759893285904| -|pypi|[pydot](https://pypi.org/project/pydot)|0.0007330868900250185| -|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.0007309333635421351| -|pypi|[tornado](https://pypi.org/project/tornado)|0.0007304096356725492| -|pypi|[pycosat](https://github.com/ContinuumIO/pycosat)|0.0007271413557540725| -|pypi|[mappy](https://github.com/lh3/minimap2)|0.0007266721717588769| -|pypi|[pyhocon](http://github.com/chimpler/pyhocon/)|0.0007266721717588769| -|pypi|[Django](https://pypi.org/project/Django)|0.0007250812173173126| -|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.0007181915756510142| -|pypi|[shortuuid](https://github.com/skorokithakis/shortuuid/)|0.0007153179190751445| -|pypi|[ruamel_yaml_conda](https://pypi.org/project/ruamel_yaml_conda)|0.0007153179190751445| -|pypi|[menuinst](https://github.com/ContinuumIO/menuinst)|0.0007153179190751445| -|pypi|[lazyarray](http://github.com/NeuralEnsemble/lazyarray/)|0.0007153179190751445| -|pypi|[cherrypy](https://www.cherrypy.org)|0.0007153179190751445| -|pypi|[django-tastypie](https://github.com/django-tastypie/django-tastypie)|0.0007153179190751445| -|pypi|[South](http://south.aeracode.org/)|0.0007153179190751445| -|pypi|[pyxdg](http://freedesktop.org/wiki/Software/pyxdg)|0.0007153179190751445| -|pypi|[earthengine-api](http://code.google.com/p/earthengine-api/)|0.0007153179190751445| -|pypi|[openbabel](http://openbabel.org/)|0.0007153179190751445| -|pypi|[bitarray](https://github.com/ilanschnell/bitarray)|0.0007153179190751445| -|pypi|[termcolor](https://pypi.org/project/termcolor)|0.0007106307508552554| -|pypi|[umap-learn](https://pypi.org/project/umap-learn)|0.000706703700923354| -|pypi|[pytest-runner](https://github.com/pytest-dev/pytest-runner/)|0.0007058339435365639| -|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.000697851154157224| -|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.000697851154157224| -|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.0006889690656164644| -|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.0006889690656164644| -|pypi|[tzdata](https://github.com/python/tzdata)|0.0006720130372866367| -|pypi|[bump2version](https://pypi.org/project/bump2version)|0.0006596094108037786| -|pypi|[cycler](https://github.com/matplotlib/cycler)|0.0006470938743337587| -|pypi|[sqlparse](https://github.com/andialbrecht/sqlparse)|0.0006412478973960853| -|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.0006390244305859293| -|pypi|[types-requests](https://pypi.org/project/types-requests)|0.0006349111800712793| -|pypi|[freesasa](http://freesasa.github.io/)|0.000627471858837846| -|pypi|[pip](https://pypi.org/project/pip)|0.0006267905587025756| -|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.0006257287124354631| -|pypi|[furo](https://pypi.org/project/furo)|0.0006223667686827553| -|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.0006219000621023907| -|pypi|[graphviz](https://pypi.org/project/graphviz)|0.0006169020392721077| -|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.0006118472672042493| -|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.0006118472672042493| -|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.0006118472672042493| -|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.0006118472672042493| -|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.0006118472672042493| -|pypi|[networkx](https://networkx.org/)|0.0006102961428843532| -|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.0006073013455801144| -|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.0006071400138013032| -|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.000606936416184971| -|pypi|[pep517](https://pypi.org/project/pep517)|0.00060449759953288| -|pypi|[django](https://www.djangoproject.com/)|0.0005940716152840041| -|pypi|[smmap](https://pypi.org/project/smmap)|0.0005925185233841303| -|pypi|[python](http://www.python.org/2.5)|0.0005875825763831544| -|pypi|[editdistance](https://www.github.com/roy-ht/editdistance)|0.0005780346820809248| -|pypi|[toml](https://pypi.org/project/toml)|0.0005729478982760899| -|pypi|[chemparse](https://pypi.org/project/chemparse)|0.0005722543352601156| -|pypi|[pysqlite3](https://github.com/coleifer/pysqlite3)|0.0005722543352601156| -|pypi|[cigar](https://github.com/brentp/cigar)|0.0005722543352601156| -|pypi|[pymbar](http://github.com/choderalab/pymbar)|0.0005722543352601156| -|pypi|[udatetime](https://github.com/freach/udatetime)|0.0005722543352601156| -|pypi|[jq](http://github.com/mwilliamson/jq.py)|0.0005722543352601156| -|pypi|[segments](https://github.com/cldf/segments)|0.0005722543352601156| -|pypi|[dlinfo](https://code.grasp-open.com/grasp-tools/python-dlinfo)|0.0005722543352601156| -|pypi|[music21](https://github.com/cuthbertLab/music21)|0.0005696531791907514| -|pypi|[pysoundfile](https://github.com/bastibe/PySoundFile)|0.0005696531791907514| -|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.0005694283084115749| -|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.0005693018288626442| -|pypi|[wmi](https://pypi.org/project/wmi)|0.0005629091678818036| -|pypi|[unittest2](https://pypi.org/project/unittest2)|0.0005629091678818036| -|pypi|[msgpack](https://pypi.org/project/msgpack)|0.0005627539684420733| -|pypi|[Flask](https://pypi.org/project/Flask)|0.0005567323214349055| -|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.0005513965658932469| -|pypi|[plotly](https://plotly.com/python/)|0.0005503465115023488| -|pypi|[pretty_midi](https://github.com/craffel/pretty-midi)|0.000546242774566474| -|pypi|[watchdog](https://pypi.org/project/watchdog)|0.0005369847823522472| -|pypi|[beautifulsoup4](https://pypi.org/project/beautifulsoup4)|0.0005294334463910695| -|pypi|[torchsummary](https://github.com/sksq96/pytorch-summary)|0.0005245664739884393| -|pypi|[rich](https://pypi.org/project/rich)|0.0005237909710869398| -|pypi|[astropy](http://astropy.org)|0.0005177765045849379| -|pypi|[Werkzeug](https://pypi.org/project/Werkzeug)|0.000513543250072018| -|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|0.0005131319801963267| -|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|0.0005131319801963267| -|pypi|[sphinx-autoapi](http://github.com/readthedocs/sphinx-autoapi)|0.0005072285301403798| -|pypi|[pytest-virtualenv](https://pypi.org/project/pytest-virtualenv)|0.0005047519297954159| -|pypi|[tqdm](https://tqdm.github.io)|0.0005000672149657426| -|pypi|[orjson](https://pypi.org/project/orjson)|0.0004992987111238726| -|pypi|[glob2](https://pypi.org/project/glob2)|0.0004961371720764784| -|pypi|[backports.zoneinfo](https://github.com/pganssle/zoneinfo)|0.0004940358521018284| -|pypi|[tox](https://pypi.org/project/tox)|0.000493801924077765| -|pypi|[gym](https://pypi.org/project/gym)|0.0004924326186315365| -|pypi|[wsgiref](http://cheeseshop.python.org/pypi/wsgiref)|0.000476878612716763| -|pypi|[pycairo](https://pycairo.readthedocs.io)|0.000476878612716763| -|pypi|[pygobject](https://pygobject.readthedocs.io)|0.000476878612716763| -|pypi|[PyCap](https://github.com/redcap-tools/PyCap)|0.000476878612716763| -|pypi|[sh](https://github.com/amoffat/sh)|0.000476878612716763| -|pypi|[pydub](http://pydub.com)|0.000476878612716763| -|pypi|[gofish](https://github.com/richteague/gofish)|0.000476878612716763| -|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.0004729753863230696| -|pypi|[webencodings](https://pypi.org/project/webencodings)|0.00045818298233100854| -|pypi|[nbformat](https://pypi.org/project/nbformat)|0.000457222827935105| -|pypi|[gdal](http://www.gdal.org)|0.00045699873554913296| -|pypi|[jmespath](https://github.com/jmespath/jmespath.py)|0.0004559393780466396| -|pypi|[check-manifest](https://pypi.org/project/check-manifest)|0.0004537190729420628| -|pypi|[texext](https://pypi.org/project/texext)|0.0004436644114390274| -|pypi|[pygame](https://www.pygame.org)|0.0004415565648224608| -|pypi|[zipp](https://github.com/jaraco/zipp)|0.00043728779206777423| -|pypi|[tomli-w](https://pypi.org/project/tomli-w)|0.00043037578042878235| -|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.0004291907514450867| -|pypi|[build](https://pypi.org/project/build)|0.00042694596137377136| -|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|0.0004252517239888692| -|pypi|[pyamg](https://pypi.org/project/pyamg)|0.0004233360890687977| -|pypi|[django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms)|0.00042124277456647395| -|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|0.00041529872467640496| -|pypi|[prospector](https://pypi.org/project/prospector)|0.000414224729170249| -|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.00041051491775333276| -|pypi|[fluids](https://github.com/CalebBell/fluids)|0.0004087530966143683| -|pypi|[mamba](http://nestorsalceda.github.io/mamba)|0.0004087530966143683| -|pypi|[pywgsim](https://github.com/ialbert/pywgsim)|0.0004087530966143683| -|pypi|[limitedinteraction](https://felixchenier.uqam.ca/limitedinteraction/)|0.0004087530966143683| -|pypi|[ultranest](https://github.com/JohannesBuchner/ultranest)|0.0004087530966143683| -|pypi|[bcbio_gff](https://github.com/chapmanb/bcbb/tree/master/gff)|0.0004087530966143683| -|pypi|[qtawesome](https://github.com/spyder-ide/qtawesome)|0.0004087530966143683| -|pypi|[drug2ways](https://github.com/drug2ways/drug2ways)|0.0004087530966143683| -|pypi|[matplotlib_venn](https://github.com/konstantint/matplotlib-venn)|0.0004087530966143683| -|pypi|[mdtraj](http://mdtraj.org)|0.0004087530966143683| -|pypi|[openmm](https://github.com/rmcgibbo/openmm-cmd)|0.0004087530966143683| -|pypi|[universal-divergence](https://github.com/slaypni/universal-divergence)|0.0004087530966143683| -|pypi|[freezegun](https://pypi.org/project/freezegun)|0.00040240328008593385| -|pypi|[sphinx-copybutton](https://pypi.org/project/sphinx-copybutton)|0.00039897111069411053| -|pypi|[soupsieve](https://facelessuser.github.io/soupsieve/)|0.0003979905250981538| -|pypi|[bcrypt](https://github.com/pyca/bcrypt/)|0.0003964079447058071| -|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.00039495337267784613| -|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.00039342485549132944| -|pypi|[pybtex](https://pybtex.org/)|0.00038974803488589716| -|pypi|[bz2file](https://github.com/nvawda/bz2file)|0.00038949060693641615| -|pypi|[boto](https://github.com/boto/boto/)|0.00038949060693641615| -|pypi|[torch-geometric](https://github.com/pyg-team/pytorch_geometric)|0.0003890325524794645| -|pypi|[whoosh](http://bitbucket.org/mchaput/whoosh)|0.00038542184999999996| -|pypi|[jellyfish](http://github.com/jamesturk/jellyfish)|0.00037456647398843927| -|pypi|[types-docutils](https://pypi.org/project/types-docutils)|0.00037380416383600074| -|pypi|[chevron](https://github.com/noahmorrison/chevron)|0.00037306737915263923| -|pypi|[pathlib2](https://pypi.org/project/pathlib2)|0.00037163126622584945| -|pypi|[cartopy](https://scitools.org.uk/cartopy/docs/latest/)|0.00037037572254335256| -|pypi|[siphon](https://pypi.org/project/siphon)|0.00037030475846407926| -|pypi|[nrel-pysam](https://pypi.org/project/nrel-pysam)|0.00037030475846407926| -|pypi|[psycopg2](https://pypi.org/project/psycopg2)|0.0003647757571440202| -|pypi|[xlsxwriter](https://github.com/jmcnamara/XlsxWriter)|0.00036333608587943845| -|pypi|[gemmi](https://project-gemmi.github.io/)|0.00035765895953757224| -|pypi|[protfasta](https://pypi.org/project/protfasta)|0.00035765895953757224| -|pypi|[alphaPredict](https://pypi.org/project/alphaPredict)|0.00035765895953757224| -|pypi|[ee_extra](https://github.com/r-earthengine/ee_extra)|0.00035765895953757224| -|pypi|[grapheme](https://github.com/alvinlindstam/grapheme)|0.0003540823699421965| -|pypi|[about-time](https://github.com/rsalmei/about-time)|0.0003540823699421965| -|pypi|[requests-oauthlib](https://pypi.org/project/requests-oauthlib)|0.0003525211601981833| -|pypi|[yapf](https://pypi.org/project/yapf)|0.0003518253419739346| -|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.0003517436544608442| -|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.00034847643205585704| -|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.00034847643205585704| -|pypi|[lockfile](https://pypi.org/project/lockfile)|0.00034828611928350897| -|pypi|[brotli](https://pypi.org/project/brotli)|0.00034755796645443294| -|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.0003472570037218019| -|pypi|[sos](https://github.com/vatlab/SoS)|0.0003468915424399148| -|pypi|[flaky](https://pypi.org/project/flaky)|0.00034173652229149817| -|pypi|[brotlipy](https://pypi.org/project/brotlipy)|0.0003412233328799149| -|pypi|[dnspython](https://pypi.org/project/dnspython)|0.00033646255677126336| -|pypi|[notebook](https://pypi.org/project/notebook)|0.0003345697295199744| -|pypi|[sos-notebook](https://github.com/vatlab/SOS)|0.00033446759963492545| -|pypi|[pip-run](https://pypi.org/project/pip-run)|0.00033370358357650757| -|pypi|[pandoc](https://pypi.org/project/pandoc)|0.0003333395127993394| -|pypi|[gunicorn](https://gunicorn.org)|0.0003322902361154656| -|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.00033062516893904263| -|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.0003299309060715625| -|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|0.00032791807408515404| -|pypi|[backoff](https://github.com/litl/backoff)|0.00032546965317919074| -|pypi|[ratelimit](https://github.com/tomasbasham/ratelimit)|0.00032546965317919074| -|pypi|[voluptuous](https://github.com/alecthomas/voluptuous)|0.00032546965317919074| -|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|0.00032483639016214066| -|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|0.00032483639016214066| -|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|0.00032483639016214066| -|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|0.00032483639016214066| -|pypi|[asgiref](https://github.com/django/asgiref/)|0.00032462674563803277| -|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|0.0003199280014995639| -|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.00031931428521519766| -|pypi|[yamlreader](https://github.com/ImmobilienScout24/yamlreader)|0.0003179190751445087| -|pypi|[lda](https://pypi.org/project/lda)|0.0003179190751445087| -|pypi|[voevent-parse](https://github.com/timstaley/voevent-parse)|0.0003179190751445087| -|pypi|[cwl-runner](https://github.com/common-workflow-language/common-workflow-language)|0.0003179190751445087| -|pypi|[KafNafParserPy](https://github.com/cltl/KafNafParserPy)|0.0003179190751445087| -|pypi|[kaggle](https://github.com/Kaggle/kaggle-api)|0.0003179190751445087| -|pypi|[numpy-stl](https://github.com/WoLpH/numpy-stl/)|0.00031565793947636856| -|pypi|[s3transfer](https://github.com/boto/s3transfer)|0.0003149503238724253| -|pypi|[nestle](http://github.com/kbarbary/nestle)|0.0003147398843930636| -|pypi|[photutils](https://github.com/astropy/photutils)|0.0003147398843930636| -|pypi|[markdown2](https://pypi.org/project/markdown2)|0.0003140744557228808| -|pypi|[olefile](https://pypi.org/project/olefile)|0.0003140744557228808| -|pypi|[typed-ast](https://pypi.org/project/typed-ast)|0.0003129300719904891| -|pypi|[sphinx-issues](https://pypi.org/project/sphinx-issues)|0.0003100517946592335| -|pypi|[wget](http://bitbucket.org/techtonik/python-wget/)|0.00030997109826589594| -|pypi|[sympy](https://pypi.org/project/sympy)|0.0003062719414950333| -|pypi|[absl-py](https://pypi.org/project/absl-py)|0.00030509093110343296| -|pypi|[shapely](https://pypi.org/project/shapely)|0.0003021937957058259| -|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.0003004253958675511| -|pypi|[nlesc-CAT](https://github.com/nlesc-nano/CAT)|0.0002999690338563171| -|pypi|[pyOpenSSL](https://pypi.org/project/pyOpenSSL)|0.0002973331340209705| -|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.00029582587555398174| -|pypi|[pytest-timeout](https://pypi.org/project/pytest-timeout)|0.0002942598746958735| -|pypi|[libcst](https://pypi.org/project/libcst)|0.00029368858504573474| -|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|0.00029368858504573474| -|pypi|[coloredlogs](https://pypi.org/project/coloredlogs)|0.0002904889950409076| -|pypi|[gitdb](https://github.com/gitpython-developers/gitdb)|0.00028879453494482394| -|pypi|[tmm](http://pypi.python.org/pypi/tmm)|0.0002861271676300578| -|pypi|[simpleitk](http://simpleitk.org/)|0.0002861271676300578| -|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.0002861271676300578| -|pypi|[pyroaring](https://github.com/Ezibenroc/PyRoaringBitMap)|0.0002861271676300578| -|pypi|[blosc](http://github.com/blosc/python-blosc)|0.0002861271676300578| -|pypi|[deap](https://www.github.com/deap)|0.0002861271676300578| -|pypi|[Cerberus](http://docs.python-cerberus.org)|0.0002861271676300578| -|pypi|[CoolProp](http://www.coolprop.org)|0.0002861271676300578| -|pypi|[ansicolors](http://github.com/jonathaneunice/colors/)|0.0002861271676300578| -|pypi|[libsvm](https://github.com/ocampor/libsvm)|0.0002861271676300578| -|pypi|[area](https://github.com/scisco/area)|0.0002861271676300578| -|pypi|[StringDist](https://github.com/obulkin/string-dist)|0.0002861271676300578| -|pypi|[keyring](https://pypi.org/project/keyring)|0.0002848176973634204| -|pypi|[igraph](https://igraph.org/python)|0.00028397406069364156| -|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.00028330124679929776| -|pypi|[pandoc-min](https://github.com/boisgera/pandoc)|0.0002832658959537572| -|pypi|[CommonMark](https://github.com/rtfd/CommonMark-py)|0.0002832658959537572| -|pypi|[tzlocal](https://pypi.org/project/tzlocal)|0.00027925296242774564| -|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.0002768897244529834| -|pypi|[imageio](https://pypi.org/project/imageio)|0.00027553152111889665| -|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.00027501373650955783| -|pypi|[numexpr](https://pypi.org/project/numexpr)|0.0002748333458449065| -|pypi|[distro](https://github.com/python-distro/distro)|0.00027362875563742616| -|pypi|[dash-renderer](https://pypi.org/project/dash-renderer)|0.00027312064646640245| -|pypi|[pybtex-docutils](https://github.com/mcmtroffaes/pybtex-docutils)|0.0002727211868357262| -|pypi|[cwltool](https://github.com/common-workflow-language/cwltool)|0.000271820809248555| -|pypi|[python-dotenv](https://github.com/theskumar/python-dotenv)|0.0002666065958953173| -|pypi|[python-utils](https://pypi.org/project/python-utils)|0.00026654070743459675| -|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.0002654003037631237| -|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|0.0002641472182705061| -|pypi|[gitpython](https://pypi.org/project/gitpython)|0.0002627044129790644| -|pypi|[netcdf4](https://pypi.org/project/netcdf4)|0.00026062450806036704| -|pypi|[pyscf](http://www.pyscf.org)|0.00026011560693641616| -|pypi|[filetype](https://github.com/h2non/filetype.py)|0.00026011560693641616| -|pypi|[Flask-RESTful](https://www.github.com/flask-restful/flask-restful/)|0.00026011560693641616| -|pypi|[functools32](https://github.com/MiCHiLU/python-functools32)|0.00026011560693641616| -|pypi|[edlib](https://github.com/Martinsos/edlib)|0.00026011560693641616| -|pypi|[cffi](http://cffi.readthedocs.org)|0.00025513054083957956| -|pypi|[pyrsistent](http://github.com/tobgu/pyrsistent/)|0.00025488638631553047| -|pypi|[setuptools_scm_git_archive](https://github.com/Changaco/setuptools_scm_git_archive/)|0.00025274566473988436| -|pypi|[tensorboard](https://pypi.org/project/tensorboard)|0.00025001660987733243| -|pypi|[alembic](https://alembic.sqlalchemy.org)|0.00024710026351581094| -|pypi|[bleach](https://pypi.org/project/bleach)|0.0002453720121308774| -|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.00024305965686859538| -|pypi|[pyroma](https://pypi.org/project/pyroma)|0.00024063761197860227| -|pypi|[path](https://pypi.org/project/path)|0.00023881202724952846| -|pypi|[gpytorch](https://gpytorch.ai)|0.0002384393063583815| -|pypi|[cached_property](https://github.com/pydanny/cached-property)|0.0002384393063583815| -|pypi|[bidict](https://bidict.readthedocs.io)|0.0002384393063583815| -|pypi|[reno](https://pypi.org/project/reno)|0.00023814568538398014| -|pypi|[google-pasta](https://pypi.org/project/google-pasta)|0.00023787855893802609| -|pypi|[cachetools](https://pypi.org/project/cachetools)|0.000237613901123504| -|pypi|[pympler](https://pypi.org/project/pympler)|0.00023663094444157225| -|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|0.00023609026414033823| -|pypi|[libclang](https://pypi.org/project/libclang)|0.00023609026414033823| -|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|0.00023609026414033823| -|pypi|[gast](https://pypi.org/project/gast)|0.00023609026414033823| -|pypi|[astunparse](https://pypi.org/project/astunparse)|0.00023609026414033823| -|pypi|[pretend](https://pypi.org/project/pretend)|0.0002347384013212221| -|pypi|[ini2toml](https://pypi.org/project/ini2toml)|0.00023437405564787626| -|pypi|[pyglet](https://pypi.org/project/pyglet)|0.00023223303306032464| -|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.00023100672772384922| -|pypi|[sphinx-removed-in](https://pypi.org/project/sphinx-removed-in)|0.00022643906916218714| -|pypi|[pooch](https://pypi.org/project/pooch)|0.00022642187107835575| -|pypi|[gmsh](https://gmsh.info)|0.00022385243114586873| -|pypi|[boto3](https://pypi.org/project/boto3)|0.0002216868657122311| -|pypi|[yt](https://github.com/yt-project/yt)|0.00022009782125389062| -|pypi|[sphinx-math-dollar](https://github.com/sympy/sphinx-math-dollar/)|0.00022009782125389062| -|pypi|[pypi-publisher](https://github.com/wdm0006/ppp)|0.00022009782125389062| -|pypi|[hdmedians](http://github.com/daleroberts/hdmedians)|0.00022009782125389062| -|pypi|[textwrapper](https://github.com/tusharsadhwani/textwrapper)|0.00022009782125389062| -|pypi|[pickleshare](https://pypi.org/project/pickleshare)|0.00021838035888790703| -|pypi|[jedi](https://pypi.org/project/jedi)|0.00021838035888790703| -|pypi|[Six](https://pypi.org/project/Six)|0.00021727781791907512| -|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|0.00021723585021738679| -|pypi|[backcall](https://pypi.org/project/backcall)|0.00021723585021738679| -|pypi|[email-validator](https://github.com/JoshData/python-email-validator)|0.0002165803829479769| -|pypi|[locket](https://pypi.org/project/locket)|0.0002141562195030403| -|pypi|[retrying](https://pypi.org/project/retrying)|0.0002115596071102612| -|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.0002108427081173942| -|pypi|[types-toml](https://pypi.org/project/types-toml)|0.00020839583208640604| -|pypi|[pyjsparser](https://pypi.org/project/pyjsparser)|0.00020772832369942194| -|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|0.00020696244746609094| -|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|0.00020696244746609094| -|pypi|[dash](https://plotly.com/dash)|0.00020601977122360456| -|pypi|[webcolors](https://pypi.org/project/webcolors)|0.00020523807406466364| -|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.00020457688224244792| -|pypi|[ipdb](https://github.com/gotcha/ipdb)|0.00020437654830718414| -|pypi|[thermo](https://github.com/CalebBell/thermo)|0.00020437654830718414| -|pypi|[colorpalette](https://github.com/yoelcortes/colorpalette)|0.00020437654830718414| -|pypi|[free_properties](https://github.com/yoelcortes/free_properties)|0.00020437654830718414| -|pypi|[flexsolve](https://github.com/yoelcortes/flexsolve)|0.00020437654830718414| -|pypi|[oaiharvest](http://github.com/bloomonkey/oai-harvest)|0.00020437654830718414| -|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|0.00020437654830718414| -|pypi|[dicttoxml](https://github.com/quandyfactory/dicttoxml)|0.00020357783535977675| -|pypi|[jax](https://pypi.org/project/jax)|0.000202663475433526| -|pypi|[imageio-ffmpeg](https://github.com/imageio/imageio-ffmpeg)|0.0002020702992179531| -|pypi|[traittypes](https://pypi.org/project/traittypes)|0.00020134095545732743| -|pypi|[sgp4](https://github.com/brandon-rhodes/python-sgp4)|0.00019885433888984673| -|pypi|[skyfield](http://github.com/brandon-rhodes/python-skyfield/)|0.00019885433888984673| -|pypi|[asdf](https://pypi.org/project/asdf)|0.00019885433888984673| -|pypi|[jplephem](https://pypi.org/project/jplephem)|0.00019885433888984673| -|pypi|[async-generator](https://pypi.org/project/async-generator)|0.00019663374277456645| -|pypi|[pylint](https://pypi.org/project/pylint)|0.00019551734073077943| -|pypi|[fsspec](http://github.com/fsspec/filesystem_spec)|0.00019533366662660104| -|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|0.00019384343408948346| -|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.0001936772621589922| -|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.0001925428560548014| -|pypi|[pyDOE](https://github.com/tisimst/pyDOE)|0.0001907514450867052| -|pypi|[SciencePlots](https://github.com/garrettj403/SciencePlots/)|0.0001907514450867052| -|pypi|[bdata](https://github.com/dfujim/bdata)|0.0001907514450867052| -|pypi|[testpath](https://pypi.org/project/testpath)|0.00019037322113028078| -|pypi|[myst-parser](https://pypi.org/project/myst-parser)|0.0001882829235249581| -|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|0.00018825954619743952| -|pypi|[backports.functools-lru-cache](https://pypi.org/project/backports.functools-lru-cache)|0.00018695549132947975| -|pypi|[netifaces](https://github.com/al45tair/netifaces)|0.00018455202312138728| -|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|0.000182921715562302| -|pypi|[bokeh](https://pypi.org/project/bokeh)|0.0001828435579967673| -|pypi|[oauthlib](https://github.com/oauthlib/oauthlib)|0.00018273332520081075| -|pypi|[psycopg2-binary](https://pypi.org/project/psycopg2-binary)|0.0001813802767559993| -|pypi|[autocommand](https://pypi.org/project/autocommand)|0.0001810302235792336| -|pypi|[qtconsole](https://pypi.org/project/qtconsole)|0.00018084980668345592| -|pypi|[deprecated](https://pypi.org/project/deprecated)|0.00018078199731281534| -|pypi|[tifffile](https://pypi.org/project/tifffile)|0.00017936603445652387| -|pypi|[sphinx-fortran](http://sphinx-fortran.readthedocs.org)|0.00017882947976878612| -|pypi|[dogpile.cache](https://github.com/sqlalchemy/dogpile.cache)|0.00017882947976878612| -|pypi|[julia](http://julialang.org)|0.0001788294797687861| -|pypi|[argon2-cffi](https://argon2-cffi.readthedocs.io/)|0.00017787550813948324| -|pypi|[dash-table-experiments](https://pypi.org/project/dash-table-experiments)|0.00017740628831669294| -|pypi|[types-backports](https://pypi.org/project/types-backports)|0.00017369707369942195| -|pypi|[PyLD](https://github.com/digitalbazaar/pyld)|0.0001735180653901734| -|pypi|[async-timeout](https://github.com/aio-libs/async-timeout)|0.00017244549886529653| -|pypi|[coveralls](https://pypi.org/project/coveralls)|0.00016941379134220095| -|pypi|[BoltzTraP2](https://www.boltztrap.org)|0.00016831009860591634| -|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.00016668103062416812| -|pypi|[ffmpeg](https://github.com/jiashaokun/ffmpeg)|0.00016611271676300577| -|pypi|[covdefaults](https://pypi.org/project/covdefaults)|0.00016576876792271216| -|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|0.00016243443798150651| -|pypi|[anyjson](http://bitbucket.org/runeh/anyjson/)|0.0001622483555909906| -|pypi|[kombu](https://kombu.readthedocs.io)|0.00016163320845488975| -|pypi|[markdown](https://pypi.org/project/markdown)|0.00016118304960935028| -|pypi|[svn](https://github.com/dsoprea/PySvn)|0.00015895953757225434| -|pypi|[binaryornot](https://github.com/audreyr/binaryornot)|0.00015895953757225434| -|pypi|[Pint](https://github.com/hgrecco/pint)|0.00015895953757225434| -|pypi|[pyclipper](https://github.com/greginvm/pyclipper)|0.00015895953757225434| -|pypi|[quantiphy](https://quantiphy.readthedocs.io)|0.00015895953757225434| -|pypi|[Theano](http://deeplearning.net/software/theano/)|0.00015895953757225434| -|pypi|[cdsapi](https://github.com/ecmwf/cdsapi)|0.00015895953757225434| -|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|0.00015879244789067251| -|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|0.00015879244789067251| -|pypi|[patsy](https://pypi.org/project/patsy)|0.00015865486808690744| -|pypi|[pyreadline3](https://pypi.python.org/pypi/pyreadline3/)|0.0001573699421965318| -|pypi|[pyreadline](http://ipython.org/pyreadline.html)|0.0001573699421965318| -|pypi|[monotonic](https://github.com/atdt/monotonic)|0.0001573699421965318| -|pypi|[jupyter-client](https://pypi.org/project/jupyter-client)|0.00015691892894240686| -|pypi|[entrypoints](https://pypi.org/project/entrypoints)|0.00015589306058507113| -|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.00015326003652562525| -|pypi|[fastparquet](https://pypi.org/project/fastparquet)|0.00015324421054324603| -|pypi|[arviz](http://github.com/arviz-devs/arviz)|0.00015297214317474433| -|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|0.00015274275982069126| -|pypi|[Brotli](https://github.com/google/brotli)|0.00015241092000485064| -|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|0.00015076386330432572| -|pypi|[rfc3987](https://pypi.org/project/rfc3987)|0.00015076386330432572| -|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|0.00015076386330432572| -|pypi|[octave_kernel](http://github.com/Calysto/octave_kernel)|0.00015059324612108304| -|pypi|[sos-python](https://github.com/vatlab/SOS)|0.00015059324612108304| -|pypi|[sos-ruby](https://github.com/vatlab/SOS)|0.00015059324612108304| -|pypi|[dash_core_components](https://pypi.org/project/dash_core_components)|0.00015059324612108304| -|pypi|[dash_html_components](https://github.com/plotly/dash-html-components)|0.00015059324612108304| -|pypi|[dash_dangerously_set_inner_html](https://pypi.org/project/dash_dangerously_set_inner_html)|0.00015059324612108304| -|pypi|[BioPython](https://biopython.org/)|0.00015059324612108304| -|pypi|[python-louvain](https://github.com/taynaud/python-louvain)|0.00015059324612108304| -|pypi|[torch-sparse](https://github.com/rusty1s/pytorch_sparse)|0.00015059324612108304| -|pypi|[torch-scatter](https://github.com/rusty1s/pytorch_scatter)|0.00015059324612108304| -|pypi|[torch-cluster](https://github.com/rusty1s/pytorch_cluster)|0.00015059324612108304| -|pypi|[torch-spline-conv](https://github.com/rusty1s/pytorch_spline_conv)|0.00015059324612108304| -|pypi|[invoke](https://pypi.org/project/invoke)|0.00014911364058629232| -|pypi|[objgraph](https://mg.pov.lt/objgraph/)|0.00014880080948902457| -|pypi|[tabulate](https://pypi.org/project/tabulate)|0.00014840462574001705| -|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|0.0001482079970066061| -|pypi|[vine](https://pypi.org/project/vine)|0.00014677914975447115| -|pypi|[mistune](https://github.com/lepture/mistune)|0.00014663600516174574| -|pypi|[pyasn1](https://pypi.org/project/pyasn1)|0.0001461571985710902| -|pypi|[qtpy](https://pypi.org/project/qtpy)|0.00014552413081284096| -|pypi|[keystoneauth1](https://pypi.org/project/keystoneauth1)|0.00014388109000825763| -|pypi|[path.py](https://pypi.org/project/path.py)|0.00014333870609159626| -|pypi|[datrie](https://github.com/kmike/datrie)|0.0001430635838150289| -|pypi|[toposort](https://pypi.org/project/toposort)|0.0001430635838150289| -|pypi|[connection_pool](https://github.com/zhouyl/ConnectionPool)|0.0001430635838150289| -|pypi|[isodate](https://github.com/gweis/isodate/)|0.00014296026011560692| -|pypi|[click-plugins](https://pypi.org/project/click-plugins)|0.000142018516635099| -|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|0.00014144871897800538| -|pypi|[asv](https://pypi.org/project/asv)|0.00014143659984669724| -|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|0.00014143659984669724| -|pypi|[kaleido](https://pypi.org/project/kaleido)|0.00014143659984669724| -|pypi|[awscrt](https://github.com/awslabs/aws-crt-python)|0.00014098905417421435| -|pypi|[simplejson](https://pypi.org/project/simplejson)|0.00013961472956234517| -|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|0.00013935958237683136| -|pypi|[berkeleydb](https://pypi.org/project/berkeleydb)|0.00013901011560693642| -|pypi|[tblib](https://github.com/ionelmc/python-tblib)|0.000138267940513244| -|pypi|[celery](http://celeryproject.org)|0.0001366633469414156| -|pypi|[billiard](https://pypi.org/project/billiard)|0.00013606059284795331| -|pypi|[waitress](https://pypi.org/project/waitress)|0.00013558803242254443| -|pypi|[pooch>=1.1.1](https://pypi.org/project/pooch>=1.1.1)|0.0001348885218827415| -|pypi|[pandas>=0.25.1](https://pypi.org/project/pandas>=0.25.1)|0.0001348885218827415| -|pypi|[numpy>=1.13.3](https://pypi.org/project/numpy>=1.13.3)|0.0001348885218827415| -|pypi|[mccabe](https://pypi.org/project/mccabe)|0.00013337063396000462| -|pypi|[hiredis](https://pypi.org/project/hiredis)|0.00013276239439750999| -|pypi|[flake8-polyfill](https://pypi.org/project/flake8-polyfill)|0.00013261443975100043| -|pypi|[markupsafe](https://palletsprojects.com/p/markupsafe/)|0.00013259868740693275| -|pypi|[tf-estimator-nightly](https://pypi.org/project/tf-estimator-nightly)|0.00013176204730447092| -|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|0.0001310619156174409| -|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|0.0001310619156174409| -|pypi|[dash-table](https://pypi.org/project/dash-table)|0.0001310619156174409| -|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|0.00013079867780871798| -|pypi|[appnope](https://pypi.org/project/appnope)|0.00013079867780871798| -|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.0001301810455166454| -|pypi|[nglview](https://github.com/arose/nglview)|0.00013005780346820808| -|pypi|[pyperclip](https://github.com/asweigart/pyperclip)|0.00013005780346820808| -|pypi|[zope.interface](https://pypi.org/project/zope.interface)|0.00012879269815029132| -|pypi|[Unidecode](https://pypi.org/project/Unidecode)|0.000128757225433526| -|pypi|[text-unidecode](https://pypi.org/project/text-unidecode)|0.000128757225433526| -|pypi|[uncertainties](https://pypi.org/project/uncertainties)|0.00012841132498025068| -|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|0.0001281211517478721| -|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.00012809098416034835| -|pypi|[autopep8](https://github.com/hhatto/autopep8)|0.00012754405466757155| -|pypi|[stack-data](https://pypi.org/project/stack-data)|0.00012584211206593474| -|pypi|[websocket-client](https://pypi.org/project/websocket-client)|0.00012449235065688227| -|pypi|[elasticsearch](https://pypi.org/project/elasticsearch)|0.0001242371561690253| -|pypi|[python-lsp-server](https://pypi.org/project/python-lsp-server)|0.00012360693641618495| -|pypi|[scikit-build](https://pypi.org/project/scikit-build)|0.0001227962427745665| -|pypi|[Flask-Compress](https://pypi.org/project/Flask-Compress)|0.00012252740034531944| -|pypi|[testfixtures](https://github.com/Simplistix/testfixtures)|0.00012092027339963378| -|pypi|[pyflakes](https://pypi.org/project/pyflakes)|0.00012078103858428209| -|pypi|[parso](https://github.com/davidhalter/parso)|0.00012054830612682929| -|pypi|[stestr](http://stestr.readthedocs.io/en/latest/)|0.00012041947976878611| -|pypi|[pyobjc](https://pypi.org/project/pyobjc)|0.00012026499949798476| -|pypi|[cookiecutter](https://github.com/cookiecutter/cookiecutter)|0.00011936867774566472| -|pypi|[trackpy](https://github.com/soft-matter/trackpy)|0.00011921965317919075| -|pypi|[django-extensions](https://pypi.org/project/django-extensions)|0.00011883529588813315| -|pypi|[djangorestframework](https://pypi.org/project/djangorestframework)|0.00011883529588813315| -|pypi|[shiboken6](https://pypi.org/project/shiboken6)|0.00011802745664739884| -|pypi|[colorlover](https://pypi.org/project/colorlover)|0.00011779646172709756| -|pypi|[dash-tabulator](https://pypi.org/project/dash-tabulator)|0.00011779646172709756| -|pypi|[django-bootstrap4](https://pypi.org/project/django-bootstrap4)|0.00011779646172709756| -|pypi|[django-cache-memoize](https://pypi.org/project/django-cache-memoize)|0.00011779646172709756| -|pypi|[django-cookie-law](https://pypi.org/project/django-cookie-law)|0.00011779646172709756| -|pypi|[django-cors-headers](https://pypi.org/project/django-cors-headers)|0.00011779646172709756| -|pypi|[django-currentuser](https://pypi.org/project/django-currentuser)|0.00011779646172709756| -|pypi|[django-oauth-toolkit](https://pypi.org/project/django-oauth-toolkit)|0.00011779646172709756| -|pypi|[django-plotly-dash](https://pypi.org/project/django-plotly-dash)|0.00011779646172709756| -|pypi|[dpd-static-support](https://pypi.org/project/dpd-static-support)|0.00011779646172709756| -|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|0.00011696926147136332| -|pypi|[python-keystoneclient](https://pypi.org/project/python-keystoneclient)|0.00011558629232039636| -|pypi|[recommonmark](https://github.com/rtfd/recommonmark)|0.0001152859013728326| -|pypi|[werkzeug](https://pypi.org/project/werkzeug)|0.00011458816991225124| -|pypi|[diff-match-patch](https://github.com/diff-match-patch-python/diff-match-patch)|0.0001144508670520231| -|pypi|[trio](https://pypi.org/project/trio)|0.00011401867538700673| -|pypi|[curio](https://pypi.org/project/curio)|0.00011401867538700673| -|pypi|[rfc3986](https://pypi.org/project/rfc3986)|0.00011368682226122441| -|pypi|[fiona](https://pypi.org/project/fiona)|0.00011351129581897517| -|pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|0.0001131416408481088| -|pypi|[openstacksdk](https://pypi.org/project/openstacksdk)|0.00011240710156895127| -|pypi|[ptyprocess](https://pypi.org/project/ptyprocess)|0.00011198701681037254| -|pypi|[fastprogress](https://pypi.org/project/fastprogress)|0.00011163850600266784| -|pypi|[types-urllib3](https://pypi.org/project/types-urllib3)|0.00011105156184971098| -|pypi|[zarr](https://pypi.org/project/zarr)|0.00011042110109471611| -|pypi|[primesieve](https://github.com/kimwalisch/primesieve-python)|0.00011004891062694531| -|pypi|[multidict](https://github.com/aio-libs/multidict)|0.00011003790573588258| -|pypi|[paramiko](https://pypi.org/project/paramiko)|0.00010983002086140205| -|pypi|[pkginfo](https://pypi.org/project/pkginfo)|0.00010796427890862326| -|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|0.00010637799339388961| -|pypi|[torch](https://pytorch.org/)|0.00010610993592608674| -|pypi|[dash_bootstrap_components](https://pypi.org/project/dash_bootstrap_components)|0.00010597302504816955| -|pypi|[django_admin_index](https://pypi.org/project/django_admin_index)|0.00010597302504816955| -|pypi|[django_plotly_dash](https://pypi.org/project/django_plotly_dash)|0.00010597302504816955| -|pypi|[myst-nb](https://pypi.org/project/myst-nb)|0.00010528892186209743| -|pypi|[PyQt5](https://pypi.org/project/PyQt5)|0.00010523893476465733| -|pypi|[aenum](https://github.com/ethanfurman/aenum)|0.00010491329479768785| -|pypi|[cligj](https://pypi.org/project/cligj)|0.00010462246434923458| -|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|0.00010460488523027041| -|pypi|[wslink](https://pypi.org/project/wslink)|0.00010396040232338752| -|pypi|[uwsgi](https://pypi.org/project/uwsgi)|0.00010388341610355776| -|pypi|[pyxenon](https://pypi.org/project/pyxenon)|0.00010386416184971097| -|pypi|[unyt](https://github.com/yt-project/unyt)|0.00010348265895953758| -|pypi|[pydantic](https://github.com/samuelcolvin/pydantic)|0.00010127140639141312| -|pypi|[pytest-qt](http://github.com/pytest-dev/pytest-qt)|0.00010116639141205614| -|pypi|[nbsphinx](https://nbsphinx.readthedocs.io/)|0.0001003821995599577| -|pypi|[Celery](http://celeryproject.org)|9.86645405620889e-05| -|pypi|[DAWG](https://pypi.org/project/DAWG)|9.86645405620889e-05| -|pypi|[django-nose](https://pypi.org/project/django-nose)|9.86645405620889e-05| -|pypi|[MySQL-python](https://pypi.org/project/MySQL-python)|9.86645405620889e-05| -|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|9.75312837451567e-05| -|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|9.656578909622914e-05| -|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|9.656578909622914e-05| -|pypi|[tensorflow](https://www.tensorflow.org/)|9.486194482128128e-05| -|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|9.457640707160173e-05| -|pypi|[pytest-pep8](https://bitbucket.org/pytest-dev/pytest-pep8)|9.445864828812806e-05| -|pypi|[pynacl](https://pypi.org/project/pynacl)|9.403416081750618e-05| -|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|9.379895294848141e-05| -|pypi|[service-identity](https://pypi.org/project/service-identity)|9.275654980857293e-05| -|pypi|[oset](https://gitorious.com/sleipnir/python-oset)|9.229908633227671e-05| -|pypi|[pyenchant](https://pyenchant.github.io/pyenchant/)|9.229908633227671e-05| -|pypi|[meshio](https://github.com/nschloe/meshio)|9.055292126460593e-05| -|pypi|[rdflib](https://pypi.org/project/rdflib)|9.016979768786145e-05| -|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|8.949334624912657e-05| -|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|8.949334624912657e-05| -|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|8.949334624912657e-05| -|pypi|[zstandard](https://pypi.org/project/zstandard)|8.89786514244426e-05| -|pypi|[python-snappy](https://pypi.org/project/python-snappy)|8.86096956758172e-05| -|pypi|[stfio](https://pypi.org/project/stfio)|8.852059248554912e-05| -|pypi|[klusta](https://klusta.cortexlab.net)|8.852059248554912e-05| -|pypi|[igor](http://blog.tremily.us/posts/igor/)|8.852059248554912e-05| -|pypi|[tablib](https://pypi.org/project/tablib)|8.852059248554912e-05| -|pypi|[websockets](https://pypi.org/project/websockets)|8.583509069141422e-05| -|pypi|[pep8-naming](https://github.com/PyCQA/pep8-naming)|8.42908775408118e-05| -|pypi|[uri-template](https://pypi.org/project/uri-template)|8.399404497236867e-05| -|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|8.399404497236867e-05| -|pypi|[isoduration](https://pypi.org/project/isoduration)|8.399404497236867e-05| -|pypi|[fqdn](https://pypi.org/project/fqdn)|8.399404497236867e-05| -|pypi|[geographiclib](https://pypi.org/project/geographiclib)|8.385195086705201e-05| -|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|8.351838912532594e-05| -|pypi|[plac](https://pypi.org/project/plac)|8.26399106673673e-05| -|pypi|[google-auth](https://pypi.org/project/google-auth)|8.237598078242688e-05| -|pypi|[multiprocess](https://pypi.org/project/multiprocess)|8.195214532992495e-05| -|pypi|[srsly](https://pypi.org/project/srsly)|8.15355224273287e-05| -|pypi|[pykerberos](https://pypi.org/project/pykerberos)|8.093311312964491e-05| -|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|8.093311312964491e-05| -|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|8.093311312964491e-05| -|pypi|[PySide](http://www.pyside.org)|8.093311312964491e-05| -|pypi|[PyQt4](http://www.riverbankcomputing.com/software/pyqt/)|8.093311312964491e-05| -|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|8.024556079758394e-05| -|pypi|[typer](https://pypi.org/project/typer)|7.976137289167581e-05| -|pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|7.901186369569273e-05| -|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|7.898803166219799e-05| -|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|7.898803166219799e-05| -|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|7.847157967049753e-05| -|pypi|[catalogue](https://pypi.org/project/catalogue)|7.769922643561573e-05| -|pypi|[wasabi](https://pypi.org/project/wasabi)|7.769922643561573e-05| -|pypi|[blis](https://pypi.org/project/blis)|7.769922643561573e-05| -|pypi|[thinc](https://pypi.org/project/thinc)|7.769922643561573e-05| -|pypi|[preshed](https://pypi.org/project/preshed)|7.769922643561573e-05| -|pypi|[cymem](https://pypi.org/project/cymem)|7.769922643561573e-05| -|pypi|[murmurhash](https://pypi.org/project/murmurhash)|7.769922643561573e-05| -|pypi|[cftime](https://pypi.org/project/cftime)|7.760216842406147e-05| -|pypi|[cupy](https://pypi.org/project/cupy)|7.738866829457299e-05| -|pypi|[PyQtWebEngine-Qt5](https://pypi.org/project/PyQtWebEngine-Qt5)|7.711127167630057e-05| -|pypi|[natsort](https://github.com/SethMMorton/natsort)|7.558957279642489e-05| -|pypi|[rasterio](https://github.com/mapbox/rasterio)|7.543617014065875e-05| -|pypi|[tinycss2](https://pypi.org/project/tinycss2)|7.522961244568344e-05| -|pypi|[livereload](https://pypi.org/project/livereload)|7.46326950867052e-05| -|pypi|[arrow](https://pypi.org/project/arrow)|7.332689925681255e-05| -|pypi|[cairocffi](https://pypi.org/project/cairocffi)|7.287658959537572e-05| -|pypi|[jupyter-bokeh](https://pypi.org/project/jupyter-bokeh)|7.205202312138727e-05| -|pypi|[spacy](https://pypi.org/project/spacy)|7.204361570362303e-05| -|pypi|[smart-open](https://pypi.org/project/smart-open)|7.200261761973101e-05| -|pypi|[nltk](https://pypi.org/project/nltk)|7.170089244195712e-05| -|pypi|[pyzmq](https://pypi.org/project/pyzmq)|7.168741573571652e-05| -|pypi|[plams](https://www.scm.com/doc/plams/)|7.116824938067717e-05| -|pypi|[ppft](https://pypi.org/project/ppft)|7.08164739884393e-05| -|pypi|[pox](https://pypi.org/project/pox)|7.08164739884393e-05| -|pypi|[blinker](https://pypi.org/project/blinker)|7.08164739884393e-05| -|pypi|[fasttext](https://github.com/facebookresearch/fastText)|7.08164739884393e-05| -|pypi|[hijri-converter](https://github.com/mhalshehri/hijri-converter)|7.08164739884393e-05| -|pypi|[pbr](https://pypi.org/project/pbr)|7.042304913294797e-05| -|pypi|[pytest-aiohttp](https://pypi.org/project/pytest-aiohttp)|7.017575350949628e-05| -|pypi|[cupy-cuda92](https://pypi.org/project/cupy-cuda92)|6.97120857484007e-05| -|pypi|[cupy-cuda91](https://pypi.org/project/cupy-cuda91)|6.97120857484007e-05| -|pypi|[cupy-cuda90](https://pypi.org/project/cupy-cuda90)|6.97120857484007e-05| -|pypi|[cupy-cuda80](https://pypi.org/project/cupy-cuda80)|6.97120857484007e-05| -|pypi|[cupy-cuda112](https://pypi.org/project/cupy-cuda112)|6.97120857484007e-05| -|pypi|[cupy-cuda111](https://pypi.org/project/cupy-cuda111)|6.97120857484007e-05| -|pypi|[cupy-cuda110](https://pypi.org/project/cupy-cuda110)|6.97120857484007e-05| -|pypi|[cupy-cuda102](https://pypi.org/project/cupy-cuda102)|6.97120857484007e-05| -|pypi|[cupy-cuda101](https://pypi.org/project/cupy-cuda101)|6.97120857484007e-05| -|pypi|[cupy-cuda100](https://pypi.org/project/cupy-cuda100)|6.97120857484007e-05| -|pypi|[flask](https://palletsprojects.com/p/flask)|6.878012005532374e-05| -|pypi|[google-api-core](https://pypi.org/project/google-api-core)|6.691950256452008e-05| -|pypi|[cached-property](https://pypi.org/project/cached-property)|6.676981833195706e-05| -|pypi|[minio](https://pypi.org/project/minio)|6.676300578034682e-05| -|pypi|[m2r](https://github.com/miyakogi/m2r)|6.639044436416183e-05| -|pypi|[pyfiglet](https://pypi.org/project/pyfiglet)|6.632947976878612e-05| -|pypi|[pythainlp](https://github.com/PyThaiNLP/pythainlp)|6.587578975668772e-05| -|pypi|[spacy-ray](https://pypi.org/project/spacy-ray)|6.587578975668772e-05| -|pypi|[spacy-lookups-data](https://pypi.org/project/spacy-lookups-data)|6.587578975668772e-05| -|pypi|[natto-py](https://pypi.org/project/natto-py)|6.587578975668772e-05| -|pypi|[sudachidict-core](https://pypi.org/project/sudachidict-core)|6.587578975668772e-05| -|pypi|[sudachipy](https://pypi.org/project/sudachipy)|6.587578975668772e-05| -|pypi|[cupy-cuda115](https://pypi.org/project/cupy-cuda115)|6.587578975668772e-05| -|pypi|[cupy-cuda114](https://pypi.org/project/cupy-cuda114)|6.587578975668772e-05| -|pypi|[cupy-cuda113](https://pypi.org/project/cupy-cuda113)|6.587578975668772e-05| -|pypi|[thinc-apple-ops](https://pypi.org/project/thinc-apple-ops)|6.587578975668772e-05| -|pypi|[langcodes](https://pypi.org/project/langcodes)|6.587578975668772e-05| -|pypi|[pathy](https://pypi.org/project/pathy)|6.587578975668772e-05| -|pypi|[spacy-loggers](https://pypi.org/project/spacy-loggers)|6.587578975668772e-05| -|pypi|[spacy-legacy](https://pypi.org/project/spacy-legacy)|6.587578975668772e-05| -|pypi|[spglib](http://spglib.github.io/spglib/)|6.545533333503777e-05| -|pypi|[dash-bootstrap-components](https://pypi.org/project/dash-bootstrap-components)|6.511855196826296e-05| -|pypi|[openpyxl](https://openpyxl.readthedocs.io)|6.495159866212203e-05| -|pypi|[xarray](https://pypi.org/project/xarray)|6.493053215101462e-05| -|pypi|[Nano-Utils](https://pypi.org/project/Nano-Utils)|6.451486374896783e-05| -|pypi|[cssselect2](https://pypi.org/project/cssselect2)|6.4378612716763e-05| -|pypi|[distributed](https://pypi.org/project/distributed)|6.436399469104064e-05| -|pypi|[pyasn1-modules](https://pypi.org/project/pyasn1-modules)|6.390067388831147e-05| -|pypi|[nptyping](https://pypi.org/project/nptyping)|6.383923549355269e-05| -|pypi|[coreapi](https://github.com/core-api/python-client)|6.358381502890173e-05| -|pypi|[django-chosen](https://github.com/theatlantic/django-chosen)|6.358381502890173e-05| -|pypi|[django-form-utils](http://bitbucket.org/carljm/django-form-utils/)|6.358381502890173e-05| -|pypi|[django-gravatar2](https://github.com/twaddington/django-gravatar)|6.358381502890173e-05| -|pypi|[django-hstore](https://github.com/djangonauts/django-hstore)|6.358381502890173e-05| -|pypi|[django-ratelimit](https://github.com/jsocol/django-ratelimit)|6.358381502890173e-05| -|pypi|[django-rest-swagger](https://github.com/marcgibbons/django-rest-swagger)|6.358381502890173e-05| -|pypi|[django-taggit](https://github.com/jazzband/django-taggit)|6.358381502890173e-05| -|pypi|[django-taggit-templatetags](http://github.com/feuervogel/django-taggit-templatetags)|6.358381502890173e-05| -|pypi|[oauth2client](https://pypi.org/project/oauth2client)|6.358381502890173e-05| -|pypi|[python3-saml](https://pypi.org/project/python3-saml)|6.358381502890173e-05| -|pypi|[python-social-auth](https://pypi.org/project/python-social-auth)|6.358381502890173e-05| -|pypi|[rq-scheduler](https://pypi.org/project/rq-scheduler)|6.358381502890173e-05| -|pypi|[social-auth-app-django](https://pypi.org/project/social-auth-app-django)|6.358381502890173e-05| -|pypi|[social-auth-core](https://pypi.org/project/social-auth-core)|6.358381502890173e-05| -|pypi|[sregistry](https://pypi.org/project/sregistry)|6.358381502890173e-05| -|pypi|[george](https://github.com/dfm/george)|6.330563583815028e-05| -|pypi|[platformdirs](https://pypi.org/project/platformdirs)|6.327669160935255e-05| -|pypi|[PyJWT](https://pypi.org/project/PyJWT)|6.291757375572404e-05| -|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|6.291757375572404e-05| -|pypi|[terminado](https://pypi.org/project/terminado)|6.291757375572404e-05| -|pypi|[pymongo](https://pypi.org/project/pymongo)|6.207853050092907e-05| -|pypi|[pycares](https://pypi.org/project/pycares)|6.163367846026805e-05| -|pypi|[scanpy](https://scanpy.readthedocs.io)|6.163244967111826e-05| -|pypi|[inflection](https://pypi.org/project/inflection)|6.147803785809566e-05| -|pypi|[uritemplate](https://pypi.org/project/uritemplate)|6.086851746316046e-05| -|pypi|[towncrier](https://pypi.org/project/towncrier)|6.043715367608337e-05| -|pypi|[asteval](http://github.com/newville/asteval)|5.960982658959537e-05| -|pypi|[lmfit](https://pypi.org/project/lmfit)|5.960982658959537e-05| -|pypi|[PeakUtils](https://pypi.org/project/PeakUtils)|5.960982658959537e-05| -|pypi|[ua-parser](https://pypi.org/project/ua-parser)|5.960982658959537e-05| -|pypi|[wincertstore](https://pypi.org/project/wincertstore)|5.960982658959537e-05| -|pypi|[PyQt6-Qt6](https://pypi.org/project/PyQt6-Qt6)|5.901372832369942e-05| -|pypi|[PyQt6-sip](https://pypi.org/project/PyQt6-sip)|5.901372832369942e-05| -|pypi|[zmq](https://github.com/zeromq/pyzmq)|5.901372832369942e-05| -|pypi|[autodocsumm](https://github.com/Chilipp/autodocsumm)|5.901372832369942e-05| -|pypi|[pyjwt](https://pypi.org/project/pyjwt)|5.901372832369942e-05| -|pypi|[galaxy-tool-util](https://github.com/galaxyproject/galaxy)|5.901372832369942e-05| -|pypi|[bagit](https://pypi.org/project/bagit)|5.901372832369942e-05| -|pypi|[prov](https://pypi.org/project/prov)|5.901372832369942e-05| -|pypi|[schema-salad](https://pypi.org/project/schema-salad)|5.901372832369942e-05| -|pypi|[shellescape](https://pypi.org/project/shellescape)|5.901372832369942e-05| -|pypi|[prompt_toolkit](https://pypi.org/project/prompt_toolkit)|5.901372832369942e-05| -|pypi|[Flask-SQLAlchemy](https://pypi.org/project/Flask-SQLAlchemy)|5.901372832369942e-05| -|pypi|[od](https://pypi.org/project/od)|5.901372832369942e-05| -|pypi|[sigtools](https://pypi.org/project/sigtools)|5.901372832369942e-05| -|pypi|[APScheduler](https://pypi.org/project/APScheduler)|5.901372832369942e-05| -|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|5.9003446221810936e-05| -|pypi|[distlib](https://pypi.org/project/distlib)|5.828774529591237e-05| -|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|5.780319030680302e-05| -|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|5.780319030680302e-05| -|pypi|[cfgrib](https://pypi.org/project/cfgrib)|5.780319030680302e-05| -|pypi|[pydap](https://pypi.org/project/pydap)|5.780319030680302e-05| -|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|5.780319030680302e-05| -|pypi|[numbagg](https://pypi.org/project/numbagg)|5.780319030680302e-05| -|pypi|[ordereddict](https://pypi.org/project/ordereddict)|5.768516285015562e-05| -|pypi|[munch](https://pypi.org/project/munch)|5.768516285015562e-05| -|pypi|[wsaccel](https://pypi.org/project/wsaccel)|5.6976911643270014e-05| -|pypi|[python-socks](https://pypi.org/project/python-socks)|5.6976911643270014e-05| -|pypi|[aiodns](https://pypi.org/project/aiodns)|5.6717846837002736e-05| -|pypi|[monty](https://github.com/materialsvirtuallab/monty)|5.659901624172638e-05| -|pypi|[prefect](https://pypi.org/project/prefect)|5.55423325399524e-05| -|pypi|[schema](https://github.com/keleshev/schema)|5.4887489677952244e-05| -|pypi|[mrcfile](https://pypi.org/project/mrcfile)|5.447421076033792e-05| -|pypi|[deprecation](http://deprecation.readthedocs.io/)|5.436416184971099e-05| -|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|5.434388968196391e-05| -|pypi|[raven](https://pypi.org/project/raven)|5.288919645037857e-05| -|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|5.284317179883327e-05| -|pypi|[GitPython](https://github.com/gitpython-developers/GitPython)|5.278872879288349e-05| -|pypi|[assertionlib](https://pypi.org/project/assertionlib)|5.2545210569777034e-05| -|pypi|[pyshp](https://pypi.org/project/pyshp)|5.2456647398843926e-05| -|pypi|[visitor](http://github.com/mbr/visitor)|5.2456647398843926e-05| -|pypi|[dominate](https://github.com/Knio/dominate/)|5.2456647398843926e-05| -|pypi|[rsa](https://pypi.org/project/rsa)|5.2077237209383466e-05| -|pypi|[requests-mock](https://pypi.org/project/requests-mock)|5.198828447563996e-05| -|pypi|[opencv-python](https://github.com/skvark/opencv-python)|5.183887283237005e-05| -|pypi|[jupyter-console](https://pypi.org/project/jupyter-console)|5.1094137076796036e-05| -|pypi|[mwoauth](https://pypi.org/project/mwoauth)|5.1094137076796036e-05| -|pypi|[wikidataintegrator](https://pypi.org/project/wikidataintegrator)|5.1094137076796036e-05| -|pypi|[dash-extensions](https://pypi.org/project/dash-extensions)|5.1094137076796036e-05| -|pypi|[Flask-Caching](https://pypi.org/project/Flask-Caching)|5.1094137076796036e-05| -|pypi|[ipaddr](https://pypi.org/project/ipaddr)|5.1094137076796036e-05| -|pypi|[progress](https://pypi.org/project/progress)|5.1094137076796036e-05| -|pypi|[pytoml](https://pypi.org/project/pytoml)|5.1094137076796036e-05| -|pypi|[pybind11](https://github.com/pybind/pybind11)|5.1026011560693716e-05| -|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|5.0573588261449527e-05| -|pypi|[gssapi](https://pypi.org/project/gssapi)|5.0216467537159366e-05| -|pypi|[folium](https://pypi.org/project/folium)|4.998283959537572e-05| -|pypi|[sphinx-panels](https://pypi.org/project/sphinx-panels)|4.979039053395954e-05| -|pypi|[linkify-it-py](https://pypi.org/project/linkify-it-py)|4.979039053395954e-05| -|pypi|[affine](https://pypi.org/project/affine)|4.913827971161787e-05| -|pypi|[gcsfs](https://pypi.org/project/gcsfs)|4.9069353935672234e-05| -|pypi|[pickydict](https://pypi.org/project/pickydict)|4.8019602915305404e-05| -|pypi|[pyteomics](https://pypi.org/project/pyteomics)|4.801960291530537e-05| -|pypi|[pip-tools](https://pypi.org/project/pip-tools)|4.7259585749266605e-05| -|pypi|[grayskull](https://pypi.org/project/grayskull)|4.721098265895953e-05| -|pypi|[pykwalify](https://pypi.org/project/pykwalify)|4.721098265895953e-05| -|pypi|[pdbmender](https://pypi.org/project/pdbmender)|4.721098265895953e-05| -|pypi|[delphi4py](https://pypi.org/project/delphi4py)|4.721098265895953e-05| -|pypi|[docker](https://github.com/docker/docker-py)|4.7149856264103206e-05| -|pypi|[ghp-import](https://pypi.org/project/ghp-import)|4.693730149907896e-05| -|pypi|[snuggs](https://pypi.org/project/snuggs)|4.693730149907896e-05| -|pypi|[breathe](https://github.com/michaeljones/breathe)|4.682947976878631e-05| -|pypi|[scanpydoc](https://pypi.org/project/scanpydoc)|4.655806481367605e-05| -|pypi|[marshmallow](https://pypi.org/project/marshmallow)|4.6282772502064455e-05| -|pypi|[descartes](http://bitbucket.org/sgillies/descartes/)|4.549453080337296e-05| -|pypi|[rdkit](https://pypi.org/project/rdkit)|4.5158331239004775e-05| -|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|4.482587499205995e-05| -|pypi|[annoy](https://pypi.org/project/annoy)|4.462517502602951e-05| -|pypi|[sphinxcontrib.programoutput](https://pypi.org/project/sphinxcontrib.programoutput)|4.462517502602951e-05| -|pypi|[visdom](https://pypi.org/project/visdom)|4.462517502602951e-05| -|pypi|[nmslib](https://pypi.org/project/nmslib)|4.462517502602951e-05| -|pypi|[pyemd](https://pypi.org/project/pyemd)|4.462517502602951e-05| -|pypi|[Morfessor](https://pypi.org/project/Morfessor)|4.462517502602951e-05| -|pypi|[Pyro4](https://pypi.org/project/Pyro4)|4.462517502602951e-05| -|pypi|[panel](https://pypi.org/project/panel)|4.345399428682058e-05| -|pypi|[pathos](https://github.com/uqfoundation/pathos)|4.3439306358381516e-05| -|pypi|[aiosignal](https://github.com/aio-libs/aiosignal)|4.3413673703632025e-05| -|pypi|[types-dataclasses](https://pypi.org/project/types-dataclasses)|4.339244729683781e-05| -|pypi|[hdf5plugin](https://pypi.org/project/hdf5plugin)|4.3297425118234366e-05| -|pypi|[psims](https://pypi.org/project/psims)|4.3297425118234366e-05| -|pypi|[sphinxcontrib.mermaid](https://pypi.org/project/sphinxcontrib.mermaid)|4.291907514450867e-05| -|pypi|[mdit-py-plugins](https://pypi.org/project/mdit-py-plugins)|4.291907514450867e-05| -|pypi|[markdown-it-py](https://pypi.org/project/markdown-it-py)|4.291907514450867e-05| -|pypi|[databases](https://pypi.org/project/databases)|4.27437621831323e-05| -|pypi|[noodles](https://pypi.org/project/noodles)|4.246263418662262e-05| -|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|4.2231365987222444e-05| -|pypi|[pulumi](https://github.com/pulumi/pulumi)|4.207752465147912e-05| -|pypi|[AssertionLib](https://pypi.org/project/AssertionLib)|4.189719240297277e-05| -|pypi|[kgt](https://pypi.org/project/kgt)|4.1656749404964295e-05| -|pypi|[x21](https://pypi.org/project/x21)|4.1656749404964295e-05| -|pypi|[pytest-console-scripts](https://pypi.org/project/pytest-console-scripts)|4.0790497531066436e-05| -|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|4.0790497531066436e-05| -|pypi|[colorcet](https://pypi.org/project/colorcet)|4.0581206823628926e-05| -|pypi|[gurobipy](https://pypi.org/project/gurobipy)|4.057803468208093e-05| -|pypi|[mizani](https://pypi.org/project/mizani)|4.0466556564822456e-05| -|pypi|[cronutils](https://github.com/zagaran/cronutils)|4.0299601074656026e-05| -|pypi|[proto-plus](https://pypi.org/project/proto-plus)|4.0299601074656026e-05| -|pypi|[pycrypto](https://pypi.org/project/pycrypto)|4.0299601074656026e-05| -|pypi|[pycryptodomex](https://pypi.org/project/pycryptodomex)|4.0299601074656026e-05| -|pypi|[zstd](https://pypi.org/project/zstd)|4.0299601074656026e-05| -|pypi|[tensorflow-estimator](https://pypi.org/project/tensorflow-estimator)|4.005780346820809e-05| -|pypi|[bumpversion](https://pypi.org/project/bumpversion)|3.934248554913295e-05| -|pypi|[ephem](https://pypi.org/project/ephem)|3.821841453344343e-05| -|pypi|[click-repl](https://pypi.org/project/click-repl)|3.739605228586442e-05| -|pypi|[click-didyoumean](https://pypi.org/project/click-didyoumean)|3.739605228586442e-05| -|pypi|[IPython](https://ipython.org)|3.738457054676034e-05| -|pypi|[selenium](https://www.selenium.dev)|3.7147232035127266e-05| -|pypi|[pathspec](https://pypi.org/project/pathspec)|3.66221726250628e-05| -|pypi|[kopt](https://pypi.org/project/kopt)|3.497109826589595e-05| -|pypi|[vtk](https://pypi.org/project/vtk)|3.4624303661227185e-05| -|pypi|[uvicorn](https://pypi.org/project/uvicorn)|3.435739974340321e-05| -|pypi|[starlette](https://pypi.org/project/starlette)|3.435739974340321e-05| -|pypi|[httplib2](https://pypi.org/project/httplib2)|3.427078075388748e-05| -|pypi|[librosa](https://librosa.org)|3.379064306358382e-05| -|pypi|[eventlet](https://pypi.org/project/eventlet)|3.358499380677126e-05| -|pypi|[black>=20.8b1](https://pypi.org/project/black>=20.8b1)|3.3344416218898293e-05| -|pypi|[importlib_metadata>=0.7](https://pypi.org/project/importlib_metadata>=0.7)|3.3344416218898293e-05| -|pypi|[h5py>=3](https://pypi.org/project/h5py>=3)|3.3344416218898293e-05| -|pypi|[npx](https://pypi.org/project/npx)|3.332539952397143e-05| -|pypi|[meshplex](https://pypi.org/project/meshplex)|3.332539952397143e-05| -|pypi|[googleapis-common-protos](https://github.com/googleapis/python-api-common-protos)|3.303257295216386e-05| -|pypi|[botocore](https://pypi.org/project/botocore)|3.2516145362788015e-05| -|pypi|[param](https://pypi.org/project/param)|3.237574176845289e-05| -|pypi|[pyct](https://pypi.org/project/pyct)|3.237574176845289e-05| -|pypi|[hacking](https://docs.openstack.org/hacking/latest/)|3.228331957060281e-05| -|pypi|[numkit](https://pypi.org/project/numkit)|3.21893063583815e-05| -|pypi|[cmocean](https://pypi.org/project/cmocean)|3.216017576439201e-05| -|pypi|[numcodecs](https://pypi.org/project/numcodecs)|3.213297507225433e-05| -|pypi|[pip-api](https://pypi.org/project/pip-api)|3.155808693641618e-05| -|pypi|[requirementslib](https://pypi.org/project/requirementslib)|3.155808693641618e-05| -|pypi|[pipreqs](https://pypi.org/project/pipreqs)|3.155808693641618e-05| -|pypi|[datatable](https://pypi.org/project/datatable)|3.147398843930636e-05| -|pypi|[stevedore](https://pypi.org/project/stevedore)|3.147398843930636e-05| -|pypi|[oslo.utils](https://pypi.org/project/oslo.utils)|3.147398843930636e-05| -|pypi|[oslo.serialization](https://pypi.org/project/oslo.serialization)|3.147398843930636e-05| -|pypi|[oslo.i18n](https://pypi.org/project/oslo.i18n)|3.147398843930636e-05| -|pypi|[oslo.config](https://pypi.org/project/oslo.config)|3.147398843930636e-05| -|pypi|[debtcollector](https://pypi.org/project/debtcollector)|3.147398843930636e-05| -|pypi|[emoji](https://pypi.org/project/emoji)|3.147398843930636e-05| -|pypi|[pynumpress](https://pypi.org/project/pynumpress)|3.147398843930636e-05| -|pypi|[user-agents](https://pypi.org/project/user-agents)|3.147398843930635e-05| -|pypi|[dataclasses-json](https://github.com/lidatong/dataclasses-json)|3.134775586535193e-05| -|pypi|[aiohttp-remotes](https://pypi.org/project/aiohttp-remotes)|3.0349917423616846e-05| -|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|3.0349917423616846e-05| -|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|3.0349917423616846e-05| -|pypi|[clickclick](https://pypi.org/project/clickclick)|3.0349917423616846e-05| -|pypi|[sas7bdat](https://pypi.org/project/sas7bdat)|2.981746273197444e-05| -|pypi|[sas-kernel](https://pypi.org/project/sas-kernel)|2.981746273197444e-05| -|pypi|[saspy](https://pypi.org/project/saspy)|2.981746273197444e-05| -|pypi|[portray](https://pypi.org/project/portray)|2.950686416184971e-05| -|pypi|[typing-inspect](https://pypi.org/project/typing-inspect)|2.950686416184971e-05| -|pypi|[marshmallow-enum](https://pypi.org/project/marshmallow-enum)|2.950686416184971e-05| -|pypi|[nbclient](https://pypi.org/project/nbclient)|2.915142372078788e-05| -|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|2.915142372078788e-05| -|pypi|[sphinx-autobuild](https://pypi.org/project/sphinx-autobuild)|2.906092588769613e-05| -|setup.py|github/dask/dask|2.8901734104046242e-05| -|setup.py|github/Magritte-code/Magritte|2.8901734104046242e-05| -|setup.py|github/cbalbin-FIU/Epitopedia|2.8901734104046242e-05| -|setup.py|github/ECSHackWeek/impedance.py|2.8901734104046242e-05| -|setup.py|github/slzarate/parliament2|2.8901734104046242e-05| -|setup.py|github/cas-bioinf/rboAnalyzer|2.8901734104046242e-05| -|setup.py|github/malonge/RagTag|2.8901734104046242e-05| -|setup.py|github/MDAnalysis/mdanalysis|2.8901734104046242e-05| -|setup.py|github/vsoch/gridtest|2.8901734104046242e-05| -|setup.py|github/Quantum-Dynamics-Hub/libra-code|2.8901734104046242e-05| -|setup.py|github/SandoghdarLab/PiSCAT|2.8901734104046242e-05| -|setup.py|github/tylunel/pvpumpingsystem|2.8901734104046242e-05| -|setup.py|github/cadop/seg1d|2.8901734104046242e-05| -|setup.py|github/twesterhout/lattice-symmetries|2.8901734104046242e-05| -|setup.py|github/UNSW-CEEM/nempy|2.8901734104046242e-05| -|setup.py|github/potassco/clingo|2.8901734104046242e-05| -|setup.py|github/NLESC-JCER/QMCTorch|2.8901734104046242e-05| -|setup.py|github/IMMM-SFA/mosartwmpy|2.8901734104046242e-05| -|setup.py|github/COVID-IWG/epimargin|2.8901734104046242e-05| -|setup.py|github/SCECcode/pycsep|2.8901734104046242e-05| -|setup.py|github/indralab/pybiopax|2.8901734104046242e-05| -|setup.py|github/qpv-research-group/solcore5|2.8901734104046242e-05| -|setup.py|github/mishioo/tesliper|2.8901734104046242e-05| -|setup.py|github/aiidateam/kiwipy|2.8901734104046242e-05| -|setup.py|github/amusecode/amuse|2.8901734104046242e-05| -|setup.py|github/rodluger/starry_process|2.8901734104046242e-05| -|setup.py|github/skovaka/UNCALLED|2.8901734104046242e-05| -|setup.py|github/glotzerlab/freud|2.8901734104046242e-05| -|setup.py|github/glotzerlab/coxeter|2.8901734104046242e-05| -|setup.py|github/TriPed-Robot/TriP|2.8901734104046242e-05| -|setup.py|github/odb9402/CNNPeaks|2.8901734104046242e-05| -|setup.py|github/AlexMikes/AutoFunc|2.8901734104046242e-05| -|setup.py|github/s-goldman/Dusty-Evolved-Star-Kit|2.8901734104046242e-05| -|setup.py|github/FreBio/komics|2.8901734104046242e-05| -|setup.py|github/Nico-Curti/rFBP|2.8901734104046242e-05| -|setup.py|github/brainets/frites|2.8901734104046242e-05| -|setup.py|github/0xCoto/Virgo|2.8901734104046242e-05| -|setup.py|github/recipy/recipy|2.8901734104046242e-05| -|setup.py|github/abrupt-climate/hyper-canny|2.8901734104046242e-05| -|setup.py|github/athulpg007/AMAT|2.8901734104046242e-05| -|setup.py|github/AlexanderLabWHOI/EUKulele|2.8901734104046242e-05| -|setup.py|github/NKI-CCB/PRECISE|2.8901734104046242e-05| -|setup.py|github/multiscale/muscle3|2.8901734104046242e-05| -|setup.py|github/ni1o1/transbigdata|2.8901734104046242e-05| -|setup.py|github/nlesc-nano/ceiba-cli|2.8901734104046242e-05| -|setup.py|github/nlesc-nano/insilico-server|2.8901734104046242e-05| -|setup.py|github/nlesc-nano/ceiba|2.8901734104046242e-05| -|setup.py|github/nlesc-nano/Moka|2.8901734104046242e-05| -|setup.py|github/nlesc-nano/flamingo|2.8901734104046242e-05| -|setup.py|github/nlesc-nano/swan|2.8901734104046242e-05| -|setup.py|github/nlesc-nano/CAT|2.8901734104046242e-05| -|setup.py|github/HIPS/autograd|2.8901734104046242e-05| -|setup.py|github/sebhaan/geobo|2.8901734104046242e-05| -|setup.py|github/SouthGreenPlatform/PyRice|2.8901734104046242e-05| -|setup.py|github/ml-evs/matador|2.8901734104046242e-05| -|setup.py|github/conda/conda|2.8901734104046242e-05| -|setup.py|github/SCM-NV/qmflows-namd|2.8901734104046242e-05| -|setup.py|github/SCM-NV/qmflows|2.8901734104046242e-05| -|setup.py|github/SCM-NV/pyZacros|2.8901734104046242e-05| -|setup.py|github/RaRe-Technologies/gensim|2.8901734104046242e-05| -|setup.py|github/lantunes/cellpylib|2.8901734104046242e-05| -|setup.py|github/singularityhub/singularity-hpc|2.8901734104046242e-05| -|setup.py|github/singularityhub/singularity-compose|2.8901734104046242e-05| -|setup.py|github/DeltaRCM/pyDeltaRCM|2.8901734104046242e-05| -|setup.py|github/numba/numba|2.8901734104046242e-05| -|setup.py|github/clawpack/clawpack|2.8901734104046242e-05| -|setup.py|github/fruzsinaagocs/oscode|2.8901734104046242e-05| -|setup.py|github/rajeshrinet/pystokes|2.8901734104046242e-05| -|setup.py|github/era-urban/wrfpy|2.8901734104046242e-05| -|setup.py|github/NeuralEnsemble/PyNN|2.8901734104046242e-05| -|setup.py|github/Materials-Consortia/optimade-python-tools|2.8901734104046242e-05| -|setup.py|github/mzy2240/ESA|2.8901734104046242e-05| -|setup.py|github/Electrostatics/apbs|2.8901734104046242e-05| -|setup.py|github/fakedrtom/oncogemini|2.8901734104046242e-05| -|setup.py|github/panoptes-organization/panoptes|2.8901734104046242e-05| -|setup.py|github/circuitgraph/circuitgraph|2.8901734104046242e-05| -|setup.py|github/hiddenSymmetries/simsopt|2.8901734104046242e-05| -|setup.py|github/jiahecui/SenAOReFoc|2.8901734104046242e-05| -|setup.py|github/jollejolles/pirecorder|2.8901734104046242e-05| -|setup.py|github/adbar/htmldate|2.8901734104046242e-05| -|setup.py|github/nlesc/scriptcwl|2.8901734104046242e-05| -|setup.py|github/swiftsim/swiftsimio|2.8901734104046242e-05| -|setup.py|github/nlppln/nlppln|2.8901734104046242e-05| -|setup.py|github/zarr-developers/zarr-python|2.8901734104046242e-05| -|setup.py|github/KALMUS-Color-Toolkit/KALMUS|2.8901734104046242e-05| -|setup.py|github/elwinter/nnde|2.8901734104046242e-05| -|setup.py|github/davidebolo1993/VISOR|2.8901734104046242e-05| -|setup.py|github/davidebolo1993/TRiCoLOR|2.8901734104046242e-05| -|setup.py|github/KathrynJones1/catwoman|2.8901734104046242e-05| -|setup.py|github/medema-group/bigslice|2.8901734104046242e-05| -|setup.py|github/FlowModelingControl/flowtorch|2.8901734104046242e-05| -|setup.py|github/felixchenier/kineticstoolkit|2.8901734104046242e-05| -|setup.py|github/yatiml/yatiml|2.8901734104046242e-05| -|setup.py|github/dpalmasan/TRUNAJOD2.0|2.8901734104046242e-05| -|setup.py|github/fitbenchmarking/fitbenchmarking|2.8901734104046242e-05| -|setup.py|github/ketch/nodepy|2.8901734104046242e-05| -|setup.py|github/Theano/Theano|2.8901734104046242e-05| -|setup.py|github/jianhuupenn/SpaGCN|2.8901734104046242e-05| -|setup.py|github/opimwue/ddop|2.8901734104046242e-05| -|setup.py|github/ModellingWebLab/chaste-codegen|2.8901734104046242e-05| -|setup.py|github/SynthSys/pyOmeroUpload|2.8901734104046242e-05| -|setup.py|github/RTIInternational/gobbli|2.8901734104046242e-05| -|setup.py|github/ConorMacBride/mcalf|2.8901734104046242e-05| -|setup.py|github/ComparativeGenomicsToolkit/cactus|2.8901734104046242e-05| -|setup.py|github/htjb/maxsmooth|2.8901734104046242e-05| -|setup.py|github/parallelwindfarms/byteparsing|2.8901734104046242e-05| -|setup.py|github/fermisurfaces/IFermi|2.8901734104046242e-05| -|setup.py|github/jbuisine/macop|2.8901734104046242e-05| -|setup.py|github/BritishGeologicalSurvey/pyvolcans|2.8901734104046242e-05| -|setup.py|github/meinardmueller/libfmp|2.8901734104046242e-05| -|setup.py|github/meinardmueller/synctoolbox|2.8901734104046242e-05| -|setup.py|github/EISy-as-Py/hardy|2.8901734104046242e-05| -|setup.py|github/ERA-URBAN/fm128_radar|2.8901734104046242e-05| -|setup.py|github/arabic-digital-humanities/adhtools|2.8901734104046242e-05| -|setup.py|github/JohannesBuchner/BXA|2.8901734104046242e-05| -|setup.py|github/spyder-ide/spyder|2.8901734104046242e-05| -|setup.py|github/shirtsgroup/physical_validation|2.8901734104046242e-05| -|setup.py|github/Singh-Lab/DeMaSk|2.8901734104046242e-05| -|setup.py|github/aspuru-guzik-group/funsies|2.8901734104046242e-05| -|setup.py|github/bethgelab/foolbox|2.8901734104046242e-05| -|setup.py|github/ynop/audiomate|2.8901734104046242e-05| -|setup.py|github/PfizerRD/sit2standpy|2.8901734104046242e-05| -|setup.py|github/shilpagarg/WHdenovo|2.8901734104046242e-05| -|setup.py|github/bio-ontology-research-group/deepgoplus|2.8901734104046242e-05| -|setup.py|github/samaygarg/fuelcell|2.8901734104046242e-05| -|setup.py|github/mscroggs/symfem|2.8901734104046242e-05| -|setup.py|github/comprna/reorientexpress|2.8901734104046242e-05| -|setup.py|github/cupy/cupy|2.8901734104046242e-05| -|setup.py|github/edwardoughton/itmlogic|2.8901734104046242e-05| -|setup.py|github/3D-e-Chem/sygma|2.8901734104046242e-05| -|setup.py|github/3D-e-Chem/kripodb|2.8901734104046242e-05| -|setup.py|github/DynaSlum/satsense|2.8901734104046242e-05| -|setup.py|github/coljac/sensie|2.8901734104046242e-05| -|setup.py|github/CEED/libCEED|2.8901734104046242e-05| -|setup.py|github/aalhossary/pyemgpipeline|2.8901734104046242e-05| -|setup.py|github/easybuilders/easybuild|2.8901734104046242e-05| -|setup.py|github/dmnfarrell/snpgenie|2.8901734104046242e-05| -|setup.py|github/dmnfarrell/epitopepredict|2.8901734104046242e-05| -|setup.py|github/HillLab/SomaticSiMu|2.8901734104046242e-05| -|setup.py|github/compomics/DeepLC|2.8901734104046242e-05| -|setup.py|github/zdelrosario/py_grama|2.8901734104046242e-05| -|setup.py|github/nicolet5/DiffCapAnalyzer|2.8901734104046242e-05| -|setup.py|github/DrMarc/slab|2.8901734104046242e-05| -|setup.py|github/SirSharpest/NarrowEscapeSimulator|2.8901734104046242e-05| -|setup.py|github/antoinediez/Sisyphe|2.8901734104046242e-05| -|setup.py|github/TPI-Immunogenetics/igmat|2.8901734104046242e-05| -|setup.py|github/BackmanLab/PWSpy|2.8901734104046242e-05| -|setup.py|github/IKNL/vantage6|2.8901734104046242e-05| -|setup.py|github/matplotlib/matplotlib|2.8901734104046242e-05| -|setup.py|github/LiberTEM/LiberTEM|2.8901734104046242e-05| -|setup.py|github/virgesmith/neworder|2.8901734104046242e-05| -|setup.py|github/smog-server/OpenSMOG|2.8901734104046242e-05| -|setup.py|github/volkamerlab/opencadd|2.8901734104046242e-05| -|setup.py|github/kerkelae/disimpy|2.8901734104046242e-05| -|setup.py|github/NLeSC/noodles|2.8901734104046242e-05| -|setup.py|github/NLeSC/mcfly|2.8901734104046242e-05| -|setup.py|github/NLeSC/cptm|2.8901734104046242e-05| -|setup.py|github/NLeSC/boatswain|2.8901734104046242e-05| -|setup.py|github/NLeSC/Massive-PotreeConverter|2.8901734104046242e-05| -|setup.py|github/idptools/metapredict|2.8901734104046242e-05| -|setup.py|github/eWaterCycle/grpc4bmi|2.8901734104046242e-05| -|setup.py|github/eWaterCycle/jupyterlab_thredds|2.8901734104046242e-05| -|setup.py|github/EpistasisLab/regens|2.8901734104046242e-05| -|setup.py|github/EpistasisLab/tpot|2.8901734104046242e-05| -|setup.py|github/BartoszBartmanski/StoSpa2|2.8901734104046242e-05| -|setup.py|github/BioSTEAMDevelopmentGroup/thermosteam|2.8901734104046242e-05| -|setup.py|github/girder/viime|2.8901734104046242e-05| -|setup.py|github/AA-ALERT/frbcatdb|2.8901734104046242e-05| -|setup.py|github/PyPSA/atlite|2.8901734104046242e-05| -|setup.py|github/ORNL/tx2|2.8901734104046242e-05| -|setup.py|github/Yu-Group/veridical-flow|2.8901734104046242e-05| -|setup.py|github/hknd23/idcempy|2.8901734104046242e-05| -|setup.py|github/MrMinimal64/multivar_horner|2.8901734104046242e-05| -|setup.py|github/popgenmethods/smcpp|2.8901734104046242e-05| -|setup.py|github/rgerum/pylustrator|2.8901734104046242e-05| -|setup.py|github/eScatter/pyelsepa|2.8901734104046242e-05| -|setup.py|github/MD-Studio/cerulean|2.8901734104046242e-05| -|setup.py|github/KIT-MBS/pyREX|2.8901734104046242e-05| -|setup.py|github/ekaterinailin/AltaiPony|2.8901734104046242e-05| -|setup.py|github/benhid/Sequoya|2.8901734104046242e-05| -|setup.py|github/linqs/psl|2.8901734104046242e-05| -|setup.py|github/21cmFAST/21cmFAST|2.8901734104046242e-05| -|setup.py|github/jmschrei/pomegranate|2.8901734104046242e-05| -|setup.py|github/OpenMDAO/dymos|2.8901734104046242e-05| -|setup.py|github/bio-phys/BioEn|2.8901734104046242e-05| -|setup.py|github/tariqdaouda/CAMAP|2.8901734104046242e-05| -|setup.py|github/fair-software/howfairis|2.8901734104046242e-05| -|setup.py|github/fair-software/fairtally|2.8901734104046242e-05| -|setup.py|github/samuelefiorini/tangle|2.8901734104046242e-05| -|setup.py|github/colour-science/colour|2.8901734104046242e-05| -|setup.py|github/chasmani/piecewise-regression|2.8901734104046242e-05| -|setup.py|github/stammler/simframe|2.8901734104046242e-05| -|setup.py|github/MillionConcepts/lhorizon|2.8901734104046242e-05| -|setup.py|github/mjacob1002/Eir|2.8901734104046242e-05| -|setup.py|github/symmy596/SurfinPy|2.8901734104046242e-05| -|setup.py|github/symmy596/Polypy|2.8901734104046242e-05| -|setup.py|github/szymon-datalions/pyinterpolate|2.8901734104046242e-05| -|setup.py|github/rgmyr/corebreakout|2.8901734104046242e-05| -|setup.py|github/dynamicslab/pysindy|2.8901734104046242e-05| -|setup.py|github/tool-bin/ukbcc|2.8901734104046242e-05| -|setup.py|github/neuralhydrology/neuralhydrology|2.8901734104046242e-05| -|setup.py|github/wdecoster/nanopack|2.8901734104046242e-05| -|setup.py|github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY|2.8901734104046242e-05| -|setup.py|github/rhayes777/PyAutoFit|2.8901734104046242e-05| -|setup.py|github/dmey/synthia|2.8901734104046242e-05| -|setup.py|github/sambit-giri/tools21cm|2.8901734104046242e-05| -|setup.py|github/nlesc-ave/ave-rest-service|2.8901734104046242e-05| -|setup.py|github/Filter-Bubble/e2e-Dutch|2.8901734104046242e-05| -|setup.py|github/cdslaborg/paramonte|2.8901734104046242e-05| -|setup.py|github/snakemake/snakemake|2.8901734104046242e-05| -|setup.py|github/thejasvibr/bat_beamshapes|2.8901734104046242e-05| -|setup.py|github/actris-cloudnet/cloudnetpy|2.8901734104046242e-05| -|setup.py|github/xenon-middleware/pyxenon|2.8901734104046242e-05| -|setup.py|github/DrafProject/elmada|2.8901734104046242e-05| -|setup.py|github/equib/pyEQUIB|2.8901734104046242e-05| -|setup.py|github/dfujim/bfit|2.8901734104046242e-05| -|setup.py|github/atomneb/AtomNeb-py|2.8901734104046242e-05| -|setup.py|github/oschwengers/referenceseeker|2.8901734104046242e-05| -|setup.py|github/oschwengers/platon|2.8901734104046242e-05| -|setup.py|github/oschwengers/bakta|2.8901734104046242e-05| -|setup.py|github/Effective-Quadratures/Effective-Quadratures|2.8901734104046242e-05| -|setup.py|github/AlphonsG/Rainbow-Optical-Flow-For-ALI|2.8901734104046242e-05| -|setup.py|github/fAndreuzzi/BisPy|2.8901734104046242e-05| -|setup.py|github/KBNLresearch/ochre|2.8901734104046242e-05| -|setup.py|github/CLARIAH/grlc|2.8901734104046242e-05| -|setup.py|github/carlosborca/CrystaLattE|2.8901734104046242e-05| -|setup.py|github/Oftatkofta/cellocity|2.8901734104046242e-05| -|setup.py|github/biocore/scikit-bio|2.8901734104046242e-05| -|setup.py|github/raspishake/rsudp|2.8901734104046242e-05| -|setup.py|github/davemlz/eemont|2.8901734104046242e-05| -|setup.py|github/LBNL-ETA/MSWH|2.8901734104046242e-05| -|setup.py|github/ghislainv/forestatrisk|2.8901734104046242e-05| -|setup.py|github/Kuifje02/vrpy|2.8901734104046242e-05| -|setup.py|github/bootphon/phonemizer|2.8901734104046242e-05| -|setup.py|github/fair-data/fairdatapoint-client|2.8901734104046242e-05| -|setup.py|github/cabb99/open3spn2|2.8901734104046242e-05| -|setup.py|github/benvanwerkhoven/kernel_tuner|2.8901734104046242e-05| -|setup.py|github/CFSAN-Biostatistics/SeroTools|2.8901734104046242e-05| -|setup.py|github/iomega/spec2vec|2.8901734104046242e-05| -|setup.py|github/SMTG-UCL/surfaxe|2.8901734104046242e-05| -|setup.py|github/lkmklsmn/DrivAER|2.8901734104046242e-05| -|setup.py|github/Bahler-Lab/pyphe|2.8901734104046242e-05| -|setup.py|github/FSEC-Photovoltaics/pvrpm-lcoe|2.8901734104046242e-05| -|setup.py|github/wilkelab/Opfi|2.8901734104046242e-05| -|setup.py|github/radifar/PyPLIF-HIPPOS|2.8901734104046242e-05| -|setup.py|github/jorisparet/partycls|2.8901734104046242e-05| -|setup.py|github/exafmm/exafmm-t|2.8901734104046242e-05| -|setup.py|github/scipion-em/scipion-em-continuousflex|2.8901734104046242e-05| -|setup.py|github/ElectionDataAnalysis/electiondata|2.8901734104046242e-05| -|setup.py|github/elkebir-group/Jumper|2.8901734104046242e-05| -|setup.py|github/richteague/disksurf|2.8901734104046242e-05| -|setup.py|github/RamanLab/iCOMIC|2.8901734104046242e-05| -|setup.py|github/DeepRank/pdb2sql|2.8901734104046242e-05| -|setup.py|github/DeepRank/pssmgen|2.8901734104046242e-05| -|setup.py|github/DeepRank/DeepRank-GNN|2.8901734104046242e-05| -|setup.py|github/DeepRank/deeprank|2.8901734104046242e-05| -|setup.py|github/DeepRank/iScore|2.8901734104046242e-05| -|setup.py|github/pybamm-team/liionpack|2.8901734104046242e-05| -|setup.py|github/weecology/retriever|2.8901734104046242e-05| -|setup.py|github/matchms/ms2deepscore|2.8901734104046242e-05| -|setup.py|github/matchms/matchms|2.8901734104046242e-05| -|setup.py|github/sagepublishing/rejected_article_tracker_pkg|2.8901734104046242e-05| -|setup.py|github/icecube/FIRESONG|2.8901734104046242e-05| -|setup.py|gitlab/BioimageInformaticsGroup/openphi|2.8901734104046242e-05| -|setup.py|gitlab/jason-rumengan/pyarma|2.8901734104046242e-05| -|setup.py|gitlab/Molcas/OpenMolcas|2.8901734104046242e-05| -|setup.py|gitlab/gims-developers/gims|2.8901734104046242e-05| -|setup.py|gitlab/picos-api/picos|2.8901734104046242e-05| -|setup.py|gitlab/octopus-code/octopus|2.8901734104046242e-05| -|setup.py|gitlab/fduchate/predihood|2.8901734104046242e-05| -|requirements.txt|github/lutteropp/NetRAX|2.8901734104046242e-05| -|requirements.txt|github/DSIMB/medusa|2.8901734104046242e-05| -|requirements.txt|github/ggciag/mandyoc|2.8901734104046242e-05| -|requirements.txt|github/TinkerTools/tinker9|2.8901734104046242e-05| -|requirements.txt|github/BioGearsEngine/core|2.8901734104046242e-05| -|requirements.txt|github/neuroanatomy/reorient|2.8901734104046242e-05| -|requirements.txt|github/nextstrain/nextclade|2.8901734104046242e-05| -|requirements.txt|github/mswzeus/TargetNet|2.8901734104046242e-05| -|requirements.txt|github/LSARP/ProteomicsQC|2.8901734104046242e-05| -|requirements.txt|github/JLiangLab/TransVW|2.8901734104046242e-05| -|requirements.txt|github/TeamCOMPAS/COMPAS|2.8901734104046242e-05| -|requirements.txt|github/Rohit-Kundu/ET-NET_Covid-Detection|2.8901734104046242e-05| -|requirements.txt|github/SPARC-FAIR-Codeathon/aqua|2.8901734104046242e-05| -|requirements.txt|github/Julian/jsonschema|2.8901734104046242e-05| -|requirements.txt|github/shandley/hecatomb|2.8901734104046242e-05| -|requirements.txt|github/singularityhub/sregistry|2.8901734104046242e-05| -|requirements.txt|github/MRChemSoft/mrchem|2.8901734104046242e-05| -|requirements.txt|github/CouncilDataProject/cookiecutter-cdp-deployment|2.8901734104046242e-05| -|requirements.txt|github/GilbertLabUCSF/CanDI|2.8901734104046242e-05| -|requirements.txt|github/citation-file-format/citation-file-format|2.8901734104046242e-05| -|requirements.txt|github/gvilitechltd/LibSWIFFT|2.8901734104046242e-05| -|requirements.txt|github/diCenzo-GC/Tn-Core-webserver|2.8901734104046242e-05| -|requirements.txt|github/ImperialCollegeLondon/champ|2.8901734104046242e-05| -|requirements.txt|github/broadinstitute/cromwell|2.8901734104046242e-05| -|requirements.txt|github/nlesc/embodied-emotions-scripts|2.8901734104046242e-05| -|requirements.txt|github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs|2.8901734104046242e-05| -|requirements.txt|github/he2016012996/CABnet|2.8901734104046242e-05| -|requirements.txt|github/ketch/RK-Opt|2.8901734104046242e-05| -|requirements.txt|github/arnikz/PIQMIe|2.8901734104046242e-05| -|requirements.txt|github/SWIFTSIM/emulator|2.8901734104046242e-05| -|requirements.txt|github/3d-pli/fastpli|2.8901734104046242e-05| -|requirements.txt|github/amrex-astro/Castro|2.8901734104046242e-05| -|requirements.txt|github/Single-Cell-Graph-Learning/scSGL|2.8901734104046242e-05| -|requirements.txt|github/AMReX-Astro/Nyx|2.8901734104046242e-05| -|requirements.txt|github/snowformatics/macrobot|2.8901734104046242e-05| -|requirements.txt|github/monarch-initiative/loinc2hpo|2.8901734104046242e-05| -|requirements.txt|github/hemanthpruthvi/PyAstroPol|2.8901734104046242e-05| -|requirements.txt|github/wmglab-duke/ascent|2.8901734104046242e-05| -|requirements.txt|github/villano-lab/nrCascadeSim|2.8901734104046242e-05| -|requirements.txt|github/SuLab/Wikidata-phenomizer|2.8901734104046242e-05| -|requirements.txt|github/iontorrent/TS|2.8901734104046242e-05| -|requirements.txt|github/NLeSC-GO-common-infrastructure/marzipan|2.8901734104046242e-05| -|requirements.txt|github/CAMI-challenge/CAMITAX|2.8901734104046242e-05| -|requirements.txt|github/PolymerGuy/recolo|2.8901734104046242e-05| -|requirements.txt|github/NLeSC/ShiCo|2.8901734104046242e-05| -|requirements.txt|github/jdber1/opendrop|2.8901734104046242e-05| -|requirements.txt|github/csbioinfopk/iSumoK-PseAAC|2.8901734104046242e-05| -|requirements.txt|github/labsyspharm/minerva-story|2.8901734104046242e-05| -|requirements.txt|github/ablab/TandemTools|2.8901734104046242e-05| -|requirements.txt|github/sorenwacker/ProteomicsQC|2.8901734104046242e-05| -|requirements.txt|github/grant-m-s/astronomicAL|2.8901734104046242e-05| -|requirements.txt|github/qMRLab/qMRLab|2.8901734104046242e-05| -|requirements.txt|github/LINNAE-project/SFB-Annotator|2.8901734104046242e-05| -|requirements.txt|github/BioinfoUNIBA/REDItools2|2.8901734104046242e-05| -|requirements.txt|github/onnela-lab/beiwe-backend|2.8901734104046242e-05| -|requirements.txt|github/mms-fcul/PypKa|2.8901734104046242e-05| -|requirements.txt|github/surf-eds/one-button-compute|2.8901734104046242e-05| -|requirements.txt|github/kinnala/scikit-fem|2.8901734104046242e-05| -|requirements.txt|github/UUDigitalHumanitieslab/texcavator|2.8901734104046242e-05| -|requirements.txt|github/andr1976/HydDown|2.8901734104046242e-05| -|requirements.txt|github/ot483/NetCom|2.8901734104046242e-05| -|requirements.txt|github/enveda/RPath|2.8901734104046242e-05| -|requirements.txt|github/inpefess/gym-saturation|2.8901734104046242e-05| -|requirements.txt|github/Narayana-Rao/SAR-tools|2.8901734104046242e-05| -|requirements.txt|github/erikbern/ann-benchmarks|2.8901734104046242e-05| -|requirements.txt|github/learningsimulator/learningsimulator|2.8901734104046242e-05| -|requirements.txt|github/kkjawz/coref-ee|2.8901734104046242e-05| -|requirements.txt|github/STEllAR-GROUP/hpx|2.8901734104046242e-05| -|requirements.txt|github/JuliaHCI/ADI.jl|2.8901734104046242e-05| -|requirements.txt|github/robashaw/libecpint|2.8901734104046242e-05| -|requirements.txt|github/soraxas/sbp-env|2.8901734104046242e-05| -|requirements.txt|github/zhoux85/scAdapt|2.8901734104046242e-05| -|requirements.txt|github/JLBLine/WODEN|2.8901734104046242e-05| -|requirements.txt|github/Climdyn/qgs|2.8901734104046242e-05| -|requirements.txt|gitlab/LouisLab/PiVR|2.8901734104046242e-05| -|requirements.txt|gitlab/cracklet/cracklet|2.8901734104046242e-05| -|pypi|[moto](https://pypi.org/project/moto)|2.88581790481442e-05| -|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|2.88581790481442e-05| -|pypi|[Bio](https://github.com/ialbert/bio)|2.8612716763005837e-05| -|pypi|[xopen](https://github.com/pycompression/xopen/)|2.8612716763005837e-05| -|pypi|[vip-hci](https://github.com/vortex-exoplanet/VIP)|2.8612716763005837e-05| -|pypi|[hpccm](https://github.com/NVIDIA/hpc-container-maker)|2.861271676300578e-05| -|pypi|[requirements](http://github.com/mattack108/requirements)|2.861271676300578e-05| -|pypi|[Shapely](https://pypi.org/project/Shapely)|2.8612716763005776e-05| -|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|2.8603439100639242e-05| -|pypi|[debugpy](https://pypi.org/project/debugpy)|2.8603439100639242e-05| -|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|2.8326589595375722e-05| -|pypi|[vega-datasets](http://github.com/altair-viz/vega_datasets)|2.8295294436416186e-05| -|pypi|[altair](http://altair-viz.github.io)|2.825505780346823e-05| -|pypi|[xlrd](http://www.python-excel.org/)|2.809316760245016e-05| -|pypi|[yarl](https://github.com/aio-libs/yarl/)|2.7859667788858535e-05| -|pypi|[m2r2](https://pypi.org/project/m2r2)|2.77711662699762e-05| -|pypi|[types-pytz](https://pypi.org/project/types-pytz)|2.77711662699762e-05| -|pypi|[pytest-raises](https://pypi.org/project/pytest-raises)|2.77711662699762e-05| -|pypi|[flake8-debugger](https://pypi.org/project/flake8-debugger)|2.77711662699762e-05| -|pypi|[yt-dlp](https://pypi.org/project/yt-dlp)|2.77711662699762e-05| -|pypi|[webvtt-py](https://pypi.org/project/webvtt-py)|2.77711662699762e-05| -|pypi|[truecase](https://pypi.org/project/truecase)|2.77711662699762e-05| -|pypi|[rapidfuzz](https://pypi.org/project/rapidfuzz)|2.77711662699762e-05| -|pypi|[google-cloud-speech](https://pypi.org/project/google-cloud-speech)|2.77711662699762e-05| -|pypi|[ffmpeg-python](https://pypi.org/project/ffmpeg-python)|2.77711662699762e-05| -|pypi|[pulumi-gcp](https://pypi.org/project/pulumi-gcp)|2.77711662699762e-05| -|pypi|[pulumi-google-native](https://pypi.org/project/pulumi-google-native)|2.77711662699762e-05| -|pypi|[fireo](https://pypi.org/project/fireo)|2.77711662699762e-05| -|pypi|[pockets](https://pypi.org/project/pockets)|2.76011690495983e-05| -|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|2.7444858621240774e-05| -|pypi|[pytest-tornasync](https://pypi.org/project/pytest-tornasync)|2.723710538016896e-05| -|pypi|[nbval](https://pypi.org/project/nbval)|2.723710538016896e-05| -|pypi|[notebook-shim](https://pypi.org/project/notebook-shim)|2.723710538016896e-05| -|pypi|[pytest-remotedata](https://pypi.org/project/pytest-remotedata)|2.7052301816680468e-05| -|pypi|[partd](http://github.com/dask/partd/)|2.6402297124840518e-05| -|pypi|[scooby](https://pypi.org/project/scooby)|2.5751445086705198e-05| -|pypi|[sphinx-version-warning](https://github.com/humitos/sphinx-version-warning)|2.562881915772089e-05| -|pypi|[parameterized](https://pypi.org/project/parameterized)|2.5627967588769612e-05| -|pypi|[kazoo](https://kazoo.readthedocs.io)|2.5572615606936414e-05| -|pypi|[softlayer-messaging](https://pypi.org/project/softlayer-messaging)|2.5572615606936414e-05| -|pypi|[pytest-celery](https://pypi.org/project/pytest-celery)|2.5572615606936414e-05| -|pypi|[pyro4](https://pypi.org/project/pyro4)|2.5572615606936414e-05| -|pypi|[python-memcached](https://pypi.org/project/python-memcached)|2.5572615606936414e-05| -|pypi|[pylibmc](https://pypi.org/project/pylibmc)|2.5572615606936414e-05| -|pypi|[librabbitmq](https://pypi.org/project/librabbitmq)|2.5572615606936414e-05| -|pypi|[gevent](https://pypi.org/project/gevent)|2.5572615606936414e-05| -|pypi|[pycouchdb](https://pypi.org/project/pycouchdb)|2.5572615606936414e-05| -|pypi|[couchbase](https://pypi.org/project/couchbase)|2.5572615606936414e-05| -|pypi|[pydocumentdb](https://pypi.org/project/pydocumentdb)|2.5572615606936414e-05| -|pypi|[python-consul2](https://pypi.org/project/python-consul2)|2.5572615606936414e-05| -|pypi|[cassandra-driver](https://pypi.org/project/cassandra-driver)|2.5572615606936414e-05| -|pypi|[azure-storage-blob](https://pypi.org/project/azure-storage-blob)|2.5572615606936414e-05| -|pypi|[pyArango](https://pypi.org/project/pyArango)|2.5572615606936414e-05| -|pypi|[tox-travis](https://pypi.org/project/tox-travis)|2.5291597853014035e-05| -|pypi|[win32-setctime](https://pypi.org/project/win32-setctime)|2.5291597853014035e-05| -|pypi|[aiocontextvars](https://pypi.org/project/aiocontextvars)|2.5291597853014035e-05| -|pypi|[fastapi](https://github.com/tiangolo/fastapi)|2.5240602735582774e-05| -|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|2.513656863367852e-05| -|pypi|[deprecat](https://pypi.org/project/deprecat)|2.508503779457537e-05| -|pypi|[kubernetes](https://pypi.org/project/kubernetes)|2.481106133809889e-05| -|pypi|[uvloop](https://pypi.org/project/uvloop)|2.4798735946134792e-05| -|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|2.4798735946134792e-05| -|pypi|[pyviz-comms](https://pypi.org/project/pyviz-comms)|2.469915922228061e-05| -|pypi|[pretty-midi](https://pypi.org/project/pretty-midi)|2.3410404624277454e-05| -|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|2.3183579381240146e-05| -|pypi|[casadi](http://casadi.org)|2.315612494441974e-05| -|pypi|[qmflows](https://pypi.org/project/qmflows)|2.2822047894302266e-05| -|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|2.2804885504668743e-05| -|pypi|[aafigure](https://pypi.org/project/aafigure)|2.2481420313790253e-05| -|pypi|[gensim](http://radimrehurek.com/gensim)|2.219090158396521e-05| -|pypi|[tensorboard-plugin-wit](https://pypi.org/project/tensorboard-plugin-wit)|2.178968430413517e-05| -|pypi|[tensorboard-data-server](https://pypi.org/project/tensorboard-data-server)|2.178968430413517e-05| -|pypi|[google-auth-oauthlib](https://pypi.org/project/google-auth-oauthlib)|2.178968430413517e-05| -|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|2.129818766569603e-05| -|pypi|[s3fs](https://pypi.org/project/s3fs)|2.129818766569603e-05| -|pypi|[ocifs](https://pypi.org/project/ocifs)|2.129818766569603e-05| -|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|2.129818766569603e-05| -|pypi|[pygit2](https://pypi.org/project/pygit2)|2.129818766569603e-05| -|pypi|[fusepy](https://pypi.org/project/fusepy)|2.129818766569603e-05| -|pypi|[dropbox](https://pypi.org/project/dropbox)|2.129818766569603e-05| -|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|2.129818766569603e-05| -|pypi|[adlfs](https://pypi.org/project/adlfs)|2.129818766569603e-05| -|pypi|[pytest-json-report](https://pypi.org/project/pytest-json-report)|2.1297398843930637e-05| -|pypi|[databricks-cli](https://pypi.org/project/databricks-cli)|2.1080492102253405e-05| -|pypi|[prometheus-flask-exporter](https://pypi.org/project/prometheus-flask-exporter)|2.1080492102253405e-05| -|pypi|[querystring-parser](https://pypi.org/project/querystring-parser)|2.1080492102253405e-05| -|pypi|[configparser](https://github.com/jaraco/configparser/)|2.1054190751445186e-05| -|pypi|[google-auth-httplib2](https://pypi.org/project/google-auth-httplib2)|2.0971912399250993e-05| -|pypi|[boltons](https://pypi.org/project/boltons)|2.062088897747658e-05| -|pypi|[pytest-cov>=2.10](https://pypi.org/project/pytest-cov>=2.10)|2.062088897747658e-05| -|pypi|[pytest>=6.0](https://pypi.org/project/pytest>=6.0)|2.062088897747658e-05| -|pypi|[loompy>=3.0.5](https://pypi.org/project/loompy>=3.0.5)|2.062088897747658e-05| -|pypi|[scanpydoc>=0.7.3](https://pypi.org/project/scanpydoc>=0.7.3)|2.062088897747658e-05| -|pypi|[sphinx_issues](https://pypi.org/project/sphinx_issues)|2.062088897747658e-05| -|pypi|[sphinx-autodoc-typehints>=1.11.0](https://pypi.org/project/sphinx-autodoc-typehints>=1.11.0)|2.062088897747658e-05| -|pypi|[sphinx>=4.1,<4.2](https://pypi.org/project/sphinx>=4.1,<4.2)|2.062088897747658e-05| -|pypi|[packaging>=20](https://pypi.org/project/packaging>=20)|2.062088897747658e-05| -|pypi|[scipy>1.4](https://pypi.org/project/scipy>1.4)|2.062088897747658e-05| -|pypi|[numpy>=1.16.5](https://pypi.org/project/numpy>=1.16.5)|2.062088897747658e-05| -|pypi|[pandas>=1.1.1](https://pypi.org/project/pandas>=1.1.1)|2.062088897747658e-05| -|pypi|[streamz](https://pypi.org/project/streamz)|2.055230508952488e-05| -|pypi|[nbsmoke](https://pypi.org/project/nbsmoke)|2.055230508952488e-05| -|pypi|[nbsite](https://pypi.org/project/nbsite)|2.055230508952488e-05| -|pypi|[sphinxcontrib-napoleon](https://sphinxcontrib-napoleon.readthedocs.io)|2.0550957361311722e-05| -|pypi|[passlib](https://pypi.org/project/passlib)|2.044266405984359e-05| -|pypi|[google-cloud-core](https://github.com/googleapis/python-cloud-core)|2.035129854270129e-05| -|pypi|[cvxopt](http://cvxopt.org)|2.0028901734104045e-05| -|pypi|[soxr](https://pypi.org/project/soxr)|2.0028901734104045e-05| -|pypi|[samplerate](https://pypi.org/project/samplerate)|2.0028901734104045e-05| -|pypi|[pytest-mpl](https://pypi.org/project/pytest-mpl)|2.0028901734104045e-05| -|pypi|[presets](https://pypi.org/project/presets)|2.0028901734104045e-05| -|pypi|[sphinxcontrib-svg2pdfconverter](https://pypi.org/project/sphinxcontrib-svg2pdfconverter)|2.0028901734104045e-05| -|pypi|[mir-eval](https://pypi.org/project/mir-eval)|2.0028901734104045e-05| -|pypi|[sphinx-multiversion](https://pypi.org/project/sphinx-multiversion)|2.0028901734104045e-05| -|pypi|[soundfile](https://pypi.org/project/soundfile)|2.0028901734104045e-05| -|pypi|[resampy](https://pypi.org/project/resampy)|2.0028901734104045e-05| -|pypi|[audioread](https://pypi.org/project/audioread)|2.0028901734104045e-05| -|pypi|[func-timeout](https://pypi.org/project/func-timeout)|1.9605671965317915e-05| -|pypi|[jaraco.itertools](https://pypi.org/project/jaraco.itertools)|1.9605671965317915e-05| -|pypi|[pytest-env](https://pypi.org/project/pytest-env)|1.9099537838629764e-05| -|pypi|[lark](https://github.com/lark-parser/lark)|1.9075144508670583e-05| -|pypi|[rowan](https://github.com/glotzerlab/rowan)|1.9075144508670522e-05| -|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|1.891618497109833e-05| -|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|1.8889882689203134e-05| -|pypi|[nodeenv](https://pypi.org/project/nodeenv)|1.887531402845709e-05| -|pypi|[identify](https://pypi.org/project/identify)|1.887531402845709e-05| -|pypi|[cfgv](https://pypi.org/project/cfgv)|1.887531402845709e-05| -|pypi|[email_validator](https://github.com/JoshData/python-email-validator)|1.8654369262155766e-05| -|pypi|[hyperspy](https://pypi.org/project/hyperspy)|1.8514110846650797e-05| -|pypi|[Auto-FOX](https://pypi.org/project/Auto-FOX)|1.839388934764657e-05| -|pypi|[vcrpy](https://pypi.org/project/vcrpy)|1.839388934764657e-05| -|pypi|[citeproc-py](https://pypi.org/project/citeproc-py)|1.839388934764657e-05| -|pypi|[aesara-theano-fallback](https://github.com/exoplanet-dev/aesara-theano-fallback)|1.8166804293971934e-05| -|pypi|[munkres](https://software.clapper.org/munkres/)|1.8158070253445976e-05| -|pypi|[fs](https://github.com/PyFilesystem/pyfilesystem2)|1.8158070253445976e-05| -|pypi|[xdoctest](https://pypi.org/project/xdoctest)|1.8158070253445976e-05| -|pypi|[ubelt](https://pypi.org/project/ubelt)|1.8158070253445976e-05| -|pypi|[zope.testing](https://pypi.org/project/zope.testing)|1.7976489550911513e-05| -|pypi|[zope.event](https://pypi.org/project/zope.event)|1.7976489550911513e-05| -|pypi|[repoze.sphinx.autointerface](https://pypi.org/project/repoze.sphinx.autointerface)|1.7976489550911513e-05| -|pypi|[ipyvolume](https://pypi.org/project/ipyvolume)|1.782792352156514e-05| -|pypi|[torchvision](https://github.com/pytorch/vision)|1.7644508670520265e-05| -|pypi|[google-cloud-storage](https://pypi.org/project/google-cloud-storage)|1.763937244685385e-05| -|pypi|[channels](https://pypi.org/project/channels)|1.7545980031529165e-05| -|pypi|[pydeck](https://pypi.org/project/pydeck)|1.7525289017341038e-05| -|pypi|[setuptools-scm](https://github.com/pypa/setuptools_scm/)|1.7388042304516322e-05| -|pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|1.7327987041859872e-05| -|pypi|[pytest-dependency](https://pypi.org/project/pytest-dependency)|1.7327987041859872e-05| -|pypi|[sphobjinv](https://pypi.org/project/sphobjinv)|1.7100362661182744e-05| -|pypi|[diff-cover](https://pypi.org/project/diff-cover)|1.7100362661182744e-05| -|pypi|[flake8-requirements](https://pypi.org/project/flake8-requirements)|1.6990575001120944e-05| -|pypi|[flake8-comprehensions](https://pypi.org/project/flake8-comprehensions)|1.6990575001120944e-05| -|pypi|[holoviews](https://www.holoviews.org)|1.6578316650218534e-05| -|pypi|[rq](https://pypi.org/project/rq)|1.616618497109827e-05| -|pypi|[itk](https://itk.org/)|1.613041907514451e-05| -|pypi|[datashader](https://datashader.org)|1.6054913294797698e-05| -|pypi|[smart_open](https://github.com/piskvorky/smart_open)|1.5736994219653213e-05| -|pypi|[lz4](https://pypi.org/project/lz4)|1.573558661730795e-05| -|pypi|[python-igraph](https://igraph.org/python)|1.558479891772231e-05| -|pypi|[pytest-metadata](https://pypi.org/project/pytest-metadata)|1.5579624277456648e-05| -|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|1.555400591477349e-05| -|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|1.555400591477349e-05| -|pypi|[colorful](https://pypi.org/project/colorful)|1.555400591477349e-05| -|pypi|[dm-tree](https://pypi.org/project/dm-tree)|1.555400591477349e-05| -|pypi|[gpustat](https://pypi.org/project/gpustat)|1.555400591477349e-05| -|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|1.555400591477349e-05| -|pypi|[opencensus](https://pypi.org/project/opencensus)|1.555400591477349e-05| -|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|1.555400591477349e-05| -|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|1.555400591477349e-05| -|pypi|[py-spy](https://pypi.org/project/py-spy)|1.555400591477349e-05| -|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|1.555400591477349e-05| -|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|1.555400591477349e-05| -|pypi|[autograd](https://github.com/HIPS/autograd)|1.5301653676143645e-05| -|pypi|[requests-cache](https://github.com/reclosedev/requests-cache)|1.5288572804799215e-05| -|pypi|[PyEnchant](https://pypi.org/project/PyEnchant)|1.5229349244825657e-05| -|pypi|[validate-pyproject](https://pypi.org/project/validate-pyproject)|1.5077055752377399e-05| -|pypi|[pyproject-fmt](https://pypi.org/project/pyproject-fmt)|1.5077055752377399e-05| -|pypi|[tomlkit](https://pypi.org/project/tomlkit)|1.5077055752377399e-05| -|pypi|[configupdater](https://pypi.org/project/configupdater)|1.5077055752377399e-05| -|pypi|[mlflow](https://pypi.org/project/mlflow)|1.5002627430373105e-05| -|pypi|[nbstripout](https://pypi.org/project/nbstripout)|1.4987613542526836e-05| -|pypi|[jupytext](https://pypi.org/project/jupytext)|1.4987613542526836e-05| -|pypi|[imagecodecs](https://www.lfd.uci.edu/~gohlke/)|1.4930473265895956e-05| -|pypi|[tensorflow-gpu](https://www.tensorflow.org/)|1.4851751798985591e-05| -|pypi|[wordcloud](https://pypi.org/project/wordcloud)|1.468470835522864e-05| -|pypi|[tables](https://www.pytables.org)|1.46847083552286e-05| -|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|1.4425578034682079e-05| -|pypi|[PyTest](https://pypi.org/project/PyTest)|1.4425578034682079e-05| -|pypi|[pytest-subtests](https://pypi.org/project/pytest-subtests)|1.437312138728324e-05| -|pypi|[cmake](https://cmake.org/)|1.4306358381502998e-05| -|pypi|[read-until](https://pypi.org/project/read-until)|1.4306358381502919e-05| -|pypi|[git](https://pypi.org)|1.4306358381502919e-05| -|pypi|[exhale](https://github.com/svenevs/exhale)|1.4306358381502919e-05| -|pypi|[subset](https://github.com/rightbrace/subset-game.git)|1.430635838150289e-05| -|pypi|[fastrlock](https://github.com/scoder/fastrlock)|1.430635838150289e-05| -|pypi|[cdp-backend](https://github.com/CouncilDataProject/cdp-backend)|1.4306358381502758e-05| -|pypi|[fonttools](http://github.com/fonttools/fonttools)|1.4207829742511842e-05| -|pypi|[xxhash](https://pypi.org/project/xxhash)|1.4144906419342714e-05| -|pypi|[types-orjson](https://github.com/python/typeshed)|1.38855831349881e-05| -|pypi|[types-ujson](https://github.com/python/typeshed)|1.38855831349881e-05| -|pypi|[anyio](https://pypi.org/project/anyio)|1.38855831349881e-05| -|pypi|[peewee](https://pypi.org/project/peewee)|1.38855831349881e-05| -|pypi|[httpx](https://pypi.org/project/httpx)|1.38855831349881e-05| -|pypi|[mkdocs-markdownextradata-plugin](https://pypi.org/project/mkdocs-markdownextradata-plugin)|1.38855831349881e-05| -|pypi|[mdx-include](https://pypi.org/project/mdx-include)|1.38855831349881e-05| -|pypi|[mkdocs-material](https://pypi.org/project/mkdocs-material)|1.38855831349881e-05| -|pypi|[mkdocs](https://pypi.org/project/mkdocs)|1.38855831349881e-05| -|pypi|[autoflake](https://pypi.org/project/autoflake)|1.38855831349881e-05| -|pypi|[python-jose](https://pypi.org/project/python-jose)|1.38855831349881e-05| -|pypi|[python-multipart](https://pypi.org/project/python-multipart)|1.38855831349881e-05| -|pypi|[memoization](https://pypi.org/project/memoization)|1.38855831349881e-05| -|pypi|[fbpca](https://pypi.org/project/fbpca)|1.38855831349881e-05| -|pypi|[oktopus](https://pypi.org/project/oktopus)|1.38855831349881e-05| -|pypi|[astroquery](https://pypi.org/project/astroquery)|1.38855831349881e-05| -|pypi|[jaxlib](https://pypi.org/project/jaxlib)|1.3819544797687844e-05| -|pypi|[google-crc32c](https://github.com/googleapis/python-crc32c)|1.3701864365383047e-05| -|pypi|[guzzle-sphinx-theme](https://github.com/guzzle/guzzle_sphinx_theme)|1.361855269008448e-05| -|pypi|[scikit-fem](https://pypi.org/project/scikit-fem)|1.361855269008448e-05| -|pypi|[anytree](https://pypi.org/project/anytree)|1.361855269008448e-05| -|pypi|[pytest-check-links](https://pypi.org/project/pytest-check-links)|1.3553392150897474e-05| -|pypi|[nbclassic](https://pypi.org/project/nbclassic)|1.3553392150897474e-05| -|pypi|[python-graphviz](https://pypi.org/project/python-graphviz)|1.3399125898773437e-05| -|pypi|[scikit_learn](http://scikit-learn.org)|1.3330924855491405e-05| -|pypi|[pyaml](https://github.com/mk-fg/pretty-yaml)|1.2875722543352643e-05| -|pypi|[property-cached](https://pypi.org/project/property-cached)|1.2817461355373627e-05| -|pypi|[profimp](https://pypi.org/project/profimp)|1.2723527241421718e-05| -|pypi|[zappy](https://pypi.org/project/zappy)|1.2723527241421718e-05| -|pypi|[pytest-nunit](https://pypi.org/project/pytest-nunit)|1.2723527241421718e-05| -|pypi|[pytest>=4.4](https://pypi.org/project/pytest>=4.4)|1.2723527241421718e-05| -|pypi|[scikit-misc>=0.1.3](https://pypi.org/project/scikit-misc>=0.1.3)|1.2723527241421718e-05| -|pypi|[scrublet](https://pypi.org/project/scrublet)|1.2723527241421718e-05| -|pypi|[scanorama](https://pypi.org/project/scanorama)|1.2723527241421718e-05| -|pypi|[cugraph>=0.9](https://pypi.org/project/cugraph>=0.9)|1.2723527241421718e-05| -|pypi|[cuml>=0.9](https://pypi.org/project/cuml>=0.9)|1.2723527241421718e-05| -|pypi|[cudf>=0.9](https://pypi.org/project/cudf>=0.9)|1.2723527241421718e-05| -|pypi|[magic-impute>=2.0](https://pypi.org/project/magic-impute>=2.0)|1.2723527241421718e-05| -|pypi|[louvain>=0.6,!=0.6.2](https://pypi.org/project/louvain>=0.6,!=0.6.2)|1.2723527241421718e-05| -|pypi|[leidenalg](https://pypi.org/project/leidenalg)|1.2723527241421718e-05| -|pypi|[harmonypy](https://pypi.org/project/harmonypy)|1.2723527241421718e-05| -|pypi|[sphinx-rtd-theme>=1.0](https://pypi.org/project/sphinx-rtd-theme>=1.0)|1.2723527241421718e-05| -|pypi|[sphinx>=4.4](https://pypi.org/project/sphinx>=4.4)|1.2723527241421718e-05| -|pypi|[bbknn](https://pypi.org/project/bbknn)|1.2723527241421718e-05| -|pypi|[session-info](https://pypi.org/project/session-info)|1.2723527241421718e-05| -|pypi|[umap-learn>=0.3.10](https://pypi.org/project/umap-learn>=0.3.10)|1.2723527241421718e-05| -|pypi|[numba>=0.41.0](https://pypi.org/project/numba>=0.41.0)|1.2723527241421718e-05| -|pypi|[networkx>=2.3](https://pypi.org/project/networkx>=2.3)|1.2723527241421718e-05| -|pypi|[statsmodels>=0.10.0rc2](https://pypi.org/project/statsmodels>=0.10.0rc2)|1.2723527241421718e-05| -|pypi|[scikit-learn>=0.22](https://pypi.org/project/scikit-learn>=0.22)|1.2723527241421718e-05| -|pypi|[flit_core](https://pypi.org/project/flit_core)|1.2723527241421718e-05| -|pypi|[scipy>=1.4](https://pypi.org/project/scipy>=1.4)|1.2723527241421718e-05| -|pypi|[pandas>=1.0](https://pypi.org/project/pandas>=1.0)|1.2723527241421718e-05| -|pypi|[matplotlib>=3.4](https://pypi.org/project/matplotlib>=3.4)|1.2723527241421718e-05| -|pypi|[numpy>=1.17.0](https://pypi.org/project/numpy>=1.17.0)|1.2723527241421718e-05| -|pypi|[anndata>=0.7.4](https://pypi.org/project/anndata>=0.7.4)|1.2723527241421718e-05| -|pypi|[pvfactors](https://pypi.org/project/pvfactors)|1.2645798926507018e-05| -|pypi|[swapper](https://pypi.org/project/swapper)|1.2589595375722542e-05| -|pypi|[jsonfield](https://pypi.org/project/jsonfield)|1.2589595375722542e-05| -|pypi|[django-model-utils](https://pypi.org/project/django-model-utils)|1.2589595375722542e-05| -|pypi|[astroid](https://pypi.org/project/astroid)|1.2589595375722542e-05| -|pypi|[emcee](https://emcee.readthedocs.io)|1.2208092485549188e-05| -|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|1.2185491845582162e-05| -|pypi|[genfire](https://pypi.org/project/genfire)|1.2105380168963984e-05| -|pypi|[asttokens](https://pypi.org/project/asttokens)|1.1823436678928008e-05| -|pypi|[autobahn](https://pypi.org/project/autobahn)|1.1823436678928008e-05| -|pypi|[Automat](https://pypi.org/project/Automat)|1.1823436678928008e-05| -|pypi|[Boruta](https://pypi.org/project/Boruta)|1.1823436678928008e-05| -|pypi|[constantly](https://pypi.org/project/constantly)|1.1823436678928008e-05| -|pypi|[coverage-badge](https://pypi.org/project/coverage-badge)|1.1823436678928008e-05| -|pypi|[cramjam](https://pypi.org/project/cramjam)|1.1823436678928008e-05| -|pypi|[cufflinks](https://pypi.org/project/cufflinks)|1.1823436678928008e-05| -|pypi|[daphne](https://pypi.org/project/daphne)|1.1823436678928008e-05| -|pypi|[Deprecated](https://pypi.org/project/Deprecated)|1.1823436678928008e-05| -|pypi|[django-admin-index](https://pypi.org/project/django-admin-index)|1.1823436678928008e-05| -|pypi|[django-classy-tags](https://pypi.org/project/django-classy-tags)|1.1823436678928008e-05| -|pypi|[django-light](https://pypi.org/project/django-light)|1.1823436678928008e-05| -|pypi|[django-ordered-model](https://pypi.org/project/django-ordered-model)|1.1823436678928008e-05| -|pypi|[dpd-components](https://pypi.org/project/dpd-components)|1.1823436678928008e-05| -|pypi|[executing](https://pypi.org/project/executing)|1.1823436678928008e-05| -|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|1.1823436678928008e-05| -|pypi|[funcy](https://pypi.org/project/funcy)|1.1823436678928008e-05| -|pypi|[greenlet](https://pypi.org/project/greenlet)|1.1823436678928008e-05| -|pypi|[htmlmin](https://pypi.org/project/htmlmin)|1.1823436678928008e-05| -|pypi|[hyperlink](https://pypi.org/project/hyperlink)|1.1823436678928008e-05| -|pypi|[ImageHash](https://pypi.org/project/ImageHash)|1.1823436678928008e-05| -|pypi|[imbalanced-learn](https://pypi.org/project/imbalanced-learn)|1.1823436678928008e-05| -|pypi|[incremental](https://pypi.org/project/incremental)|1.1823436678928008e-05| -|pypi|[jwcrypto](https://pypi.org/project/jwcrypto)|1.1823436678928008e-05| -|pypi|[kmodes](https://pypi.org/project/kmodes)|1.1823436678928008e-05| -|pypi|[lightgbm](https://pypi.org/project/lightgbm)|1.1823436678928008e-05| -|pypi|[Mako](https://pypi.org/project/Mako)|1.1823436678928008e-05| -|pypi|[Markdown](https://pypi.org/project/Markdown)|1.1823436678928008e-05| -|pypi|[missingno](https://pypi.org/project/missingno)|1.1823436678928008e-05| -|pypi|[mlxtend](https://pypi.org/project/mlxtend)|1.1823436678928008e-05| -|pypi|[multimethod](https://pypi.org/project/multimethod)|1.1823436678928008e-05| -|pypi|[pandas-profiling](https://pypi.org/project/pandas-profiling)|1.1823436678928008e-05| -|pypi|[phik](https://pypi.org/project/phik)|1.1823436678928008e-05| -|pypi|[pure-eval](https://pypi.org/project/pure-eval)|1.1823436678928008e-05| -|pypi|[pycaret](https://pypi.org/project/pycaret)|1.1823436678928008e-05| -|pypi|[pyLDAvis](https://pypi.org/project/pyLDAvis)|1.1823436678928008e-05| -|pypi|[pynndescent](https://pypi.org/project/pynndescent)|1.1823436678928008e-05| -|pypi|[pyod](https://pypi.org/project/pyod)|1.1823436678928008e-05| -|pypi|[scikit-plot](https://pypi.org/project/scikit-plot)|1.1823436678928008e-05| -|pypi|[shap](https://pypi.org/project/shap)|1.1823436678928008e-05| -|pypi|[slicer](https://pypi.org/project/slicer)|1.1823436678928008e-05| -|pypi|[tangled-up-in-unicode](https://pypi.org/project/tangled-up-in-unicode)|1.1823436678928008e-05| -|pypi|[textblob](https://pypi.org/project/textblob)|1.1823436678928008e-05| -|pypi|[Twisted](https://pypi.org/project/Twisted)|1.1823436678928008e-05| -|pypi|[txaio](https://pypi.org/project/txaio)|1.1823436678928008e-05| -|pypi|[visions](https://pypi.org/project/visions)|1.1823436678928008e-05| -|pypi|[yellowbrick](https://pypi.org/project/yellowbrick)|1.1823436678928008e-05| -|pypi|[validators](https://pypi.org/project/validators)|1.1802745664739883e-05| -|pypi|[pyu2f](https://pypi.org/project/pyu2f)|1.1777636134727438e-05| -|pypi|[ray](https://github.com/ray-project/ray)|1.1673591040462447e-05| -|pypi|[corner](https://corner.readthedocs.io)|1.1526837324525247e-05| -|pypi|[geopandas](http://geopandas.org)|1.1386355741440714e-05| -|pypi|[cogapp](https://pypi.org/project/cogapp)|1.1360142702312138e-05| -|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|1.1354252683732548e-05| -|pypi|[pydicom](https://pypi.org/project/pydicom)|1.1240710156895126e-05| -|pypi|[lxml-stubs](https://pypi.org/project/lxml-stubs)|1.1113760386560693e-05| -|pypi|[elementpath](https://pypi.org/project/elementpath)|1.1113760386560693e-05| -|pypi|[pyinstrument](https://pypi.org/project/pyinstrument)|1.1097607791951387e-05| -|pypi|[portpicker](https://pypi.org/project/portpicker)|1.106507406069364e-05| -|pypi|[kt-legacy](https://pypi.org/project/kt-legacy)|1.106507406069364e-05| -|pypi|[pymatgen](https://pymatgen.org)|1.0539418079370557e-05| -|pypi|[matchms](https://github.com/matchms/matchms)|1.049132947976885e-05| -|pypi|[pyfftw](https://github.com/pyFFTW/pyFFTW)|1.0476224727329813e-05| -|pypi|[pytest-regressions](https://pypi.org/project/pytest-regressions)|1.0353287405769689e-05| -|pypi|[types-pkg-resources](https://pypi.org/project/types-pkg-resources)|1.0300578034682078e-05| -|pypi|[nox](https://pypi.org/project/nox)|9.924096654324605e-06| -|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|9.924096654324605e-06| -|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|9.924096654324605e-06| -|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|9.924096654324605e-06| -|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|9.924096654324605e-06| -|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|9.63085180715247e-06| -|pypi|[grpcio-status](https://grpc.io)|9.546403943894592e-06| -|pypi|[cpplint](https://github.com/cpplint/cpplint)|9.537572254335332e-06| -|pypi|[contextily](https://github.com/darribas/contextily)|9.537572254335332e-06| -|pypi|[importlib_metadata](https://github.com/python/importlib_metadata)|9.537572254335332e-06| -|pypi|[sphinxcontrib-doxylink](http://sphinxcontrib-doxylink.readthedocs.io/en/stable/)|9.537572254335332e-06| -|pypi|[google-cloud-monitoring](https://github.com/googleapis/python-monitoring)|9.537572254335332e-06| -|pypi|[pyone](http://opennebula.io)|9.537572254335332e-06| -|pypi|[prettytable](https://github.com/jazzband/prettytable)|9.537572254335332e-06| -|pypi|[howfairis](https://github.com/fair-software/howfairis)|9.537572254335332e-06| -|pypi|[atomneb](https://atomneb.github.io/AtomNeb-py/)|9.537572254335332e-06| -|pypi|[easybuild-framework](https://easybuild.io)|9.537572254335261e-06| -|pypi|[easybuild-easyblocks](https://easybuild.io)|9.537572254335261e-06| -|pypi|[easybuild-easyconfigs](https://easybuild.io)|9.537572254335261e-06| -|pypi|[openmdao](http://openmdao.org)|9.537572254335261e-06| -|pypi|[trio-websocket~=0.9](https://pypi.org/project/trio-websocket~=0.9)|9.442196531791907e-06| -|pypi|[trio~=0.17](https://pypi.org/project/trio~=0.17)|9.442196531791907e-06| -|pypi|[urllib3[secure,](https://pypi.org/project/urllib3[secure,)|9.442196531791907e-06| -|pypi|[pytest-isort](https://github.com/stephrdev/pytest-isort)|9.407324783236995e-06| -|pypi|[ipyleaflet](https://github.com/jupyter-widgets/ipyleaflet)|9.299132947976885e-06| -|pypi|[mlflow-dbstore](https://pypi.org/project/mlflow-dbstore)|9.257055423325398e-06| -|pypi|[mlserver-mlflow](https://pypi.org/project/mlserver-mlflow)|9.257055423325398e-06| -|pypi|[mlserver](https://pypi.org/project/mlserver)|9.257055423325398e-06| -|pypi|[pysftp](https://pypi.org/project/pysftp)|9.257055423325398e-06| -|pypi|[azureml-core](https://pypi.org/project/azureml-core)|9.257055423325398e-06| -|pypi|[aliyunstoreplugin](https://pypi.org/project/aliyunstoreplugin)|9.257055423325398e-06| -|pypi|[google-api-python-client](https://github.com/googleapis/google-api-python-client/)|9.018155173817473e-06| -|pypi|[PySide2](https://www.pyside.org)|8.984393063583903e-06| -|pypi|[Keras](https://github.com/keras-team/keras)|8.95953757225437e-06| -|pypi|[tempora](https://pypi.org/project/tempora)|8.867193414366959e-06| -|pypi|[pydotplus](https://pypi.org/project/pydotplus)|8.769841979992482e-06| -|pypi|[fasteners](https://pypi.org/project/fasteners)|8.769841979992482e-06| -|pypi|[xcffib](https://pypi.org/project/xcffib)|8.763538656069363e-06| -|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|8.733228884039166e-06| -|pypi|[percy](https://pypi.org/project/percy)|8.534515272121486e-06| -|pypi|[diskcache](https://pypi.org/project/diskcache)|8.534515272121486e-06| -|pypi|[fire](https://pypi.org/project/fire)|8.534515272121486e-06| -|pypi|[pytest-sugar](https://pypi.org/project/pytest-sugar)|8.534515272121486e-06| -|pypi|[preconditions](https://pypi.org/project/preconditions)|8.534515272121486e-06| -|pypi|[mimesis](https://pypi.org/project/mimesis)|8.534515272121486e-06| -|pypi|[flask-talisman](https://pypi.org/project/flask-talisman)|8.534515272121486e-06| -|pypi|[dash-dangerously-set-inner-html](https://pypi.org/project/dash-dangerously-set-inner-html)|8.534515272121486e-06| -|pypi|[dash-flow-example](https://pypi.org/project/dash-flow-example)|8.534515272121486e-06| -|pypi|[flask-compress](https://pypi.org/project/flask-compress)|8.534515272121486e-06| -|pypi|[falcon](https://pypi.org/project/falcon)|8.430532617671346e-06| -|pypi|[pyramid](https://pypi.org/project/pyramid)|8.430532617671346e-06| -|pypi|[bottle](https://pypi.org/project/bottle)|8.430532617671346e-06| -|pypi|[webtest-aiohttp](https://pypi.org/project/webtest-aiohttp)|8.430532617671346e-06| -|pypi|[webtest](https://pypi.org/project/webtest)|8.430532617671346e-06| -|pypi|[cachecontrol](https://github.com/ionrock/cachecontrol)|8.382317023528452e-06| -|pypi|[google-cloud-firestore](https://github.com/googleapis/python-firestore)|8.382317023528452e-06| -|pypi|[croniter](http://github.com/kiorky/croniter)|8.323699421965318e-06| -|pypi|[pyvista](https://github.com/pyvista/pyvista)|8.323699421965313e-06| -|pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|8.09331131296449e-06| -|pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|8.09331131296449e-06| -|pypi|[types-PyYAML](https://pypi.org/project/types-PyYAML)|8.09331131296449e-06| -|pypi|[testtools](https://pypi.org/project/testtools)|8.012378199834845e-06| -|pypi|[testscenarios](https://pypi.org/project/testscenarios)|8.012378199834845e-06| -|pypi|[python-subunit](https://pypi.org/project/python-subunit)|8.012378199834845e-06| -|pypi|[fixtures](https://pypi.org/project/fixtures)|8.012378199834845e-06| -|pypi|[ddt](https://pypi.org/project/ddt)|8.012378199834845e-06| -|pypi|[obspy](https://www.obspy.org)|7.947976878612763e-06| -|pypi|[scriptcwl](https://github.com/nlesc/scriptcwl)|7.947976878612763e-06| -|pypi|[pymeeus](https://pypi.org/project/pymeeus)|7.789812138728324e-06| -|pypi|[zest.releaser](https://pypi.org/project/zest.releaser)|7.789812138728324e-06| -|pypi|[pytz-deprecation-shim](https://pypi.org/project/pytz-deprecation-shim)|7.789812138728324e-06| -|pypi|[sphinxbootstrap4theme](https://pypi.org/project/sphinxbootstrap4theme)|7.789812138728324e-06| -|pypi|[texttable](https://pypi.org/project/texttable)|7.789812138728324e-06| -|pypi|[zict](https://pypi.org/project/zict)|7.782030108619703e-06| -|pypi|[dask-cudf](https://pypi.org/project/dask-cudf)|7.676582546172282e-06| -|pypi|[cudf](https://pypi.org/project/cudf)|7.676582546172282e-06| -|pypi|[spatialpandas](https://pypi.org/project/spatialpandas)|7.676582546172282e-06| -|pypi|[snappy](https://pypi.org/project/snappy)|7.676582546172282e-06| -|pypi|[rioxarray](https://pypi.org/project/rioxarray)|7.676582546172282e-06| -|pypi|[pytest-benchmark](https://pypi.org/project/pytest-benchmark)|7.676582546172282e-06| -|pypi|[datashape](https://pypi.org/project/datashape)|7.676582546172282e-06| -|pypi|[pywin32-ctypes](https://pypi.org/project/pywin32-ctypes)|7.553757225433525e-06| -|pypi|[jeepney](https://pypi.org/project/jeepney)|7.553757225433525e-06| -|pypi|[SecretStorage](https://pypi.org/project/SecretStorage)|7.553757225433525e-06| -|pypi|[sphinx-argparse-cli](https://pypi.org/project/sphinx-argparse-cli)|7.389414137978373e-06| -|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|7.369942196531822e-06| -|pypi|[mip](https://github.com/coin-or/python-mip)|7.153179190751459e-06| -|pypi|[pytray](https://github.com/muhrin/pytray.git)|7.153179190751459e-06| -|pypi|[neo](https://neuralensemble.org/neo)|7.153179190751459e-06| -|pypi|[genshi](https://github.com/edgewall/genshi)|7.153179190751459e-06| -|pypi|[cairosvg](https://courtbouillon.org/cairosvg)|7.153179190751459e-06| -|pypi|[pystream-protobuf](https://github.com/cartoonist/pystream-protobuf)|7.153179190751459e-06| -|pypi|[multipledispatch](http://github.com/mrocklin/multipledispatch/)|7.153179190751459e-06| -|pypi|[alive-progress](https://github.com/rsalmei/alive-progress)|7.153179190751459e-06| -|pypi|[cspy](https://github.com/torressa/cspy)|7.153179190751459e-06| -|pypi|[pycoeman](https://github.com/NLeSC/pycoeman)|7.153179190751445e-06| -|pypi|[pscript](https://pypi.org/project/pscript)|7.153179190751444e-06| -|pypi|[mpl-sample-data](https://pypi.org/project/mpl-sample-data)|7.153179190751444e-06| -|pypi|[deepdiff](https://pypi.org/project/deepdiff)|7.153179190751444e-06| -|pypi|[mygene](https://github.com/biothings/mygene.py)|7.081647398843974e-06| -|pypi|[minknow-api](https://github.com/nanoporetech/minknow_api)|7.081647398843974e-06| -|pypi|[google-resumable-media](https://github.com/googleapis/google-resumable-media-python)|7.0524301880648025e-06| -|pypi|[transformers](https://pypi.org/project/transformers)|7.0154867431580876e-06| -|pypi|[biothings-client](https://github.com/biothings/biothings_client.py)|7.010830924855467e-06| -|pypi|[resample](https://pypi.org/project/resample)|6.9942196531791914e-06| -|pypi|[boost-histogram](https://pypi.org/project/boost-histogram)|6.9942196531791914e-06| -|pypi|[numba-stats](https://pypi.org/project/numba-stats)|6.9942196531791914e-06| -|pypi|[hashin](https://pypi.org/project/hashin)|6.959984674610579e-06| -|pypi|[jaraco.windows](https://pypi.org/project/jaraco.windows)|6.958641116481877e-06| -|pypi|[singledispatch](https://pypi.org/project/singledispatch)|6.958641116481877e-06| -|pypi|[bson](https://pypi.org/project/bson)|6.871315389450866e-06| -|pypi|[url-normalize](https://pypi.org/project/url-normalize)|6.871315389450866e-06| -|pypi|[cattrs](https://pypi.org/project/cattrs)|6.871315389450866e-06| -|pypi|[cyvcf2](https://github.com/brentp/cyvcf2/)|6.755780346820828e-06| -|pypi|[furl](https://pypi.org/project/furl)|6.557080924855491e-06| -|pypi|[pyodbc](https://pypi.org/project/pyodbc)|6.557080924855491e-06| -|pypi|[pymysql](https://pypi.org/project/pymysql)|6.557080924855491e-06| -|pypi|[pg8000](https://pypi.org/project/pg8000)|6.557080924855491e-06| -|pypi|[psycopg2cffi](https://pypi.org/project/psycopg2cffi)|6.557080924855491e-06| -|pypi|[flexmock](https://pypi.org/project/flexmock)|6.557080924855491e-06| -|pypi|[phonenumbers](https://pypi.org/project/phonenumbers)|6.557080924855491e-06| -|pypi|[pendulum](https://pypi.org/project/pendulum)|6.557080924855491e-06| -|pypi|[intervals](https://pypi.org/project/intervals)|6.557080924855491e-06| -|pypi|[colour](https://pypi.org/project/colour)|6.557080924855491e-06| -|pypi|[pytest-django](https://pypi.org/project/pytest-django)|6.4915101156069355e-06| -|pypi|[twisted](https://pypi.org/project/twisted)|6.4915101156069355e-06| -|pypi|[sybil](https://pypi.org/project/sybil)|6.4915101156069355e-06| -|pypi|[zope.component](https://pypi.org/project/zope.component)|6.4915101156069355e-06| -|pypi|[setuptools-git](https://pypi.org/project/setuptools-git)|6.4915101156069355e-06| -|pypi|[connexion](https://github.com/zalando/connexion)|6.437861271676282e-06| -|pypi|[tvtk](https://pypi.org/project/tvtk)|6.408730677686814e-06| -|pypi|[mayavi](https://pypi.org/project/mayavi)|6.408730677686814e-06| -|pypi|[grpcio-gcp](https://grpc.io)|6.3672131924494935e-06| -|pypi|[js2py](https://github.com/PiotrDabkowski/Js2Py)|6.29479768786131e-06| -|pypi|[Click](https://palletsprojects.com/p/click/)|6.273224607762233e-06| -|pypi|[pytest-trio](https://pypi.org/project/pytest-trio)|6.259670468620974e-06| -|pypi|[anndata](http://anndata.readthedocs.io)|6.040462427745689e-06| -|pypi|[sphinxcontrib_bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|5.960982658959563e-06| -|pypi|[cffconvert](https://github.com/citation-file-format/cff-converter-python)|5.722543352601263e-06| -|pypi|[charset_normalizer](https://github.com/ousret/charset_normalizer)|5.722543352601184e-06| -|pypi|[dateparser](https://github.com/scrapinghub/dateparser)|5.722543352601184e-06| -|pypi|[ogb](https://github.com/snap-stanford/ogb)|5.722543352601184e-06| -|pypi|[thefuzz](https://github.com/seatgeek/thefuzz)|5.722543352601184e-06| -|pypi|[pywavelets](https://github.com/PyWavelets/pywt)|5.722543352601184e-06| -|pypi|[tripoli](https://github.com/DDMAL/tripoli)|5.722543352601184e-06| -|pypi|[sphinx_argparse](https://pypi.org/project/sphinx_argparse)|5.722543352601184e-06| -|pypi|[progressbar](http://code.google.com/p/python-progressbar)|5.722543352601156e-06| -|pypi|[pykeops](http://www.kernel-operations.io/)|5.722543352601156e-06| -|pypi|[ipywidgets-bokeh](https://pypi.org/project/ipywidgets-bokeh)|5.722543352601156e-06| -|pypi|[ipympl](https://pypi.org/project/ipympl)|5.722543352601156e-06| -|pypi|[hvplot](https://pypi.org/project/hvplot)|5.722543352601156e-06| -|pypi|[pymatreader](https://gitlab.com/obob/pymatreader)|5.722543352601103e-06| -|pypi|[itk-segmentation](https://pypi.org/project/itk-segmentation)|5.564151527663088e-06| -|pypi|[itk-registration](https://pypi.org/project/itk-registration)|5.564151527663088e-06| -|pypi|[itk-filtering](https://pypi.org/project/itk-filtering)|5.564151527663088e-06| -|pypi|[itk-io](https://pypi.org/project/itk-io)|5.564151527663088e-06| -|pypi|[itk-numerics](https://pypi.org/project/itk-numerics)|5.564151527663088e-06| -|pypi|[itk-core](https://pypi.org/project/itk-core)|5.564151527663088e-06| -|pypi|[ezdxf](https://pypi.org/project/ezdxf)|5.375064439350232e-06| -|pypi|[glooey](https://pypi.org/project/glooey)|5.375064439350232e-06| -|pypi|[colorlog](https://pypi.org/project/colorlog)|5.375064439350232e-06| -|pypi|[pycollada](https://pypi.org/project/pycollada)|5.375064439350232e-06| -|pypi|[triangle](https://pypi.org/project/triangle)|5.375064439350232e-06| -|pypi|[python-fcl](https://pypi.org/project/python-fcl)|5.375064439350232e-06| -|pypi|[svg.path](https://pypi.org/project/svg.path)|5.375064439350232e-06| -|pypi|[mapbox-earcut](https://pypi.org/project/mapbox-earcut)|5.375064439350232e-06| -|pypi|[xatlas](https://pypi.org/project/xatlas)|5.375064439350232e-06| -|pypi|[humanize](https://github.com/jmoiron/humanize)|5.364884393063594e-06| -|pypi|[localconfig](https://github.com/maxzheng/localconfig)|5.202312138728323e-06| -|pypi|[sagemaker](https://pypi.org/project/sagemaker)|4.9178106936416184e-06| -|pypi|[ftfy](https://pypi.org/project/ftfy)|4.9178106936416184e-06| -|pypi|[fairscale](https://pypi.org/project/fairscale)|4.9178106936416184e-06| -|pypi|[onnxruntime-tools](https://pypi.org/project/onnxruntime-tools)|4.9178106936416184e-06| -|pypi|[onnxruntime](https://pypi.org/project/onnxruntime)|4.9178106936416184e-06| -|pypi|[unidic](https://pypi.org/project/unidic)|4.9178106936416184e-06| -|pypi|[unidic-lite](https://pypi.org/project/unidic-lite)|4.9178106936416184e-06| -|pypi|[ipadic](https://pypi.org/project/ipadic)|4.9178106936416184e-06| -|pypi|[fugashi](https://pypi.org/project/fugashi)|4.9178106936416184e-06| -|pypi|[faiss-cpu](https://pypi.org/project/faiss-cpu)|4.9178106936416184e-06| -|pypi|[rouge-score](https://pypi.org/project/rouge-score)|4.9178106936416184e-06| -|pypi|[sacrebleu](https://pypi.org/project/sacrebleu)|4.9178106936416184e-06| -|pypi|[datasets](https://pypi.org/project/datasets)|4.9178106936416184e-06| -|pypi|[timeout-decorator](https://pypi.org/project/timeout-decorator)|4.9178106936416184e-06| -|pypi|[deepspeed](https://pypi.org/project/deepspeed)|4.9178106936416184e-06| -|pypi|[codecarbon](https://pypi.org/project/codecarbon)|4.9178106936416184e-06| -|pypi|[timm](https://pypi.org/project/timm)|4.9178106936416184e-06| -|pypi|[sigopt](https://pypi.org/project/sigopt)|4.9178106936416184e-06| -|pypi|[optuna](https://pypi.org/project/optuna)|4.9178106936416184e-06| -|pypi|[phonemizer](https://pypi.org/project/phonemizer)|4.9178106936416184e-06| -|pypi|[pyctcdecode](https://pypi.org/project/pyctcdecode)|4.9178106936416184e-06| -|pypi|[torchaudio](https://pypi.org/project/torchaudio)|4.9178106936416184e-06| -|pypi|[sentencepiece](https://pypi.org/project/sentencepiece)|4.9178106936416184e-06| -|pypi|[optax](https://pypi.org/project/optax)|4.9178106936416184e-06| -|pypi|[flax](https://pypi.org/project/flax)|4.9178106936416184e-06| -|pypi|[tf2onnx](https://pypi.org/project/tf2onnx)|4.9178106936416184e-06| -|pypi|[onnxconverter-common](https://pypi.org/project/onnxconverter-common)|4.9178106936416184e-06| -|pypi|[tokenizers](https://pypi.org/project/tokenizers)|4.9178106936416184e-06| -|pypi|[sacremoses](https://pypi.org/project/sacremoses)|4.9178106936416184e-06| -|pypi|[huggingface-hub](https://pypi.org/project/huggingface-hub)|4.9178106936416184e-06| -|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|4.768786127167666e-06| -|pypi|[rpy2](https://rpy2.github.io)|4.768786127167666e-06| -|pypi|[injector](https://github.com/alecthomas/injector)|4.768786127167666e-06| -|pypi|[fhirclient](https://github.com/smart-on-fhir/client-py/)|4.768786127167666e-06| -|pypi|[clize](https://github.com/epsy/clize)|4.768786127167666e-06| -|pypi|[Requests](https://requests.readthedocs.io)|4.768786127167666e-06| -|pypi|[importlib_resources](http://importlib-resources.readthedocs.io/)|4.768786127167666e-06| -|pypi|[twython](https://github.com/ryanmcgrath/twython/tree/master)|4.768786127167666e-06| -|pypi|[python-telegram-bot](https://python-telegram-bot.org/)|4.768786127167666e-06| -|pypi|[ninja](http://ninja-build.org/)|4.768786127167666e-06| -|pypi|[SoundFile](https://github.com/bastibe/PySoundFile)|4.7687861271676305e-06| -|pypi|[SoundCard](https://github.com/bastibe/SoundCard)|4.7687861271676305e-06| -|pypi|[geopy](https://github.com/geopy/geopy)|4.756864161849726e-06| -|pypi|[SALib](http://salib.github.io/SALib/)|4.50867052023119e-06| -|pypi|[mercantile](https://github.com/mapbox/mercantile)|4.359465317919093e-06| -|pypi|[restructuredtext-lint](https://pypi.org/project/restructuredtext-lint)|4.248988439306359e-06| -|pypi|[pytest-datadir](https://pypi.org/project/pytest-datadir)|4.248988439306359e-06| -|pypi|[flake8-use-fstring](https://pypi.org/project/flake8-use-fstring)|4.173113645747316e-06| -|pypi|[flake8-type-annotations](https://pypi.org/project/flake8-type-annotations)|4.173113645747316e-06| -|pypi|[flake8-noqa](https://pypi.org/project/flake8-noqa)|4.173113645747316e-06| -|pypi|[flake8-literal](https://pypi.org/project/flake8-literal)|4.173113645747316e-06| -|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|4.173113645747316e-06| -|pypi|[flake8-datetimez](https://pypi.org/project/flake8-datetimez)|4.173113645747316e-06| -|pypi|[flake8-continuation](https://pypi.org/project/flake8-continuation)|4.173113645747316e-06| -|pypi|[flake8-commas](https://pypi.org/project/flake8-commas)|4.173113645747316e-06| -|pypi|[flake8-annotations](https://pypi.org/project/flake8-annotations)|4.173113645747316e-06| -|pypi|[pytest-freezegun](https://pypi.org/project/pytest-freezegun)|4.111924296102927e-06| -|pypi|[coverage-enable-subprocess](https://pypi.org/project/coverage-enable-subprocess)|4.111924296102927e-06| -|pypi|[sphinx-argparse](https://pypi.org/project/sphinx-argparse)|4.111924296102927e-06| -|pypi|[proselint](https://pypi.org/project/proselint)|4.111924296102927e-06| -|pypi|[pvlib](https://github.com/pvlib/pvlib-python)|4.0875309661437255e-06| -|pypi|[numpy-financial](https://numpy.org/numpy-financial/)|4.0875309661437255e-06| -|pypi|[qimage2ndarray](https://github.com/hmeine/qimage2ndarray)|4.0875309661437255e-06| -|pypi|[eagerpy](https://github.com/jonasrauber/eagerpy)|4.0875309661437255e-06| -|pypi|[PyQT5](https://www.riverbankcomputing.com/software/pyqt/)|4.0875309661437255e-06| -|pypi|[emn_sdk](https://www.energy.gov/eere/energy-materials-network/energy-materials-network)|4.0875309661437255e-06| -|pypi|[pyvcf](https://github.com/jamescasbon/PyVCF)|4.0875309661437255e-06| -|pypi|[plotnine](https://github.com/has2k1/plotnine)|4.0875309661437255e-06| -|pypi|[bed-reader](https://pypi.org/project/bed-reader)|4.0875309661437255e-06| -|pypi|[astropy-sphinx-theme](https://pypi.org/project/astropy-sphinx-theme)|4.0061890999174225e-06| -|pypi|[spacy-alignments](https://pypi.org/project/spacy-alignments)|3.83629599171299e-06| -|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|3.8154181903975465e-06| -|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|3.8154181903975465e-06| -|pypi|[pytest-filter-subpackage](https://pypi.org/project/pytest-filter-subpackage)|3.6419900908340207e-06| -|pypi|[pytest-arraydiff](https://pypi.org/project/pytest-arraydiff)|3.6419900908340207e-06| -|pypi|[pytest-openfiles](https://pypi.org/project/pytest-openfiles)|3.6419900908340207e-06| -|pypi|[pypiwin32](https://pypi.org/project/pypiwin32)|3.5765895953757297e-06| -|pypi|[mypy_extensions](http://www.mypy-lang.org/)|3.5765895953757297e-06| -|pypi|[loguru](https://github.com/Delgan/loguru)|3.5765895953757297e-06| -|pypi|[questionary](https://github.com/tmbo/questionary)|3.5765895953757297e-06| -|pypi|[iPython](https://ipython.org)|3.5765895953757297e-06| -|pypi|[OWSLib](https://geopython.github.io/OWSLib)|3.5765895953757297e-06| -|pypi|[cloudnetpy_qc](https://github.com/actris-cloudnet/cloudnetpy-qc)|3.5765895953757297e-06| -|pypi|[python-box](https://github.com/cdgriffith/Box)|3.5765895953757297e-06| -|pypi|[pywdpa](https://ecology.ghislainv.fr/pywdpa)|3.5765895953757297e-06| -|pypi|[dna-features-viewer](https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer)|3.5765895953757297e-06| -|pypi|[parasail](https://github.com/jeffdaily/parasail-python)|3.5765895953757297e-06| -|pypi|[NanoPlot](https://github.com/wdecoster/NanoPlot)|3.5765895953757225e-06| -|pypi|[NanoStat](https://github.com/wdecoster/nanostat)|3.5765895953757225e-06| -|pypi|[NanoFilt](https://github.com/wdecoster/nanofilt)|3.5765895953757225e-06| -|pypi|[NanoLyse](https://github.com/wdecoster/nanolyse)|3.5765895953757225e-06| -|pypi|[nanoget](https://github.com/wdecoster/nanoget)|3.5765895953757225e-06| -|pypi|[nanomath](https://github.com/wdecoster/nanomath)|3.5765895953757225e-06| -|pypi|[NanoComp](https://github.com/wdecoster/NanoComp)|3.5765895953757225e-06| -|pypi|[nanoQC](https://github.com/wdecoster/nanoQC)|3.5765895953757225e-06| -|pypi|[pymc3-ext](https://github.com/exoplanet-dev/pymc3-ext)|3.1791907514450976e-06| -|pypi|[pygam](https://github.com/dswah/pyGAM)|3.1791907514450976e-06| -|pypi|[grpcio-reflection](https://grpc.io)|3.1791907514450976e-06| -|pypi|[modAL](https://modAL-python.github.io/)|3.1791907514450976e-06| -|pypi|[easywebdav](http://github.com/amnong/easywebdav)|3.1791907514450976e-06| -|pypi|[stanza](https://github.com/stanfordnlp/stanza)|3.1791907514450976e-06| -|pypi|[dca](https://github.com/theislab/dca)|3.1791907514450976e-06| -|pypi|[tinydb](https://github.com/msiemens/tinydb)|3.1632947976878762e-06| -|pypi|[re-assert](https://pypi.org/project/re-assert)|3.081683923013402e-06| -|pypi|[devpi-server](https://pypi.org/project/devpi-server)|3.081683923013402e-06| -|pypi|[devpi-client](https://pypi.org/project/devpi-client)|3.081683923013402e-06| -|pypi|[pyproject-api](https://pypi.org/project/pyproject-api)|3.081683923013402e-06| -|pypi|[sphinx-autodoc-typehints>=1.15.2](https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2)|2.996081591818586e-06| -|pypi|[typing_extensions>=3.10](https://pypi.org/project/typing_extensions>=3.10)|2.996081591818586e-06| -|pypi|[get_version](https://pypi.org/project/get_version)|2.996081591818586e-06| -|pypi|[sphinx>=3.0](https://pypi.org/project/sphinx>=3.0)|2.996081591818586e-06| -|pypi|[sparse](https://github.com/pydata/sparse/)|2.8887839039573246e-06| -|pypi|[pypka](https://pypka.org)|2.8612716763006317e-06| -|pypi|[streamlit](https://streamlit.io)|2.8612716763006317e-06| -|pypi|[yabox](https://github.com/pablormier/yabox)|2.861271676300592e-06| -|pypi|[louvain](https://github.com/vtraag/louvain-igraph)|2.861271676300592e-06| -|pypi|[update_checker](https://github.com/bboe/update_checker)|2.861271676300592e-06| -|pypi|[xgboost](https://github.com/dmlc/xgboost)|2.861271676300592e-06| -|pypi|[h5xplorer](https://github.com/DeepRank/h5xplorer)|2.861271676300592e-06| -|pypi|[sphinx-rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|2.861271676300592e-06| -|pypi|[OpenPIV](https://pypi.org/project/OpenPIV)|2.8612716763005516e-06| -|pypi|[pssmgen](https://github.com/DeepRank/PSSMGen)|2.8612716763005516e-06| -|pypi|[langdetect](https://github.com/Mimino666/langdetect)|2.751930222956254e-06| -|pypi|[CacheControl](https://github.com/ionrock/cachecontrol)|2.7119195833068854e-06| -|pypi|[imgaug](https://github.com/aleju/imgaug)|2.601156069364196e-06| -|pypi|[pythutils](https://github.com/JolleJolles)|2.6011560693641614e-06| -|pypi|[python-crontab](https://gitlab.com/doctormo/python-crontab/)|2.6011560693641614e-06| -|pypi|[cron-descriptor](https://github.com/Salamek/cron-descriptor)|2.6011560693641614e-06| -|pypi|[twiggy](https://github.com/wearpants/twiggy/)|2.601156069364156e-06| -|pypi|[nano-CAT](https://github.com/nlesc-nano/nano-CAT)|2.601156069364156e-06| -|pypi|[data-CAT](https://github.com/nlesc-nano/data-CAT)|2.601156069364156e-06| -|pypi|[scikit_image](https://scikit-image.org)|2.601156069364156e-06| -|pypi|[webdav](https://github.com/kamikaze/webdav)|2.601156069364156e-06| -|pypi|[libfmp](http://audiolabs-erlangen.de/FMP)|2.601156069364156e-06| -|pypi|[Flask-Cors](https://github.com/corydolphin/flask-cors)|2.601156069364156e-06| -|pypi|[python-slugify](https://github.com/un33k/python-slugify)|2.601156069364156e-06| -|pypi|[overrides](https://github.com/mkorpela/overrides)|2.601156069364156e-06| -|pypi|[django-filter](https://github.com/carltongibson/django-filter/tree/main)|2.4241329479768865e-06| -|pypi|[lightkurve](https://docs.lightkurve.org)|2.384393063583833e-06| -|pypi|[k2sc](https://github.com/OxES/k2sc)|2.384393063583833e-06| -|pypi|[cosmospectra](https://github.com/sambit-giri/cosmospectra.git)|2.384393063583833e-06| -|pypi|[lcapy](https://github.com/mph-/lcapy)|2.20097821253896e-06| -|pypi|[healpy](http://github.com/healpy)|2.2009782125389196e-06| -|pypi|[GridDataFormats](https://github.com/MDAnalysis/GridDataFormats)|2.2009782125389196e-06| -|pypi|[mmtf-python](https://github.com/rcsb/mmtf-python.git)|2.2009782125389196e-06| -|pypi|[flat-table](https://github.com/metinsenturk/flat_table)|2.2009782125389196e-06| -|pypi|[tikzplotlib](https://pypi.org/project/tikzplotlib)|2.2009782125389196e-06| -|pypi|[linuxdoc](https://github.com/return42/linuxdoc)|2.2009782125389196e-06| -|pypi|[opencv-contrib-python-headless](https://github.com/skvark/opencv-python)|2.2009782125389196e-06| -|pypi|[tableone](https://github.com/tompollard/tableone)|2.2009782125389196e-06| -|pypi|[entsoe-py](https://github.com/EnergieID/entsoe-py)|2.2009782125389196e-06| -|pypi|[quandl](https://github.com/quandl/quandl-python)|2.2009782125389196e-06| -|pypi|[pybamm](https://github.com/pybamm-team/PyBaMM)|2.2009782125389196e-06| -|pypi|[Ipython](https://ipython.org)|2.2009782125389196e-06| -|pypi|[scikit-spatial](https://github.com/ajhynes7/scikit-spatial)|2.2009782125389196e-06| -|pypi|[gitdb2](https://github.com/gitpython-developers/gitdb)|2.0437654830718628e-06| -|pypi|[nibabel](https://nipy.org/nibabel)|2.0437654830718628e-06| -|pypi|[smmap2](https://github.com/gitpython-developers/smmap)|2.0437654830718628e-06| -|pypi|[sphinx_automodapi](https://github.com/astropy/sphinx-automodapi)|2.0437654830718628e-06| -|pypi|[rdkit-pypi](https://github.com/kuelumbus/rdkit-pypi)|2.0437654830718628e-06| -|pypi|[fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy)|2.0437654830718628e-06| -|pypi|[WTForms](https://wtforms.readthedocs.io/)|1.9830202312138806e-06| -|pypi|[velociraptor](https://github.com/swiftsim/velociraptor-python)|1.9075144508670344e-06| -|pypi|[swiftsimio](https://github.com/swiftsim/swiftsimio)|1.9075144508670344e-06| -|pypi|[iminuit](http://github.com/scikit-hep/iminuit)|1.9075144508670344e-06| -|pypi|[pytest-lazy-fixture](https://github.com/tvorog/pytest-lazy-fixture)|1.888439306358377e-06| -|pypi|[qcg-pilotjob](http://github.com/vecma-project/QCG-PilotJob)|1.7882947976878648e-06| -|pypi|[ymmsl](https://github.com/multiscale/ymmsl-python)|1.7882947976878648e-06| -|pypi|[django-tables2](https://github.com/jieter/django-tables2/)|1.7882947976878648e-06| -|pypi|[keras-tuner](https://github.com/keras-team/keras-tuner)|1.7882947976878648e-06| -|pypi|[flask-cors](https://github.com/corydolphin/flask-cors)|1.7882947976878648e-06| -|pypi|[flask-migrate](https://github.com/miguelgrinberg/flask-migrate)|1.7882947976878648e-06| -|pypi|[flask-sqlalchemy](https://github.com/pallets/flask-sqlalchemy)|1.7882947976878648e-06| -|pypi|[sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils)|1.7882947976878648e-06| -|pypi|[webargs](https://github.com/marshmallow-code/webargs)|1.7882947976878648e-06| -|pypi|[diffeqpy](http://github.com/SciML/diffeqpy)|1.7882947976878648e-06| -|pypi|[pebble](https://github.com/noxdafox/pebble)|1.7882947976878648e-06| -|pypi|[trimesh](https://github.com/mikedh/trimesh)|1.6831009860591657e-06| -|pypi|[meshcut](https://github.com/julienr/meshcut)|1.6831009860591657e-06| -|pypi|[pygmsh](https://pypi.org/project/pygmsh)|1.6831009860591657e-06| -|pypi|[pacopy](https://github.com/sigma-py/pacopy)|1.6831009860591657e-06| -|pypi|[dmsh](https://pypi.org/project/dmsh)|1.6831009860591657e-06| -|pypi|[glvis](https://github.com/glvis/pyglvis)|1.6831009860591657e-06| -|pypi|[tinydb-serialization](https://tinydb.readthedocs.org)|1.5895953757225488e-06| -|pypi|[Flask-Script](http://github.com/smurfix/flask-script)|1.5895953757225488e-06| -|pypi|[flask_bootstrap](http://github.com/mbr/flask-bootstrap)|1.5895953757225488e-06| -|pypi|[flask-wtf](https://github.com/wtforms/flask-wtf/)|1.5895953757225488e-06| -|pypi|[cellmlmanip](https://github.com/ModellingWebLab/cellmlmanip)|1.5895953757225488e-06| -|pypi|[pymunk](http://www.pymunk.org)|1.5895953757225488e-06| -|pypi|[Keras-Applications](https://github.com/keras-team/keras-applications)|1.5895953757225488e-06| -|pypi|[Keras-Preprocessing](https://github.com/keras-team/keras-preprocessing)|1.5895953757225488e-06| -|pypi|[sos-bash](https://github.com/vatlab/SOS)|1.5059324612108377e-06| -|pypi|[sos-matlab](https://github.com/vatlab/SOS)|1.5059324612108377e-06| -|pypi|[sos-sas](https://github.com/vatlab/sos-sas)|1.5059324612108377e-06| -|pypi|[sos-julia](https://github.com/vatlab/SOS)|1.5059324612108377e-06| -|pypi|[sos-javascript](https://github.com/vatlab/SOS)|1.5059324612108377e-06| -|pypi|[sos-r](https://github.com/vatlab/SOS)|1.5059324612108377e-06| -|pypi|[chart-studio](https://plot.ly/python/)|1.5059324612108377e-06| -|pypi|[markov-clustering](https://github.com/guyallard/markov_clustering.git)|1.5059324612108377e-06| -|pypi|[ratelimiter](https://github.com/RazerM/ratelimiter)|1.430635838150296e-06| -|pypi|[yte](https://github.com/koesterlab/yte)|1.430635838150296e-06| -|pypi|[retry](https://github.com/invl/retry)|1.430635838150296e-06| -|pypi|[duecredit](https://github.com/duecredit/duecredit)|1.300578034682078e-06| -|pypi|[GromacsWrapper](https://github.com/Becksteinlab/GromacsWrapper)|1.300578034682078e-06| -|pypi|[heat](https://github.com/helmholtz-analytics/heat)|1.300578034682078e-06| -|pypi|[typing-utils](https://github.com/bojiang/typing_utils)|1.2875722543352642e-06| -|pypi|[PyQt6](https://www.riverbankcomputing.com/software/pyqt/)|1.1921965317919165e-06| -|pypi|[Pyside6](https://www.pyside.org)|1.1921965317919165e-06| -|pypi|[pyqtgraph](http://www.pyqtgraph.org)|1.1921965317919165e-06| -|pypi|[PyQtWebEngine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|1.1921965317919165e-06| -|pypi|[pyrfc3339](https://github.com/kurtraschke/pyRFC3339)|1.1684718208092512e-06| -|pypi|[applaunchservices](https://github.com/impact27/applaunchservices)|1.1445086705202327e-06| -|pypi|[python-lsp-black](https://github.com/python-lsp/python-lsp-black)|1.1445086705202327e-06| -|pypi|[pyls-spyder](https://github.com/spyder-ide/pyls-spyder)|1.1445086705202327e-06| -|pypi|[pyqtwebengine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|1.1445086705202327e-06| -|pypi|[amqp](http://github.com/celery/py-amqp)|1.1048797724101722e-06| -|pypi|[empyre](https://iffgit.fz-juelich.de/empyre/empyre)|1.10048910626948e-06| -|pypi|[ncempy](https://github.com/ercius/openNCEM)|1.1004891062694598e-06| -|pypi|[fspath](https://github.com/return42/fspath)|1.0894842152067666e-06| -|pypi|[sphinxcontrib-spelling](https://github.com/sphinx-contrib/spelling)|9.229908633227715e-07| -|pypi|[yatiml](https://github.com/yatiml/yatiml)|8.852059248554967e-07| -|pypi|[nixio](https://github.com/G-Node/nixpy)|8.852059248554967e-07| -|pypi|[tox-pyenv](https://github.com/samstav/tox-pyenv)|7.868497109826637e-07| -|pypi|[convertdate](https://github.com/fitnr/convertdate)|7.081647398843913e-07| -|pypi|[spacy-transformers](https://spacy.io)|6.587578975668803e-07| -|pypi|[django-datatables-view](https://bitbucket.org/pigletto/django-datatables-view)|6.358381502890215e-07| -|pypi|[django-dirtyfields](https://github.com/romgar/django-dirtyfields)|6.358381502890215e-07| -|pypi|[django-guardian](http://github.com/django-guardian/django-guardian)|6.358381502890215e-07| -|pypi|[django-notifications-hq](http://github.com/django-notifications/django-notifications)|6.358381502890215e-07| -|pypi|[django-rq](https://github.com/rq/django-rq)|6.358381502890215e-07| -|pypi|[django-user-agents](https://github.com/selwin/django-user_agents)|6.358381502890215e-07| -|pypi|[google](http://breakingcode.wordpress.com/)|6.358381502890215e-07| -|pypi|[pytest-param-files](https://pypi.org/project/pytest-param-files)|4.2919075144508476e-07| -|pypi|[scikit-misc](https://github.com/has2k1/scikit-misc)|4.0466556564822647e-07| -|pypi|[django-timezone-field](https://github.com/mfogel/django-timezone-field/)|4.029960107465589e-07| -|pypi|[firebase-admin](https://firebase.google.com/docs/admin/setup/)|4.029960107465589e-07| -|pypi|[sphinx-click](https://github.com/stephenfin/sphinx-click)|3.9342485549133186e-07| -|pypi|[watermark](https://github.com/rasbt/watermark)|2.8326589595375953e-07| -|pypi|[xattr](http://github.com/xattr/xattr)|1.815807025344603e-07| -|pypi|[skia-pathops](https://github.com/fonttools/skia-pathops)|1.815807025344603e-07| -|pypi|[zopfli](https://github.com/fonttools/py-zopfli)|1.815807025344603e-07| -|pypi|[sphinx-toggleprompt](https://github.com/jurasofish/sphinx-toggleprompt)|1.2645798926506953e-07| +|pypi|[numpy](https://www.numpy.org)|0.03433503389896354| +|pypi|[matplotlib](https://matplotlib.org)|0.014927141170386085| +|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.009975448288340467| +|pypi|[pytest](https://docs.pytest.org/en/latest/)|0.007907778054217511| +|pypi|[cycler](https://github.com/matplotlib/cycler)|0.006605534932474608| +|pypi|[sphinx](https://www.sphinx-doc.org/)|0.005163570417434633| +|pypi|[six](https://pypi.org/project/six)|0.005088112536986267| +|pypi|[biopython](https://biopython.org/)|0.004053039927086237| +|pypi|[h5py](http://www.h5py.org)|0.0039924377163693195| +|pypi|[docutils](http://docutils.sourceforge.net/)|0.003605360116434573| +|pypi|[pytest-cov](https://github.com/pytest-dev/pytest-cov)|0.003123330437733351| +|pypi|[colorama](https://pypi.org/project/colorama)|0.002996679591096132| +|pypi|[MarkupSafe](https://palletsprojects.com/p/markupsafe/)|0.0029804931957098353| +|pypi|[lxml](https://pypi.org/project/lxml)|0.00297719496186923| +|pypi|[python-dateutil](https://pypi.org/project/python-dateutil)|0.002874249236735988| +|pypi|[numba](https://numba.pydata.org)|0.002592841877361804| +|pypi|[requests](https://pypi.org/project/requests)|0.0024464921106993782| +|pypi|[pytz](https://pypi.org/project/pytz)|0.00243056943790324| +|pypi|[pyyaml](https://pypi.org/project/pyyaml)|0.0023665400845621497| +|pypi|[pycparser](https://github.com/eliben/pycparser)|0.0020282067065196586| +|pypi|[sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme)|0.0020095230085622686| +|pypi|[scipy](https://www.scipy.org)|0.0019985565482753486| +|pypi|[contextlib2](http://contextlib2.readthedocs.org)|0.0019740591929706132| +|pypi|[packaging](https://pypi.org/project/packaging)|0.0019431336991752688| +|pypi|[importlib-metadata](https://pypi.org/project/importlib-metadata)|0.0017491067121146373| +|pypi|[flake8](https://pypi.org/project/flake8)|0.00170725682323388| +|pypi|[coverage](https://github.com/nedbat/coveragepy)|0.001701601468879362| +|pypi|[PyYAML](https://pypi.org/project/PyYAML)|0.0016610681458322926| +|pypi|[tomli](https://pypi.org/project/tomli)|0.0016257850092868842| +|pypi|[pandas](https://pandas.pydata.org)|0.0015964186009441942| +|pypi|[mypy](https://pypi.org/project/mypy)|0.001386410358590583| +|pypi|[pysam](https://github.com/pysam-developers/pysam)|0.0013860499139414803| +|pypi|[mock](https://pypi.org/project/mock)|0.0013758679272941334| +|pypi|[idna](https://github.com/kjd/idna)|0.0013722420272384128| +|pypi|[certifi](https://pypi.org/project/certifi)|0.0013557745777998105| +|pypi|[Sphinx](https://www.sphinx-doc.org/)|0.0013475386411156566| +|pypi|[sklearn](https://pypi.python.org/pypi/scikit-learn/)|0.001329632394806558| +|pypi|[protobuf](https://pypi.org/project/protobuf)|0.0012755314630039723| +|pypi|[future](https://pypi.org/project/future)|0.0012596786494052182| +|pypi|[click](https://pypi.org/project/click)|0.0012475231161994547| +|pypi|[Babel](https://pypi.org/project/Babel)|0.001215691431796665| +|pypi|[ruamel.yaml](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.0011912143488102443| +|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.0011649850025011361| +|pypi|[pytest-xdist](https://pypi.org/project/pytest-xdist)|0.0011333704585880183| +|pypi|[defusedxml](https://github.com/tiran/defusedxml)|0.0010732230703202734| +|pypi|[pygments](https://pypi.org/project/pygments)|0.0010673443322513263| +|pypi|[chardet](https://pypi.org/project/chardet)|0.0010383126653483712| +|pypi|[isal](https://github.com/pycompression/python-isal)|0.001025114909638554| +|pypi|[wheel](https://pypi.org/project/wheel)|0.0009681764600550026| +|pypi|[docopt](https://pypi.org/project/docopt)|0.0009573461366382111| +|pypi|[joblib](https://joblib.readthedocs.io)|0.0009568826020326367| +|pypi|[nose](https://pypi.org/project/nose)|0.0008568863946821556| +|pypi|[smmap](https://pypi.org/project/smmap)|0.0008531900334658528| +|pypi|[more-itertools](https://github.com/more-itertools/more-itertools)|0.0008386559520540929| +|pypi|[pyparsing](https://pypi.org/project/pyparsing)|0.0008252971675909484| +|pypi|[attrs](https://pypi.org/project/attrs)|0.0008031259150515656| +|pypi|[mpmath](https://pypi.org/project/mpmath)|0.000801119488848297| +|pypi|[Jinja2](https://pypi.org/project/Jinja2)|0.000800794187174928| +|pypi|[itsdangerous](https://palletsprojects.com/p/itsdangerous/)|0.0007999503925123647| +|pypi|[cryptography](https://github.com/pyca/cryptography)|0.0007869074201137029| +|pypi|[pytest-black](https://pypi.org/project/pytest-black)|0.0007644574513828009| +|pypi|[xmltodict](https://github.com/martinblech/xmltodict)|0.0007590408386793929| +|pypi|[cffi](http://cffi.readthedocs.org)|0.0007523718700279258| +|pypi|[wrapt](https://pypi.org/project/wrapt)|0.0007464547014487439| +|pypi|[pillow](https://python-pillow.org)|0.0007082898750348318| +|pypi|[PySocks](https://pypi.org/project/PySocks)|0.0006874024824985347| +|pypi|[pywin32](https://pypi.org/project/pywin32)|0.0006828569569169535| +|pypi|[watchdog](https://pypi.org/project/watchdog)|0.0006823512424975742| +|pypi|[atomicwrites](https://pypi.org/project/atomicwrites)|0.0006676271248038155| +|pypi|[setuptools_scm](https://github.com/pypa/setuptools_scm/)|0.0006561550773210914| +|pypi|[enum34](https://pypi.org/project/enum34)|0.000650072511570503| +|pypi|[ipython](https://pypi.org/project/ipython)|0.0006480233169906701| +|pypi|[brotli](https://pypi.org/project/brotli)|0.0006408575100120244| +|pypi|[twine](https://pypi.org/project/twine)|0.000638464203166059| +|pypi|[toolz](https://github.com/pytoolz/toolz/)|0.0006324779881070101| +|pypi|[mpi4py](https://github.com/mpi4py/mpi4py/)|0.0006291951270158665| +|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.0006267790053583557| +|pypi|[semver](https://github.com/python-semver/python-semver)|0.0006245165718162186| +|pypi|[docutils-stubs](https://pypi.org/project/docutils-stubs)|0.0006238071761345054| +|pypi|[pygraphviz](https://pypi.org/project/pygraphviz)|0.0006208286422394833| +|pypi|[sphinxext-opengraph](https://github.com/wpilibsuite/sphinxext-opengraph)|0.00061293306857163| +|pypi|[msgpack](https://msgpack.org/)|0.000608285249185799| +|pypi|[alabaster](https://pypi.org/project/alabaster)|0.0005967276358337615| +|pypi|[ujson](https://pypi.org/project/ujson)|0.0005926731153208985| +|pypi|[netCDF4](http://github.com/Unidata/netcdf4-python)|0.000591890743507558| +|pypi|[ipywidgets](https://pypi.org/project/ipywidgets)|0.0005900121717688252| +|pypi|[imagesize](https://pypi.org/project/imagesize)|0.0005822260068689227| +|pypi|[snowballstemmer](https://pypi.org/project/snowballstemmer)|0.0005822260068689227| +|pypi|[keras](https://pypi.org/project/keras)|0.000578077126250281| +|pypi|[statsmodels](https://pypi.org/project/statsmodels)|0.0005757174908433794| +|pypi|[numpydoc](https://pypi.org/project/numpydoc)|0.0005724222081952403| +|pypi|[sortedcontainers](https://pypi.org/project/sortedcontainers)|0.0005709056535037952| +|pypi|[cloudpickle](https://pypi.org/project/cloudpickle)|0.0005588979202748989| +|pypi|[pycodestyle](https://pypi.org/project/pycodestyle)|0.0005508144707133262| +|pypi|[setuptools](https://pypi.org/project/setuptools)|0.00054615121690258| +|pypi|[openphi](https://gitlab.com/BioimageInformaticsGroup/openphi)|0.0005421686746987952| +|pypi|[apyori](https://github.com/ymoch/apyori)|0.0005421686746987952| +|pypi|[http](https://github.com/franckcuny/http)|0.0005421686746987952| +|pypi|[llist](https://github.com/ajakubek/python-llist)|0.0005403614457831326| +|pypi|[check-manifest](https://github.com/mgedmin/check-manifest)|0.0005372447594087619| +|pypi|[markdown2](https://github.com/trentm/python-markdown2)|0.0005361528878014535| +|pypi|[olefile](https://www.decalage.info/python/olefileio)|0.0005361528878014535| +|pypi|[sphinx-copybutton](https://github.com/executablebooks/sphinx-copybutton)|0.0005299915716575908| +|pypi|[urllib3](https://pypi.org/project/urllib3)|0.0005264157587362016| +|pypi|[dill](https://github.com/uqfoundation/dill)|0.000525506886207626| +|pypi|[black](https://pypi.org/project/black)|0.0005238315283381097| +|pypi|[win-inet-pton](https://pypi.org/project/win-inet-pton)|0.0005234145191879192| +|pypi|[jinja2](https://pypi.org/project/jinja2)|0.000519068102324283| +|pypi|[SQLAlchemy](https://www.sqlalchemy.org)|0.0005104093907090021| +|pypi|[py](https://pypi.org/project/py)|0.000508908223164955| +|pypi|[appdirs](http://github.com/ActiveState/appdirs)|0.0005039298608444769| +|pypi|[psutil](https://pypi.org/project/psutil)|0.0005017764539983165| +|pypi|[unicodedata2](https://pypi.org/project/unicodedata2)|0.0004995317499309193| +|pypi|[tornado](http://www.tornadoweb.org/)|0.0004939191301162527| +|pypi|[pytest-mypy](https://pypi.org/project/pytest-mypy)|0.0004926265504378866| +|pypi|[sphinx-issues](https://github.com/sloria/sphinx-issues)|0.0004917624041242013| +|pypi|[munkres](https://pypi.org/project/munkres)|0.00048616148660063087| +|pypi|[pyroma](https://github.com/regebro/pyroma)|0.0004859732584259239| +|pypi|[sphinx-gallery](https://pypi.org/project/sphinx-gallery)|0.00048576092928461227| +|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.0004827130644229694| +|pypi|[PyQt5-sip](https://pypi.org/project/PyQt5-sip)|0.00047854385596685377| +|pypi|[pytest-flake8](https://pypi.org/project/pytest-flake8)|0.00047156332354667576| +|pypi|[sphinx-removed-in](https://github.com/MrSenko/sphinx-removed-in)|0.00046973044804241737| +|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.00046879152153420317| +|pypi|[commonmark](https://pypi.org/project/commonmark)|0.00045975792896862174| +|pypi|[rst.linker](https://pypi.org/project/rst.linker)|0.00045632039534226145| +|pypi|[jaraco.packaging](https://pypi.org/project/jaraco.packaging)|0.00045632039534226145| +|pypi|[termcolor](http://pypi.python.org/pypi/termcolor)|0.00045238431627529687| +|pypi|[bmipy](http://csdms.colorado.edu)|0.00045180722891566266| +|pypi|[pulp](https://github.com/coin-or/pulp)|0.0004518072289156626| +|pypi|[pyasn1](https://pypi.org/project/pyasn1)|0.000447487035488207| +|pypi|[sympy](https://pypi.org/project/sympy)|0.00044471923956674626| +|pypi|[pytest-doctestplus](https://pypi.org/project/pytest-doctestplus)|0.0004404602109796653| +|pypi|[toml](https://pypi.org/project/toml)|0.00043761500460807415| +|pypi|[virtualenv](https://virtualenv.pypa.io/)|0.00043755046706991533| +|pypi|[sphinx-astropy](https://pypi.org/project/sphinx-astropy)|0.00043620031424988905| +|pypi|[pysqlite3](https://github.com/coleifer/pysqlite3)|0.0004330120481927711| +|pypi|[pytest-enabler](https://pypi.org/project/pytest-enabler)|0.00042679931100491204| +|pypi|[pytest-checkdocs](https://pypi.org/project/pytest-checkdocs)|0.00042679931100491204| +|pypi|[graphviz](https://pypi.org/project/graphviz)|0.00041283031506921425| +|pypi|[regex](https://github.com/mrabarnett/mrab-regex)|0.0004112912555437086| +|pypi|[lark-parser](https://pypi.org/project/lark-parser)|0.00040696296686746996| +|pypi|[objgraph](https://pypi.org/project/objgraph)|0.0004061248487153894| +|pypi|[cachetools](https://github.com/tkem/cachetools/)|0.000403216193252284| +|pypi|[argcomplete](https://pypi.org/project/argcomplete)|0.00039785231970105184| +|pypi|[typing](https://pypi.org/project/typing)|0.0003960445539024231| +|pypi|[et-xmlfile](https://pypi.org/project/et-xmlfile)|0.00039225071812548553| +|pypi|[python-magic](http://github.com/ahupp/python-magic)|0.000391566265060241| +|pypi|[isort](https://pypi.org/project/isort)|0.00039146263957103223| +|pypi|[python-levenshtein](http://github.com/ztane/python-Levenshtein)|0.00039113597246127365| +|pypi|[Pygments](https://pypi.org/project/Pygments)|0.00038649192506106137| +|pypi|[babel](https://pypi.org/project/babel)|0.0003854164072449969| +|pypi|[pyfaidx](http://mattshirley.com)|0.0003838209982788296| +|pypi|[pluggy](https://pypi.org/project/pluggy)|0.00038268495576706683| +|pypi|[iniconfig](https://pypi.org/project/iniconfig)|0.00037856498026064557| +|pypi|[flatbuffers](https://pypi.org/project/flatbuffers)|0.0003739541494308567| +|pypi|[slack-sdk](https://pypi.org/project/slack-sdk)|0.0003731474454316688| +|pypi|[py-make](https://pypi.org/project/py-make)|0.0003731474454316688| +|pypi|[PyQt5-Qt5](https://pypi.org/project/PyQt5-Qt5)|0.0003718682965864752| +|pypi|[llvmlite](https://pypi.org/project/llvmlite)|0.0003659265159812805| +|pypi|[ruamel.yaml.clib](https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree)|0.00036290211709287393| +|pypi|[conan](https://conan.io)|0.00036144578313253013| +|pypi|[readthedocs-sphinx-search](https://github.com/readthedocs/readthedocs-sphinx-search)|0.00036144578313253013| +|pypi|[ruamel.YAML](https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)|0.00036144578313253013| +|pypi|[udatetime](https://github.com/freach/udatetime)|0.00036144578313253013| +|pypi|[grpcio](https://pypi.org/project/grpcio)|0.00035944485061267285| +|pypi|[multidict](https://pypi.org/project/multidict)|0.0003540979491259669| +|pypi|[pint](https://github.com/hgrecco/pint)|0.0003539586919104992| +|pypi|[locket](https://pypi.org/project/locket)|0.0003525691346487214| +|pypi|[types-setuptools](https://github.com/python/typeshed)|0.0003516203821201967| +|pypi|[futures](https://pypi.org/project/futures)|0.0003495726283393894| +|pypi|[pybedtools](https://github.com/daler/pybedtools)|0.0003476764199655766| +|pypi|[networkx](https://pypi.org/project/networkx)|0.00034715757196684065| +|pypi|[multiprocess](https://github.com/uqfoundation/multiprocess)|0.0003443322296563426| +|pypi|[xmlschema](https://pypi.org/project/xmlschema)|0.00034419414952032893| +|pypi|[codecov](https://pypi.org/project/codecov)|0.00034256332984919895| +|pypi|[pyproj](https://github.com/pyproj4/pyproj)|0.0003390131102316537| +|pypi|[typing_extensions](https://pypi.org/project/typing_extensions)|0.0003373205027103714| +|pypi|[seaborn](https://pypi.org/project/seaborn)|0.00033707732239264624| +|pypi|[shiboken2](https://www.pyside.org)|0.00033707710843373494| +|pypi|[html5lib](https://pypi.org/project/html5lib)|0.0003370151533057934| +|pypi|[frozenlist](https://github.com/aio-libs/frozenlist)|0.0003350184305862606| +|pypi|[dask](https://pypi.org/project/dask)|0.00033274066961726007| +|pypi|[pexpect](https://pypi.org/project/pexpect)|0.0003325002614798056| +|pypi|[mappy](https://github.com/lh3/minimap2)|0.0003296041308089501| +|pypi|[gitdb](https://pypi.org/project/gitdb)|0.0003252384215235783| +|pypi|[more_itertools](https://github.com/more-itertools/more-itertools)|0.00032447973713033954| +|pypi|[argparse](https://pypi.org/project/argparse)|0.0003221190698645483| +|pypi|[process-tests](https://pypi.org/project/process-tests)|0.00031744876952075453| +|pypi|[hunter](https://pypi.org/project/hunter)|0.00031744876952075453| +|pypi|[fields](https://pypi.org/project/fields)|0.00031744876952075453| +|pypi|[palettable](https://jiffyclub.github.io/palettable/)|0.0003156449288964685| +|pypi|[backports-functools-lru-cache](https://pypi.org/project/backports-functools-lru-cache)|0.00031523563484708064| +|pypi|[intervaltree](https://github.com/chaimleib/intervaltree)|0.0003139156626506024| +|pypi|[entrypoints](https://github.com/takluyver/entrypoints)|0.0003061361126353894| +|pypi|[quantities](http://python-quantities.readthedocs.io/)|0.00030463102409638556| +|pypi|[sphinxcontrib-serializinghtml](https://pypi.org/project/sphinxcontrib-serializinghtml)|0.00030412235341611076| +|pypi|[pydot](https://pypi.org/project/pydot)|0.00030193148822005024| +|pypi|[pytest-timeout](https://github.com/pytest-dev/pytest-timeout)|0.00030188312250042416| +|pypi|[nlppln](https://github.com/nlppln/nlppln)|0.0003012048192771084| +|pypi|[wcwidth](https://pypi.org/project/wcwidth)|0.0002998865077645738| +|pypi|[pydata-sphinx-theme](https://pypi.org/project/pydata-sphinx-theme)|0.0002996697086565557| +|pypi|[sphinxcontrib-qthelp](https://pypi.org/project/sphinxcontrib-qthelp)|0.00029886169618719517| +|pypi|[sphinxcontrib-devhelp](https://pypi.org/project/sphinxcontrib-devhelp)|0.00029886169618719517| +|pypi|[sphinxcontrib-htmlhelp](https://pypi.org/project/sphinxcontrib-htmlhelp)|0.0002988616961871951| +|pypi|[sphinxcontrib-jsmath](https://pypi.org/project/sphinxcontrib-jsmath)|0.0002988616961871951| +|pypi|[sphinxcontrib-applehelp](https://pypi.org/project/sphinxcontrib-applehelp)|0.0002988616961871951| +|pypi|[rdflib-jsonld](https://github.com/RDFLib/rdflib-jsonld)|0.0002979216867469879| +|pypi|[scikit-image](https://scikit-image.org)|0.0002953022763800905| +|pypi|[tzdata](https://pypi.org/project/tzdata)|0.0002947500421807956| +|pypi|[async-generator](https://github.com/python-trio/async_generator)|0.00029362759729793515| +|pypi|[sqlparse](https://pypi.org/project/sqlparse)|0.00028943053814082685| +|pypi|[brotlicffi](https://pypi.org/project/brotlicffi)|0.00028583416836748906| +|pypi|[jupyter](https://pypi.org/project/jupyter)|0.00028413975789256477| +|pypi|[greenlet](https://pypi.org/project/greenlet)|0.00028121157968105567| +|pypi|[filelock](https://github.com/tox-dev/py-filelock)|0.00027990574253886384| +|pypi|[rtree](https://github.com/Toblerity/rtree)|0.00027929901423877324| +|pypi|[pycosat](https://pypi.org/project/pycosat)|0.000275565070198148| +|pypi|[pyhocon](http://github.com/chimpler/pyhocon/)|0.0002753872633390706| +|pypi|[astropy](https://pypi.org/project/astropy)|0.0002750918303615278| +|pypi|[stopit](http://pypi.python.org/pypi/stopit)|0.00027467753366406804| +|pypi|[Django](https://pypi.org/project/Django)|0.00027341508613446853| +|pypi|[redis](https://pypi.org/project/redis)|0.00027275415915418874| +|pypi|[umap-learn](http://github.com/lmcinnes/umap)|0.00027229269498300164| +|pypi|[sphinxcontrib-moderncmakedomain](https://github.com/scikit-build/moderncmakedomain)|0.0002710843373493976| +|pypi|[dymos](https://github.com/OpenMDAO/dymos)|0.0002710843373493976| +|pypi|[openmdao](http://openmdao.org)|0.0002710843373493976| +|pypi|[pyDOE2](https://github.com/clicumu/pyDOE2)|0.0002710843373493976| +|pypi|[Cactus](http://github.com/koenbok/Cactus)|0.0002710843373493976| +|pypi|[cigar](https://github.com/brentp/cigar)|0.0002710843373493976| +|pypi|[django-tastypie](https://github.com/django-tastypie/django-tastypie)|0.0002710843373493976| +|pypi|[South](http://south.aeracode.org/)|0.0002710843373493976| +|pypi|[sphinx_bootstrap_theme](https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html)|0.0002710843373493976| +|pypi|[cherrypy](https://www.cherrypy.org)|0.0002710843373493976| +|pypi|[ruamel_yaml_conda](https://pypi.org/project/ruamel_yaml_conda)|0.0002710843373493976| +|pypi|[menuinst](https://github.com/ContinuumIO/menuinst)|0.0002710843373493976| +|pypi|[PyNN](http://neuralensemble.org/PyNN/)|0.0002710843373493976| +|pypi|[lazyarray](http://github.com/NeuralEnsemble/lazyarray/)|0.0002710843373493976| +|pypi|[Flask](https://palletsprojects.com/p/flask)|0.00026806674609633556| +|pypi|[scikit-learn](https://pypi.org/project/scikit-learn)|0.0002655952030197885| +|pypi|[beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/)|0.0002646750192369238| +|pypi|[Pillow](https://pypi.org/project/Pillow)|0.00026427816187691287| +|pypi|[fs](https://pypi.org/project/fs)|0.0002641045390301291| +|pypi|[f90nml](http://github.com/marshallward/f90nml)|0.0002635506732813607| +|pypi|[bump2version](https://pypi.org/project/bump2version)|0.00026056547930853853| +|pypi|[async_generator](https://github.com/python-trio/async_generator)|0.0002602409638554217| +|pypi|[charset-normalizer](https://pypi.org/project/charset-normalizer)|0.0002595164773231884| +|pypi|[types-typed-ast](https://pypi.org/project/types-typed-ast)|0.00025832426604619814| +|pypi|[nb2plots](https://pypi.org/project/nb2plots)|0.00025663835689503594| +|pypi|[Markdown](https://pypi.org/project/Markdown)|0.00025387832321019615| +|pypi|[Werkzeug](https://palletsprojects.com/p/werkzeug/)|0.00025023127354824624| +|pypi|[kiwisolver](https://github.com/nucleic/kiwi)|0.00024952823099439803| +|pypi|[decorator](https://pypi.org/project/decorator)|0.00024823438579295336| +|pypi|[oauthlib](https://pypi.org/project/oauthlib)|0.0002480934092226953| +|pypi|[webencodings](https://pypi.org/project/webencodings)|0.0002474486395554112| +|pypi|[lz4](https://pypi.org/project/lz4)|0.0002426061738341034| +|pypi|[zopfli](https://pypi.org/project/zopfli)|0.0002409418420885164| +|pypi|[pox](https://github.com/uqfoundation/pox)|0.00023998885814752223| +|pypi|[ipaddress](https://pypi.org/project/ipaddress)|0.00023874520744787903| +|pypi|[xattr](https://pypi.org/project/xattr)|0.0002358324236455136| +|pypi|[skia-pathops](https://pypi.org/project/skia-pathops)|0.0002358324236455136| +|pypi|[texext](https://pypi.org/project/texext)|0.0002343292777211977| +|pypi|[tenacity](https://pypi.org/project/tenacity)|0.00023407609762189733| +|pypi|[rsa](https://pypi.org/project/rsa)|0.00023008377068938784| +|pypi|[deap](https://www.github.com/deap)|0.00022949681077250177| +|pypi|[text-unidecode](https://github.com/kmike/text-unidecode/)|0.00022891566265060239| +|pypi|[shortuuid](https://pypi.org/project/shortuuid)|0.0002288397774411394| +|pypi|[inflection](https://github.com/jpvanhal/inflection)|0.00022875| +|pypi|[types-requests](https://pypi.org/project/types-requests)|0.0002268224421445151| +|pypi|[nbformat](https://pypi.org/project/nbformat)|0.00022550718770319758| +|pypi|[PyICU](https://gitlab.pyicu.org/main/pyicu)|0.00022539865343727854| +|pypi|[fastnumbers](https://github.com/SethMMorton/fastnumbers)|0.00022539865343727854| +|pypi|[python](http://www.python.org/2.5)|0.00022267641996557658| +|pypi|[railroad-diagrams](https://pypi.org/project/railroad-diagrams)|0.00022261533229692967| +|pypi|[sphinxcontrib-websupport](https://pypi.org/project/sphinxcontrib-websupport)|0.00022197961771168359| +|pypi|[editdistance](https://www.github.com/roy-ht/editdistance)|0.00021905805038335157| +|pypi|[execnet](https://pypi.org/project/execnet)|0.000218852158133064| +|pypi|[zipp](https://pypi.org/project/zipp)|0.00021855879561180692| +|pypi|[chemparse](https://pypi.org/project/chemparse)|0.0002168674698795181| +|pypi|[jq](http://github.com/mwilliamson/jq.py)|0.0002168674698795181| +|pypi|[python-utils](https://pypi.org/project/python-utils)|0.00021618549078918618| +|pypi|[music21](https://github.com/cuthbertLab/music21)|0.00021588170865279298| +|pypi|[pysoundfile](https://github.com/bastibe/PySoundFile)|0.00021588170865279298| +|pypi|[fonttools](http://github.com/fonttools/fonttools)|0.00021443732783680555| +|pypi|[ipykernel](https://pypi.org/project/ipykernel)|0.00021170791775440033| +|pypi|[libclang](https://pypi.org/project/libclang)|0.00020983849563921953| +|pypi|[gast](https://pypi.org/project/gast)|0.00020983849563921953| +|pypi|[traitlets](https://pypi.org/project/traitlets)|0.00020855466770276125| +|pypi|[pybind11-global](https://github.com/pybind/pybind11)|0.0002075421686746988| +|pypi|[pretty_midi](https://github.com/craffel/pretty-midi)|0.00020700985761226725| +|pypi|[torchsummary](https://github.com/sksq96/pytorch-summary)|0.00020286144578313253| +|pypi|[Biopython](https://pypi.org/project/Biopython)|0.0002026355421686747| +|pypi|[tqdm](https://tqdm.github.io)|0.00020256339685995636| +|pypi|[gdal](https://pypi.org/project/gdal)|0.00020043175069037422| +|pypi|[threadpoolctl](https://pypi.org/project/threadpoolctl)|0.00020009557368777362| +|pypi|[soupsieve](https://pypi.org/project/soupsieve)|0.00020008578890038942| +|pypi|[munch](https://pypi.org/project/munch)|0.0002000053000063916| +|pypi|[pathlib2](https://pypi.org/project/pathlib2)|0.0001935944422852701| +|pypi|[pymbar](http://github.com/choderalab/pymbar)|0.00019324440619621343| +|pypi|[cython](http://cython.org/)|0.00019274658767142217| +|pypi|[uritemplate](https://pypi.org/project/uritemplate)|0.0001912230677857693| +|pypi|[pybtex](https://pypi.org/project/pybtex)|0.0001885864175279418| +|pypi|[glob2](https://pypi.org/project/glob2)|0.00018820481927710845| +|pypi|[nbconvert](https://pypi.org/project/nbconvert)|0.00018757539167448044| +|pypi|[sphinx-autoapi](https://pypi.org/project/sphinx-autoapi)|0.0001875387263339071| +|pypi|[orjson](https://pypi.org/project/orjson)|0.0001865473165715535| +|pypi|[sh](https://pypi.org/project/sh)|0.0001833604689026376| +|pypi|[python-Levenshtein](http://github.com/ztane/python-Levenshtein)|0.00018241863558128617| +|pypi|[gym](https://pypi.org/project/gym)|0.00018238722331185206| +|pypi|[MDAnalysis](https://www.mdanalysis.org)|0.00018209348771032125| +|pypi|[nnde](https://github.com/elwinter/nnde)|0.00018072289156626507| +|pypi|[clawpack](http://www.clawpack.org)|0.00018072289156626507| +|pypi|[wsgiref](http://cheeseshop.python.org/pypi/wsgiref)|0.00018072289156626507| +|pypi|[cellpylib](http://github.com/lantunes/cellpylib)|0.00018072289156626507| +|pypi|[PyCap](https://github.com/redcap-tools/PyCap)|0.00018072289156626507| +|pypi|[tartiflette](https://tartiflette.io)|0.00018072289156626507| +|pypi|[tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp)|0.00018072289156626507| +|pypi|[PyEscape](https://github.com/qaviton/escape)|0.00018072289156626507| +|pypi|[latexcodec](https://github.com/mcmtroffaes/latexcodec)|0.00018012405064675368| +|pypi|[django](https://pypi.org/project/django)|0.0001787037271924721| +|pypi|[jmespath](https://pypi.org/project/jmespath)|0.00017751091435283387| +|pypi|[bleach](https://pypi.org/project/bleach)|0.0001773851694418113| +|pypi|[earthengine-api](http://code.google.com/p/earthengine-api/)|0.00017724745134383688| +|pypi|[tf-estimator-nightly](https://www.tensorflow.org/)|0.00017655414356323033| +|pypi|[pytest-perf](https://pypi.org/project/pytest-perf)|0.00017541944259141248| +|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.00017366505705818002| +|pypi|[backports.zoneinfo](https://pypi.org/project/backports.zoneinfo)|0.00017192781287120315| +|pypi|[fastjsonschema](https://pypi.org/project/fastjsonschema)|0.00017176303635173324| +|pypi|[memory-profiler](https://pypi.org/project/memory-profiler)|0.00017084998251141| +|pypi|[tox](https://pypi.org/project/tox)|0.00016990184492878134| +|pypi|[wmi](https://pypi.org/project/wmi)|0.00016877187408562822| +|pypi|[setproctitle](https://pypi.org/project/setproctitle)|0.00016875207794097096| +|pypi|[pygame](https://www.pygame.org)|0.00016733687998748238| +|pypi|[tensorboard-data-server](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server)|0.00016731044469350633| +|pypi|[tensorboard-plugin-wit](https://whatif-tool.dev)|0.00016731044469350633| +|pypi|[prospector](https://pypi.org/project/prospector)|0.00016609489950649277| +|pypi|[flufl.flake8](https://pypi.org/project/flufl.flake8)|0.00016351119197106505| +|pypi|[pyfakefs](https://pypi.org/project/pyfakefs)|0.00016351119197106505| +|pypi|[pytest-randomly](https://pypi.org/project/pytest-randomly)|0.00016166767474174435| +|pypi|[django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms)|0.00015963855421686747| +|pypi|[aiohttp](https://pypi.org/project/aiohttp)|0.00015936960283913744| +|pypi|[numexpr](https://pypi.org/project/numexpr)|0.00015611505033848953| +|pypi|[argon2-cffi](https://pypi.org/project/argon2-cffi)|0.0001557953461745254| +|pypi|[notebook](https://pypi.org/project/notebook)|0.00015499435454412923| +|pypi|[pywgsim](https://github.com/ialbert/pywgsim)|0.0001549053356282272| +|pypi|[mdtraj](http://mdtraj.org)|0.0001549053356282272| +|pypi|[openmm](https://github.com/rmcgibbo/openmm-cmd)|0.0001549053356282272| +|pypi|[mamba](http://nestorsalceda.github.io/mamba)|0.0001549053356282272| +|pypi|[universal-divergence](https://github.com/slaypni/universal-divergence)|0.0001549053356282272| +|pypi|[drug2ways](https://github.com/drug2ways/drug2ways)|0.0001549053356282272| +|pypi|[matplotlib_venn](https://github.com/konstantint/matplotlib-venn)|0.0001549053356282272| +|pypi|[unittest2](https://pypi.org/project/unittest2)|0.0001534362458584337| +|pypi|[plotly](https://pypi.org/project/plotly)|0.0001527394749385988| +|pypi|[pip](https://pypi.org/project/pip)|0.0001522827219401618| +|pypi|[netcdf4](http://github.com/Unidata/netcdf4-python)|0.00015216734002356126| +|pypi|[freesasa](http://freesasa.github.io/)|0.00015149809765377297| +|pypi|[imageio](https://github.com/imageio/imageio)|0.00015143540467354522| +|pypi|[clickclick](https://codeberg.org/hjacobs/python-clickclick)|0.00015139414802065404| +|pypi|[pytest-forked](https://pypi.org/project/pytest-forked)|0.00015090200225956999| +|pypi|[rich](https://pypi.org/project/rich)|0.00015044921876338583| +|pypi|[jaraco.tidelift](https://github.com/jaraco/jaraco.tidelift)|0.00015017250934586655| +|pypi|[gunicorn](https://pypi.org/project/gunicorn)|0.00014952845620972672| +|pypi|[torch-geometric](https://github.com/pyg-team/pytorch_geometric)|0.00014743183259353202| +|pypi|[xlsxwriter](https://github.com/jmcnamara/XlsxWriter)|0.00014408347676419966| +|pypi|[pyxenon](https://pypi.org/project/pyxenon)|0.00014195180722891565| +|pypi|[jellyfish](http://github.com/jamesturk/jellyfish)|0.00014194961664841182| +|pypi|[google-auth](https://github.com/googleapis/google-auth-library-python)|0.00014170441516354898| +|pypi|[cvxopt](http://cvxopt.org)|0.00014096385542168674| +|pypi|[lockfile](https://pypi.org/project/lockfile)|0.00014066136275484232| +|pypi|[jax](https://pypi.org/project/jax)|0.00013877458362863217| +|pypi|[nrel-pysam](https://nrel-pysam.readthedocs.io)|0.0001385918674698795| +|pypi|[psycopg2](https://pypi.org/project/psycopg2)|0.00013717425032120433| +|pypi|[asgiref](https://pypi.org/project/asgiref)|0.0001364883799703055| +|pypi|[pvrpm](https://github.com/FSEC-Photovoltaics/pvrpm-lcoe)|0.0001355421686746988| +|pypi|[NREL-PySAM-stubs](http://www.github.com/nrel/pysam)|0.0001355421686746988| +|pypi|[beamshapes](https://github.com/thejasvibr/bat_beamshapes.git)|0.0001355421686746988| +|pypi|[equadratures](https://github.com/Effective-Quadratures/equadratures)|0.0001355421686746988| +|pypi|[simframe](https://github.com/stammler/simframe)|0.0001355421686746988| +|pypi|[maxsmooth](https://github.com/htjb/maxsmooth)|0.0001355421686746988| +|pypi|[progressbar](http://code.google.com/p/python-progressbar)|0.0001355421686746988| +|pypi|[gemmi](https://project-gemmi.github.io/)|0.0001355421686746988| +|pypi|[epitopepredict](https://github.com/dmnfarrell/epitopepredict)|0.0001355421686746988| +|pypi|[chevron](https://github.com/noahmorrison/chevron)|0.00013539156626506024| +|pypi|[bz2file](https://github.com/nvawda/bz2file)|0.0001341867469879518| +|pypi|[boto](https://github.com/boto/boto/)|0.0001341867469879518| +|pypi|[grapheme](https://github.com/alvinlindstam/grapheme)|0.00013391837349397591| +|pypi|[about-time](https://github.com/rsalmei/about-time)|0.00013391837349397591| +|pypi|[cartopy](https://scitools.org.uk/cartopy/docs/latest/)|0.00013184165232358003| +|pypi|[sos](https://github.com/vatlab/SoS)|0.0001314616360177552| +|pypi|[jupyter-client](https://jupyter.org)|0.00013128400274007234| +|pypi|[pyjwt](https://pypi.org/project/pyjwt)|0.00013077617191454896| +|pypi|[wasabi](https://pypi.org/project/wasabi)|0.00012904409206204766| +|pypi|[voluptuous](https://pypi.org/project/voluptuous)|0.00012840413080895008| +|pypi|[pyarrow](https://pypi.org/project/pyarrow)|0.000128258159458051| +|pypi|[pandoc](https://pypi.org/project/pandoc)|0.00012820006850143047| +|pypi|[fsspec](https://pypi.org/project/fsspec)|0.00012785232802716608| +|pypi|[sphinx-prompt](https://pypi.org/project/sphinx-prompt)|0.00012784117474608008| +|pypi|[yapf](https://pypi.org/project/yapf)|0.0001276787023871885| +|pypi|[bcrypt](https://pypi.org/project/bcrypt)|0.00012735923000351508| +|pypi|[ipython-genutils](https://pypi.org/project/ipython-genutils)|0.00012712488076768442| +|pypi|[grpcio-tools](https://pypi.org/project/grpcio-tools)|0.00012681071461305548| +|pypi|[sos-notebook](https://github.com/vatlab/SOS)|0.00012675332910589725| +|pypi|[dlinfo](https://code.grasp-open.com/grasp-tools/python-dlinfo)|0.00012632530120481927| +|pypi|[segments](https://github.com/cldf/segments)|0.00012632530120481927| +|pypi|[sqlalchemy](https://pypi.org/project/sqlalchemy)|0.0001251078400779589| +|pypi|[mistune](https://pypi.org/project/mistune)|0.00012365293316425805| +|pypi|[ratelimit](https://pypi.org/project/ratelimit)|0.00012334337349397591| +|pypi|[backoff](https://pypi.org/project/backoff)|0.00012334337349397591| +|pypi|[requests-toolbelt](https://pypi.org/project/requests-toolbelt)|0.00012239770214880806| +|pypi|[KafNafParserPy](https://github.com/cltl/KafNafParserPy)|0.00012048192771084337| +|pypi|[cwl-runner](https://github.com/common-workflow-language/common-workflow-language)|0.00012048192771084337| +|pypi|[voevent-parse](https://github.com/timstaley/voevent-parse)|0.00012048192771084337| +|pypi|[kaggle](https://github.com/Kaggle/kaggle-api)|0.00012048192771084337| +|pypi|[solcore](https://github.com/qpv-research-group/solcore5)|0.00012048192771084337| +|pypi|[tmm](http://pypi.python.org/pypi/tmm)|0.00012048192771084337| +|pypi|[yamlreader](https://github.com/ImmobilienScout24/yamlreader)|0.00012048192771084337| +|pypi|[lda](https://pypi.org/project/lda)|0.00012048192771084337| +|pypi|[pyxdg](http://freedesktop.org/wiki/Software/pyxdg)|0.00012048192771084337| +|pypi|[html2text](https://github.com/Alir3z4/html2text/)|0.00012048192771084337| +|pypi|[metapredict](https://github.com/idptools/metapredict.git)|0.00012048192771084337| +|pypi|[alphaPredict](https://pypi.org/project/alphaPredict)|0.00012048192771084337| +|pypi|[protfasta](https://pypi.org/project/protfasta)|0.00012048192771084337| +|pypi|[theano](http://deeplearning.net/software/theano/)|0.00012048192771084337| +|pypi|[pycairo](https://pycairo.readthedocs.io)|0.00012048192771084337| +|pypi|[pygobject](https://pygobject.readthedocs.io)|0.00012048192771084337| +|pypi|[genicam](https://www.emva.org)|0.00012048192771084337| +|pypi|[requests-oauthlib](https://github.com/requests/requests-oauthlib)|0.00012046412924424975| +|pypi|[pytest-runner](https://pypi.org/project/pytest-runner)|0.00011971861830470065| +|pypi|[s3transfer](https://pypi.org/project/s3transfer)|0.00011935685877312065| +|pypi|[nestle](http://github.com/kbarbary/nestle)|0.00011927710843373494| +|pypi|[photutils](https://github.com/astropy/photutils)|0.00011927710843373494| +|pypi|[prometheus-client](https://pypi.org/project/prometheus-client)|0.0001183552940869932| +|pypi|[wget](http://bitbucket.org/techtonik/python-wget/)|0.00011746987951807229| +|pypi|[tabulate](https://pypi.org/project/tabulate)|0.0001173756530753558| +|pypi|[jsonschema](https://pypi.org/project/jsonschema)|0.00011735002950187367| +|pypi|[tifffile](https://www.lfd.uci.edu/~gohlke/)|0.00011693871638870514| +|pypi|[absl-py](https://pypi.org/project/absl-py)|0.00011690758242592681| +|pypi|[pyupgrade](https://pypi.org/project/pyupgrade)|0.00011582016606457226| +|pypi|[nlesc-CAT](https://github.com/nlesc-nano/CAT)|0.00011367939289626036| +|pypi|[pyerfa](https://pypi.org/project/pyerfa)|0.00011283015711728818| +|pypi|[dash-renderer](https://pypi.org/project/dash-renderer)|0.00011280656159496033| +|pypi|[fluids](https://github.com/CalebBell/fluids)|0.00011251760287904865| +|pypi|[pbr](https://pypi.org/project/pbr)|0.00011145768072289155| +|pypi|[python-dotenv](https://pypi.org/project/python-dotenv)|0.00011122848101625793| +|pypi|[pep517](https://pypi.org/project/pep517)|0.00011000933565100276| +|pypi|[PyWavelets](https://pypi.org/project/PyWavelets)|0.00010946813951828316| +|pypi|[fastprogress](https://github.com/fastai/fastprogress)|0.00010946670695320466| +|pypi|[email-validator](https://pypi.org/project/email-validator)|0.00010882397722759168| +|pypi|[pyopenssl](https://pypi.org/project/pyopenssl)|0.00010874122848111948| +|pypi|[disksurf](https://github.com/richteague/disksurf)|0.00010843373493975904| +|pypi|[gofish](https://github.com/richteague/gofish)|0.00010843373493975904| +|pypi|[simpleitk](http://simpleitk.org/)|0.00010843373493975904| +|pypi|[Cerberus](http://docs.python-cerberus.org)|0.00010843373493975904| +|pypi|[CoolProp](http://www.coolprop.org)|0.00010843373493975904| +|pypi|[snipgenie](https://github.com/dmnfarrell/snipgenie)|0.00010843373493975904| +|pypi|[bcbio_gff](https://github.com/chapmanb/bcbb/tree/master/gff)|0.00010843373493975904| +|pypi|[sisyphe](https://sisyphe.readthedocs.io)|0.00010843373493975904| +|pypi|[pykeops](http://www.kernel-operations.io/)|0.00010843373493975904| +|pypi|[keopscore](http://www.kernel-operations.io/)|0.00010843373493975904| +|pypi|[ansicolors](http://github.com/jonathaneunice/colors/)|0.00010843373493975904| +|pypi|[Unidecode](https://pypi.org/project/Unidecode)|0.00010843373493975903| +|pypi|[jupyter-core](https://pypi.org/project/jupyter-core)|0.00010816635291468834| +|pypi|[igraph](https://igraph.org/python)|0.00010761777108433734| +|pypi|[bottleneck](https://pypi.org/project/bottleneck)|0.00010750013664760912| +|pypi|[pandoc-min](https://github.com/boisgera/pandoc)|0.00010734939759036145| +|pypi|[CommonMark](https://github.com/rtfd/CommonMark-py)|0.00010734939759036145| +|pypi|[shapely](https://github.com/shapely/shapely)|0.0001068045650784742| +|pypi|[cftime](https://pypi.org/project/cftime)|0.00010659449428921172| +|pypi|[backports.functools-lru-cache](https://pypi.org/project/backports.functools-lru-cache)|0.00010627590361445783| +|pypi|[imageio-ffmpeg](https://pypi.org/project/imageio-ffmpeg)|0.00010621760418839992| +|pypi|[websocket-client](https://github.com/websocket-client/websocket-client.git)|0.00010513369787615319| +|pypi|[async-timeout](https://pypi.org/project/async-timeout)|0.00010332421024163106| +|pypi|[xyzservices](https://github.com/geopandas/xyzservices)|0.00010314338891955964| +|pypi|[cwltool](https://github.com/common-workflow-language/cwltool)|0.0001030120481927711| +|pypi|[freezegun](https://pypi.org/project/freezegun)|0.00010237212020767529| +|pypi|[nptyping](https://pypi.org/project/nptyping)|0.00010147562741917898| +|pypi|[imagecodecs](https://pypi.org/project/imagecodecs)|0.00010133459020625362| +|pypi|[brotlipy](https://pypi.org/project/brotlipy)|9.948095949843667e-05| +|pypi|[cymem](https://pypi.org/project/cymem)|9.922481495361393e-05| +|pypi|[murmurhash](https://pypi.org/project/murmurhash)|9.922481495361393e-05| +|pypi|[websockets](https://pypi.org/project/websockets)|9.871122664530301e-05| +|pypi|[edlib](https://github.com/Martinsos/edlib)|9.85761226725082e-05| +|pypi|[bxa](https://github.com/JohannesBuchner/BXA/)|9.85761226725082e-05| +|pypi|[ultranest](https://github.com/JohannesBuchner/ultranest)|9.85761226725082e-05| +|pypi|[panoptes-ui](https://github.com/panoptes-organization/panoptes)|9.85761226725082e-05| +|pypi|[Flask-RESTful](https://www.github.com/flask-restful/flask-restful/)|9.85761226725082e-05| +|pypi|[functools32](https://github.com/MiCHiLU/python-functools32)|9.85761226725082e-05| +|pypi|[filetype](https://github.com/h2non/filetype.py)|9.85761226725082e-05| +|pypi|[gitpython](https://github.com/gitpython-developers/GitPython)|9.820980405137033e-05| +|pypi|[pyOpenSSL](https://pyopenssl.org/)|9.755594994623384e-05| +|pypi|[distro](https://github.com/python-distro/distro)|9.681583476764199e-05| +|pypi|[dnspython](https://pypi.org/project/dnspython)|9.611876075731496e-05| +|pypi|[pandocfilters](https://pypi.org/project/pandocfilters)|9.608050954119436e-05| +|pypi|[tinycss2](https://pypi.org/project/tinycss2)|9.596877007815212e-05| +|pypi|[pylint](https://pypi.org/project/pylint)|9.564998438878588e-05| +|pypi|[pyamg](https://pypi.org/project/pyamg)|9.54566832134151e-05| +|pypi|[widgetsnbextension](https://pypi.org/project/widgetsnbextension)|9.506247621991591e-05| +|pypi|[libsvm](https://github.com/ocampor/libsvm)|9.425091671031955e-05| +|pypi|[webcolors](https://pypi.org/project/webcolors)|9.419906490847272e-05| +|pypi|[build](https://pypi.org/project/build)|9.32268324338652e-05| +|pypi|[tzlocal](https://pypi.org/project/tzlocal)|9.300616394148021e-05| +|pypi|[pyzmq](https://pypi.org/project/pyzmq)|9.290603936777794e-05| +|pypi|[blinker](https://pypi.org/project/blinker)|9.265009618305152e-05| +|pypi|[furo](https://pypi.org/project/furo)|9.222237659761461e-05| +|pypi|[wsaccel](https://pypi.org/project/wsaccel)|9.209811531841652e-05| +|pypi|[markdown](https://pypi.org/project/markdown)|9.151315728920269e-05| +|pypi|[timeout-decorator](https://pypi.org/project/timeout-decorator)|9.132153614457831e-05| +|pypi|[jupyterlab-widgets](https://pypi.org/project/jupyterlab-widgets)|9.081894272981869e-05| +|pypi|[scikit-bio](http://scikit-bio.org)|9.036144578313253e-05| +|pypi|[hdmedians](http://github.com/daleroberts/hdmedians)|9.036144578313253e-05| +|pypi|[gpytorch](https://gpytorch.ai)|9.036144578313253e-05| +|pypi|[berkeleydb](https://pypi.org/project/berkeleydb)|8.995481927710843e-05| +|pypi|[Send2Trash](https://pypi.org/project/Send2Trash)|8.958252860646646e-05| +|pypi|[terminado](https://pypi.org/project/terminado)|8.958252860646646e-05| +|pypi|[retrying](https://pypi.org/project/retrying)|8.947674821355301e-05| +|pypi|[terminaltables](https://github.com/matthewdeanmartin/terminaltables)|8.94578313253012e-05| +|pypi|[dash](https://plotly.com/dash)|8.93235607657325e-05| +|pypi|[oset](https://gitorious.com/sleipnir/python-oset)|8.922939837787268e-05| +|pypi|[invoke](https://pypi.org/project/invoke)|8.836108050965129e-05| +|pypi|[coloredlogs](https://coloredlogs.readthedocs.io)|8.801575334385276e-05| +|pypi|[pybtex-docutils](https://pypi.org/project/pybtex-docutils)|8.771749984869575e-05| +|pypi|[mypy-extensions](https://pypi.org/project/mypy-extensions)|8.761343580087189e-05| +|pypi|[theano-pymc](http://deeplearning.net/software/theano/)|8.667900441892963e-05| +|pypi|[pyglet](https://pypi.org/project/pyglet)|8.59724612736661e-05| +|pypi|[limitedinteraction](https://felixchenier.uqam.ca/limitedinteraction/)|8.59724612736661e-05| +|pypi|[qtconsole](https://pypi.org/project/qtconsole)|8.587237147694355e-05| +|pypi|[patsy](https://pypi.org/project/patsy)|8.53980282787203e-05| +|pypi|[aiosignal](https://github.com/aio-libs/aiosignal)|8.51175964806073e-05| +|pypi|[tensorflow](https://pypi.org/project/tensorflow)|8.504314852694429e-05| +|pypi|[dash-table](https://pypi.org/project/dash-table)|8.485364267892334e-05| +|pypi|[dash-core-components](https://pypi.org/project/dash-core-components)|8.485364267892334e-05| +|pypi|[dash-html-components](https://pypi.org/project/dash-html-components)|8.485364267892334e-05| +|pypi|[gmsh](https://gmsh.info)|8.48334514528703e-05| +|pypi|[pooch](https://pypi.org/project/pooch)|8.462039089852167e-05| +|pypi|[flaky](https://pypi.org/project/flaky)|8.419634086845127e-05| +|pypi|[oaiharvest](http://github.com/bloomonkey/oai-harvest)|8.384251290877796e-05| +|pypi|[contextvars](https://pypi.org/project/contextvars)|8.361160401976572e-05| +|pypi|[yt](https://github.com/yt-project/yt)|8.341056533827618e-05| +|pypi|[21cmFAST](https://github.com/21cmFAST/21cmFAST)|8.341056533827618e-05| +|pypi|[bidict](https://bidict.readthedocs.io)|8.341056533827618e-05| +|pypi|[cached-property](https://github.com/pydanny/cached-property)|8.341056533827618e-05| +|pypi|[sphinx-math-dollar](https://github.com/sympy/sphinx-math-dollar/)|8.341056533827618e-05| +|pypi|[keyring](https://pypi.org/project/keyring)|8.339942331920394e-05| +|pypi|[whoosh](https://pypi.org/project/whoosh)|8.281047108433734e-05| +|pypi|[sphinx-inline-tabs](https://pypi.org/project/sphinx-inline-tabs)|8.255090255718619e-05| +|pypi|[trio](https://pypi.org/project/trio)|8.251464620602642e-05| +|pypi|[bokeh](https://pypi.org/project/bokeh)|8.234493016791757e-05| +|pypi|[coveralls](https://pypi.org/project/coveralls)|8.165442089478441e-05| +|pypi|[qtpy](https://pypi.org/project/qtpy)|8.109164627676152e-05| +|pypi|[boto3](https://github.com/boto/boto3)|8.079076509333158e-05| +|pypi|[typed-ast](https://pypi.org/project/typed-ast)|8.06793792727888e-05| +|pypi|[tomli-w](https://pypi.org/project/tomli-w)|7.999720320487907e-05| +|pypi|[nbclient](https://pypi.org/project/nbclient)|7.91135344981651e-05| +|pypi|[alembic](https://pypi.org/project/alembic)|7.86144578313253e-05| +|pypi|[pickleshare](https://pypi.org/project/pickleshare)|7.772253385102416e-05| +|pypi|[jedi](https://pypi.org/project/jedi)|7.772253385102416e-05| +|pypi|[torch](https://pytorch.org/)|7.770335112539593e-05| +|pypi|[area](https://github.com/scisco/area)|7.74526678141136e-05| +|pypi|[StringDist](https://github.com/obulkin/string-dist)|7.74526678141136e-05| +|pypi|[py-grama](https://github.com/zdelrosario/py_grama)|7.74526678141136e-05| +|pypi|[thermo](https://github.com/CalebBell/thermo)|7.74526678141136e-05| +|pypi|[colorpalette](https://github.com/yoelcortes/colorpalette)|7.74526678141136e-05| +|pypi|[free_properties](https://github.com/yoelcortes/free_properties)|7.74526678141136e-05| +|pypi|[flexsolve](https://github.com/yoelcortes/flexsolve)|7.74526678141136e-05| +|pypi|[Sequoya](https://github.com/benhid/Sequoya)|7.74526678141136e-05| +|pypi|[jmetalpy](https://github.com/jMetal/jMetalPy)|7.74526678141136e-05| +|pypi|[pyMSA](https://github.com/benhid/pyMSA)|7.74526678141136e-05| +|pypi|[pyoai](http://www.infrae.com/download/oaipmh)|7.74526678141136e-05| +|pypi|[prompt-toolkit](https://pypi.org/project/prompt-toolkit)|7.728879891126511e-05| +|pypi|[backcall](https://pypi.org/project/backcall)|7.728879891126511e-05| +|pypi|[dicttoxml](https://pypi.org/project/dicttoxml)|7.714997922725385e-05| +|pypi|[pytest-virtualenv](https://github.com/manahl/pytest-plugins)|7.679888022079867e-05| +|pypi|[jupyterlab-pygments](https://pypi.org/project/jupyterlab-pygments)|7.671734258766596e-05| +|pypi|[debugpy](https://pypi.org/project/debugpy)|7.657848633849347e-05| +|pypi|[nest-asyncio](https://pypi.org/project/nest-asyncio)|7.657848633849347e-05| +|pypi|[dash-table-experiments](https://pypi.org/project/dash-table-experiments)|7.653365040131356e-05| +|pypi|[testpath](https://pypi.org/project/testpath)|7.650172918055462e-05| +|pypi|[distributed](https://distributed.dask.org)|7.644976552110939e-05| +|pypi|[rfc3986](https://pypi.org/project/rfc3986)|7.616882038638084e-05| +|pypi|[uncertainties](https://pypi.org/project/uncertainties)|7.57979589392744e-05| +|pypi|[pygments-github-lexers](https://pypi.org/project/pygments-github-lexers)|7.571188451074769e-05| +|pypi|[localconfig](https://github.com/maxzheng/localconfig)|7.522590361445783e-05| +|pypi|[cron-descriptor](https://github.com/Salamek/cron-descriptor)|7.522590361445783e-05| +|pypi|[python-crontab](https://gitlab.com/doctormo/python-crontab/)|7.522590361445783e-05| +|pypi|[pythutils](https://github.com/JolleJolles)|7.522590361445783e-05| +|pypi|[cupy](https://pypi.org/project/cupy)|7.46864124016605e-05| +|pypi|[netifaces](https://github.com/al45tair/netifaces)|7.466313253012049e-05| +|pypi|[python-socks](https://pypi.org/project/python-socks)|7.438546471600689e-05| +|pypi|[typer](https://pypi.org/project/typer)|7.413796558130117e-05| +|pypi|[sgp4](https://pypi.org/project/sgp4)|7.293564925506809e-05| +|pypi|[skyfield](https://pypi.org/project/skyfield)|7.293564925506809e-05| +|pypi|[pytest-astropy](https://pypi.org/project/pytest-astropy)|7.293564925506809e-05| +|pypi|[pytest-astropy-header](https://pypi.org/project/pytest-astropy-header)|7.293564925506809e-05| +|pypi|[sphinx-changelog](https://pypi.org/project/sphinx-changelog)|7.293564925506809e-05| +|pypi|[asdf](https://pypi.org/project/asdf)|7.293564925506809e-05| +|pypi|[jplephem](https://pypi.org/project/jplephem)|7.293564925506809e-05| +|pypi|[qtawesome](https://github.com/spyder-ide/qtawesome)|7.280550774526678e-05| +|pypi|[SciencePlots](https://github.com/garrettj403/SciencePlots/)|7.228915662650602e-05| +|pypi|[scikit-video](http://scikit-video.org/)|7.228915662650602e-05| +|pypi|[h11](https://github.com/python-hyper/h11)|7.228915662650602e-05| +|pypi|[blosc](http://github.com/blosc/python-blosc)|7.228915662650602e-05| +|pypi|[pyroaring](https://github.com/Ezibenroc/PyRoaringBitMap)|7.228915662650602e-05| +|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|7.206442942402239e-05| +|pypi|[plac](https://pypi.org/project/plac)|7.202591357164195e-05| +|pypi|[Theano](http://deeplearning.net/software/theano/)|7.108433734939759e-05| +|pypi|[paramiko](https://paramiko.org)|7.103508651145939e-05| +|pypi|[pyrsistent](https://pypi.org/project/pyrsistent)|7.042960486743736e-05| +|pypi|[pyfiglet](https://github.com/pwaller/pyfiglet)|7.033925174381738e-05| +|pypi|[markupsafe](https://pypi.org/project/markupsafe)|6.976030884099779e-05| +|pypi|[srsly](https://pypi.org/project/srsly)|6.940553784518021e-05| +|pypi|[readme-renderer](https://pypi.org/project/readme-renderer)|6.88614292835078e-05| +|pypi|[tensorboard](https://github.com/tensorflow/tensorboard)|6.879668923292209e-05| +|pypi|[psycopg2-binary](https://pypi.org/project/psycopg2-binary)|6.873776096120017e-05| +|pypi|[sphinxcontrib-apidoc](https://pypi.org/project/sphinxcontrib-apidoc)|6.845801582445934e-05| +|pypi|[deprecated](https://pypi.org/project/deprecated)|6.824846123624935e-05| +|pypi|[Six](https://pypi.org/project/Six)|6.796471600688467e-05| +|pypi|[bfit](https://github.com/dfujim/bfit)|6.77710843373494e-05| +|pypi|[bdata](https://github.com/dfujim/bdata)|6.77710843373494e-05| +|pypi|[mud-py](https://github.com/dfujim/mudpy)|6.77710843373494e-05| +|pypi|[julia](http://julialang.org)|6.77710843373494e-05| +|pypi|[sphinx-fortran](http://sphinx-fortran.readthedocs.org)|6.77710843373494e-05| +|pypi|[objsize](https://github.com/liran-funaro/objsize)|6.77710843373494e-05| +|pypi|[progressbar2](https://github.com/WoLpH/python-progressbar)|6.729514332860793e-05| +|pypi|[miniball](https://github.com/marmakoide/miniball)|6.70933734939759e-05| +|pypi|[randomgen](https://github.com/bashtage/randomgen)|6.665485471296952e-05| +|pypi|[libcst](https://pypi.org/project/libcst)|6.622286359724613e-05| +|pypi|[dpcontracts](https://pypi.org/project/dpcontracts)|6.622286359724613e-05| +|pypi|[PyLD](https://github.com/digitalbazaar/pyld)|6.575821536144577e-05| +|pypi|[tblib](https://pypi.org/project/tblib)|6.558173226468698e-05| +|pypi|[rdflib](https://github.com/RDFLib/rdflib)|6.552710843373498e-05| +|pypi|[hiredis](https://pypi.org/project/hiredis)|6.43361660929432e-05| +|pypi|[matplotlib-inline](https://pypi.org/project/matplotlib-inline)|6.428475664329213e-05| +|pypi|[google-pasta](https://pypi.org/project/google-pasta)|6.41967268835245e-05| +|pypi|[opt-einsum](https://pypi.org/project/opt-einsum)|6.3519016040151e-05| +|pypi|[keras-preprocessing](https://pypi.org/project/keras-preprocessing)|6.3519016040151e-05| +|pypi|[astunparse](https://pypi.org/project/astunparse)|6.3519016040151e-05| +|pypi|[pkginfo](https://pypi.org/project/pkginfo)|6.315677219360976e-05| +|pypi|[spacy-legacy](https://spacy.io)|6.300098066685345e-05| +|pypi|[ffmpeg](https://github.com/jiashaokun/ffmpeg)|6.295180722891566e-05| +|pypi|[myst-parser](https://pypi.org/project/myst-parser)|6.28165128553404e-05| +|pypi|[autopep8](https://github.com/hhatto/autopep8)|6.278062464833389e-05| +|pypi|[types-backports](https://pypi.org/project/types-backports)|6.277635542168675e-05| +|pypi|[pyasn1-modules](https://pypi.org/project/pyasn1-modules)|6.244732765944571e-05| +|pypi|[pretend](https://pypi.org/project/pretend)|6.234416330869697e-05| +|pypi|[click-plugins](https://pypi.org/project/click-plugins)|6.156107431693461e-05| +|pypi|[mccabe](https://pypi.org/project/mccabe)|6.1532714455126e-05| +|pypi|[anyjson](http://bitbucket.org/runeh/anyjson/)|6.14873286248442e-05| +|pypi|[kombu](https://pypi.org/project/kombu)|6.125420605190783e-05| +|pypi|[isodate](https://github.com/gweis/isodate/)|6.0724397590361455e-05| +|pypi|[pyclipper](https://github.com/greginvm/pyclipper)|6.0240963855421684e-05| +|pypi|[quantiphy](https://quantiphy.readthedocs.io)|6.0240963855421684e-05| +|pypi|[Pint](https://github.com/hgrecco/pint)|6.0240963855421684e-05| +|pypi|[pydub](http://pydub.com)|6.015490533562822e-05| +|pypi|[pyscf](http://www.pyscf.org)|5.989537095751427e-05| +|pypi|[language-data](https://pypi.org/project/language-data)|5.963855421686747e-05| +|pypi|[pyjsparser](https://pypi.org/project/pyjsparser)|5.904216867469879e-05| +|pypi|[sphinx-autodoc-typehints](https://pypi.org/project/sphinx-autodoc-typehints)|5.883804544726168e-05| +|pypi|[traittypes](https://pypi.org/project/traittypes)|5.878408194375727e-05| +|pypi|[geographiclib](https://pypi.org/project/geographiclib)|5.8769664371772805e-05| +|pypi|[fastparquet](https://pypi.org/project/fastparquet)|5.8075023929861045e-05| +|pypi|[curio](https://pypi.org/project/curio)|5.7936332953014384e-05| +|pypi|[sphinx-book-theme](https://pypi.org/project/sphinx-book-theme)|5.7301807228915655e-05| +|pypi|[octave_kernel](http://github.com/Calysto/octave_kernel)|5.7070386810399494e-05| +|pypi|[sos-python](https://github.com/vatlab/SOS)|5.7070386810399494e-05| +|pypi|[sos-ruby](https://github.com/vatlab/SOS)|5.7070386810399494e-05| +|pypi|[dash_core_components](https://pypi.org/project/dash_core_components)|5.7070386810399494e-05| +|pypi|[dash_html_components](https://github.com/plotly/dash-html-components)|5.7070386810399494e-05| +|pypi|[dash_dangerously_set_inner_html](https://pypi.org/project/dash_dangerously_set_inner_html)|5.7070386810399494e-05| +|pypi|[BioPython](https://biopython.org/)|5.7070386810399494e-05| +|pypi|[python-louvain](https://github.com/taynaud/python-louvain)|5.7070386810399494e-05| +|pypi|[torch-sparse](https://github.com/rusty1s/pytorch_sparse)|5.7070386810399494e-05| +|pypi|[torch-scatter](https://github.com/rusty1s/pytorch_scatter)|5.7070386810399494e-05| +|pypi|[torch-cluster](https://github.com/rusty1s/pytorch_cluster)|5.7070386810399494e-05| +|pypi|[torch-spline-conv](https://github.com/rusty1s/pytorch_spline_conv)|5.7070386810399494e-05| +|pypi|[pyflakes](https://pypi.org/project/pyflakes)|5.676163011777659e-05| +|pypi|[pyreadline3](https://pypi.org/project/pyreadline3)|5.6385542168674705e-05| +|pypi|[pyreadline](https://pypi.org/project/pyreadline)|5.6385542168674705e-05| +|pypi|[monotonic](https://pypi.org/project/monotonic)|5.6385542168674705e-05| +|pypi|[sphinx_rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|5.576547569588712e-05| +|pypi|[Flask-Compress](https://pypi.org/project/Flask-Compress)|5.573617478456084e-05| +|pypi|[vine](https://pypi.org/project/vine)|5.562495708110298e-05| +|pypi|[natsort](https://github.com/SethMMorton/natsort)|5.527654400327435e-05| +|pypi|[google-api-core](https://github.com/googleapis/python-api-core)|5.4679326188828995e-05| +|pypi|[nbsphinx](https://nbsphinx.readthedocs.io/)|5.453463639876933e-05| +|pypi|[nanopack](https://github.com/wdecoster/nanopack)|5.421686746987952e-05| +|pypi|[NanoComp](https://github.com/wdecoster/NanoComp)|5.421686746987952e-05| +|pypi|[NanoFilt](https://github.com/wdecoster/nanofilt)|5.421686746987952e-05| +|pypi|[nanoget](https://github.com/wdecoster/nanoget)|5.421686746987952e-05| +|pypi|[NanoLyse](https://github.com/wdecoster/nanolyse)|5.421686746987952e-05| +|pypi|[nanomath](https://github.com/wdecoster/nanomath)|5.421686746987952e-05| +|pypi|[NanoPlot](https://github.com/wdecoster/NanoPlot)|5.421686746987952e-05| +|pypi|[nanoQC](https://github.com/wdecoster/nanoQC)|5.421686746987952e-05| +|pypi|[NanoStat](https://github.com/wdecoster/nanostat)|5.421686746987952e-05| +|pypi|[Python-Deprecated](https://github.com/vrcmarcos/python-deprecated)|5.421686746987952e-05| +|pypi|[dash-bootstrap-components](https://pypi.org/project/dash-bootstrap-components)|5.414973854185245e-05| +|pypi|[pytest-pep8](https://pypi.org/project/pytest-pep8)|5.3590415719114345e-05| +|pypi|[awscrt](https://pypi.org/project/awscrt)|5.3430682085737306e-05| +|pypi|[arviz](https://pypi.org/project/arviz)|5.214963312549519e-05| +|pypi|[surfinpy](https://github.com/symmy596/SurfinPy)|5.163511187607573e-05| +|pypi|[billiard](https://pypi.org/project/billiard)|5.156294099166687e-05| +|pypi|[flake8-polyfill](https://pypi.org/project/flake8-polyfill)|5.140216535904892e-05| +|pypi|[pooch>=1.1.1](https://pypi.org/project/pooch>=1.1.1)|5.1118760757314967e-05| +|pypi|[pandas>=0.25.1](https://pypi.org/project/pandas>=0.25.1)|5.1118760757314967e-05| +|pypi|[numpy>=1.13.3](https://pypi.org/project/numpy>=1.13.3)|5.1118760757314967e-05| +|pypi|[xarray](https://github.com/pydata/xarray)|5.0927742379589106e-05| +|pypi|[pynacl](https://pypi.org/project/pynacl)|5.06234993545611e-05| +|pypi|[celery](http://celeryproject.org)|4.987098418457102e-05| +|pypi|[spglib](http://spglib.github.io/spglib/)|4.9860741509718455e-05| +|pypi|[zarr](https://pypi.org/project/zarr)|4.962593769254373e-05| +|pypi|[ppft](https://github.com/uqfoundation/ppft)|4.95367783350597e-05| +|pypi|[covdefaults](https://pypi.org/project/covdefaults)|4.953207631217221e-05| +|pypi|[ray](https://pypi.org/project/ray)|4.902138372768181e-05| +|pypi|[pyDOE](https://github.com/tisimst/pyDOE)|4.8908132530120484e-05| +|pypi|[numpy-stl](https://pypi.org/project/numpy-stl)|4.883504606661942e-05| +|pypi|[codacy-coverage](https://pypi.org/project/codacy-coverage)|4.879518072289156e-05| +|pypi|[types-urllib3](https://pypi.org/project/types-urllib3)|4.792459319475705e-05| +|pypi|[jupyter-console](https://pypi.org/project/jupyter-console)|4.7699829401726076e-05| +|pypi|[rfc3987](https://pypi.org/project/rfc3987)|4.755386341283501e-05| +|pypi|[trio-websocket~=0.9](https://pypi.org/project/trio-websocket~=0.9)|4.7472289156626515e-05| +|pypi|[trio~=0.17](https://pypi.org/project/trio~=0.17)|4.7472289156626515e-05| +|pypi|[urllib3[secure,](https://pypi.org/project/urllib3[secure,)|4.7472289156626515e-05| +|pypi|[requests-mock](https://requests-mock.readthedocs.io/)|4.742078313253012e-05| +|pypi|[cligj](https://pypi.org/project/cligj)|4.7389076407943256e-05| +|pypi|[pytest-mock](https://pypi.org/project/pytest-mock)|4.7110673262375884e-05| +|pypi|[elasticsearch](https://pypi.org/project/elasticsearch)|4.708220814291649e-05| +|pypi|[python-lsp-server](https://pypi.org/project/python-lsp-server)|4.68433734939759e-05| +|pypi|[waitress](https://pypi.org/project/waitress)|4.59553215339686e-05| +|pypi|[pymongo](https://pypi.org/project/pymongo)|4.590458470869192e-05| +|pypi|[pytest-shutil](https://pypi.org/project/pytest-shutil)|4.5831296275550204e-05| +|pypi|[pytest-fixture-config](https://pypi.org/project/pytest-fixture-config)|4.5831296275550204e-05| +|pypi|[parso](https://pypi.org/project/parso)|4.568424306668449e-05| +|pypi|[pyobjc](https://github.com/ronaldoussoren/pyobjc)|4.557687823253311e-05| +|pypi|[pip-run](https://github.com/jaraco/pip-run)|4.5417062075846805e-05| +|pypi|[docker](https://github.com/docker/docker-py)|4.532193766802751e-05| +|pypi|[cookiecutter](https://pypi.org/project/cookiecutter)|4.5237198795180716e-05| +|pypi|[snakemake](https://snakemake.readthedocs.io)|4.5180722891566266e-05| +|pypi|[connection_pool](https://github.com/zhouyl/ConnectionPool)|4.5180722891566266e-05| +|pypi|[datrie](https://github.com/kmike/datrie)|4.5180722891566266e-05| +|pypi|[toposort](https://pypi.org/project/toposort)|4.5180722891566266e-05| +|pypi|[trackpy](https://github.com/soft-matter/trackpy)|4.5180722891566266e-05| +|pypi|[anyio](https://pypi.org/project/anyio)|4.50509479092842e-05| +|pypi|[simplejson](https://pypi.org/project/simplejson)|4.504702483403e-05| +|pypi|[django-extensions](http://github.com/django-extensions/django-extensions)|4.503506284479087e-05| +|pypi|[djangorestframework](https://www.django-rest-framework.org/)|4.503506284479087e-05| +|pypi|[cdsapi](https://github.com/ecmwf/cdsapi)|4.5025023169601474e-05| +|pypi|[shiboken6](https://pypi.org/project/shiboken6)|4.47289156626506e-05| +|pypi|[colorlover](https://pypi.org/project/colorlover)|4.4641375419031496e-05| +|pypi|[dash-tabulator](https://pypi.org/project/dash-tabulator)|4.4641375419031496e-05| +|pypi|[django-bootstrap4](https://pypi.org/project/django-bootstrap4)|4.4641375419031496e-05| +|pypi|[django-cache-memoize](https://pypi.org/project/django-cache-memoize)|4.4641375419031496e-05| +|pypi|[django-cookie-law](https://pypi.org/project/django-cookie-law)|4.4641375419031496e-05| +|pypi|[django-cors-headers](https://pypi.org/project/django-cors-headers)|4.4641375419031496e-05| +|pypi|[django-currentuser](https://pypi.org/project/django-currentuser)|4.4641375419031496e-05| +|pypi|[django-oauth-toolkit](https://pypi.org/project/django-oauth-toolkit)|4.4641375419031496e-05| +|pypi|[django-plotly-dash](https://pypi.org/project/django-plotly-dash)|4.4641375419031496e-05| +|pypi|[dpd-static-support](https://pypi.org/project/dpd-static-support)|4.4641375419031496e-05| +|pypi|[ipyparallel](https://pypi.org/project/ipyparallel)|4.453166676077288e-05| +|pypi|[appnope](https://pypi.org/project/appnope)|4.453166676077288e-05| +|pypi|[yarl](https://pypi.org/project/yarl)|4.4364862935049356e-05| +|pypi|[dogpile.cache](https://pypi.org/project/dogpile.cache)|4.34497074010327e-05| +|pypi|[diff-match-patch](https://github.com/diff-match-patch-python/diff-match-patch)|4.337349397590361e-05| +|pypi|[primesieve](https://github.com/kimwalisch/primesieve-python)|4.337349397590361e-05| +|pypi|[types-docutils](https://pypi.org/project/types-docutils)|4.314140383761205e-05| +|pypi|[asv](https://pypi.org/project/asv)|4.3096180548215574e-05| +|pypi|[SimpleITK](https://pypi.org/project/SimpleITK)|4.3096180548215574e-05| +|pypi|[kaleido](https://pypi.org/project/kaleido)|4.3096180548215574e-05| +|pypi|[h5netcdf](https://pypi.org/project/h5netcdf)|4.306808906714391e-05| +|pypi|[ase](https://wiki.fysik.dtu.dk/ase)|4.304218910460929e-05| +|pypi|[pydocstyle](https://pypi.org/project/pydocstyle)|4.302115410746513e-05| +|pypi|[stack-data](https://pypi.org/project/stack-data)|4.2653274923967855e-05| +|pypi|[sphinxcontrib-towncrier](https://pypi.org/project/sphinxcontrib-towncrier)|4.259720203038314e-05| +|pypi|[ptyprocess](https://pypi.org/project/ptyprocess)|4.243976759735915e-05| +|pypi|[GitPython](https://pypi.org/project/GitPython)|4.22302277966034e-05| +|pypi|[Brotli](https://pypi.org/project/Brotli)|4.2223076887980065e-05| +|pypi|[monty](https://github.com/materialsvirtuallab/monty)|4.215160883296683e-05| +|pypi|[recommonmark](https://pypi.org/project/recommonmark)|4.179888551584828e-05| +|pypi|[eemont](https://github.com/davemlz/eemont)|4.170528266913809e-05| +|pypi|[ee_extra](https://github.com/r-earthengine/ee_extra)|4.170528266913809e-05| +|pypi|[httplib2shim](https://github.com/GoogleCloudPlatform/httplib2shim)|4.170528266913809e-05| +|pypi|[openpyxl](https://pypi.org/project/openpyxl)|4.1530285345532756e-05| +|pypi|[jaraco.path](https://pypi.org/project/jaraco.path)|4.1429334957696785e-05| +|pypi|[jaraco.envs](https://pypi.org/project/jaraco.envs)|4.1429334957696785e-05| +|pypi|[flake8-2020](https://pypi.org/project/flake8-2020)|4.1429334957696785e-05| +|pypi|[sphinx-favicon](https://pypi.org/project/sphinx-favicon)|4.1429334957696785e-05| +|pypi|[js2py](https://github.com/PiotrDabkowski/Js2Py)|4.115060240963856e-05| +|pypi|[myst-nb](https://pypi.org/project/myst-nb)|4.1036746987951805e-05| +|pypi|[sphinx-bootstrap-theme](https://pypi.org/project/sphinx-bootstrap-theme)|4.0869940752019055e-05| +|pypi|[rasterio](https://pypi.org/project/rasterio)|4.0700059888905446e-05| +|pypi|[path](https://pypi.org/project/path)|4.0381734109007285e-05| +|pypi|[dash_bootstrap_components](https://pypi.org/project/dash_bootstrap_components)|4.0160642570281125e-05| +|pypi|[django_admin_index](https://pypi.org/project/django_admin_index)|4.0160642570281125e-05| +|pypi|[django_plotly_dash](https://pypi.org/project/django_plotly_dash)|4.0160642570281125e-05| +|pypi|[aenum](https://github.com/ethanfurman/aenum)|3.9759036144578314e-05| +|pypi|[uwsgi](https://pypi.org/project/uwsgi)|3.9368742575937555e-05| +|pypi|[pypblib](https://pypi.org/project/pypblib)|3.9361445783132526e-05| +|pypi|[py-aiger-cnf](https://pypi.org/project/py-aiger-cnf)|3.9361445783132526e-05| +|pypi|[tensorflow-io-gcs-filesystem](https://pypi.org/project/tensorflow-io-gcs-filesystem)|3.9199659381825015e-05| +|pypi|[sphinxcontrib-napoleon](https://pypi.org/project/sphinxcontrib-napoleon)|3.90243175612712e-05| +|pypi|[pymatgen](https://pypi.org/project/pymatgen)|3.8091206044878315e-05| +|pypi|[pytest-faulthandler](https://pypi.org/project/pytest-faulthandler)|3.803542323324139e-05| +|pypi|[pytest-localserver](https://pypi.org/project/pytest-localserver)|3.803542323324139e-05| +|pypi|[service-identity](https://pypi.org/project/service-identity)|3.786283267663333e-05| +|pypi|[testfixtures](https://pypi.org/project/testfixtures)|3.780548903689292e-05| +|pypi|[humanfriendly](https://humanfriendly.readthedocs.io)|3.7491785323110616e-05| +|pypi|[Celery](http://celeryproject.org)|3.739094308267553e-05| +|pypi|[DAWG](https://pypi.org/project/DAWG)|3.739094308267553e-05| +|pypi|[django-nose](https://pypi.org/project/django-nose)|3.739094308267553e-05| +|pypi|[MySQL-python](https://pypi.org/project/MySQL-python)|3.739094308267553e-05| +|pypi|[dominate](https://github.com/Knio/dominate/)|3.6978683966635774e-05| +|pypi|[visitor](http://github.com/mbr/visitor)|3.6978683966635774e-05| +|pypi|[keystoneauth1](https://pypi.org/project/keystoneauth1)|3.6379518072289155e-05| +|pypi|[ipdb](https://pypi.org/project/ipdb)|3.6009381484304426e-05| +|pypi|[capturer](https://pypi.org/project/capturer)|3.578313253012048e-05| +|pypi|[httplib2](https://github.com/httplib2/httplib2)|3.542505449751335e-05| +|pypi|[pyfftw](https://pypi.org/project/pyfftw)|3.5321757618710134e-05| +|pypi|[partd](https://pypi.org/project/partd)|3.457636356438401e-05| +|pypi|[sphinxcontrib-bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|3.433317272160642e-05| +|pypi|[werkzeug](https://palletsprojects.com/p/werkzeug/)|3.43133403095841e-05| +|pypi|[pdb2sql](https://github.com/DeepRank/pdb2sql)|3.409511455432721e-05| +|pypi|[PyQt5](https://www.riverbankcomputing.com/software/pyqt/)|3.394729168775945e-05| +|pypi|[pyenchant](https://pyenchant.github.io/pyenchant/)|3.38855421686747e-05| +|pypi|[tensorflow-gpu](https://www.tensorflow.org/)|3.36444221061919e-05| +|pypi|[tablib](https://pypi.org/project/tablib)|3.354668674698795e-05| +|pypi|[stfio](https://pypi.org/project/stfio)|3.354668674698795e-05| +|pypi|[klusta](https://klusta.cortexlab.net)|3.354668674698795e-05| +|pypi|[igor](http://blog.tremily.us/posts/igor/)|3.354668674698795e-05| +|pypi|[mlflow](https://pypi.org/project/mlflow)|3.3378323210196154e-05| +|pypi|[sniffio](https://pypi.org/project/sniffio)|3.310352839931153e-05| +|pypi|[mcfly](https://github.com/NLeSC/mcfly)|3.285870755750274e-05| +|pypi|[tensorflow-cpu](https://pypi.org/project/tensorflow-cpu)|3.257353140051201e-05| +|pypi|[fiona](http://github.com/Toblerity/Fiona)|3.226004993947943e-05| +|pypi|[rfc3986-validator](https://pypi.org/project/rfc3986-validator)|3.2063329850012295e-05| +|pypi|[uri-template](https://pypi.org/project/uri-template)|3.2063329850012295e-05| +|pypi|[rfc3339-validator](https://pypi.org/project/rfc3339-validator)|3.2063329850012295e-05| +|pypi|[jsonpointer](https://pypi.org/project/jsonpointer)|3.2063329850012295e-05| +|pypi|[isoduration](https://pypi.org/project/isoduration)|3.2063329850012295e-05| +|pypi|[fqdn](https://pypi.org/project/fqdn)|3.2063329850012295e-05| +|pypi|[sigtools](https://sigtools.readthedocs.io/)|3.2033132530120474e-05| +|pypi|[vtk](https://vtk.org)|3.202338918746753e-05| +|pypi|[Mako](https://pypi.org/project/Mako)|3.19764299227607e-05| +|pypi|[DiffCapAnalyzer](https://github.com/nicolet5/DiffCapAnalyzer)|3.189227498228207e-05| +|pypi|[asteval](https://pypi.org/project/asteval)|3.189227498228207e-05| +|pypi|[lmfit](https://pypi.org/project/lmfit)|3.189227498228207e-05| +|pypi|[PeakUtils](https://pypi.org/project/PeakUtils)|3.189227498228207e-05| +|pypi|[ua-parser](https://pypi.org/project/ua-parser)|3.189227498228207e-05| +|pypi|[wincertstore](https://pypi.org/project/wincertstore)|3.189227498228207e-05| +|pypi|[ifermi](https://github.com/fermisurfaces/IFermi)|3.189227498228207e-05| +|pypi|[BoltzTraP2](https://pypi.org/project/BoltzTraP2)|3.189227498228207e-05| +|pypi|[meshcut](https://pypi.org/project/meshcut)|3.189227498228207e-05| +|pypi|[trimesh](https://pypi.org/project/trimesh)|3.189227498228207e-05| +|pypi|[databricks-cli](https://pypi.org/project/databricks-cli)|3.158916658369013e-05| +|pypi|[prometheus-flask-exporter](https://pypi.org/project/prometheus-flask-exporter)|3.158916658369013e-05| +|pypi|[querystring-parser](https://pypi.org/project/querystring-parser)|3.158916658369013e-05| +|pypi|[od](https://pypi.org/project/od)|3.131024096385542e-05| +|pypi|[pip-api](https://pypi.org/project/pip-api)|3.1282473253012045e-05| +|pypi|[requirementslib](https://pypi.org/project/requirementslib)|3.1282473253012045e-05| +|pypi|[pipreqs](https://pypi.org/project/pipreqs)|3.1282473253012045e-05| +|pypi|[ordereddict](https://pypi.org/project/ordereddict)|3.1106924115560384e-05| +|pypi|[h2](https://pypi.org/project/h2)|3.082616179001721e-05| +|pypi|[tensorflow-rocm](https://pypi.org/project/tensorflow-rocm)|3.07098265812349e-05| +|pypi|[tensorflow-aarch64](https://pypi.org/project/tensorflow-aarch64)|3.07098265812349e-05| +|pypi|[mkdocs](https://pypi.org/project/mkdocs)|3.070669231548041e-05| +|pypi|[PySide](http://www.pyside.org)|3.067125645438898e-05| +|pypi|[PyQt4](http://www.riverbankcomputing.com/software/pyqt/)|3.067125645438898e-05| +|pypi|[wslink](https://pypi.org/project/wslink)|3.059738955823293e-05| +|pypi|[pybind11](https://github.com/pybind/pybind11)|3.0543975903614466e-05| +|pypi|[pypi-publisher](https://pypi.org/project/pypi-publisher)|3.030583873957368e-05| +|pypi|[opencv-python](https://github.com/skvark/opencv-python)|3.0248261509281232e-05| +|pypi|[nltk](https://www.nltk.org/)|2.9297338406398014e-05| +|pypi|[PyQtWebEngine-Qt5](https://pypi.org/project/PyQtWebEngine-Qt5)|2.9222891566265056e-05| +|pypi|[flask-compress](https://pypi.org/project/flask-compress)|2.91174678943625e-05| +|pypi|[flake8-bugbear](https://pypi.org/project/flake8-bugbear)|2.8922555015982292e-05| +|pypi|[itk](https://itk.org/)|2.8435515750615156e-05| +|pypi|[livereload](https://pypi.org/project/livereload)|2.8283584337349395e-05| +|pypi|[sphinx-autosummary-accessors](https://pypi.org/project/sphinx-autosummary-accessors)|2.814910277715637e-05| +|pypi|[nc-time-axis](https://pypi.org/project/nc-time-axis)|2.814910277715637e-05| +|pypi|[cfgrib](https://pypi.org/project/cfgrib)|2.814910277715637e-05| +|pypi|[pydap](https://pypi.org/project/pydap)|2.814910277715637e-05| +|pypi|[numbagg](https://pypi.org/project/numbagg)|2.814910277715637e-05| +|pypi|[jeepney](https://pypi.org/project/jeepney)|2.8079798262818714e-05| +|pypi|[SecretStorage](https://pypi.org/project/SecretStorage)|2.8079798262818714e-05| +|pypi|[pytest-subtests](https://pypi.org/project/pytest-subtests)|2.79605421686747e-05| +|pypi|[minio](https://github.com/minio/minio-py)|2.7938782155649627e-05| +|pypi|[reno](https://pypi.org/project/reno)|2.792788296041308e-05| +|pypi|[tableone](https://pypi.org/project/tableone)|2.7803521779425393e-05| +|pypi|[EUKulele](https://github.com/AlexanderLabWHOI/EUKulele)|2.7803521779425393e-05| +|pypi|[python-coveralls](http://github.com/z4r/python-coveralls)|2.7803521779425393e-05| +|pypi|[recipy](http://www.recipy.org)|2.7803521779425393e-05| +|pypi|[tinydb](https://github.com/msiemens/tinydb)|2.7803521779425393e-05| +|pypi|[binaryornot](https://github.com/audreyr/binaryornot)|2.7803521779425393e-05| +|pypi|[svn](https://github.com/dsoprea/PySvn)|2.7803521779425393e-05| +|pypi|[scandir](https://pypi.org/project/scandir)|2.7757118446312724e-05| +|pypi|[backports.os](https://pypi.org/project/backports.os)|2.7757118446312724e-05| +|pypi|[cairocffi](https://github.com/Kozea/cairocffi)|2.7618072289156624e-05| +|pypi|[george](https://github.com/dfm/george)|2.7447289156626516e-05| +|pypi|[jaraco.context](https://pypi.org/project/jaraco.context)|2.7320214769926923e-05| +|pypi|[jaraco.functools](https://pypi.org/project/jaraco.functools)|2.7320214769926923e-05| +|pypi|[types-toml](https://pypi.org/project/types-toml)|2.7236102109608225e-05| +|pypi|[tangle](https://github.com/fifman/tangle)|2.710843373493976e-05| +|pypi|[zope.interface](https://pypi.org/project/zope.interface)|2.7027107289879215e-05| +|pypi|[fasttext](https://github.com/facebookresearch/fastText)|2.6837349397590363e-05| +|pypi|[hijri-converter](https://github.com/mhalshehri/hijri-converter)|2.6837349397590363e-05| +|pypi|[meshio](https://github.com/nschloe/meshio)|2.6496756255792406e-05| +|pypi|[smart-open](https://pypi.org/project/smart-open)|2.63493600369775e-05| +|pypi|[setuptools-scm](https://pypi.org/project/setuptools-scm)|2.610757481356347e-05| +|pypi|[siphon](https://pypi.org/project/siphon)|2.6040719481700388e-05| +|pypi|[deprecation](http://deprecation.readthedocs.io/)|2.5816657936092202e-05| +|pypi|[exceptiongroup](https://pypi.org/project/exceptiongroup)|2.5559380378657483e-05| +|pypi|[pydantic](https://pypi.org/project/pydantic)|2.543967410632747e-05| +|pypi|[pyu2f](https://pypi.org/project/pyu2f)|2.5308676846007626e-05| +|pypi|[sphinx_automodapi](https://pypi.org/project/sphinx_automodapi)|2.5217147660409076e-05| +|pypi|[ghp-import](https://pypi.org/project/ghp-import)|2.5082169336687408e-05| +|pypi|[plams](https://www.scm.com/doc/plams/)|2.47062208558721e-05| +|pypi|[wsproto](https://github.com/python-hyper/wsproto/)|2.4578313253012045e-05| +|pypi|[cssselect2](https://pypi.org/project/cssselect2)|2.439759036144578e-05| +|pypi|[ini2toml](https://github.com/abravalheri/ini2toml/)|2.4288060181171334e-05| +|pypi|[sphinx-panels](https://pypi.org/project/sphinx-panels)|2.4249775817956554e-05| +|pypi|[Nano-Utils](https://pypi.org/project/Nano-Utils)|2.419502184562426e-05| +|pypi|[coreapi](https://github.com/core-api/python-client)|2.4096385542168674e-05| +|pypi|[django-chosen](https://github.com/theatlantic/django-chosen)|2.4096385542168674e-05| +|pypi|[django-form-utils](http://bitbucket.org/carljm/django-form-utils/)|2.4096385542168674e-05| +|pypi|[django-gravatar2](https://github.com/twaddington/django-gravatar)|2.4096385542168674e-05| +|pypi|[django-hstore](https://github.com/djangonauts/django-hstore)|2.4096385542168674e-05| +|pypi|[django-ratelimit](https://github.com/jsocol/django-ratelimit)|2.4096385542168674e-05| +|pypi|[django-rest-swagger](https://github.com/marcgibbons/django-rest-swagger)|2.4096385542168674e-05| +|pypi|[django-taggit](https://github.com/jazzband/django-taggit)|2.4096385542168674e-05| +|pypi|[django-taggit-templatetags](http://github.com/feuervogel/django-taggit-templatetags)|2.4096385542168674e-05| +|pypi|[oauth2client](https://pypi.org/project/oauth2client)|2.4096385542168674e-05| +|pypi|[python3-saml](https://pypi.org/project/python3-saml)|2.4096385542168674e-05| +|pypi|[python-social-auth](https://pypi.org/project/python-social-auth)|2.4096385542168674e-05| +|pypi|[rq-scheduler](https://pypi.org/project/rq-scheduler)|2.4096385542168674e-05| +|pypi|[social-auth-app-django](https://pypi.org/project/social-auth-app-django)|2.4096385542168674e-05| +|pypi|[social-auth-core](https://pypi.org/project/social-auth-core)|2.4096385542168674e-05| +|pypi|[sregistry](https://pypi.org/project/sregistry)|2.4096385542168674e-05| +|pypi|[datatable](https://pypi.org/project/datatable)|2.3855421686746988e-05| +|pypi|[PyJWT](https://pypi.org/project/PyJWT)|2.3843899802278773e-05| +|pypi|[python-multipart](https://pypi.org/project/python-multipart)|2.3680014174344434e-05| +|pypi|[scanpy](https://scanpy.readthedocs.io)|2.335687577897801e-05| +|pypi|[OWSLib](https://pypi.org/project/OWSLib)|2.2991020686519667e-05| +|pypi|[rowan](https://github.com/glotzerlab/rowan)|2.2792383820998294e-05| +|pypi|[pygments~=2.7](https://pypi.org/project/pygments~=2.7)|2.2609745433346285e-05| +|pypi|[sphinx~=4.0](https://pypi.org/project/sphinx~=4.0)|2.2609745433346285e-05| +|pypi|[prompt_toolkit](https://pypi.org/project/prompt_toolkit)|2.23644578313253e-05| +|pypi|[PyQt6-Qt6](https://pypi.org/project/PyQt6-Qt6)|2.23644578313253e-05| +|pypi|[PyQt6-sip](https://pypi.org/project/PyQt6-sip)|2.23644578313253e-05| +|pypi|[zmq](https://github.com/zeromq/pyzmq)|2.23644578313253e-05| +|pypi|[galaxy-tool-util](https://github.com/galaxyproject/galaxy)|2.23644578313253e-05| +|pypi|[bagit](https://pypi.org/project/bagit)|2.23644578313253e-05| +|pypi|[prov](https://pypi.org/project/prov)|2.23644578313253e-05| +|pypi|[schema-salad](https://pypi.org/project/schema-salad)|2.23644578313253e-05| +|pypi|[shellescape](https://pypi.org/project/shellescape)|2.23644578313253e-05| +|pypi|[stestr](https://pypi.org/project/stestr)|2.2352530120481924e-05| +|pypi|[av](https://pypi.org/project/av)|2.2272865148205516e-05| +|pypi|[gcsfs](https://pypi.org/project/gcsfs)|2.2201051885560816e-05| +|pypi|[distlib](https://pypi.org/project/distlib)|2.2089331733171607e-05| +|pypi|[stevedore](https://pypi.org/project/stevedore)|2.2024130808950092e-05| +|pypi|[linkify-it-py](https://pypi.org/project/linkify-it-py)|2.1936211214716007e-05| +|pypi|[autocommand](https://pypi.org/project/autocommand)|2.1825536747779322e-05| +|pypi|[oslo.utils](https://pypi.org/project/oslo.utils)|2.163686746987952e-05| +|pypi|[oslo.config](https://pypi.org/project/oslo.config)|2.163686746987952e-05| +|pypi|[docker-registry-client](https://github.com/yodle/docker-registry-client)|2.146987951807229e-05| +|pypi|[passlib](https://pypi.org/project/passlib)|2.142097802976612e-05| +|pypi|[torchvision](https://github.com/pytorch/vision)|2.1366467149005763e-05| +|pypi|[types-python-dateutil](https://pypi.org/project/types-python-dateutil)|2.122383877053766e-05| +|pypi|[mrcfile](https://github.com/ccpem/mrcfile)|2.1133359004816678e-05| +|pypi|[pymdown-extensions](https://github.com/facelessuser/pymdown-extensions)|2.1084337349397593e-05| +|pypi|[prefect](https://pypi.org/project/prefect)|2.1048901488306166e-05| +|pypi|[twisted](https://pypi.org/project/twisted)|2.1031084898600613e-05| +|pypi|[google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib)|2.099096509443782e-05| +|pypi|[zstandard](https://pypi.org/project/zstandard)|2.0940587349397586e-05| +|pypi|[platformdirs](https://pypi.org/project/platformdirs)|2.0893208141401658e-05| +|pypi|[rq](https://github.com/nvie/rq/)|2.0885542168674702e-05| +|pypi|[scanpydoc](https://github.com/theislab/scanpydoc/)|2.085972924374285e-05| +|pypi|[python-snappy](https://pypi.org/project/python-snappy)|2.08007640317367e-05| +|pypi|[spacy](https://pypi.org/project/spacy)|2.067687033989142e-05| +|pypi|[breathe](https://github.com/michaeljones/breathe)|2.045783132530128e-05| +|pypi|[hacking](https://pypi.org/project/hacking)|2.0328227194492253e-05| +|pypi|[panel](https://pypi.org/project/panel)|2.007299664076052e-05| +|pypi|[raven](https://pypi.org/project/raven)|2.0043441371118274e-05| +|pypi|[autobahn](https://pypi.org/project/autobahn)|1.9971266411573092e-05| +|pypi|[constantly](https://pypi.org/project/constantly)|1.9971266411573092e-05| +|pypi|[hyperlink](https://pypi.org/project/hyperlink)|1.9971266411573092e-05| +|pypi|[incremental](https://pypi.org/project/incremental)|1.9971266411573092e-05| +|pypi|[txaio](https://pypi.org/project/txaio)|1.9971266411573092e-05| +|pypi|[mkdocs-material-extensions](https://pypi.org/project/mkdocs-material-extensions)|1.9879518072289157e-05| +|pypi|[mkl](https://pypi.org/project/mkl)|1.9879518072289157e-05| +|pypi|[towncrier](https://pypi.org/project/towncrier)|1.9867439556168666e-05| +|pypi|[httpx](https://pypi.org/project/httpx)|1.9846107117545814e-05| +|pypi|[pathos](https://github.com/uqfoundation/pathos)|1.9719313287704507e-05| +|pypi|[pyqt5](https://www.riverbankcomputing.com/software/pyqt/)|1.950482472877938e-05| +|pypi|[google-crc32c](https://github.com/googleapis/python-crc32c)|1.9372397498988373e-05| +|pypi|[mwoauth](https://pypi.org/project/mwoauth)|1.93631669535284e-05| +|pypi|[wikidataintegrator](https://pypi.org/project/wikidataintegrator)|1.93631669535284e-05| +|pypi|[dash-extensions](https://pypi.org/project/dash-extensions)|1.93631669535284e-05| +|pypi|[Flask-Caching](https://pypi.org/project/Flask-Caching)|1.93631669535284e-05| +|pypi|[ipaddr](https://pypi.org/project/ipaddr)|1.93631669535284e-05| +|pypi|[progress](https://pypi.org/project/progress)|1.93631669535284e-05| +|pypi|[pytoml](https://pypi.org/project/pytoml)|1.93631669535284e-05| +|pypi|[sphinx-autobuild](https://github.com/executablebooks/sphinx-autobuild)|1.9282987540223007e-05| +|pypi|[jupyterlab](https://pypi.org/project/jupyterlab)|1.9266351118760757e-05| +|pypi|[autograd](https://github.com/HIPS/autograd)|1.9123837661062394e-05| +|pypi|[numkit](https://pypi.org/project/numkit)|1.9052265399626677e-05| +|pypi|[oslo.serialization](https://pypi.org/project/oslo.serialization)|1.901277108433735e-05| +|pypi|[oslo.i18n](https://pypi.org/project/oslo.i18n)|1.901277108433735e-05| +|pypi|[debtcollector](https://pypi.org/project/debtcollector)|1.901277108433735e-05| +|pypi|[folium](https://pypi.org/project/folium)|1.8942018072289158e-05| +|pypi|[sphinxext-rediraffe](https://pypi.org/project/sphinxext-rediraffe)|1.8925834755572082e-05| +|pypi|[gensim](https://pypi.org/project/gensim)|1.849790543520008e-05| +|pypi|[googleapis-common-protos](https://github.com/googleapis/python-api-common-protos)|1.8433137247954834e-05| +|pypi|[cchardet](https://github.com/PyYoshi/cChardet)|1.8379177085701295e-05| +|pypi|[asynctest](https://github.com/Martiusweb/asynctest/)|1.8379177085701295e-05| +|pypi|[idna-ssl](https://github.com/aio-libs/idna-ssl)|1.8379177085701295e-05| +|pypi|[configparser](https://pypi.org/project/configparser)|1.8229382771728658e-05| +|pypi|[pickydict](https://github.com/florian-huber/pickydict)|1.819800942902045e-05| +|pypi|[pyteomics](http://pyteomics.readthedocs.io)|1.8198009429020435e-05| +|pypi|[pathtools](https://pypi.org/project/pathtools)|1.8128110899195236e-05| +|pypi|[flask](https://palletsprojects.com/p/flask)|1.8106926499550114e-05| +|pypi|[unyt](https://github.com/yt-project/unyt)|1.8072289156626512e-05| +|pypi|[pip-tools](https://pypi.org/project/pip-tools)|1.7909985398955363e-05| +|pypi|[repeated-test](https://pypi.org/project/repeated-test)|1.789156626506024e-05| +|pypi|[pykerberos](https://pypi.org/project/pykerberos)|1.7891566265060238e-05| +|pypi|[pymongocrypt](https://pypi.org/project/pymongocrypt)|1.7891566265060238e-05| +|pypi|[pymongo-auth-aws](https://pypi.org/project/pymongo-auth-aws)|1.7891566265060238e-05| +|pypi|[types-colorama](https://pypi.org/project/types-colorama)|1.7891566265060238e-05| +|pypi|[pdbmender](https://pypi.org/project/pdbmender)|1.7891566265060238e-05| +|pypi|[delphi4py](https://pypi.org/project/delphi4py)|1.7891566265060238e-05| +|pypi|[pykwalify](https://pypi.org/project/pykwalify)|1.7891566265060238e-05| +|pypi|[gevent](https://pypi.org/project/gevent)|1.7883602110304572e-05| +|pypi|[schema](https://github.com/keleshev/schema)|1.765985404771324e-05| +|pypi|[rdkit](https://pypi.org/project/rdkit)|1.711367207962284e-05| +|pypi|[imbalanced-learn](https://pypi.org/project/imbalanced-learn)|1.7110073741734074e-05| +|pypi|[diff-cover](https://pypi.org/project/diff-cover)|1.7108122103799815e-05| +|pypi|[jupyter-server](https://pypi.org/project/jupyter-server)|1.694277108433735e-05| +|pypi|[jupyterlab-server](https://pypi.org/project/jupyterlab-server)|1.694277108433735e-05| +|pypi|[nbclassic](https://pypi.org/project/nbclassic)|1.694277108433735e-05| +|pypi|[notebook-shim](https://pypi.org/project/notebook-shim)|1.694277108433735e-05| +|pypi|[json5](https://pypi.org/project/json5)|1.694277108433735e-05| +|pypi|[mmtf-python](https://github.com/rcsb/mmtf-python.git)|1.6940568340534412e-05| +|pypi|[eventlet](https://pypi.org/project/eventlet)|1.6776325301204817e-05| +|pypi|[bitstring](https://pypi.org/project/bitstring)|1.6683304647160068e-05| +|pypi|[casadi](http://casadi.org)|1.66787632457541e-05| +|pypi|[google-auth-httplib2](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2)|1.6622433395554048e-05| +|pypi|[types-pytz](https://pypi.org/project/types-pytz)|1.642276929307404e-05| +|pypi|[hdf5plugin](https://pypi.org/project/hdf5plugin)|1.6408443692123867e-05| +|pypi|[psims](https://pypi.org/project/psims)|1.6408443692123867e-05| +|pypi|[pybamm](https://pypi.org/project/pybamm)|1.6297721004499926e-05| +|pypi|[sphinxcontrib.mermaid](https://pypi.org/project/sphinxcontrib.mermaid)|1.6265060240963857e-05| +|pypi|[mdit-py-plugins](https://pypi.org/project/mdit-py-plugins)|1.6265060240963857e-05| +|pypi|[markdown-it-py](https://pypi.org/project/markdown-it-py)|1.6265060240963857e-05| +|pypi|[tensorflow-estimator](https://www.tensorflow.org/)|1.6194648724769207e-05| +|pypi|[gssapi](https://pypi.org/project/gssapi)|1.6155125860585195e-05| +|pypi|[zict](https://pypi.org/project/zict)|1.6131431059867697e-05| +|pypi|[loguru](https://github.com/Delgan/loguru)|1.6114457831325306e-05| +|pypi|[PyTest-Cov](https://pypi.org/project/PyTest-Cov)|1.6059886605244506e-05| +|pypi|[PyTest](https://pypi.org/project/PyTest)|1.6059886605244506e-05| +|pypi|[pulumi](https://github.com/pulumi/pulumi)|1.5946137491141047e-05| +|pypi|[AssertionLib](https://pypi.org/project/AssertionLib)|1.593737587713492e-05| +|pypi|[affine](https://github.com/sgillies/affine)|1.5908242861556126e-05| +|pypi|[pep8-naming](https://pypi.org/project/pep8-naming)|1.584304686987515e-05| +|pypi|[kgt](https://pypi.org/project/kgt)|1.5786676116229624e-05| +|pypi|[x21](https://pypi.org/project/x21)|1.5786676116229624e-05| +|pypi|[pytest-qt](https://pypi.org/project/pytest-qt)|1.5786676116229624e-05| +|pypi|[types-dataclasses](https://pypi.org/project/types-dataclasses)|1.569270780601397e-05| +|pypi|[crossbar](http://crossbar.io/)|1.5490533562822718e-05| +|pypi|[argh](https://pypi.org/project/argh)|1.5490533562822718e-05| +|pypi|[asn1crypto](https://pypi.org/project/asn1crypto)|1.5490533562822718e-05| +|pypi|[asq](https://pypi.org/project/asq)|1.5490533562822718e-05| +|pypi|[automat](https://pypi.org/project/automat)|1.5490533562822718e-05| +|pypi|[cbor](https://pypi.org/project/cbor)|1.5490533562822718e-05| +|pypi|[dictdiffer](https://pypi.org/project/dictdiffer)|1.5490533562822718e-05| +|pypi|[hpack](https://pypi.org/project/hpack)|1.5490533562822718e-05| +|pypi|[hyperframe](https://pypi.org/project/hyperframe)|1.5490533562822718e-05| +|pypi|[lmdb](https://pypi.org/project/lmdb)|1.5490533562822718e-05| +|pypi|[netaddr](https://pypi.org/project/netaddr)|1.5490533562822718e-05| +|pypi|[node-semver](https://pypi.org/project/node-semver)|1.5490533562822718e-05| +|pypi|[priority](https://pypi.org/project/priority)|1.5490533562822718e-05| +|pypi|[py-ubjson](https://pypi.org/project/py-ubjson)|1.5490533562822718e-05| +|pypi|[pyqrcode](https://pypi.org/project/pyqrcode)|1.5490533562822718e-05| +|pypi|[pytrie](https://pypi.org/project/pytrie)|1.5490533562822718e-05| +|pypi|[redis-py-cluster](https://pypi.org/project/redis-py-cluster)|1.5490533562822718e-05| +|pypi|[sdnotify](https://pypi.org/project/sdnotify)|1.5490533562822718e-05| +|pypi|[strict-rfc3339](https://pypi.org/project/strict-rfc3339)|1.5490533562822718e-05| +|pypi|[treq](https://pypi.org/project/treq)|1.5490533562822718e-05| +|pypi|[txtorcon](https://pypi.org/project/txtorcon)|1.5490533562822718e-05| +|pypi|[u-msgpack-python](https://pypi.org/project/u-msgpack-python)|1.5490533562822718e-05| +|pypi|[jupyter-bokeh](https://pypi.org/project/jupyter-bokeh)|1.543753963221306e-05| +|pypi|[botocore](https://github.com/boto/botocore)|1.538978314327532e-05| +|pypi|[cronutils](https://github.com/zagaran/cronutils)|1.5272357033768878e-05| +|pypi|[proto-plus](https://pypi.org/project/proto-plus)|1.5272357033768878e-05| +|pypi|[pycrypto](https://pypi.org/project/pycrypto)|1.5272357033768878e-05| +|pypi|[pycryptodomex](https://pypi.org/project/pycryptodomex)|1.5272357033768878e-05| +|pypi|[zstd](https://pypi.org/project/zstd)|1.5272357033768878e-05| +|pypi|[nglview](https://github.com/arose/nglview)|1.5272357033768878e-05| +|pypi|[pyperclip](https://github.com/asweigart/pyperclip)|1.5272357033768878e-05| +|pypi|[snuggs](https://github.com/mapbox/snuggs)|1.5074137208173354e-05| +|pypi|[marshmallow](https://github.com/marshmallow-code/marshmallow)|1.505863435187876e-05| +|pypi|[google-cloud-core](https://github.com/googleapis/python-cloud-core)|1.5010964769152451e-05| +|pypi|[numpy-financial](https://numpy.org/numpy-financial/)|1.4927241433265527e-05| +|pypi|[pvlib](https://github.com/pvlib/pvlib-python)|1.4927241433265527e-05| +|pypi|[bumpversion](https://pypi.org/project/bumpversion)|1.4909638554216867e-05| +|pypi|[xlrd](https://pypi.org/project/xlrd)|1.4854652278698192e-05| +|pypi|[xgboost](https://github.com/dmlc/xgboost)|1.479801559177889e-05| +|pypi|[numcodecs](https://github.com/zarr-developers/numcodecs)|1.4791741661769027e-05| +|pypi|[testtools](https://github.com/testing-cabal/testtools)|1.4769913941480205e-05| +|pypi|[fixtures](https://pypi.org/project/fixtures)|1.4769913941480205e-05| +|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|1.4572059623142612e-05| +|pypi|[xxhash](https://pypi.org/project/xxhash)|1.4505739676974148e-05| +|pypi|[autodocsumm](https://pypi.org/project/autodocsumm)|1.4501628964838947e-05| +|pypi|[pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp)|1.4346161884587012e-05| +|pypi|[grayskull](https://pypi.org/project/grayskull)|1.4313253012048192e-05| +|pypi|[click-repl](https://pypi.org/project/click-repl)|1.4171997908991338e-05| +|pypi|[click-didyoumean](https://pypi.org/project/click-didyoumean)|1.4171997908991338e-05| +|pypi|[python-keystoneclient](https://docs.openstack.org/python-keystoneclient/latest/)|1.384819277108434e-05| +|pypi|[pycares](https://pypi.org/project/pycares)|1.3625115848007413e-05| +|pypi|[annoy](https://github.com/spotify/annoy)|1.357778941854374e-05| +|pypi|[sphinxcontrib.programoutput](https://pypi.org/project/sphinxcontrib.programoutput)|1.357778941854374e-05| +|pypi|[visdom](https://pypi.org/project/visdom)|1.357778941854374e-05| +|pypi|[nmslib](https://pypi.org/project/nmslib)|1.357778941854374e-05| +|pypi|[pyemd](https://pypi.org/project/pyemd)|1.357778941854374e-05| +|pypi|[Morfessor](https://pypi.org/project/Morfessor)|1.357778941854374e-05| +|pypi|[Pyro4](https://pypi.org/project/Pyro4)|1.357778941854374e-05| +|pypi|[kopt](https://pypi.org/project/kopt)|1.325301204819277e-05| +|pypi|[uvicorn](https://pypi.org/project/uvicorn)|1.3150391530946925e-05| +|pypi|[altair](http://altair-viz.github.io)|1.3067086527929892e-05| +|pypi|[lcapy](https://pypi.org/project/lcapy)|1.30643054144288e-05| +|pypi|[scikit-spatial](https://pypi.org/project/scikit-spatial)|1.30643054144288e-05| +|pypi|[textwrapper](https://pypi.org/project/textwrapper)|1.30643054144288e-05| +|pypi|[anytree](https://pypi.org/project/anytree)|1.30643054144288e-05| +|pypi|[scikit-fem](https://pypi.org/project/scikit-fem)|1.30643054144288e-05| +|pypi|[property-cached](https://pypi.org/project/property-cached)|1.30643054144288e-05| +|pypi|[heapdict](https://pypi.org/project/heapdict)|1.30643054144288e-05| +|pypi|[SoundCard](https://github.com/bastibe/SoundCard)|1.301204819277109e-05| +|pypi|[SoundFile](https://github.com/bastibe/PySoundFile)|1.301204819277109e-05| +|pypi|[gurobipy](https://pypi.org/project/gurobipy)|1.2938116100766703e-05| +|pypi|[google-cloud-storage](https://github.com/googleapis/python-storage)|1.285778645018421e-05| +|pypi|[librosa](https://pypi.org/project/librosa)|1.2805654435925524e-05| +|pypi|[Flask-SQLAlchemy](https://pypi.org/project/Flask-SQLAlchemy)|1.2779690189328742e-05| +|pypi|[ephem](https://pypi.org/project/ephem)|1.2740963855421686e-05| +|pypi|[openstacksdk](https://pypi.org/project/openstacksdk)|1.2643373493975902e-05| +|pypi|[black>=20.8b1](https://pypi.org/project/black>=20.8b1)|1.2636547657983364e-05| +|pypi|[importlib_metadata>=0.7](https://pypi.org/project/importlib_metadata>=0.7)|1.2636547657983364e-05| +|pypi|[h5py>=3](https://pypi.org/project/h5py>=3)|1.2636547657983364e-05| +|pypi|[npx](https://pypi.org/project/npx)|1.26293408929837e-05| +|pypi|[meshplex](https://pypi.org/project/meshplex)|1.26293408929837e-05| +|pypi|[skrebate](https://github.com/EpistasisLab/scikit-rebate)|1.26293408929837e-05| +|pypi|[dask-ml](https://pypi.org/project/dask-ml)|1.26293408929837e-05| +|pypi|[update-checker](https://pypi.org/project/update-checker)|1.26293408929837e-05| +|pypi|[pytest-mpl](https://pypi.org/project/pytest-mpl)|1.2447800250776863e-05| +|pypi|[azure-storage-blob](https://pypi.org/project/azure-storage-blob)|1.232884239661348e-05| +|pypi|[param](https://pypi.org/project/param)|1.2269448687715993e-05| +|pypi|[pyct](https://pypi.org/project/pyct)|1.2269448687715993e-05| +|pypi|[pymatreader](https://pypi.org/project/pymatreader)|1.2253804177749958e-05| +|pypi|[pytest-benchmark](https://pypi.org/project/pytest-benchmark)|1.2243927991925284e-05| +|pypi|[python-subunit](https://pypi.org/project/python-subunit)|1.2145817555938037e-05| +|pypi|[ddt](https://pypi.org/project/ddt)|1.2145817555938037e-05| +|pypi|[m2r](https://pypi.org/project/m2r)|1.2081890060240962e-05| +|pypi|[emoji](https://pypi.org/project/emoji)|1.1927710843373494e-05| +|pypi|[pynumpress](https://pypi.org/project/pynumpress)|1.1927710843373494e-05| +|pypi|[user-agents](https://pypi.org/project/user-agents)|1.1927710843373492e-05| +|pypi|[dataclasses-json](https://pypi.org/project/dataclasses-json)|1.1879872430900075e-05| +|pypi|[sphinx-version-warning](https://pypi.org/project/sphinx-version-warning)|1.1790508974674206e-05| +|pypi|[smbprotocol](https://pypi.org/project/smbprotocol)|1.1676601141407735e-05| +|pypi|[s3fs](https://pypi.org/project/s3fs)|1.1676601141407735e-05| +|pypi|[ocifs](https://pypi.org/project/ocifs)|1.1676601141407735e-05| +|pypi|[libarchive-c](https://pypi.org/project/libarchive-c)|1.1676601141407735e-05| +|pypi|[pygit2](https://pypi.org/project/pygit2)|1.1676601141407735e-05| +|pypi|[fusepy](https://pypi.org/project/fusepy)|1.1676601141407735e-05| +|pypi|[dropbox](https://pypi.org/project/dropbox)|1.1676601141407735e-05| +|pypi|[dropboxdrivefs](https://pypi.org/project/dropboxdrivefs)|1.1676601141407735e-05| +|pypi|[adlfs](https://pypi.org/project/adlfs)|1.1676601141407735e-05| +|pypi|[pympler](https://pypi.org/project/pympler)|1.1528732444571183e-05| +|pypi|[pytray](https://github.com/muhrin/pytray.git)|1.1503404924044012e-05| +|pypi|[aiodns](https://pypi.org/project/aiodns)|1.1367172564580374e-05| +|pypi|[pyshp](https://pypi.org/project/pyshp)|1.1359724612736661e-05| +|pypi|[pytest-json-report](https://pypi.org/project/pytest-json-report)|1.1359724612736661e-05| +|pypi|[noodles](http://nlesc.github.io/noodles)|1.1358135840063541e-05| +|pypi|[sas7bdat](https://pypi.org/project/sas7bdat)|1.1299936588459098e-05| +|pypi|[sas-kernel](https://pypi.org/project/sas-kernel)|1.1299936588459098e-05| +|pypi|[saspy](https://pypi.org/project/saspy)|1.1299936588459098e-05| +|pypi|[soundfile](https://pypi.org/project/soundfile)|1.121370000888073e-05| +|pypi|[portray](https://pypi.org/project/portray)|1.118222891566265e-05| +|pypi|[typing-inspect](https://pypi.org/project/typing-inspect)|1.118222891566265e-05| +|pypi|[marshmallow-enum](https://pypi.org/project/marshmallow-enum)|1.118222891566265e-05| +|pypi|[databases](https://pypi.org/project/databases)|1.1123590217237812e-05| +|requirements.txt|gitlab/cracklet/cracklet|1.095290251916758e-05| +|requirements.txt|gitlab/LouisLab/PiVR|1.095290251916758e-05| +|requirements.txt|github/kkjawz/coref-ee|1.095290251916758e-05| +|requirements.txt|github/PolymerGuy/recolo|1.095290251916758e-05| +|requirements.txt|github/csbioinfopk/iSumoK-PseAAC|1.095290251916758e-05| +|requirements.txt|github/kinnala/scikit-fem|1.095290251916758e-05| +|requirements.txt|github/onnela-lab/beiwe-backend|1.095290251916758e-05| +|requirements.txt|github/surf-eds/one-button-compute|1.095290251916758e-05| +|requirements.txt|github/ketch/RK-Opt|1.095290251916758e-05| +|requirements.txt|github/BioGearsEngine/core|1.095290251916758e-05| +|requirements.txt|github/Narayana-Rao/SAR-tools|1.095290251916758e-05| +|requirements.txt|github/MD-Studio/MDStudio|1.095290251916758e-05| +|requirements.txt|github/villano-lab/nrCascadeSim|1.095290251916758e-05| +|requirements.txt|github/qMRLab/qMRLab|1.095290251916758e-05| +|requirements.txt|github/sorenwacker/ProteomicsQC|1.095290251916758e-05| +|requirements.txt|github/telatin/qax|1.095290251916758e-05| +|requirements.txt|github/statgen/Minimac4|1.095290251916758e-05| +|requirements.txt|github/Rohit-Kundu/ET-NET_Covid-Detection|1.095290251916758e-05| +|requirements.txt|github/gvilitechltd/LibSWIFFT|1.095290251916758e-05| +|requirements.txt|github/UUDigitalHumanitieslab/texcavator|1.095290251916758e-05| +|requirements.txt|github/robashaw/libecpint|1.095290251916758e-05| +|requirements.txt|github/JLiangLab/TransVW|1.095290251916758e-05| +|requirements.txt|github/candYgene/siga|1.095290251916758e-05| +|requirements.txt|github/sibyllema/Fast-Multiscale-Diffusion-on-Graphs|1.095290251916758e-05| +|requirements.txt|github/ggciag/mandyoc|1.095290251916758e-05| +|requirements.txt|github/nextstrain/nextclade|1.095290251916758e-05| +|requirements.txt|github/wmglab-duke/ascent|1.095290251916758e-05| +|requirements.txt|github/MRChemSoft/mrchem|1.095290251916758e-05| +|requirements.txt|github/CAMI-challenge/CAMITAX|1.095290251916758e-05| +|requirements.txt|github/LSARP/ProteomicsQC|1.095290251916758e-05| +|requirements.txt|github/neuroanatomy/reorient|1.095290251916758e-05| +|requirements.txt|github/inpefess/gym-saturation|1.095290251916758e-05| +|requirements.txt|github/DSIMB/medusa|1.095290251916758e-05| +|requirements.txt|github/3d-pli/fastpli|1.095290251916758e-05| +|requirements.txt|github/lutteropp/NetRAX|1.095290251916758e-05| +|requirements.txt|github/grant-m-s/astronomicAL|1.095290251916758e-05| +|requirements.txt|github/ImperialCollegeLondon/champ|1.095290251916758e-05| +|requirements.txt|github/snowformatics/macrobot|1.095290251916758e-05| +|requirements.txt|github/Climdyn/qgs|1.095290251916758e-05| +|requirements.txt|github/diCenzo-GC/Tn-Core-webserver|1.095290251916758e-05| +|requirements.txt|github/iontorrent/TS|1.095290251916758e-05| +|requirements.txt|github/hemanthpruthvi/PyAstroPol|1.095290251916758e-05| +|requirements.txt|github/nlesc/embodied-emotions-scripts|1.095290251916758e-05| +|requirements.txt|github/LINNAE-project/SFB-Annotator|1.095290251916758e-05| +|requirements.txt|github/andr1976/HydDown|1.095290251916758e-05| +|requirements.txt|github/labsyspharm/minerva-story|1.095290251916758e-05| +|requirements.txt|github/mswzeus/TargetNet|1.095290251916758e-05| +|requirements.txt|github/STEllAR-GROUP/hpx|1.095290251916758e-05| +|requirements.txt|github/BioinfoUNIBA/REDItools2|1.095290251916758e-05| +|requirements.txt|github/GilbertLabUCSF/CanDI|1.095290251916758e-05| +|requirements.txt|github/Single-Cell-Graph-Learning/scSGL|1.095290251916758e-05| +|requirements.txt|github/chemfiles/chemfiles|1.095290251916758e-05| +|requirements.txt|github/he2016012996/CABnet|1.095290251916758e-05| +|requirements.txt|github/monarch-initiative/loinc2hpo|1.095290251916758e-05| +|requirements.txt|github/abinit/abinit|1.095290251916758e-05| +|requirements.txt|github/arnikz/PIQMIe|1.095290251916758e-05| +|requirements.txt|github/CouncilDataProject/cookiecutter-cdp-deployment|1.095290251916758e-05| +|requirements.txt|github/Julian/jsonschema|1.095290251916758e-05| +|requirements.txt|github/amrex-astro/Castro|1.095290251916758e-05| +|requirements.txt|github/ablab/TandemTools|1.095290251916758e-05| +|requirements.txt|github/spack/spack|1.095290251916758e-05| +|requirements.txt|github/shandley/hecatomb|1.095290251916758e-05| +|requirements.txt|github/NLeSC-GO-common-infrastructure/marzipan|1.095290251916758e-05| +|requirements.txt|github/soraxas/sbp-env|1.095290251916758e-05| +|requirements.txt|github/learningsimulator/learningsimulator|1.095290251916758e-05| +|requirements.txt|github/mms-fcul/PypKa|1.095290251916758e-05| +|requirements.txt|github/TinkerTools/tinker9|1.095290251916758e-05| +|requirements.txt|github/NLeSC/ShiCo|1.095290251916758e-05| +|requirements.txt|github/SuLab/Wikidata-phenomizer|1.095290251916758e-05| +|requirements.txt|github/zhoux85/scAdapt|1.095290251916758e-05| +|requirements.txt|github/JuliaHCI/ADI.jl|1.095290251916758e-05| +|requirements.txt|github/AMReX-Astro/Nyx|1.095290251916758e-05| +|requirements.txt|github/broadinstitute/cromwell|1.095290251916758e-05| +|requirements.txt|github/SPARC-FAIR-Codeathon/aqua|1.095290251916758e-05| +|requirements.txt|github/JLBLine/WODEN|1.095290251916758e-05| +|requirements.txt|github/citation-file-format/citation-file-format|1.095290251916758e-05| +|requirements.txt|github/erikbern/ann-benchmarks|1.095290251916758e-05| +|requirements.txt|github/jdber1/opendrop|1.095290251916758e-05| +|requirements.txt|github/ot483/NetCom|1.095290251916758e-05| +|requirements.txt|github/enveda/RPath|1.095290251916758e-05| +|requirements.txt|github/TeamCOMPAS/COMPAS|1.095290251916758e-05| +|requirements.txt|github/singularityhub/sregistry|1.095290251916758e-05| +|setup.py|gitlab/octopus-code/octopus|1.095290251916758e-05| +|setup.py|gitlab/picos-api/picos|1.095290251916758e-05| +|setup.py|gitlab/BioimageInformaticsGroup/openphi|1.095290251916758e-05| +|setup.py|gitlab/Molcas/OpenMolcas|1.095290251916758e-05| +|setup.py|gitlab/gims-developers/gims|1.095290251916758e-05| +|setup.py|gitlab/jason-rumengan/pyarma|1.095290251916758e-05| +|setup.py|gitlab/fduchate/predihood|1.095290251916758e-05| +|setup.py|github/ekaterinailin/AltaiPony|1.095290251916758e-05| +|setup.py|github/wdecoster/nanopack|1.095290251916758e-05| +|setup.py|github/era-urban/wrfpy|1.095290251916758e-05| +|setup.py|github/ynop/audiomate|1.095290251916758e-05| +|setup.py|github/glotzerlab/freud|1.095290251916758e-05| +|setup.py|github/glotzerlab/coxeter|1.095290251916758e-05| +|setup.py|github/IKNL/vantage6|1.095290251916758e-05| +|setup.py|github/Kuifje02/vrpy|1.095290251916758e-05| +|setup.py|github/bio-phys/BioEn|1.095290251916758e-05| +|setup.py|github/popgenmethods/smcpp|1.095290251916758e-05| +|setup.py|github/Filter-Bubble/e2e-Dutch|1.095290251916758e-05| +|setup.py|github/dmey/synthia|1.095290251916758e-05| +|setup.py|github/FSEC-Photovoltaics/pvrpm-lcoe|1.095290251916758e-05| +|setup.py|github/jbuisine/macop|1.095290251916758e-05| +|setup.py|github/MrMinimal64/multivar_horner|1.095290251916758e-05| +|setup.py|github/thejasvibr/bat_beamshapes|1.095290251916758e-05| +|setup.py|github/atomneb/AtomNeb-py|1.095290251916758e-05| +|setup.py|github/eScatter/pyelsepa|1.095290251916758e-05| +|setup.py|github/amusecode/amuse|1.095290251916758e-05| +|setup.py|github/ketch/nodepy|1.095290251916758e-05| +|setup.py|github/fAndreuzzi/BisPy|1.095290251916758e-05| +|setup.py|github/oschwengers/referenceseeker|1.095290251916758e-05| +|setup.py|github/oschwengers/platon|1.095290251916758e-05| +|setup.py|github/oschwengers/bakta|1.095290251916758e-05| +|setup.py|github/mscroggs/symfem|1.095290251916758e-05| +|setup.py|github/Magritte-code/Magritte|1.095290251916758e-05| +|setup.py|github/cadop/seg1d|1.095290251916758e-05| +|setup.py|github/elwinter/nnde|1.095290251916758e-05| +|setup.py|github/AlphonsG/Rainbow-Optical-Flow-For-ALI|1.095290251916758e-05| +|setup.py|github/omuse-geoscience/omuse|1.095290251916758e-05| +|setup.py|github/tariqdaouda/CAMAP|1.095290251916758e-05| +|setup.py|github/Materials-Consortia/optimade-python-tools|1.095290251916758e-05| +|setup.py|github/RTIInternational/gobbli|1.095290251916758e-05| +|setup.py|github/MD-Studio/cerulean|1.095290251916758e-05| +|setup.py|github/TPI-Immunogenetics/igmat|1.095290251916758e-05| +|setup.py|github/nlesc-ave/ave-rest-service|1.095290251916758e-05| +|setup.py|github/virgesmith/neworder|1.095290251916758e-05| +|setup.py|github/rajeshrinet/pystokes|1.095290251916758e-05| +|setup.py|github/rodluger/starry_process|1.095290251916758e-05| +|setup.py|github/compomics/DeepLC|1.095290251916758e-05| +|setup.py|github/BartoszBartmanski/StoSpa2|1.095290251916758e-05| +|setup.py|github/richteague/disksurf|1.095290251916758e-05| +|setup.py|github/Quantum-Dynamics-Hub/libra-code|1.095290251916758e-05| +|setup.py|github/zarr-developers/zarr-python|1.095290251916758e-05| +|setup.py|github/ConorMacBride/mcalf|1.095290251916758e-05| +|setup.py|github/SCM-NV/qmflows-namd|1.095290251916758e-05| +|setup.py|github/SCM-NV/qmflows|1.095290251916758e-05| +|setup.py|github/SCM-NV/pyZacros|1.095290251916758e-05| +|setup.py|github/DeltaRCM/pyDeltaRCM|1.095290251916758e-05| +|setup.py|github/szymon-datalions/pyinterpolate|1.095290251916758e-05| +|setup.py|github/fair-data/fairdatapoint-client|1.095290251916758e-05| +|setup.py|github/hiddenSymmetries/simsopt|1.095290251916758e-05| +|setup.py|github/fair-software/fairtally|1.095290251916758e-05| +|setup.py|github/fair-software/howfairis|1.095290251916758e-05| +|setup.py|github/zdelrosario/py_grama|1.095290251916758e-05| +|setup.py|github/snakemake/snakemake|1.095290251916758e-05| +|setup.py|github/AA-ALERT/frbcatdb|1.095290251916758e-05| +|setup.py|github/UNSW-CEEM/nempy|1.095290251916758e-05| +|setup.py|github/AlexMikes/AutoFunc|1.095290251916758e-05| +|setup.py|github/parallelwindfarms/byteparsing|1.095290251916758e-05| +|setup.py|github/weecology/retriever|1.095290251916758e-05| +|setup.py|github/DrMarc/slab|1.095290251916758e-05| +|setup.py|github/dfujim/bfit|1.095290251916758e-05| +|setup.py|github/cdslaborg/paramonte|1.095290251916758e-05| +|setup.py|github/meinardmueller/synctoolbox|1.095290251916758e-05| +|setup.py|github/meinardmueller/libfmp|1.095290251916758e-05| +|setup.py|github/SWIFTSIM/emulator|1.095290251916758e-05| +|setup.py|github/tool-bin/ukbcc|1.095290251916758e-05| +|setup.py|github/KIT-MBS/pyREX|1.095290251916758e-05| +|setup.py|github/OpenMDAO/dymos|1.095290251916758e-05| +|setup.py|github/SandoghdarLab/PiSCAT|1.095290251916758e-05| +|setup.py|github/spyder-ide/spyder|1.095290251916758e-05| +|setup.py|github/SMTG-UCL/surfaxe|1.095290251916758e-05| +|setup.py|github/dynamicslab/pysindy|1.095290251916758e-05| +|setup.py|github/matchms/matchms|1.095290251916758e-05| +|setup.py|github/matchms/ms2deepscore|1.095290251916758e-05| +|setup.py|github/cupy/cupy|1.095290251916758e-05| +|setup.py|github/qpv-research-group/solcore5|1.095290251916758e-05| +|setup.py|github/smog-server/OpenSMOG|1.095290251916758e-05| +|setup.py|github/LiberTEM/LiberTEM|1.095290251916758e-05| +|setup.py|github/malonge/RagTag|1.095290251916758e-05| +|setup.py|github/symmy596/Polypy|1.095290251916758e-05| +|setup.py|github/symmy596/SurfinPy|1.095290251916758e-05| +|setup.py|github/Oftatkofta/cellocity|1.095290251916758e-05| +|setup.py|github/arabic-digital-humanities/adhtools|1.095290251916758e-05| +|setup.py|github/NLESC-JCER/QMCTorch|1.095290251916758e-05| +|setup.py|github/xenon-middleware/pyxenon|1.095290251916758e-05| +|setup.py|github/ghislainv/forestatrisk|1.095290251916758e-05| +|setup.py|github/felixchenier/kineticstoolkit|1.095290251916758e-05| +|setup.py|github/mishioo/tesliper|1.095290251916758e-05| +|setup.py|github/exafmm/exafmm-t|1.095290251916758e-05| +|setup.py|github/radifar/PyPLIF-HIPPOS|1.095290251916758e-05| +|setup.py|github/clawpack/clawpack|1.095290251916758e-05| +|setup.py|github/jianhuupenn/SpaGCN|1.095290251916758e-05| +|setup.py|github/lantunes/cellpylib|1.095290251916758e-05| +|setup.py|github/TriPed-Robot/TriP|1.095290251916758e-05| +|setup.py|github/Effective-Quadratures/Effective-Quadratures|1.095290251916758e-05| +|setup.py|github/rgerum/pylustrator|1.095290251916758e-05| +|setup.py|github/Social-Evolution-and-Behavior/anTraX|1.095290251916758e-05| +|setup.py|github/0xCoto/Virgo|1.095290251916758e-05| +|setup.py|github/multiscale/muscle3|1.095290251916758e-05| +|setup.py|github/Yu-Group/veridical-flow|1.095290251916758e-05| +|setup.py|github/elkebir-group/Jumper|1.095290251916758e-05| +|setup.py|github/scipion-em/scipion-em-continuousflex|1.095290251916758e-05| +|setup.py|github/aspuru-guzik-group/funsies|1.095290251916758e-05| +|setup.py|github/numba/numba|1.095290251916758e-05| +|setup.py|github/lkmklsmn/DrivAER|1.095290251916758e-05| +|setup.py|github/ComparativeGenomicsToolkit/cactus|1.095290251916758e-05| +|setup.py|github/FAIR-data-for-CAPACITY/FHIR-to-CAPACITY|1.095290251916758e-05| +|setup.py|github/KALMUS-Color-Toolkit/KALMUS|1.095290251916758e-05| +|setup.py|github/nlesc/scriptcwl|1.095290251916758e-05| +|setup.py|github/linqs/psl|1.095290251916758e-05| +|setup.py|github/carlosborca/CrystaLattE|1.095290251916758e-05| +|setup.py|github/brainets/frites|1.095290251916758e-05| +|setup.py|github/CFSAN-Biostatistics/SeroTools|1.095290251916758e-05| +|setup.py|github/EISy-as-Py/hardy|1.095290251916758e-05| +|setup.py|github/nicolet5/DiffCapAnalyzer|1.095290251916758e-05| +|setup.py|github/medema-group/bigslice|1.095290251916758e-05| +|setup.py|github/FlowModelingControl/flowtorch|1.095290251916758e-05| +|setup.py|github/biocore/scikit-bio|1.095290251916758e-05| +|setup.py|github/EpistasisLab/tpot|1.095290251916758e-05| +|setup.py|github/EpistasisLab/regens|1.095290251916758e-05| +|setup.py|github/MDAnalysis/mdanalysis|1.095290251916758e-05| +|setup.py|github/dpalmasan/TRUNAJOD2.0|1.095290251916758e-05| +|setup.py|github/PyPSA/atlite|1.095290251916758e-05| +|setup.py|github/Bahler-Lab/pyphe|1.095290251916758e-05| +|setup.py|github/RaRe-Technologies/gensim|1.095290251916758e-05| +|setup.py|github/edwardoughton/itmlogic|1.095290251916758e-05| +|setup.py|github/icecube/FIRESONG|1.095290251916758e-05| +|setup.py|github/HillLab/SomaticSiMu|1.095290251916758e-05| +|setup.py|github/jollejolles/pirecorder|1.095290251916758e-05| +|setup.py|github/SouthGreenPlatform/PyRice|1.095290251916758e-05| +|setup.py|github/fakedrtom/oncogemini|1.095290251916758e-05| +|setup.py|github/davidebolo1993/TRiCoLOR|1.095290251916758e-05| +|setup.py|github/davidebolo1993/VISOR|1.095290251916758e-05| +|setup.py|github/yatiml/yatiml|1.095290251916758e-05| +|setup.py|github/Nico-Curti/rFBP|1.095290251916758e-05| +|setup.py|github/ECSHackWeek/impedance.py|1.095290251916758e-05| +|setup.py|github/cabb99/open3spn2|1.095290251916758e-05| +|setup.py|github/neuralhydrology/neuralhydrology|1.095290251916758e-05| +|setup.py|github/RamanLab/iCOMIC|1.095290251916758e-05| +|setup.py|github/samaygarg/fuelcell|1.095290251916758e-05| +|setup.py|github/comprna/reorientexpress|1.095290251916758e-05| +|setup.py|github/Singh-Lab/DeMaSk|1.095290251916758e-05| +|setup.py|github/COVID-IWG/epimargin|1.095290251916758e-05| +|setup.py|github.com/idptools/metapredict|1.095290251916758e-05| +|setup.py|github/bio-ontology-research-group/deepgoplus|1.095290251916758e-05| +|setup.py|github/potassco/clingo|1.095290251916758e-05| +|setup.py|github/IMMM-SFA/mosartwmpy|1.095290251916758e-05| +|setup.py|github/rgmyr/corebreakout|1.095290251916758e-05| +|setup.py|github/tylunel/pvpumpingsystem|1.095290251916758e-05| +|setup.py|github/iomega/spec2vec|1.095290251916758e-05| +|setup.py|github/bethgelab/foolbox|1.095290251916758e-05| +|setup.py|github/stammler/simframe|1.095290251916758e-05| +|setup.py|github/ml-evs/matador|1.095290251916758e-05| +|setup.py|github/DrafProject/elmada|1.095290251916758e-05| +|setup.py|github/nlesc-nano/swan|1.095290251916758e-05| +|setup.py|github/nlesc-nano/flamingo|1.095290251916758e-05| +|setup.py|github/nlesc-nano/insilico-server|1.095290251916758e-05| +|setup.py|github/nlesc-nano/ceiba-cli|1.095290251916758e-05| +|setup.py|github/nlesc-nano/ceiba|1.095290251916758e-05| +|setup.py|github/nlesc-nano/CAT|1.095290251916758e-05| +|setup.py|github/nlesc-nano/Moka|1.095290251916758e-05| +|setup.py|github/ElectionDataAnalysis/electiondata|1.095290251916758e-05| +|setup.py|github/pybamm-team/liionpack|1.095290251916758e-05| +|setup.py|github/wilkelab/Opfi|1.095290251916758e-05| +|setup.py|github/jorisparet/partycls|1.095290251916758e-05| +|setup.py|github/s-goldman/Dusty-Evolved-Star-Kit|1.095290251916758e-05| +|setup.py|github/JohannesBuchner/BXA|1.095290251916758e-05| +|setup.py|github/mjacob1002/Eir|1.095290251916758e-05| +|setup.py|github/ORNL/tx2|1.095290251916758e-05| +|setup.py|github/colour-science/colour|1.095290251916758e-05| +|setup.py|github/ModellingWebLab/chaste-codegen|1.095290251916758e-05| +|setup.py|github/DeepRank/DeepRank-GNN|1.095290251916758e-05| +|setup.py|github/DeepRank/pdb2sql|1.095290251916758e-05| +|setup.py|github/DeepRank/iScore|1.095290251916758e-05| +|setup.py|github/DeepRank/pssmgen|1.095290251916758e-05| +|setup.py|github/DeepRank/deeprank|1.095290251916758e-05| +|setup.py|github/athulpg007/AMAT|1.095290251916758e-05| +|setup.py|github/HIPS/autograd|1.095290251916758e-05| +|setup.py|github/shirtsgroup/physical_validation|1.095290251916758e-05| +|setup.py|github/ni1o1/transbigdata|1.095290251916758e-05| +|setup.py|github/hknd23/idcempy|1.095290251916758e-05| +|setup.py|github/panoptes-organization/panoptes|1.095290251916758e-05| +|setup.py|github/Theano/Theano|1.095290251916758e-05| +|setup.py|github/LBNL-ETA/MSWH|1.095290251916758e-05| +|setup.py|github/SirSharpest/NarrowEscapeSimulator|1.095290251916758e-05| +|setup.py|github/htjb/maxsmooth|1.095290251916758e-05| +|setup.py|github/skovaka/UNCALLED|1.095290251916758e-05| +|setup.py|github/easybuilders/easybuild|1.095290251916758e-05| +|setup.py|github/3D-e-Chem/sygma|1.095290251916758e-05| +|setup.py|github/3D-e-Chem/kripodb|1.095290251916758e-05| +|setup.py|github/indralab/pybiopax|1.095290251916758e-05| +|setup.py|github/benvanwerkhoven/kernel_tuner|1.095290251916758e-05| +|setup.py|github/spokenlanguage/platalea|1.095290251916758e-05| +|setup.py|github/NKI-CCB/PRECISE|1.095290251916758e-05| +|setup.py|github/twesterhout/lattice-symmetries|1.095290251916758e-05| +|setup.py|github/matplotlib/matplotlib|1.095290251916758e-05| +|setup.py|github/BioSTEAMDevelopmentGroup/thermosteam|1.095290251916758e-05| +|setup.py|github/slzarate/parliament2|1.095290251916758e-05| +|setup.py|github/aiidateam/kiwipy|1.095290251916758e-05| +|setup.py|github/opimwue/ddop|1.095290251916758e-05| +|setup.py|github/bootphon/phonemizer|1.095290251916758e-05| +|setup.py|github/CEED/libCEED|1.095290251916758e-05| +|setup.py|github/dask/dask|1.095290251916758e-05| +|setup.py|github/aalhossary/pyemgpipeline|1.095290251916758e-05| +|setup.py|github/rhayes777/PyAutoFit|1.095290251916758e-05| +|setup.py|github/conda/conda|1.095290251916758e-05| +|setup.py|github/eWaterCycle/grpc4bmi|1.095290251916758e-05| +|setup.py|github/eWaterCycle/jupyterlab_thredds|1.095290251916758e-05| +|setup.py|github/AlexanderLabWHOI/EUKulele|1.095290251916758e-05| +|setup.py|github/PfizerRD/sit2standpy|1.095290251916758e-05| +|setup.py|github/circuitgraph/circuitgraph|1.095290251916758e-05| +|setup.py|github/volkamerlab/opencadd|1.095290251916758e-05| +|setup.py|github/odb9402/CNNPeaks|1.095290251916758e-05| +|setup.py|github/KathrynJones1/catwoman|1.095290251916758e-05| +|setup.py|github/NLeSC/cptm|1.095290251916758e-05| +|setup.py|github/NLeSC/Massive-PotreeConverter|1.095290251916758e-05| +|setup.py|github/NLeSC/noodles|1.095290251916758e-05| +|setup.py|github/NLeSC/mcfly|1.095290251916758e-05| +|setup.py|github/NLeSC/boatswain|1.095290251916758e-05| +|setup.py|github/fitbenchmarking/fitbenchmarking|1.095290251916758e-05| +|setup.py|github/CLARIAH/grlc|1.095290251916758e-05| +|setup.py|github/mzy2240/ESA|1.095290251916758e-05| +|setup.py|github/KBNLresearch/ochre|1.095290251916758e-05| +|setup.py|github/jiahecui/SenAOReFoc|1.095290251916758e-05| +|setup.py|github/21cmFAST/21cmFAST|1.095290251916758e-05| +|setup.py|github/cbalbin-FIU/Epitopedia|1.095290251916758e-05| +|setup.py|github/chasmani/piecewise-regression|1.095290251916758e-05| +|setup.py|github/benhid/Sequoya|1.095290251916758e-05| +|setup.py|github/SynthSys/pyOmeroUpload|1.095290251916758e-05| +|setup.py|github/swiftsim/swiftsimio|1.095290251916758e-05| +|setup.py|github/girder/viime|1.095290251916758e-05| +|setup.py|github/dmnfarrell/snpgenie|1.095290251916758e-05| +|setup.py|github/dmnfarrell/epitopepredict|1.095290251916758e-05| +|setup.py|github/BackmanLab/PWSpy|1.095290251916758e-05| +|setup.py|github/NeuralEnsemble/PyNN|1.095290251916758e-05| +|setup.py|github/kerkelae/disimpy|1.095290251916758e-05| +|setup.py|github/fermisurfaces/IFermi|1.095290251916758e-05| +|setup.py|github/shilpagarg/WHdenovo|1.095290251916758e-05| +|setup.py|github/recipy/recipy|1.095290251916758e-05| +|setup.py|github/jmschrei/pomegranate|1.095290251916758e-05| +|setup.py|github/SCECcode/pycsep|1.095290251916758e-05| +|setup.py|github/antoinediez/Sisyphe|1.095290251916758e-05| +|setup.py|github/BritishGeologicalSurvey/pyvolcans|1.095290251916758e-05| +|setup.py|github/DynaSlum/satsense|1.095290251916758e-05| +|setup.py|github/nlppln/nlppln|1.095290251916758e-05| +|setup.py|github/actris-cloudnet/cloudnetpy|1.095290251916758e-05| +|setup.py|github/fruzsinaagocs/oscode|1.095290251916758e-05| +|setup.py|github/equib/pyEQUIB|1.095290251916758e-05| +|setup.py|github/sambit-giri/tools21cm|1.095290251916758e-05| +|setup.py|github/Electrostatics/apbs|1.095290251916758e-05| +|setup.py|github/MillionConcepts/lhorizon|1.095290251916758e-05| +|setup.py|github/coljac/sensie|1.095290251916758e-05| +|setup.py|github/FreBio/komics|1.095290251916758e-05| +|setup.py|github/vsoch/gridtest|1.095290251916758e-05| +|setup.py|github/raspishake/rsudp|1.095290251916758e-05| +|setup.py|github/ERA-URBAN/fm128_radar|1.095290251916758e-05| +|setup.py|github/sagepublishing/rejected_article_tracker_pkg|1.095290251916758e-05| +|setup.py|github/davemlz/eemont|1.095290251916758e-05| +|setup.py|github/sebhaan/geobo|1.095290251916758e-05| +|setup.py|github/abrupt-climate/hyper-canny|1.095290251916758e-05| +|setup.py|github/adbar/htmldate|1.095290251916758e-05| +|setup.py|github/singularityhub/singularity-compose|1.095290251916758e-05| +|setup.py|github/singularityhub/singularity-hpc|1.095290251916758e-05| +|setup.py|github/cas-bioinf/rboAnalyzer|1.095290251916758e-05| +|setup.py|github/samuelefiorini/tangle|1.095290251916758e-05| +|pypi|[Bio](https://github.com/ialbert/bio)|1.0843373493975925e-05| +|pypi|[serotools](https://github.com/CFSAN-Biostatistics/serotools)|1.0843373493975925e-05| +|pypi|[idcempy](https://github.com/hknd23/idcempy)|1.0843373493975925e-05| +|pypi|[vip-hci](https://github.com/vortex-exoplanet/VIP)|1.0843373493975925e-05| +|pypi|[pyarma](https://pyarma.sourceforge.io)|1.0843373493975904e-05| +|pypi|[macop](https://github.com/prise-3d/macop)|1.0843373493975904e-05| +|pypi|[multivar-horner](https://github.com/jannikmi/multivar_horner)|1.0843373493975904e-05| +|pypi|[neworder](https://neworder.readthedocs.io)|1.0843373493975904e-05| +|pypi|[pystospa](https://pypi.org/project/pystospa)|1.0843373493975904e-05| +|pypi|[Libra](https://github.com/Palashio/libra)|1.0843373493975904e-05| +|pypi|[hpccm](https://github.com/NVIDIA/hpc-container-maker)|1.0843373493975904e-05| +|pypi|[polypy](https://github.com/symmy596/Polypy)|1.0843373493975904e-05| +|pypi|[requirements](http://github.com/mattack108/requirements)|1.0843373493975904e-05| +|pypi|[itmlogic](https://github.com/edwardoughton/itmlogic)|1.0843373493975904e-05| +|pypi|[ReplicatedFocusingBeliefPropagation](https://github.com/Nico-Curti/rFBP)|1.0843373493975904e-05| +|pypi|[uncalled](https://github.com/elazarg/uncalled)|1.0843373493975904e-05| +|pypi|[kernel-tuner](http://benvanwerkhoven.github.io/kernel_tuner/)|1.0843373493975904e-05| +|pypi|[pyoscode](https://github.com/fruzsinaagocs/oscode)|1.0843373493975904e-05| +|pypi|[fm128-radar](https://github.com/ERA-URBAN/fm128_radar)|1.0843373493975904e-05| +|pypi|[mergedeep](https://github.com/clarketm/mergedeep)|1.0843373493975903e-05| +|pypi|[pyyaml-env-tag](https://pypi.org/project/pyyaml-env-tag)|1.0843373493975903e-05| +|pypi|[Shapely](https://pypi.org/project/Shapely)|1.0843373493975903e-05| +|pypi|[mkdocs-material](https://pypi.org/project/mkdocs-material)|1.0827174243191254e-05| +|pypi|[m2r2](https://pypi.org/project/m2r2)|1.0524450744153083e-05| +|pypi|[pytest-raises](https://pypi.org/project/pytest-raises)|1.0524450744153083e-05| +|pypi|[flake8-debugger](https://pypi.org/project/flake8-debugger)|1.0524450744153083e-05| +|pypi|[yt-dlp](https://pypi.org/project/yt-dlp)|1.0524450744153083e-05| +|pypi|[webvtt-py](https://pypi.org/project/webvtt-py)|1.0524450744153083e-05| +|pypi|[truecase](https://pypi.org/project/truecase)|1.0524450744153083e-05| +|pypi|[rapidfuzz](https://pypi.org/project/rapidfuzz)|1.0524450744153083e-05| +|pypi|[google-cloud-speech](https://pypi.org/project/google-cloud-speech)|1.0524450744153083e-05| +|pypi|[ffmpeg-python](https://pypi.org/project/ffmpeg-python)|1.0524450744153083e-05| +|pypi|[pulumi-gcp](https://pypi.org/project/pulumi-gcp)|1.0524450744153083e-05| +|pypi|[pulumi-google-native](https://pypi.org/project/pulumi-google-native)|1.0524450744153083e-05| +|pypi|[fireo](https://pypi.org/project/fireo)|1.0524450744153083e-05| +|pypi|[pockets](https://pypi.org/project/pockets)|1.0460026824929915e-05| +|pypi|[descartes](http://bitbucket.org/sgillies/descartes/)|1.0347794336687429e-05| +|pypi|[obspy](https://www.obspy.org)|1.024096385542169e-05| +|pypi|[fastapi](https://pypi.org/project/fastapi)|1.0188965996877893e-05| +|pypi|[deprecat](https://github.com/deprecat/deprecat)|1.0160101219926727e-05| +|pypi|[colorlog](https://github.com/borntyping/python-colorlog)|1.003012048192773e-05| +|pypi|[csvw](https://github.com/cldf/csvw)|1.0030120481927715e-05| +|pypi|[iso8601](https://pypi.org/project/iso8601)|9.985047215890589e-06| +|pypi|[google-resumable-media](https://github.com/googleapis/google-resumable-media-python)|9.97108694800872e-06| +|pypi|[requests-cache](https://github.com/reclosedev/requests-cache)|9.9519022913081e-06| +|pypi|[basic-modeling-interface](https://github.com/bmi-forum/bmi-python)|9.939759036144579e-06| +|pypi|[thefuzz](https://github.com/seatgeek/thefuzz)|9.85761226725082e-06| +|pypi|[blis](https://pypi.org/project/blis)|9.766983628312737e-06| +|pypi|[catalogue](https://pypi.org/project/catalogue)|9.766983628312737e-06| +|pypi|[preshed](https://pypi.org/project/preshed)|9.766983628312737e-06| +|pypi|[flake8-docstrings](https://pypi.org/project/flake8-docstrings)|9.709156626506024e-06| +|pypi|[kazoo](https://pypi.org/project/kazoo)|9.691265060240964e-06| +|pypi|[softlayer-messaging](https://pypi.org/project/softlayer-messaging)|9.691265060240964e-06| +|pypi|[pytest-celery](https://pypi.org/project/pytest-celery)|9.691265060240964e-06| +|pypi|[pyro4](https://pypi.org/project/pyro4)|9.691265060240964e-06| +|pypi|[python-memcached](https://pypi.org/project/python-memcached)|9.691265060240964e-06| +|pypi|[pylibmc](https://pypi.org/project/pylibmc)|9.691265060240964e-06| +|pypi|[librabbitmq](https://pypi.org/project/librabbitmq)|9.691265060240964e-06| +|pypi|[pycouchdb](https://pypi.org/project/pycouchdb)|9.691265060240964e-06| +|pypi|[couchbase](https://pypi.org/project/couchbase)|9.691265060240964e-06| +|pypi|[pydocumentdb](https://pypi.org/project/pydocumentdb)|9.691265060240964e-06| +|pypi|[python-consul2](https://pypi.org/project/python-consul2)|9.691265060240964e-06| +|pypi|[cassandra-driver](https://pypi.org/project/cassandra-driver)|9.691265060240964e-06| +|pypi|[pyArango](https://pypi.org/project/pyArango)|9.691265060240964e-06| +|pypi|[assertionlib](https://pypi.org/project/assertionlib)|9.655093747772152e-06| +|pypi|[colorcet](https://pypi.org/project/colorcet)|9.595944754628267e-06| +|pypi|[starlette](https://pypi.org/project/starlette)|9.587568811497717e-06| +|pypi|[pythreejs](https://pypi.org/project/pythreejs)|9.48891996557659e-06| +|pypi|[pyside2](https://pypi.org/project/pyside2)|9.48891996557659e-06| +|pypi|[vispy](https://pypi.org/project/vispy)|9.48891996557659e-06| +|pypi|[pyside](https://pypi.org/project/pyside)|9.48891996557659e-06| +|pypi|[pyviz-comms](https://pypi.org/project/pyviz-comms)|9.36025092103953e-06| +|pypi|[pytest-notebook](https://github.com/chrisjsewell/pytest-notebook)|9.334730225248821e-06| +|pypi|[aio-pika](https://pypi.org/project/aio-pika)|9.334730225248821e-06| +|pypi|[emcee](https://emcee.readthedocs.io)|9.236677479147397e-06| +|pypi|[grpcio-status](https://pypi.org/project/grpcio-status)|9.214918510134027e-06| +|pypi|[pytz-deprecation-shim](https://github.com/pganssle/pytz-deprecation-shim)|9.148321858864028e-06| +|pypi|[corner](https://corner.readthedocs.io)|9.138101356474865e-06| +|pypi|[configargparse](https://github.com/bw2/ConfigArgParse)|9.137568455640758e-06| +|pypi|[pymc3](http://github.com/pymc-devs/pymc3)|9.119391202897655e-06| +|pypi|[python-telegram-bot](https://python-telegram-bot.org/)|9.036144578313253e-06| +|pypi|[twython](https://github.com/ryanmcgrath/twython/tree/master)|9.036144578313253e-06| +|pypi|[pretty-midi](https://pypi.org/project/pretty-midi)|8.871851040525739e-06| +|pypi|[versioneer](https://github.com/python-versioneer/python-versioneer)|8.871851040525739e-06| +|pypi|[zest.releaser](https://pypi.org/project/zest.releaser)|8.63197074010327e-06| +|pypi|[jaxlib](https://pypi.org/project/jaxlib)|8.534505669737777e-06| +|pypi|[aafigure](https://pypi.org/project/aafigure)|8.519793459552494e-06| +|pypi|[tox-travis](https://pypi.org/project/tox-travis)|8.519793459552494e-06| +|pypi|[win32-setctime](https://pypi.org/project/win32-setctime)|8.519793459552494e-06| +|pypi|[aiocontextvars](https://pypi.org/project/aiocontextvars)|8.519793459552494e-06| +|pypi|[mizani](https://github.com/has2k1/mizani)|8.442340791738389e-06| +|pypi|[python-swiftclient](https://docs.openstack.org/python-swiftclient/latest/)|8.433734939759096e-06| +|pypi|[grpcio-gcp](https://pypi.org/project/grpcio-gcp)|8.311304052302694e-06| +|pypi|[parameterized](https://pypi.org/project/parameterized)|8.23269727260691e-06| +|pypi|[vega-datasets](https://pypi.org/project/vega-datasets)|8.212161144578313e-06| +|pypi|[xopen](https://github.com/pycompression/xopen/)|8.113554216867496e-06| +|pypi|[json-tricks](https://github.com/mverleg/pyjson_tricks)|8.105421686746988e-06| +|pypi|[Deprecated](https://pypi.org/project/Deprecated)|7.988883096801403e-06| +|pypi|[thinc](https://pypi.org/project/thinc)|7.843159298736365e-06| +|pypi|[boltons](https://pypi.org/project/boltons)|7.814707104279186e-06| +|pypi|[pytest-cov>=2.10](https://pypi.org/project/pytest-cov>=2.10)|7.814707104279186e-06| +|pypi|[pytest>=6.0](https://pypi.org/project/pytest>=6.0)|7.814707104279186e-06| +|pypi|[loompy>=3.0.5](https://pypi.org/project/loompy>=3.0.5)|7.814707104279186e-06| +|pypi|[scanpydoc>=0.7.3](https://pypi.org/project/scanpydoc>=0.7.3)|7.814707104279186e-06| +|pypi|[sphinx_issues](https://pypi.org/project/sphinx_issues)|7.814707104279186e-06| +|pypi|[sphinx-autodoc-typehints>=1.11.0](https://pypi.org/project/sphinx-autodoc-typehints>=1.11.0)|7.814707104279186e-06| +|pypi|[sphinx>=4.1,<4.2](https://pypi.org/project/sphinx>=4.1,<4.2)|7.814707104279186e-06| +|pypi|[packaging>=20](https://pypi.org/project/packaging>=20)|7.814707104279186e-06| +|pypi|[scipy>1.4](https://pypi.org/project/scipy>1.4)|7.814707104279186e-06| +|pypi|[numpy>=1.16.5](https://pypi.org/project/numpy>=1.16.5)|7.814707104279186e-06| +|pypi|[pandas>=1.1.1](https://pypi.org/project/pandas>=1.1.1)|7.814707104279186e-06| +|pypi|[qmflows](https://pypi.org/project/qmflows)|7.80484575665299e-06| +|pypi|[streamz](https://pypi.org/project/streamz)|7.788715838965619e-06| +|pypi|[nbsmoke](https://pypi.org/project/nbsmoke)|7.788715838965619e-06| +|pypi|[nbsite](https://pypi.org/project/nbsite)|7.788715838965619e-06| +|pypi|[WTForms](https://wtforms.readthedocs.io/)|7.761816496756258e-06| +|pypi|[pathspec](https://pypi.org/project/pathspec)|7.7248080506569e-06| +|pypi|[bandit](https://pypi.org/project/bandit)|7.709067850348763e-06| +|pypi|[lingua](https://pypi.org/project/lingua)|7.667814113597245e-06| +|pypi|[pytest-rerunfailures](https://pypi.org/project/pytest-rerunfailures)|7.664128865693186e-06| +|pypi|[sphinx-automodapi](https://pypi.org/project/sphinx-automodapi)|7.591533757121766e-06| +|pypi|[soxr](https://pypi.org/project/soxr)|7.590361445783133e-06| +|pypi|[samplerate](https://pypi.org/project/samplerate)|7.590361445783133e-06| +|pypi|[presets](https://pypi.org/project/presets)|7.590361445783133e-06| +|pypi|[sphinxcontrib-svg2pdfconverter](https://pypi.org/project/sphinxcontrib-svg2pdfconverter)|7.590361445783133e-06| +|pypi|[mir-eval](https://pypi.org/project/mir-eval)|7.590361445783133e-06| +|pypi|[sphinx-multiversion](https://pypi.org/project/sphinx-multiversion)|7.590361445783133e-06| +|pypi|[resampy](https://pypi.org/project/resampy)|7.590361445783133e-06| +|pypi|[audioread](https://pypi.org/project/audioread)|7.590361445783133e-06| +|pypi|[pyaml](https://github.com/mk-fg/pretty-yaml)|7.563253012048208e-06| +|pypi|[pyvista](https://pypi.org/project/pyvista)|7.540160642570282e-06| +|pypi|[Keras](https://github.com/keras-team/keras)|7.507087172218284e-06| +|pypi|[langdetect](https://github.com/Mimino666/langdetect)|7.432745266781418e-06| +|pypi|[func-timeout](https://pypi.org/project/func-timeout)|7.429969879518072e-06| +|pypi|[jaraco.itertools](https://pypi.org/project/jaraco.itertools)|7.429969879518072e-06| +|pypi|[geopandas](http://geopandas.org)|7.3497186691061484e-06| +|pypi|[os-service-types](https://pypi.org/project/os-service-types)|7.347469879518072e-06| +|pypi|[hyperspy](https://pypi.org/project/hyperspy)|7.296952515946136e-06| +|pypi|[atomneb](https://atomneb.github.io/AtomNeb-py/)|7.219879518072328e-06| +|pypi|[fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy)|7.164371772805515e-06| +|pypi|[testscenarios](https://pypi.org/project/testscenarios)|7.085060240963855e-06| +|pypi|[pytest-mypy-plugins](https://pypi.org/project/pytest-mypy-plugins)|7.055840878306123e-06| +|pypi|[Auto-FOX](https://pypi.org/project/Auto-FOX)|6.970740103270223e-06| +|pypi|[ipyvolume](https://pypi.org/project/ipyvolume)|6.939759036144578e-06| +|pypi|[fasteners](https://pypi.org/project/fasteners)|6.9289324480584874e-06| +|pypi|[APScheduler](https://github.com/agronholm/apscheduler)|6.906196213425131e-06| +|pypi|[swagger-ui-bundle](https://pypi.org/project/swagger-ui-bundle)|6.815834767641997e-06| +|pypi|[aiohttp-jinja2](https://pypi.org/project/aiohttp-jinja2)|6.815834767641997e-06| +|pypi|[channels](https://pypi.org/project/channels)|6.649407547545554e-06| +|pypi|[pydeck](https://pypi.org/project/pydeck)|6.64156626506024e-06| +|pypi|[typer-cli](https://pypi.org/project/typer-cli)|6.626506024096385e-06| +|pypi|[pytest-coverage](https://pypi.org/project/pytest-coverage)|6.626506024096385e-06| +|pypi|[lark](https://github.com/lark-parser/lark)|6.6144578313253496e-06| +|pypi|[moto](https://pypi.org/project/moto)|6.613111326886493e-06| +|pypi|[Flask-Sockets](https://pypi.org/project/Flask-Sockets)|6.613111326886493e-06| +|pypi|[sphobjinv](https://pypi.org/project/sphobjinv)|6.586807645968488e-06| +|pypi|[pytest-dependency](https://github.com/RKrahl/pytest-dependency)|6.5167483119290344e-06| +|pypi|[cmocean](https://pypi.org/project/cmocean)|6.501771793054571e-06| +|pypi|[pyppeteer](https://pypi.org/project/pyppeteer)|6.497980934727922e-06| +|pypi|[cattrs](https://github.com/python-attrs/cattrs)|6.445677651893295e-06| +|pypi|[url-normalize](https://github.com/niksite/url-normalize)|6.445677651893295e-06| +|pypi|[sentencepiece](https://pypi.org/project/sentencepiece)|6.336596385542169e-06| +|pypi|[holoviews](https://www.holoviews.org)|6.282691742580081e-06| +|pypi|[datashader](https://datashader.org)|6.084337349397594e-06| +|pypi|[email_validator](https://github.com/JoshData/python-email-validator)|6.059532246633608e-06| +|pypi|[python-igraph](https://igraph.org/python)|5.906177903101773e-06| +|pypi|[cloudnetpy-qc](https://pypi.org/project/cloudnetpy-qc)|5.898318548920958e-06| +|pypi|[humanize](https://github.com/jmoiron/humanize)|5.873493975903609e-06| +|pypi|[pytest-env](https://github.com/MobileDynasty/pytest-env)|5.758615461491482e-06| +|pypi|[bson](https://pypi.org/project/bson)|5.671150973752151e-06| +|pypi|[PyEnchant](https://pypi.org/project/PyEnchant)|5.591114457831325e-06| +|pypi|[wordcloud](https://pypi.org/project/wordcloud)|5.565070198147984e-06| +|pypi|[streamlit](https://streamlit.io)|5.557228915662671e-06| +|pypi|[iminuit](http://github.com/scikit-hep/iminuit)|5.5572289156626515e-06| +|pypi|[coxeter](https://github.com/glotzerlab/coxeter)|5.421686746987962e-06| +|pypi|[prettytable](https://github.com/jazzband/prettytable)|5.421686746987962e-06| +|pypi|[exhale](https://github.com/svenevs/exhale)|5.421686746987962e-06| +|pypi|[jumper](https://vlab.jumper.io)|5.421686746987962e-06| +|pypi|[smart_open](https://github.com/piskvorky/smart_open)|5.421686746987962e-06| +|pypi|[SomaticSiMu](https://github.com/HillLab/SomaticSiMu)|5.421686746987962e-06| +|pypi|[git](https://pypi.org)|5.421686746987962e-06| +|pypi|[demask](https://github.com/Singh-Lab/DeMaSk)|5.421686746987962e-06| +|pypi|[pybiopax](https://github.com/indralab/pybiopax)|5.421686746987962e-06| +|pypi|[pomegranate](http://pypi.python.org/pypi/pomegranate/)|5.421686746987962e-06| +|pypi|[PICOS](https://pypi.org/project/PICOS)|5.421686746987952e-06| +|pypi|[freud-analysis](https://github.com/glotzerlab/freud)|5.421686746987952e-06| +|pypi|[cb-platon](https://github.com/oschwengers/platon)|5.421686746987952e-06| +|pypi|[setuptools_scm_git_archive](https://github.com/Changaco/setuptools_scm_git_archive/)|5.421686746987952e-06| +|pypi|[OpenSMOG](https://github.com/junioreif/OpenSMOG)|5.421686746987952e-06| +|pypi|[firesong](https://github.com/icecube/FIRESONG)|5.421686746987952e-06| +|pypi|[partycls](https://pypi.org/project/partycls)|5.421686746987952e-06| +|pypi|[komics](http://github.com/frebio/komics)|5.421686746987952e-06| +|pypi|[gridtest](http://www.github.com/vsoch/gridtest)|5.421686746987952e-06| +|pypi|[subset](https://github.com/rightbrace/subset-game.git)|5.421686746987952e-06| +|pypi|[cdp-backend](https://github.com/CouncilDataProject/cdp-backend)|5.421686746987901e-06| +|pypi|[spython](https://github.com/singularityhub/singularity-cli)|5.419104991394165e-06| +|pypi|[mayavi](http://docs.enthought.com/mayavi/mayavi/)|5.396172927002125e-06| +|pypi|[memoization](https://pypi.org/project/memoization)|5.262225372076542e-06| +|pypi|[fbpca](https://pypi.org/project/fbpca)|5.262225372076542e-06| +|pypi|[oktopus](https://pypi.org/project/oktopus)|5.262225372076542e-06| +|pypi|[astroquery](https://pypi.org/project/astroquery)|5.262225372076542e-06| +|pypi|[tables](https://pypi.org/project/tables)|5.203624415015427e-06| +|pypi|[SALib](http://salib.github.io/SALib/)|5.164978094194963e-06| +|pypi|[jarvis-tools](https://github.com/usnistgov/jarvis)|5.111876075731497e-06| +|pypi|[elasticsearch-dsl](https://pypi.org/project/elasticsearch-dsl)|5.111876075731497e-06| +|pypi|[mongomock](https://pypi.org/project/mongomock)|5.111876075731497e-06| +|pypi|[jsondiff](https://pypi.org/project/jsondiff)|5.111876075731497e-06| +|pypi|[mkdocstrings](https://pypi.org/project/mkdocstrings)|5.111876075731497e-06| +|pypi|[mkdocs-awesome-pages-plugin](https://pypi.org/project/mkdocs-awesome-pages-plugin)|5.111876075731497e-06| +|pypi|[mike](https://pypi.org/project/mike)|5.111876075731497e-06| +|pypi|[aiida-core](https://pypi.org/project/aiida-core)|5.111876075731497e-06| +|pypi|[trollius](https://pypi.org/project/trollius)|5.111876075731497e-06| +|pypi|[funcsigs](https://pypi.org/project/funcsigs)|5.111876075731497e-06| +|pypi|[vulture](https://pypi.org/project/vulture)|5.084971464806595e-06| +|pypi|[setoptconf-tmp](https://pypi.org/project/setoptconf-tmp)|5.084971464806595e-06| +|pypi|[requirements-detector](https://pypi.org/project/requirements-detector)|5.084971464806595e-06| +|pypi|[pylint-plugin-utils](https://pypi.org/project/pylint-plugin-utils)|5.084971464806595e-06| +|pypi|[pylint-flask](https://pypi.org/project/pylint-flask)|5.084971464806595e-06| +|pypi|[pylint-django](https://pypi.org/project/pylint-django)|5.084971464806595e-06| +|pypi|[pylint-celery](https://pypi.org/project/pylint-celery)|5.084971464806595e-06| +|pypi|[dodgy](https://pypi.org/project/dodgy)|5.084971464806595e-06| +|pypi|[python-graphviz](https://pypi.org/project/python-graphviz)|5.077872465471643e-06| +|pypi|[doc8](https://pypi.org/project/doc8)|5.060757314974183e-06| +|pypi|[subunit2sql](https://pypi.org/project/subunit2sql)|5.060757314974183e-06| +|pypi|[cliff](https://pypi.org/project/cliff)|5.060757314974183e-06| +|pypi|[ipyleaflet](https://pypi.org/project/ipyleaflet)|4.9050920663787225e-06| +|pypi|[numdifftools](https://github.com/pbrod/numdifftools)|4.879518072289157e-06| +|pypi|[levmar](https://pypi.org/project/levmar)|4.879518072289157e-06| +|pypi|[gradient-free-optimizers](https://pypi.org/project/gradient-free-optimizers)|4.879518072289157e-06| +|pypi|[bumps](https://pypi.org/project/bumps)|4.879518072289157e-06| +|pypi|[tinycc](https://pypi.org/project/tinycc)|4.879518072289157e-06| +|pypi|[sasmodels](https://pypi.org/project/sasmodels)|4.879518072289157e-06| +|pypi|[dfogn](https://pypi.org/project/dfogn)|4.879518072289157e-06| +|pypi|[DFO-LS](https://pypi.org/project/DFO-LS)|4.879518072289157e-06| +|pypi|[profimp](https://pypi.org/project/profimp)|4.821840553704178e-06| +|pypi|[zappy](https://pypi.org/project/zappy)|4.821840553704178e-06| +|pypi|[pytest-nunit](https://pypi.org/project/pytest-nunit)|4.821840553704178e-06| +|pypi|[pytest>=4.4](https://pypi.org/project/pytest>=4.4)|4.821840553704178e-06| +|pypi|[scikit-misc>=0.1.3](https://pypi.org/project/scikit-misc>=0.1.3)|4.821840553704178e-06| +|pypi|[scrublet](https://pypi.org/project/scrublet)|4.821840553704178e-06| +|pypi|[scanorama](https://pypi.org/project/scanorama)|4.821840553704178e-06| +|pypi|[cugraph>=0.9](https://pypi.org/project/cugraph>=0.9)|4.821840553704178e-06| +|pypi|[cuml>=0.9](https://pypi.org/project/cuml>=0.9)|4.821840553704178e-06| +|pypi|[cudf>=0.9](https://pypi.org/project/cudf>=0.9)|4.821840553704178e-06| +|pypi|[magic-impute>=2.0](https://pypi.org/project/magic-impute>=2.0)|4.821840553704178e-06| +|pypi|[louvain>=0.6,!=0.6.2](https://pypi.org/project/louvain>=0.6,!=0.6.2)|4.821840553704178e-06| +|pypi|[leidenalg](https://pypi.org/project/leidenalg)|4.821840553704178e-06| +|pypi|[harmonypy](https://pypi.org/project/harmonypy)|4.821840553704178e-06| +|pypi|[sphinx-rtd-theme>=1.0](https://pypi.org/project/sphinx-rtd-theme>=1.0)|4.821840553704178e-06| +|pypi|[sphinx>=4.4](https://pypi.org/project/sphinx>=4.4)|4.821840553704178e-06| +|pypi|[bbknn](https://pypi.org/project/bbknn)|4.821840553704178e-06| +|pypi|[session-info](https://pypi.org/project/session-info)|4.821840553704178e-06| +|pypi|[umap-learn>=0.3.10](https://pypi.org/project/umap-learn>=0.3.10)|4.821840553704178e-06| +|pypi|[numba>=0.41.0](https://pypi.org/project/numba>=0.41.0)|4.821840553704178e-06| +|pypi|[networkx>=2.3](https://pypi.org/project/networkx>=2.3)|4.821840553704178e-06| +|pypi|[statsmodels>=0.10.0rc2](https://pypi.org/project/statsmodels>=0.10.0rc2)|4.821840553704178e-06| +|pypi|[scikit-learn>=0.22](https://pypi.org/project/scikit-learn>=0.22)|4.821840553704178e-06| +|pypi|[flit_core](https://pypi.org/project/flit_core)|4.821840553704178e-06| +|pypi|[scipy>=1.4](https://pypi.org/project/scipy>=1.4)|4.821840553704178e-06| +|pypi|[pandas>=1.0](https://pypi.org/project/pandas>=1.0)|4.821840553704178e-06| +|pypi|[matplotlib>=3.4](https://pypi.org/project/matplotlib>=3.4)|4.821840553704178e-06| +|pypi|[numpy>=1.17.0](https://pypi.org/project/numpy>=1.17.0)|4.821840553704178e-06| +|pypi|[anndata>=0.7.4](https://pypi.org/project/anndata>=0.7.4)|4.821840553704178e-06| +|pypi|[openbabel](http://openbabel.org/)|4.807228915662651e-06| +|pypi|[pssmgen](https://github.com/DeepRank/PSSMGen)|4.7930853850183405e-06| +|pypi|[Click](https://palletsprojects.com/p/click/)|4.789040331209024e-06| +|pypi|[astroid](https://pypi.org/project/astroid)|4.771084337349397e-06| +|pypi|[genfire](https://pypi.org/project/genfire)|4.771084337349397e-06| +|pypi|[swapper](https://pypi.org/project/swapper)|4.771084337349397e-06| +|pypi|[jsonfield](https://pypi.org/project/jsonfield)|4.771084337349397e-06| +|pypi|[django-model-utils](https://pypi.org/project/django-model-utils)|4.771084337349397e-06| +|pypi|[requestsexceptions](https://pypi.org/project/requestsexceptions)|4.723373493975904e-06| +|pypi|[jsonpatch](https://pypi.org/project/jsonpatch)|4.723373493975904e-06| +|pypi|[aesara-theano-fallback](https://github.com/exoplanet-dev/aesara-theano-fallback)|4.693198367897162e-06| +|pypi|[cupy-cuda92](https://pypi.org/project/cupy-cuda92)|4.683841141008143e-06| +|pypi|[cupy-cuda91](https://pypi.org/project/cupy-cuda91)|4.683841141008143e-06| +|pypi|[cupy-cuda90](https://pypi.org/project/cupy-cuda90)|4.683841141008143e-06| +|pypi|[cupy-cuda80](https://pypi.org/project/cupy-cuda80)|4.683841141008143e-06| +|pypi|[cupy-cuda115](https://pypi.org/project/cupy-cuda115)|4.683841141008143e-06| +|pypi|[cupy-cuda114](https://pypi.org/project/cupy-cuda114)|4.683841141008143e-06| +|pypi|[cupy-cuda113](https://pypi.org/project/cupy-cuda113)|4.683841141008143e-06| +|pypi|[cupy-cuda112](https://pypi.org/project/cupy-cuda112)|4.683841141008143e-06| +|pypi|[cupy-cuda111](https://pypi.org/project/cupy-cuda111)|4.683841141008143e-06| +|pypi|[cupy-cuda110](https://pypi.org/project/cupy-cuda110)|4.683841141008143e-06| +|pypi|[cupy-cuda102](https://pypi.org/project/cupy-cuda102)|4.683841141008143e-06| +|pypi|[cupy-cuda101](https://pypi.org/project/cupy-cuda101)|4.683841141008143e-06| +|pypi|[cupy-cuda100](https://pypi.org/project/cupy-cuda100)|4.683841141008143e-06| +|pypi|[types-orjson](https://pypi.org/project/types-orjson)|4.51047889035132e-06| +|pypi|[types-ujson](https://pypi.org/project/types-ujson)|4.51047889035132e-06| +|pypi|[peewee](https://pypi.org/project/peewee)|4.51047889035132e-06| +|pypi|[mkdocs-markdownextradata-plugin](https://pypi.org/project/mkdocs-markdownextradata-plugin)|4.51047889035132e-06| +|pypi|[mdx-include](https://pypi.org/project/mdx-include)|4.51047889035132e-06| +|pypi|[autoflake](https://pypi.org/project/autoflake)|4.51047889035132e-06| +|pypi|[python-jose](https://pypi.org/project/python-jose)|4.51047889035132e-06| +|pypi|[pywavelets](https://github.com/PyWavelets/pywt)|4.509036144578346e-06| +|pypi|[asttokens](https://pypi.org/project/asttokens)|4.480732848750374e-06| +|pypi|[Automat](https://pypi.org/project/Automat)|4.480732848750374e-06| +|pypi|[Boruta](https://pypi.org/project/Boruta)|4.480732848750374e-06| +|pypi|[coverage-badge](https://pypi.org/project/coverage-badge)|4.480732848750374e-06| +|pypi|[cramjam](https://pypi.org/project/cramjam)|4.480732848750374e-06| +|pypi|[cufflinks](https://pypi.org/project/cufflinks)|4.480732848750374e-06| +|pypi|[daphne](https://pypi.org/project/daphne)|4.480732848750374e-06| +|pypi|[django-admin-index](https://pypi.org/project/django-admin-index)|4.480732848750374e-06| +|pypi|[django-classy-tags](https://pypi.org/project/django-classy-tags)|4.480732848750374e-06| +|pypi|[django-light](https://pypi.org/project/django-light)|4.480732848750374e-06| +|pypi|[django-ordered-model](https://pypi.org/project/django-ordered-model)|4.480732848750374e-06| +|pypi|[dpd-components](https://pypi.org/project/dpd-components)|4.480732848750374e-06| +|pypi|[executing](https://pypi.org/project/executing)|4.480732848750374e-06| +|pypi|[funcy](https://pypi.org/project/funcy)|4.480732848750374e-06| +|pypi|[htmlmin](https://pypi.org/project/htmlmin)|4.480732848750374e-06| +|pypi|[ImageHash](https://pypi.org/project/ImageHash)|4.480732848750374e-06| +|pypi|[jwcrypto](https://pypi.org/project/jwcrypto)|4.480732848750374e-06| +|pypi|[kmodes](https://pypi.org/project/kmodes)|4.480732848750374e-06| +|pypi|[lightgbm](https://pypi.org/project/lightgbm)|4.480732848750374e-06| +|pypi|[missingno](https://pypi.org/project/missingno)|4.480732848750374e-06| +|pypi|[mlxtend](https://pypi.org/project/mlxtend)|4.480732848750374e-06| +|pypi|[multimethod](https://pypi.org/project/multimethod)|4.480732848750374e-06| +|pypi|[pandas-profiling](https://pypi.org/project/pandas-profiling)|4.480732848750374e-06| +|pypi|[phik](https://pypi.org/project/phik)|4.480732848750374e-06| +|pypi|[pure-eval](https://pypi.org/project/pure-eval)|4.480732848750374e-06| +|pypi|[pycaret](https://pypi.org/project/pycaret)|4.480732848750374e-06| +|pypi|[pyLDAvis](https://pypi.org/project/pyLDAvis)|4.480732848750374e-06| +|pypi|[pynndescent](https://pypi.org/project/pynndescent)|4.480732848750374e-06| +|pypi|[pyod](https://pypi.org/project/pyod)|4.480732848750374e-06| +|pypi|[scikit-plot](https://pypi.org/project/scikit-plot)|4.480732848750374e-06| +|pypi|[shap](https://pypi.org/project/shap)|4.480732848750374e-06| +|pypi|[slicer](https://pypi.org/project/slicer)|4.480732848750374e-06| +|pypi|[tangled-up-in-unicode](https://pypi.org/project/tangled-up-in-unicode)|4.480732848750374e-06| +|pypi|[textblob](https://pypi.org/project/textblob)|4.480732848750374e-06| +|pypi|[Twisted](https://pypi.org/project/Twisted)|4.480732848750374e-06| +|pypi|[visions](https://pypi.org/project/visions)|4.480732848750374e-06| +|pypi|[yellowbrick](https://pypi.org/project/yellowbrick)|4.480732848750374e-06| +|pypi|[hdbscan](http://github.com/scikit-learn-contrib/hdbscan)|4.47289156626506e-06| +|pypi|[eli5](https://github.com/eli5-org/eli5)|4.47289156626506e-06| +|pypi|[validators](https://pypi.org/project/validators)|4.4728915662650596e-06| +|pypi|[scooby](https://github.com/banesullivan/scooby)|4.377510040160643e-06| +|pypi|[kubernetes](https://pypi.org/project/kubernetes)|4.301909081959516e-06| +|pypi|[mendeleev](https://github.com/lmmentel/mendeleev)|4.299302473050104e-06| +|pypi|[validate-pyproject](https://pypi.org/project/validate-pyproject)|4.2853186941313635e-06| +|pypi|[pyproject-fmt](https://pypi.org/project/pyproject-fmt)|4.2853186941313635e-06| +|pypi|[tomlkit](https://pypi.org/project/tomlkit)|4.2853186941313635e-06| +|pypi|[configupdater](https://pypi.org/project/configupdater)|4.2853186941313635e-06| +|pypi|[pydicom](https://pypi.org/project/pydicom)|4.259896729776247e-06| +|pypi|[jupytext](https://pypi.org/project/jupytext)|4.200317754534622e-06| +|pypi|[portpicker](https://pypi.org/project/portpicker)|4.193335843373494e-06| +|pypi|[kt-legacy](https://pypi.org/project/kt-legacy)|4.193335843373494e-06| +|pypi|[velociraptor](https://github.com/swiftsim/velociraptor-python)|4.179216867469883e-06| +|pypi|[pycuda](https://pypi.org/project/pycuda)|4.066265060240964e-06| +|pypi|[tempora](https://pypi.org/project/tempora)|3.987727118150019e-06| +|pypi|[matchms](https://github.com/matchms/matchms)|3.975903614457855e-06| +|pypi|[yatiml](https://github.com/yatiml/yatiml)|3.949924698795183e-06| +|pypi|[types-pkg-resources](https://pypi.org/project/types-pkg-resources)|3.903614457831324e-06| +|pypi|[h5xplorer](https://pypi.org/project/h5xplorer)|3.889470927187009e-06| +|pypi|[google-api-python-client](https://github.com/googleapis/google-api-python-client/)|3.834666945136997e-06| +|pypi|[entsoe-py](https://github.com/EnergieID/entsoe-py)|3.727409638554218e-06| +|pypi|[quandl](https://github.com/quandl/quandl-python)|3.727409638554218e-06| +|pypi|[pytest-sugar](https://pypi.org/project/pytest-sugar)|3.627510718177653e-06| +|pypi|[synthia](https://github.com/dmey/synthia)|3.6144578313253287e-06| +|pypi|[BisPy](https://github.com/fAndreuzzi/BisPy)|3.6144578313253287e-06| +|pypi|[symfem](https://github.com/mscroggs/symfem)|3.6144578313253287e-06| +|pypi|[sphinxcontrib-doxylink](http://sphinxcontrib-doxylink.readthedocs.io/en/stable/)|3.6144578313253287e-06| +|pypi|[howfairis](https://github.com/fair-software/howfairis)|3.6144578313253287e-06| +|pypi|[cpplint](https://github.com/cpplint/cpplint)|3.6144578313253287e-06| +|pypi|[importlib_metadata](https://github.com/python/importlib_metadata)|3.6144578313253287e-06| +|pypi|[bigslice](https://github.com/satriaphd/bigslice)|3.6144578313253287e-06| +|pypi|[contextily](https://github.com/darribas/contextily)|3.6144578313253287e-06| +|pypi|[PSSMGen](https://github.com/DeepRank/PSSMGen)|3.6144578313253287e-06| +|pypi|[pyone](http://opennebula.io)|3.6144578313253287e-06| +|pypi|[sit2standpy](https://github.com/PfizerRD/sit2standpy)|3.6144578313253287e-06| +|pypi|[circuitgraph](https://github.com/circuitgraph/circuitgraph)|3.6144578313253287e-06| +|pypi|[google-cloud-monitoring](https://github.com/googleapis/python-monitoring)|3.6144578313253287e-06| +|pypi|[tesliper](https://github.com/mishioo/tesliper)|3.6144578313253016e-06| +|pypi|[pyplif-hippos](https://github.com/radifar/PyPLIF-HIPPOS)|3.6144578313253016e-06| +|pypi|[bitarray](https://github.com/ilanschnell/bitarray)|3.6144578313253016e-06| +|pypi|[clingo](https://github.com/potassco/clingo)|3.6144578313253016e-06| +|pypi|[electiondata](https://github.com/kavigupta/electiondata)|3.6144578313253016e-06| +|pypi|[libceed](https://libceed.readthedocs.io)|3.6144578313253016e-06| +|pypi|[singularity-compose](http://github.com/singularityhub/singularity-compose)|3.6144578313253016e-06| +|pypi|[asciitree](http://github.com/mbr/asciitree)|3.605421686746988e-06| +|pypi|[pytest-isort](https://pypi.org/project/pytest-isort)|3.5650978915662657e-06| +|pypi|[pyevtk](https://github.com/pyscience-projects/pyevtk)|3.5081502480510283e-06| +|pypi|[rdkit-pypi](https://github.com/kuelumbus/rdkit-pypi)|3.4716829897552838e-06| +|pypi|[pytest-remotedata](https://github.com/astropy/pytest-remotedata)|3.4236082260074794e-06| +|pypi|[PySide2](https://www.pyside.org)|3.404819277108467e-06| +|pypi|[twiggy](https://github.com/wearpants/twiggy/)|3.3956880152187723e-06| +|pypi|[langcodes](https://github.com/rspeer/langcodes)|3.362426449985992e-06| +|pypi|[pathy](https://github.com/justindujardin/pathy)|3.362426449985992e-06| +|pypi|[spacy-loggers](https://github.com/explosion/spacy-loggers)|3.362426449985992e-06| +|pypi|[pydotplus](https://pypi.org/project/pydotplus)|3.3235107613114997e-06| +|pypi|[xcffib](https://pypi.org/project/xcffib)|3.321121987951807e-06| +|pypi|[pytest-pydocstyle](https://pypi.org/project/pytest-pydocstyle)|3.303058387395737e-06| +|pypi|[pytest-pycodestyle](https://pypi.org/project/pytest-pycodestyle)|3.303058387395737e-06| +|pypi|[types-PyYAML](https://pypi.org/project/types-PyYAML)|3.303058387395737e-06| +|pypi|[uvloop](https://pypi.org/project/uvloop)|3.244075201906527e-06| +|pypi|[tokenize-rt](https://pypi.org/project/tokenize-rt)|3.244075201906527e-06| +|pypi|[flat-table](https://github.com/metinsenturk/flat_table)|3.2213735578920475e-06| +|pypi|[tikzplotlib](https://pypi.org/project/tikzplotlib)|3.2213735578920475e-06| +|pypi|[cachecontrol](https://github.com/ionrock/cachecontrol)|3.176650263023926e-06| +|pypi|[google-cloud-firestore](https://github.com/googleapis/python-firestore)|3.176650263023926e-06| +|pypi|[sphinx-toggleprompt](https://pypi.org/project/sphinx-toggleprompt)|3.0496987951807227e-06| +|pypi|[pvfactors](https://pypi.org/project/pvfactors)|3.0496987951807227e-06| +|pypi|[pytest-responsemock](https://pypi.org/project/pytest-responsemock)|3.0496987951807227e-06| +|pypi|[iso3166](https://pypi.org/project/iso3166)|3.0496987951807227e-06| +|pypi|[importlib_resources](http://importlib-resources.readthedocs.io/)|3.012048192771102e-06| +|pypi|[scriptcwl](https://github.com/nlesc/scriptcwl)|3.012048192771102e-06| +|pypi|[mne](https://mne.tools/dev/)|2.9912754466140435e-06| +|pypi|[sphinxbootstrap4theme](https://pypi.org/project/sphinxbootstrap4theme)|2.9521084337349396e-06| +|pypi|[texttable](https://pypi.org/project/texttable)|2.9521084337349396e-06| +|pypi|[pymeeus](https://pypi.org/project/pymeeus)|2.9521084337349396e-06| +|pypi|[phonemizer](https://pypi.org/project/phonemizer)|2.9480421686747194e-06| +|pypi|[croniter](https://pypi.org/project/croniter)|2.9209337349397606e-06| +|pypi|[dask-cudf](https://pypi.org/project/dask-cudf)|2.909197766676462e-06| +|pypi|[cudf](https://pypi.org/project/cudf)|2.909197766676462e-06| +|pypi|[spatialpandas](https://pypi.org/project/spatialpandas)|2.909197766676462e-06| +|pypi|[snappy](https://pypi.org/project/snappy)|2.909197766676462e-06| +|pypi|[rioxarray](https://pypi.org/project/rioxarray)|2.909197766676462e-06| +|pypi|[datashape](https://pypi.org/project/datashape)|2.909197766676462e-06| +|pypi|[OpenPIV](https://pypi.org/project/OpenPIV)|2.882750514252128e-06| +|pypi|[pyoculus](https://pypi.org/project/pyoculus)|2.8703047484053863e-06| +|pypi|[py-spec](https://pypi.org/project/py-spec)|2.8703047484053863e-06| +|pypi|[pywin32-ctypes](https://pypi.org/project/pywin32-ctypes)|2.862650602409638e-06| +|pypi|[horovod](https://pypi.org/project/horovod)|2.8249841471147745e-06| +|pypi|[pytest-regressions](https://github.com/ESSS/pytest-regressions)|2.82342511701786e-06| +|pypi|[pygam](https://github.com/dswah/pyGAM)|2.8141135972461287e-06| +|pypi|[itk-segmentation](https://pypi.org/project/itk-segmentation)|2.8115318416523232e-06| +|pypi|[itk-registration](https://pypi.org/project/itk-registration)|2.8115318416523232e-06| +|pypi|[itk-filtering](https://pypi.org/project/itk-filtering)|2.8115318416523232e-06| +|pypi|[itk-io](https://pypi.org/project/itk-io)|2.8115318416523232e-06| +|pypi|[itk-numerics](https://pypi.org/project/itk-numerics)|2.8115318416523232e-06| +|pypi|[itk-core](https://pypi.org/project/itk-core)|2.8115318416523232e-06| +|pypi|[sphinx-argparse-cli](https://pypi.org/project/sphinx-argparse-cli)|2.800369432355441e-06| +|pypi|[spacy-transformers](https://spacy.io)|2.7600168114317733e-06| +|pypi|[pythainlp](https://pypi.org/project/pythainlp)|2.7600168114317733e-06| +|pypi|[spacy-ray](https://pypi.org/project/spacy-ray)|2.7600168114317733e-06| +|pypi|[spacy-lookups-data](https://pypi.org/project/spacy-lookups-data)|2.7600168114317733e-06| +|pypi|[natto-py](https://pypi.org/project/natto-py)|2.7600168114317733e-06| +|pypi|[sudachidict-core](https://pypi.org/project/sudachidict-core)|2.7600168114317733e-06| +|pypi|[sudachipy](https://pypi.org/project/sudachipy)|2.7600168114317733e-06| +|pypi|[thinc-apple-ops](https://pypi.org/project/thinc-apple-ops)|2.7600168114317733e-06| +|pypi|[selenium](https://pypi.org/project/selenium)|2.752500331804566e-06| +|pypi|[lxml-stubs](https://pypi.org/project/lxml-stubs)|2.7172816265060237e-06| +|pypi|[elementpath](https://pypi.org/project/elementpath)|2.7172816265060237e-06| +|pypi|[cspy](https://github.com/torressa/cspy)|2.710843373493981e-06| +|pypi|[referenceseeker](https://github.com/oschwengers/referenceseeker)|2.710843373493981e-06| +|pypi|[fairdatapoint-client](https://github.com/fair-data/fairdatapoint-client)|2.710843373493981e-06| +|pypi|[genshi](https://github.com/edgewall/genshi)|2.710843373493981e-06| +|pypi|[cairosvg](https://courtbouillon.org/cairosvg)|2.710843373493981e-06| +|pypi|[neo](https://neuralensemble.org/neo)|2.710843373493981e-06| +|pypi|[pyequib](https://equib.github.io/pyEQUIB/)|2.710843373493981e-06| +|pypi|[easybuild](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-easyblocks](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-easyconfigs](https://easybuild.io)|2.710843373493976e-06| +|pypi|[easybuild-framework](https://easybuild.io)|2.710843373493976e-06| +|pypi|[pycoeman](https://github.com/NLeSC/pycoeman)|2.710843373493976e-06| +|pypi|[pscript](https://pypi.org/project/pscript)|2.7108433734939757e-06| +|pypi|[mpl-sample-data](https://pypi.org/project/mpl-sample-data)|2.7108433734939757e-06| +|pypi|[deepdiff](https://pypi.org/project/deepdiff)|2.7108433734939757e-06| +|pypi|[path.py](https://pypi.org/project/path.py)|2.7108433734939757e-06| +|pypi|[alive-progress](https://github.com/rsalmei/alive-progress)|2.705421686746997e-06| +|pypi|[mygene](https://github.com/biothings/mygene.py)|2.6837349397590525e-06| +|pypi|[nox](https://pypi.org/project/nox)|2.6607745146082227e-06| +|pypi|[jupyter_sphinx](https://pypi.org/project/jupyter_sphinx)|2.6607745146082227e-06| +|pypi|[sphinx-sitemap](https://pypi.org/project/sphinx-sitemap)|2.6607745146082227e-06| +|pypi|[docutils!=0.17.0](https://pypi.org/project/docutils!=0.17.0)|2.6607745146082227e-06| +|pypi|[sphinx<5,>=3.5.4](https://pypi.org/project/sphinx<5,>=3.5.4)|2.6607745146082227e-06| +|pypi|[biothings-client](https://github.com/biothings/biothings_client.py)|2.656897590361437e-06| +|pypi|[hashin](https://pypi.org/project/hashin)|2.6376283651864847e-06| +|pypi|[jsonref](https://pypi.org/project/jsonref)|2.637577336372517e-06| +|pypi|[moviepy](https://pypi.org/project/moviepy)|2.637577336372517e-06| +|pypi|[docker-pycreds](https://pypi.org/project/docker-pycreds)|2.637577336372517e-06| +|pypi|[sentry-sdk](https://pypi.org/project/sentry-sdk)|2.637577336372517e-06| +|pypi|[promise](https://pypi.org/project/promise)|2.637577336372517e-06| +|pypi|[jaraco.windows](https://pypi.org/project/jaraco.windows)|2.6371191963885318e-06| +|pypi|[singledispatch](https://pypi.org/project/singledispatch)|2.6371191963885318e-06| +|pypi|[testresources](https://pypi.org/project/testresources)|2.6240963855421688e-06| +|pypi|[oslotest](https://pypi.org/project/oslotest)|2.6240963855421688e-06| +|pypi|[flake8-import-order](https://pypi.org/project/flake8-import-order)|2.6240963855421688e-06| +|pypi|[requests-kerberos](https://pypi.org/project/requests-kerberos)|2.6240963855421688e-06| +|pypi|[betamax](https://pypi.org/project/betamax)|2.6240963855421688e-06| +|pypi|[watermark](https://pypi.org/project/watermark)|2.618277990008816e-06| +|pypi|[gooey](http://pypi.python.org/pypi/Gooey/)|2.5559380378657483e-06| +|pypi|[clize](https://github.com/epsy/clize)|2.5301204819277177e-06| +|pypi|[mip](https://github.com/coin-or/python-mip)|2.526506024096395e-06| +|pypi|[tvtk](https://pypi.org/project/tvtk)|2.525868178596739e-06| +|pypi|[IPython](https://ipython.org)|2.512246789355243e-06| +|pypi|[resample](http://github.com/resample-project/resample)|2.4849397590361446e-06| +|pypi|[boost-histogram](https://github.com/scikit-hep/boost-histogram)|2.4849397590361446e-06| +|pypi|[numba-stats](https://pypi.org/project/numba-stats)|2.4849397590361446e-06| +|pypi|[pytest-django](https://pypi.org/project/pytest-django)|2.460090361445783e-06| +|pypi|[sybil](https://pypi.org/project/sybil)|2.460090361445783e-06| +|pypi|[zope.component](https://pypi.org/project/zope.component)|2.460090361445783e-06| +|pypi|[setuptools-git](https://pypi.org/project/setuptools-git)|2.460090361445783e-06| +|pypi|[eagerpy](https://github.com/jonasrauber/eagerpy)|2.407228915662662e-06| +|pypi|[EDFlib-Python](https://pypi.org/project/EDFlib-Python)|2.3961919104991393e-06| +|pypi|[eeglabio](https://pypi.org/project/eeglabio)|2.3961919104991393e-06| +|pypi|[nitime](https://pypi.org/project/nitime)|2.3961919104991393e-06| +|pypi|[codespell](https://pypi.org/project/codespell)|2.3961919104991393e-06| +|pypi|[flake8-array-spacing](https://pypi.org/project/flake8-array-spacing)|2.3961919104991393e-06| +|pypi|[pytest-harvest](https://pypi.org/project/pytest-harvest)|2.3961919104991393e-06| +|pypi|[h5io](https://pypi.org/project/h5io)|2.3961919104991393e-06| +|pypi|[pytest-trio](https://pypi.org/project/pytest-trio)|2.3722299913941477e-06| +|pypi|[pymc3-ext](https://github.com/exoplanet-dev/pymc3-ext)|2.3696183334737545e-06| +|pypi|[nbstripout](https://pypi.org/project/nbstripout)|2.323580034423408e-06| +|pypi|[dcor](https://pypi.org/project/dcor)|2.3135646032405482e-06| +|pypi|[citeproc-py](https://github.com/brechtm/citeproc-py)|2.312671207970715e-06| +|pypi|[anndata](http://anndata.readthedocs.io)|2.2891566265060336e-06| +|pypi|[scikit_learn](http://scikit-learn.org)|2.2590361445783305e-06| +|pypi|[sphinxcontrib_bibtex](https://github.com/mcmtroffaes/sphinxcontrib-bibtex)|2.259036144578323e-06| +|pypi|[python-slugify](https://github.com/un33k/python-slugify)|2.1905805038335176e-06| +|pypi|[nempy](https://github.com/UNSW-CEEM/nempy)|2.1686746987952216e-06| +|pypi|[cffconvert](https://github.com/citation-file-format/cff-converter-python)|2.1686746987952216e-06| +|pypi|[bakta](https://github.com/oschwengers/bakta)|2.168674698795191e-06| +|pypi|[ogb](https://github.com/snap-stanford/ogb)|2.168674698795191e-06| +|pypi|[RagTag](https://github.com/malonge/RagTag)|2.168674698795191e-06| +|pypi|[tripoli](https://github.com/DDMAL/tripoli)|2.168674698795191e-06| +|pypi|[TPOT](https://github.com/EpistasisLab/tpot)|2.168674698795191e-06| +|pypi|[update_checker](https://github.com/bboe/update_checker)|2.168674698795191e-06| +|pypi|[foolbox](https://github.com/bethgelab/foolbox)|2.168674698795191e-06| +|pypi|[sphinxcontrib-programoutput](https://sphinxcontrib-programoutput.readthedocs.org/)|2.168674698795191e-06| +|pypi|[kiwipy](https://github.com/aiidateam/kiwipy.git)|2.168674698795191e-06| +|pypi|[sphinx_argparse](https://pypi.org/project/sphinx_argparse)|2.168674698795191e-06| +|pypi|[charset_normalizer](https://github.com/ousret/charset_normalizer)|2.168674698795191e-06| +|pypi|[dateparser](https://github.com/scrapinghub/dateparser)|2.168674698795191e-06| +|pypi|[pyinstrument](https://pypi.org/project/pyinstrument)|2.1686746987951806e-06| +|pypi|[ipywidgets-bokeh](https://pypi.org/project/ipywidgets-bokeh)|2.1686746987951806e-06| +|pypi|[ipympl](https://pypi.org/project/ipympl)|2.1686746987951806e-06| +|pypi|[hvplot](https://pypi.org/project/hvplot)|2.1686746987951806e-06| +|pypi|[boatswain](https://github.com/nlesc-sherlock/boatswain)|2.1686746987951606e-06| +|pypi|[vcrpy](https://pypi.org/project/vcrpy)|2.159947637633027e-06| +|pypi|[multipledispatch](http://github.com/mrocklin/multipledispatch/)|1.9324440619621485e-06| +|pypi|[cyvcf2](https://github.com/brentp/cyvcf2/)|1.9277108433734914e-06| +|pypi|[mxnet](https://pypi.org/project/mxnet)|1.92382432957637e-06| +|pypi|[ml-datasets](https://pypi.org/project/ml-datasets)|1.92382432957637e-06| +|pypi|[rpy2](https://rpy2.github.io)|1.9066265060241107e-06| +|pypi|[starry](https://pypi.org/project/starry)|1.8767377201112142e-06| +|pypi|[rtds-action](https://pypi.org/project/rtds-action)|1.8767377201112142e-06| +|pypi|[sagemaker](https://pypi.org/project/sagemaker)|1.8637048192771084e-06| +|pypi|[ftfy](https://pypi.org/project/ftfy)|1.8637048192771084e-06| +|pypi|[fairscale](https://pypi.org/project/fairscale)|1.8637048192771084e-06| +|pypi|[onnxruntime-tools](https://pypi.org/project/onnxruntime-tools)|1.8637048192771084e-06| +|pypi|[onnxruntime](https://pypi.org/project/onnxruntime)|1.8637048192771084e-06| +|pypi|[unidic](https://pypi.org/project/unidic)|1.8637048192771084e-06| +|pypi|[unidic-lite](https://pypi.org/project/unidic-lite)|1.8637048192771084e-06| +|pypi|[ipadic](https://pypi.org/project/ipadic)|1.8637048192771084e-06| +|pypi|[fugashi](https://pypi.org/project/fugashi)|1.8637048192771084e-06| +|pypi|[faiss-cpu](https://pypi.org/project/faiss-cpu)|1.8637048192771084e-06| +|pypi|[rouge-score](https://pypi.org/project/rouge-score)|1.8637048192771084e-06| +|pypi|[sacrebleu](https://pypi.org/project/sacrebleu)|1.8637048192771084e-06| +|pypi|[datasets](https://pypi.org/project/datasets)|1.8637048192771084e-06| +|pypi|[deepspeed](https://pypi.org/project/deepspeed)|1.8637048192771084e-06| +|pypi|[codecarbon](https://pypi.org/project/codecarbon)|1.8637048192771084e-06| +|pypi|[timm](https://pypi.org/project/timm)|1.8637048192771084e-06| +|pypi|[sigopt](https://pypi.org/project/sigopt)|1.8637048192771084e-06| +|pypi|[optuna](https://pypi.org/project/optuna)|1.8637048192771084e-06| +|pypi|[pyctcdecode](https://pypi.org/project/pyctcdecode)|1.8637048192771084e-06| +|pypi|[torchaudio](https://pypi.org/project/torchaudio)|1.8637048192771084e-06| +|pypi|[optax](https://pypi.org/project/optax)|1.8637048192771084e-06| +|pypi|[flax](https://pypi.org/project/flax)|1.8637048192771084e-06| +|pypi|[tf2onnx](https://pypi.org/project/tf2onnx)|1.8637048192771084e-06| +|pypi|[onnxconverter-common](https://pypi.org/project/onnxconverter-common)|1.8637048192771084e-06| +|pypi|[tokenizers](https://pypi.org/project/tokenizers)|1.8637048192771084e-06| +|pypi|[sacremoses](https://pypi.org/project/sacremoses)|1.8637048192771084e-06| +|pypi|[huggingface-hub](https://pypi.org/project/huggingface-hub)|1.8637048192771084e-06| +|pypi|[cogapp](https://pypi.org/project/cogapp)|1.8450677710843372e-06| +|pypi|[falcon](https://pypi.org/project/falcon)|1.8256700270469633e-06| +|pypi|[pyramid](https://pypi.org/project/pyramid)|1.8256700270469633e-06| +|pypi|[bottle](https://pypi.org/project/bottle)|1.8256700270469633e-06| +|pypi|[webtest-aiohttp](https://pypi.org/project/webtest-aiohttp)|1.8256700270469633e-06| +|pypi|[webtest](https://pypi.org/project/webtest)|1.8256700270469633e-06| +|pypi|[GridDataFormats](https://github.com/MDAnalysis/GridDataFormats)|1.820934877103222e-06| +|pypi|[gsd](https://gsd.readthedocs.io)|1.820934877103222e-06| +|pypi|[pystokes](https://github.com/rajeshrinet/pystokes)|1.8072289156626644e-06| +|pypi|[fhirclient](https://github.com/smart-on-fhir/client-py/)|1.8072289156626644e-06| +|pypi|[Requests](https://requests.readthedocs.io)|1.8072289156626644e-06| +|pypi|[AMAT](https://github.com/athulpg007/AMAT)|1.8072289156626644e-06| +|pypi|[pyemgpipeline](https://github.com/aalhossary/pyemgpipeline)|1.8072289156626644e-06| +|pypi|[opentelemetry-exporter-otlp](https://pypi.org/project/opentelemetry-exporter-otlp)|1.6643317455869995e-06| +|pypi|[ray-cpp](https://pypi.org/project/ray-cpp)|1.6643317455869995e-06| +|pypi|[colorful](https://pypi.org/project/colorful)|1.6643317455869995e-06| +|pypi|[dm-tree](https://pypi.org/project/dm-tree)|1.6643317455869995e-06| +|pypi|[gpustat](https://pypi.org/project/gpustat)|1.6643317455869995e-06| +|pypi|[opentelemetry-api](https://pypi.org/project/opentelemetry-api)|1.6643317455869995e-06| +|pypi|[opencensus](https://pypi.org/project/opencensus)|1.6643317455869995e-06| +|pypi|[tensorboardX](https://pypi.org/project/tensorboardX)|1.6643317455869995e-06| +|pypi|[aiorwlock](https://pypi.org/project/aiorwlock)|1.6643317455869995e-06| +|pypi|[py-spy](https://pypi.org/project/py-spy)|1.6643317455869995e-06| +|pypi|[aiohttp-cors](https://pypi.org/project/aiohttp-cors)|1.6643317455869995e-06| +|pypi|[opentelemetry-sdk](https://pypi.org/project/opentelemetry-sdk)|1.6643317455869995e-06| +|pypi|[mercantile](https://github.com/mapbox/mercantile)|1.6521084337349466e-06| +|pypi|[nbsphinx-link](https://github.com/vidartf/nbsphinx-link)|1.6515291936978682e-06| +|pypi|[restructuredtext-lint](https://pypi.org/project/restructuredtext-lint)|1.6102409638554219e-06| +|pypi|[pytest-datadir](https://pypi.org/project/pytest-datadir)|1.6102409638554219e-06| +|pypi|[pytest-freezegun](https://pypi.org/project/pytest-freezegun)|1.5582977069568596e-06| +|pypi|[coverage-enable-subprocess](https://pypi.org/project/coverage-enable-subprocess)|1.5582977069568596e-06| +|pypi|[sphinx-argparse](https://pypi.org/project/sphinx-argparse)|1.5582977069568596e-06| +|pypi|[proselint](https://pypi.org/project/proselint)|1.5582977069568596e-06| +|pypi|[optimade](https://github.com/Materials-Consortia/optimade-python-tools)|1.549053356282288e-06| +|pypi|[bed-reader](https://pypi.org/project/bed-reader)|1.549053356282288e-06| +|pypi|[PyQT5](https://www.riverbankcomputing.com/software/pyqt/)|1.549053356282288e-06| +|pypi|[emn_sdk](https://www.energy.gov/eere/energy-materials-network/energy-materials-network)|1.549053356282288e-06| +|pypi|[pytest_runner](https://github.com/pytest-dev/pytest-runner/)|1.549053356282288e-06| +|pypi|[Eir](https://github.com/mjacob1002/Eir)|1.549053356282288e-06| +|pypi|[physical-validation](https://physical-validation.readthedocs.io)|1.549053356282288e-06| +|pypi|[qimage2ndarray](https://github.com/hmeine/qimage2ndarray)|1.549053356282288e-06| +|pypi|[singularity-hpc](https://github.com/singularityhub/singularity-hpc)|1.549053356282288e-06| +|pypi|[usort](https://pypi.org/project/usort)|1.5248493975903614e-06| +|pypi|[sphinx-autodoc-typehints>=1.15.2](https://pypi.org/project/sphinx-autodoc-typehints>=1.15.2)|1.5139017608897125e-06| +|pypi|[typing_extensions>=3.10](https://pypi.org/project/typing_extensions>=3.10)|1.5139017608897125e-06| +|pypi|[get_version](https://pypi.org/project/get_version)|1.5139017608897125e-06| +|pypi|[sphinx>=3.0](https://pypi.org/project/sphinx>=3.0)|1.5139017608897125e-06| +|pypi|[nodeenv](https://pypi.org/project/nodeenv)|1.4760542168674698e-06| +|pypi|[identify](https://pypi.org/project/identify)|1.4760542168674698e-06| +|pypi|[cfgv](https://pypi.org/project/cfgv)|1.4760542168674698e-06| +|pypi|[connexion](https://github.com/zalando/connexion)|1.445783132530107e-06| +|pypi|[furl](https://pypi.org/project/furl)|1.4199655765920826e-06| +|pypi|[pyodbc](https://pypi.org/project/pyodbc)|1.4199655765920826e-06| +|pypi|[pymysql](https://pypi.org/project/pymysql)|1.4199655765920826e-06| +|pypi|[pg8000](https://pypi.org/project/pg8000)|1.4199655765920826e-06| +|pypi|[psycopg2cffi](https://pypi.org/project/psycopg2cffi)|1.4199655765920826e-06| +|pypi|[flexmock](https://pypi.org/project/flexmock)|1.4199655765920826e-06| +|pypi|[phonenumbers](https://pypi.org/project/phonenumbers)|1.4199655765920826e-06| +|pypi|[pendulum](https://pypi.org/project/pendulum)|1.4199655765920826e-06| +|pypi|[intervals](https://pypi.org/project/intervals)|1.4199655765920826e-06| +|pypi|[colour](https://pypi.org/project/colour)|1.4199655765920826e-06| +|pypi|[arrow](https://pypi.org/project/arrow)|1.4199655765920826e-06| +|pypi|[questionary](https://github.com/tmbo/questionary)|1.3554216867469906e-06| +|pypi|[iPython](https://ipython.org)|1.3554216867469906e-06| +|pypi|[nodepy](https://github.com/ketch/nodepy)|1.3554216867469906e-06| +|pypi|[pywdpa](https://ecology.ghislainv.fr/pywdpa)|1.3554216867469906e-06| +|pypi|[astro-virgo](https://github.com/0xCoto/Virgo)|1.3554216867469906e-06| +|pypi|[dna-features-viewer](https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer)|1.3554216867469906e-06| +|pypi|[parasail](https://github.com/jeffdaily/parasail-python)|1.3554216867469906e-06| +|pypi|[pypiwin32](https://pypi.org/project/pypiwin32)|1.3554216867469906e-06| +|pypi|[piecewise-regression](https://github.com/chasmani/piecewise-regression)|1.3554216867469906e-06| +|pypi|[pystream-protobuf](https://github.com/cartoonist/pystream-protobuf)|1.3554216867469906e-06| +|pypi|[opt_einsum](https://github.com/dgasmith/opt_einsum)|1.3155563430191375e-06| +|pypi|[percy](https://pypi.org/project/percy)|1.3139461149371045e-06| +|pypi|[diskcache](https://pypi.org/project/diskcache)|1.3139461149371045e-06| +|pypi|[fire](https://pypi.org/project/fire)|1.3139461149371045e-06| +|pypi|[preconditions](https://pypi.org/project/preconditions)|1.3139461149371045e-06| +|pypi|[mimesis](https://pypi.org/project/mimesis)|1.3139461149371045e-06| +|pypi|[flask-talisman](https://pypi.org/project/flask-talisman)|1.3139461149371045e-06| +|pypi|[dash-dangerously-set-inner-html](https://pypi.org/project/dash-dangerously-set-inner-html)|1.3139461149371045e-06| +|pypi|[dash-flow-example](https://pypi.org/project/dash-flow-example)|1.3139461149371045e-06| +|pypi|[transformers](https://github.com/huggingface/transformers)|1.2048192771084378e-06| +|pypi|[stanza](https://github.com/stanfordnlp/stanza)|1.2048192771084378e-06| +|pypi|[easywebdav](http://github.com/amnong/easywebdav)|1.2048192771084378e-06| +|pypi|[retriever](https://github.com/weecology/retriever)|1.2048192771084378e-06| +|pypi|[yabox](https://github.com/pablormier/yabox)|1.2048192771084378e-06| +|pypi|[modAL](https://modAL-python.github.io/)|1.2048192771084378e-06| +|pypi|[funsies](https://github.com/aspuru-guzik-group/funsies)|1.2048192771084378e-06| +|pypi|[dca](https://github.com/theislab/dca)|1.2048192771084378e-06| +|pypi|[python-markdown-math](https://github.com/mitya57/python-markdown-math)|1.2048192771084378e-06| +|pypi|[injector](https://github.com/alecthomas/injector)|1.2048192771084378e-06| +|pypi|[python-sat](https://github.com/pysathq/pysat)|1.1927710843373567e-06| +|pypi|[re-assert](https://pypi.org/project/re-assert)|1.1678670726863496e-06| +|pypi|[devpi-server](https://pypi.org/project/devpi-server)|1.1678670726863496e-06| +|pypi|[devpi-client](https://pypi.org/project/devpi-client)|1.1678670726863496e-06| +|pypi|[pyproject-api](https://pypi.org/project/pyproject-api)|1.1678670726863496e-06| +|pypi|[sparse](https://github.com/pydata/sparse/)|1.1114457831325397e-06| +|pypi|[CacheControl](https://github.com/ionrock/cachecontrol)|1.0972461273666183e-06| +|pypi|[clldutils](https://github.com/clld/clldutils)|1.0843373493976108e-06| +|pypi|[pypka](https://pypka.org)|1.0843373493976108e-06| +|pypi|[sphinx-rtd_theme](https://github.com/rtfd/sphinx_rtd_theme/)|1.0843373493975956e-06| +|pypi|[slab](http://github.com/DrMarc/slab.git)|1.0843373493975956e-06| +|pypi|[louvain](https://github.com/vtraag/louvain-igraph)|1.0843373493975956e-06| +|pypi|[pyvcf](https://github.com/jamescasbon/PyVCF)|1.0843373493975956e-06| +|pypi|[pytest-lazy-fixture](https://github.com/tvorog/pytest-lazy-fixture)|1.0734939759036118e-06| +|pypi|[grpcio-reflection](https://grpc.io)|1.0030120481927786e-06| +|pypi|[imgaug](https://github.com/aleju/imgaug)|9.857612267250953e-07| +|pypi|[libfmp](http://audiolabs-erlangen.de/FMP)|9.8576122672508e-07| +|pypi|[impedance](https://impedancepy.readthedocs.io/en/latest/)|9.8576122672508e-07| +|pypi|[pvpumpingsystem](https://github.com/tylunel/pvpumpingsystem)|9.8576122672508e-07| +|pypi|[nano-CAT](https://github.com/nlesc-nano/nano-CAT)|9.8576122672508e-07| +|pypi|[data-CAT](https://github.com/nlesc-nano/data-CAT)|9.8576122672508e-07| +|pypi|[overrides](https://github.com/mkorpela/overrides)|9.8576122672508e-07| +|pypi|[wandb](https://github.com/wandb/client)|9.8576122672508e-07| +|pypi|[Flask-Cors](https://github.com/corydolphin/flask-cors)|9.8576122672508e-07| +|pypi|[FitBenchmarking](http://fitbenchmarking.com)|9.8576122672508e-07| +|pypi|[pyvolcans](https://github.com/BritishGeologicalSurvey/pyvolcans)|9.8576122672508e-07| +|pypi|[django-filter](https://github.com/carltongibson/django-filter/tree/main)|9.186746987951836e-07| +|pypi|[lightkurve](https://docs.lightkurve.org)|9.036144578313322e-07| +|pypi|[k2sc](https://github.com/OxES/k2sc)|9.036144578313322e-07| +|pypi|[pyphe](https://github.com/Bahler-Lab/pyphe)|9.036144578313322e-07| +|pypi|[iScore](https://github.com/DeepRank/iScore)|9.036144578313322e-07| +|pypi|[deeprank](https://github.com/DeepRank/deeprank)|9.036144578313322e-07| +|pypi|[grpc4bmi](https://github.com/eWaterCycle/grpc4bmi)|9.036144578313322e-07| +|pypi|[cosmospectra](https://github.com/sambit-giri/cosmospectra.git)|9.036144578313322e-07| +|pypi|[geopy](https://github.com/geopy/geopy)|8.643419833178922e-07| +|pypi|[mcalf](https://github.com/ConorMacBride/mcalf/)|8.341056533827822e-07| +|pypi|[healpy](http://github.com/healpy)|8.341056533827669e-07| +|pypi|[kalmus](https://github.com/KALMUS-Color-Toolkit/KALMUS)|8.341056533827669e-07| +|pypi|[transbigdata](https://github.com/ni1o1/transbigdata)|8.341056533827669e-07| +|pypi|[opencv-contrib-python-headless](https://github.com/skvark/opencv-python)|8.341056533827669e-07| +|pypi|[linuxdoc](https://github.com/return42/linuxdoc)|8.341056533827669e-07| +|pypi|[outcome](https://github.com/python-trio/outcome)|8.251290877796827e-07| +|pypi|[plotnine](https://github.com/has2k1/plotnine)|7.74526678141144e-07| +|pypi|[gitdb2](https://github.com/gitpython-developers/gitdb)|7.74526678141144e-07| +|pypi|[nibabel](https://nipy.org/nibabel)|7.74526678141144e-07| +|pypi|[smmap2](https://github.com/gitpython-developers/smmap)|7.74526678141144e-07| +|pypi|[kineticstoolkit](https://kineticstoolkit.uqam.ca)|7.74526678141144e-07| +|pypi|[cloudnetpy](https://github.com/actris-cloudnet/cloudnetpy)|7.74526678141144e-07| +|pypi|[cloudnetpy_qc](https://github.com/actris-cloudnet/cloudnetpy-qc)|7.74526678141144e-07| +|pypi|[rejected-article-tracker](https://github.com/sagepublishing/rejected_article_tracker_pkg)|7.74526678141144e-07| +|pypi|[gobbli](https://github.com/RTIInternational/gobbli/)|7.228915662650535e-07| +|pypi|[pyrice](https://github.com/SouthGreenPlatform/PyRice)|7.228915662650535e-07| +|pypi|[trio-websocket](https://github.com/HyperionGray/trio-websocket)|7.228915662650535e-07| +|pypi|[pyvinecopulib](https://github.com/vinecopulib/pyvinecopulib/)|7.15662650602408e-07| +|pypi|[django-tables2](https://github.com/jieter/django-tables2/)|6.777108433734953e-07| +|pypi|[diffeqpy](http://github.com/SciML/diffeqpy)|6.777108433734953e-07| +|pypi|[pebble](https://github.com/noxdafox/pebble)|6.777108433734953e-07| +|pypi|[qcg-pilotjob](http://github.com/vecma-project/QCG-PilotJob)|6.777108433734953e-07| +|pypi|[ymmsl](https://github.com/multiscale/ymmsl-python)|6.777108433734953e-07| +|pypi|[frites](https://github.com/brainets/frites)|6.777108433734953e-07| +|pypi|[keras-tuner](https://github.com/keras-team/keras-tuner)|6.777108433734953e-07| +|pypi|[pirecorder](https://github.com/jollejolles)|6.777108433734953e-07| +|pypi|[elmada](https://github.com/DrafProject/elmada)|6.777108433734953e-07| +|pypi|[plato-draw](https://plato-draw.readthedocs.io/)|6.709337349397555e-07| +|pypi|[WRFpy](https://github.com/ERA-URBAN/wrfpy)|6.378454996456422e-07| +|pypi|[pygmsh](https://pypi.org/project/pygmsh)|6.378454996456422e-07| +|pypi|[pacopy](https://github.com/sigma-py/pacopy)|6.378454996456422e-07| +|pypi|[dmsh](https://pypi.org/project/dmsh)|6.378454996456422e-07| +|pypi|[glvis](https://github.com/glvis/pyglvis)|6.378454996456422e-07| +|pypi|[simsopt](https://github.com/hiddenSymmetries/simsopt)|6.378454996456422e-07| +|pypi|[pylustrator](https://github.com/rgerum/pylustrator)|6.378454996456346e-07| +|pypi|[Keras-Applications](https://github.com/keras-team/keras-applications)|6.024096385542189e-07| +|pypi|[Keras-Preprocessing](https://github.com/keras-team/keras-preprocessing)|6.024096385542189e-07| +|pypi|[pymunk](http://www.pymunk.org)|6.024096385542189e-07| +|pypi|[TRUNAJOD](https://github.com/dpalmasan/TRUNAJOD2.0)|6.024096385542189e-07| +|pypi|[cellmlmanip](https://github.com/ModellingWebLab/cellmlmanip)|6.024096385542189e-07| +|pypi|[sos-bash](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-matlab](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-sas](https://github.com/vatlab/sos-sas)|5.707038681039977e-07| +|pypi|[sos-julia](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-javascript](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[sos-r](https://github.com/vatlab/SOS)|5.707038681039977e-07| +|pypi|[qmctorch](https://github.com/NLESC-JCER/QMCTorch)|5.707038681039977e-07| +|pypi|[chart-studio](https://plot.ly/python/)|5.707038681039977e-07| +|pypi|[markov-clustering](https://github.com/guyallard/markov_clustering.git)|5.707038681039977e-07| +|pypi|[rsudp](https://github.com/raspishake/rsudp)|5.163511187607602e-07| +|pypi|[starry-process](https://github.com/rodluger/starry_process)|4.9288061336254e-07| +|pypi|[typing-utils](https://github.com/bojiang/typing_utils)|4.879518072289172e-07| +|pypi|[yte](https://github.com/koesterlab/yte)|4.518072289156661e-07| +|pypi|[ratelimiter](https://github.com/RazerM/ratelimiter)|4.518072289156661e-07| +|pypi|[retry](https://github.com/invl/retry)|4.518072289156661e-07| +|pypi|[swiftemulator](https://github.com/SWIFTSIM/emulator)|4.518072289156661e-07| +|pypi|[PyQt6](https://www.riverbankcomputing.com/software/pyqt/)|4.518072289156661e-07| +|pypi|[Pyside6](https://www.pyside.org)|4.518072289156661e-07| +|pypi|[pyqtgraph](http://www.pyqtgraph.org)|4.518072289156661e-07| +|pypi|[PyQtWebEngine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.518072289156661e-07| +|pypi|[empyre](https://iffgit.fz-juelich.de/empyre/empyre)|4.337349397590443e-07| +|pypi|[applaunchservices](https://github.com/impact27/applaunchservices)|4.337349397590367e-07| +|pypi|[python-lsp-black](https://github.com/python-lsp/python-lsp-black)|4.337349397590367e-07| +|pypi|[pyls-spyder](https://github.com/spyder-ide/pyls-spyder)|4.337349397590367e-07| +|pypi|[pyqtwebengine](https://www.riverbankcomputing.com/software/pyqtwebengine/)|4.337349397590367e-07| +|pypi|[ncempy](https://github.com/ercius/openNCEM)|4.337349397590367e-07| +|pypi|[atlite](https://github.com/PyPSA/atlite)|4.337349397590367e-07| +|pypi|[amqp](http://github.com/celery/py-amqp)|4.187167593142602e-07| +|pypi|[python-box](https://github.com/cdgriffith/Box)|4.1705282669138347e-07| +|pypi|[fspath](https://github.com/return42/fspath)|4.128822984244702e-07| +|pypi|[geobo](https://github.com/sebhaan/geobo)|4.0160642570281263e-07| +|pypi|[scikit_image](https://scikit-image.org)|4.0160642570281263e-07| +|pypi|[webargs](https://github.com/marshmallow-code/webargs)|3.87263339070572e-07| +|pypi|[flask-cors](https://github.com/corydolphin/flask-cors)|3.87263339070572e-07| +|pypi|[flask-migrate](https://github.com/miguelgrinberg/flask-migrate)|3.87263339070572e-07| +|pypi|[flask-sqlalchemy](https://github.com/pallets/flask-sqlalchemy)|3.87263339070572e-07| +|pypi|[sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils)|3.87263339070572e-07| +|pypi|[epimargin](https://github.com/COVID-IWG/epimargin)|3.739094308267568e-07| +|pypi|[sphinxcontrib-spelling](https://github.com/sphinx-contrib/spelling)|3.3885542168674765e-07| +|pypi|[nixio](https://github.com/G-Node/nixpy)|3.3546686746988156e-07| +|pypi|[reorientexpress](https://github.com/angelrure/reorientexpress)|3.189227498228211e-07| +|pypi|[tox-pyenv](https://github.com/samstav/tox-pyenv)|2.9819277108433917e-07| +|pypi|[ukbcc](https://github.com/tool-bin/ukbcc/)|2.7803521779425314e-07| +|pypi|[flask_bootstrap](http://github.com/mbr/flask-bootstrap)|2.7803521779425314e-07| +|pypi|[Flask-Script](http://github.com/smurfix/flask-script)|2.7803521779425314e-07| +|pypi|[flask-wtf](https://github.com/wtforms/flask-wtf/)|2.7803521779425314e-07| +|pypi|[tinydb-serialization](https://tinydb.readthedocs.org)|2.7803521779425314e-07| +|pypi|[vflow](https://github.com/Yu-Group/pcs-pipeline)|2.710843373493989e-07| +|pypi|[pytest-datadir-ng](https://github.com/Tblue/pytest-datadir-ng)|2.6837349397590295e-07| +|pypi|[convertdate](https://github.com/fitnr/convertdate)|2.6837349397590295e-07| +|pypi|[cellocity](https://github.com/oftatkofta/cellocity)|2.644725242433119e-07| +|pypi|[deeplc](http://compomics.github.io/projects/DeepLC)|2.581755593803801e-07| +|pypi|[desk](https://github.com/s-goldman/Dusty_Evolved_Star_Kit)|2.5217147660409084e-07| +|pypi|[django-datatables-view](https://bitbucket.org/pigletto/django-datatables-view)|2.4096385542168833e-07| +|pypi|[django-dirtyfields](https://github.com/romgar/django-dirtyfields)|2.4096385542168833e-07| +|pypi|[django-guardian](http://github.com/django-guardian/django-guardian)|2.4096385542168833e-07| +|pypi|[django-notifications-hq](http://github.com/django-notifications/django-notifications)|2.4096385542168833e-07| +|pypi|[django-rq](https://github.com/rq/django-rq)|2.4096385542168833e-07| +|pypi|[django-user-agents](https://github.com/selwin/django-user_agents)|2.4096385542168833e-07| +|pypi|[google](http://breakingcode.wordpress.com/)|2.4096385542168833e-07| +|pypi|[jupyterlab-thredds](https://github.com/eWaterCycle/jupyterlab_thredds)|2.045919527165259e-07| +|pypi|[flowTorch](https://flowtorch.ai/users)|1.6942771084337382e-07| +|pypi|[pytest-param-files](https://pypi.org/project/pytest-param-files)|1.6265060240963782e-07| +|pypi|[django-timezone-field](https://github.com/mfogel/django-timezone-field/)|1.5272357033768825e-07| +|pypi|[firebase-admin](https://firebase.google.com/docs/admin/setup/)|1.5272357033768825e-07| +|pypi|[GromacsWrapper](https://github.com/Becksteinlab/GromacsWrapper)|1.5272357033768825e-07| +|pypi|[heat](https://github.com/helmholtz-analytics/heat)|1.5272357033768825e-07| +|pypi|[duecredit](https://github.com/duecredit/duecredit)|1.5272357033768825e-07| +|pypi|[sphinx-click](https://github.com/stephenfin/sphinx-click)|1.4909638554216958e-07| +|pypi|[liionpack](https://liionpack.readthedocs.io/en/latest/)|1.3064305414428825e-07| +|pypi|[scikit-mdr](https://github.com/EpistasisLab/scikit-mdr)|1.262934089298379e-07| +|pypi|[typeguard](https://pypi.org/project/typeguard)|9.939759036144639e-08| +|pypi|[pika](https://pika.readthedocs.io)|9.334730225248915e-08| +|pypi|[scikit-misc](https://github.com/has2k1/scikit-misc)|7.667814113597281e-08| +|pypi|[aiohttp-remotes](https://github.com/aio-libs/aiohttp-remotes)|6.815834767641975e-08| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. diff --git a/pages/r.md b/pages/r.md index 2bd798fe..ebfd781d 100644 --- a/pages/r.md +++ b/pages/r.md @@ -4,1847 +4,1868 @@ description: "Most used dependencies across the RSEPedia database" layout: table permalink: /analysis/R/ tipue_search_active: true -exclude_from_search: true --- # Software Credit |Manager|Name|Credit| |-------|----|------| -|cran|R|0.06525843332282805| -|cran|jsonlite|0.05319404233759365| -|cran|[testthat](https://testthat.r-lib.org)|0.04562509706344214| -|cran|httr|0.03907499804518512| -|cran|knitr|0.03211506213866653| -|cran|rmarkdown|0.030279685854949525| -|cran|utils|0.026540871653174453| -|cran|methods|0.02576109372580697| -|cran|covr|0.023798071158536774| -|cran|[tidyr](https://tidyr.tidyverse.org)|0.013874728095668188| -|cran|[magrittr](https://magrittr.tidyverse.org)|0.012174216848854684| -|cran|[rlang](https://rlang.r-lib.org)|0.011364080550473965| -|cran|stats|0.010135616340081073| -|cran|withr|0.009638786877602942| -|cran|yaml|0.008698051280237389| -|cran|[tibble](https://tibble.tidyverse.org/)|0.008596422613882472| -|cran|tools|0.008169376251113209| -|cran|curl|0.00778111777961509| -|cran|Rcpp|0.007424026534943503| -|cran|vctrs|0.0068606980111604885| -|cran|R6|0.0067735865573805044| -|cran|grDevices|0.006408210200521629| -|cran|graphics|0.006023060815626498| -|cran|crayon|0.006015862434236951| -|cran|ggplot2|0.005788984205331579| -|cran|spelling|0.0055003239764338085| -|cran|[dplyr](https://dplyr.tidyverse.org)|0.005318011205406071| -|cran|pryr|0.005283648493051067| -|cran|glue|0.005068791979439284| -|cran|digest|0.004598743798827464| -|cran|roxygen2|0.004589462248960884| -|cran|htmltools|0.004539589404607792| -|cran|tinytest|0.003781761001283592| -|cran|rstudioapi|0.0037639836710752547| -|cran|mockery|0.0037487611692089647| -|cran|stringi|0.003471244251773736| -|cran|MASS|0.0034615833480268663| -|cran|xml2|0.0034453310357003765| -|cran|cli|0.003358142313460376| -|cran|pillar|0.0033080854395461387| -|cran|[shiny](https://shiny.rstudio.com/)|0.003268768468325632| -|cran|bit64|0.003251355248368852| -|cran|lifecycle|0.003204472505673971| -|cran|callr|0.0031097185189843516| -|cran|[purrr](http://purrr.tidyverse.org)|0.003100212351221956| -|cran|lattice|0.0028235789150468133| -|cran|tidyselect|0.0028168704587930404| -|cran|processx|0.002702207988530257| -|cran|DBI|0.002661726640365794| -|cran|rbenchmark|0.0026251527357075972| -|cran|bitops|0.002585066835979793| -|cran|markdown|0.0025712702508086448| -|cran|sp|0.002553349084998552| -|cran|zoo|0.002546252551330032| -|cran|parallel|0.0025025081280355085| -|cran|pracma|0.0024571007572989673| -|cran|htmlwidgets|0.0024542589440070942| -|cran|RSQLite|0.0023836159976758226| -|cran|grid|0.002345039385337655| -|cran|hms|0.0023429876650450047| -|cran|[stringr](http://stringr.tidyverse.org)|0.002287573492253028| -|cran|R.utils|0.002017156811150926| -|cran|mime|0.0019423343875469182| -|cran|microbenchmark|0.001931570965118228| -|cran|nycflights13|0.0019142094928807044| -|cran|webmockr|0.0017912693850750633| -|cran|ellipsis|0.0017847223536219476| -|cran|unix|0.001782900078781513| -|cran|bench|0.001741346350116148| -|cran|xts|0.0017311500585236977| -|cran|Matrix|0.0017203393628260895| -|cran|nanotime|0.0016976446250473746| -|cran|broom|0.0016824674982219298| -|cran|rgl|0.0016610964619046772| -|cran|httpcode|0.0016573834272828557| -|cran|generics|0.001651775834228351| -|cran|bit|0.0016389638397142866| -|cran|evaluate|0.0016312015966014626| -|cran|maptools|0.0016092426930264438| -|cran|scales|0.0016079228343742686| -|cran|fs|0.0015579549536816784| -|cran|RColorBrewer|0.0015543767225721008| -|cran|rgeos|0.0015436791079689147| -|cran|sf|0.0015220127172176608| -|cran|tcltk|0.001513098378867877| -|cran|fauxpas|0.0014538618116702073| -|cran|urltools|0.0014507611944021002| -|cran|ncdf4|0.0014381649184205213| -|cran|plyr|0.0014262037653907673| -|cran|pkgload|0.0014148083694962797| -|cran|blob|0.0013636206369871844| -|cran|httpuv|0.0013475883593418614| -|cran|[rcrossref](https://github.com/ropensci/rcrossref)|0.0013210227272727273| -|cran|[data.table](https://r-datatable.com)|0.0012858515763450493| -|cran|usethis|0.0012791787316184932| -|cran|[numDeriv](http://optimizer.r-forge.r-project.org/)|0.0012478463544069434| -|cran|pkgconfig|0.0012475476401638326| -|cran|maps|0.0012148403920622323| -|cran|[lubridate](https://lubridate.tidyverse.org)|0.0012050926864323522| -|cran|dbplyr|0.0012047537054762929| -|cran|XML|0.0012046595282621051| -|cran|png|0.0011857113897637498| -|cran|brio|0.0011842074901015744| -|cran|[igraph](https://igraph.org)|0.001141463232119092| -|cran|[rgdal](http://rgdal.r-forge.r-project.org)|0.0011097958382935069| -|cran|[RCurl](http://www.omegahat.net/RCurl)|0.0011085900883831055| -|cran|RPostgreSQL|0.0011036078097711372| -|cran|waldo|0.0011000191210202332| -|cran|simplermarkdown|0.001072644816238449| -|cran|nlme|0.0010707714854805493| -|cran|mockr|0.0010703563538896714| -|cran|xfun|0.0010666288842560768| -|cran|rprojroot|0.001036368240078196| -|cran|foreach|0.0010296721996775596| -|cran|pkgbuild|0.0010083777382485792| -|cran|DiagrammeR|0.0009721304518672894| -|cran|crul|0.0009493123903970744| -|cran|Lahman|0.0009425749391370305| -|cran|pkgKitten|0.0009312760710893215| -|cran|formattable|0.0009244907135937175| -|cran|rappdirs|0.0009197855683274987| -|cran|inline|0.0009059635710893215| -|cran|ragg|0.0008948832598503097| -|cran|[webutils](https://github.com/jeroen/webutils)|0.0008892617859501177| -|cran|RMySQL|0.000888199555981287| -|cran|lobstr|0.000888199555981287| -|cran|fansi|0.0008644032140307552| -|cran|survival|0.0008566413729875135| -|cran|abind|0.0008398570499683976| -|cran|bslib|0.0008259242469341523| -|cran|chron|0.0008231833687458524| -|cran|datasets|0.0008159131365402471| -|cran|devtools|0.0008101428253218497| -|cran|winch|0.0008056309890716259| -|cran|doParallel|0.0007883507058159234| -|cran|iterators|0.0007844772111509184| -|cran|ps|0.0007762323914645391| -|cran|SnowballC|0.000758139110889111| -|cran|itertools|0.0007410594155844158| -|cran|gtable|0.0007185475392213162| -|cran|ape|0.0007157145198373261| -|cran|timeDate|0.0007097817544478831| -|cran|[readr](https://readr.tidyverse.org)|0.0007022485817220149| -|cran|tis|0.0006972041146963303| -|cran|vdiffr|0.0006875511417854474| -|cran|[raster](https://rspatial.org/raster)|0.0006795658421448004| -|cran|[sys](https://github.com/jeroen/sys)|0.000676230314262943| -|cran|assertthat|0.0006667296306702236| -|cran|munsell|0.0006526613040682043| -|cran|hexbin|0.0006343334684384447| -|cran|terra|0.0006330480070112237| -|cran|mvtnorm|0.0006307646737741747| -|cran|mapproj|0.0006303951296523537| -|cran|rpart|0.0006303092108559121| -|cran|[DT](https://github.com/rstudio/DT)|0.0006271465418960527| -|cran|vroom|0.0006265173178845317| -|cran|[mgcv](NA)|0.0006248434779921319| -|cran|[lwgeom](https://github.com/r-spatial/lwgeom/)|0.0006168512665188283| -|cran|clipr|0.0006127320448259486| -|cran|gstat|0.0006048002646197826| -|cran|patchwork|0.0005984753471550594| -|cran|whoami|0.0005908727947383246| -|cran|sass|0.0005874622221984149| -|cran|graph|0.0005676631788996224| -|cran|cachem|0.0005616132336524383| -|cran|tzdb|0.0005272538422297516| -|cran|desc|0.0005265136768334108| -|cran|future|0.000524589882849146| -|cran|[insight](https://easystats.github.io/insight/)|0.0005125147257083892| -|cran|Hmisc|0.0005096607289862852| -|cran|forcats|0.0005067327664701585| -|cran|parameters|0.000505773952147088| -|cran|RUnit|0.0005049898795283664| -|cran|askpass|0.0004952002214410132| -|cran|SparseM|0.0004901253567728399| -|cran|R.methodsS3|0.00048521258500136316| -|cran|deldir|0.00047684165116347886| +|cran|R|0.03459483212294504| +|cran|[jsonlite](https://arxiv.org/abs/1403.2805 (paper))|0.028199251359688197| +|cran|[testthat](https://testthat.r-lib.org)|0.024186798443270662| +|cran|[httr](https://httr.r-lib.org/)|0.020714456795037903| +|cran|[knitr](https://yihui.org/knitr/)|0.01702485221808837| +|cran|[rmarkdown](https://github.com/rstudio/rmarkdown)|0.016051881658045594| +|cran|utils|0.014069859671562381| +|cran|methods|0.013656483420909757| +|cran|[covr](https://covr.r-lib.org)|0.012615844951513489| +|cran|[tidyr](https://tidyr.tidyverse.org)|0.007355277544691568| +|cran|[magrittr](https://magrittr.tidyverse.org)|0.006453801703007305| +|cran|[rlang](https://rlang.r-lib.org)|0.006024331858082589| +|cran|stats|0.005373097818838152| +|cran|[withr](https://withr.r-lib.org)|0.005109718344753375| +|cran|[yaml](https://github.com/vubiostat/r-yaml/)|0.004611015136511384| +|cran|[tibble](https://tibble.tidyverse.org/)|0.004557139698925646| +|cran|tools|0.00433075367528893| +|cran|[curl](https://github.com/jeroen/curl (devel) https://curl.se/libcurl/ +(upstream))|0.004124929907265835| +|cran|[Rcpp](http://www.rcpp.org)|0.003935628524548365| +|cran|[vctrs](https://vctrs.r-lib.org/)|0.0036369965360368906| +|cran|[R6](https://r6.r-lib.org)|0.003590816970177616| +|cran|grDevices|0.0033971234797945987| +|cran|graphics|0.0031929479022598296| +|cran|[crayon](https://github.com/r-lib/crayon#readme)|0.00318913189284851| +|cran|[ggplot2](https://ggplot2.tidyverse.org)|0.0030688590968022803| +|cran|[spelling](https://github.com/ropensci/spelling#readme)|0.0029158343971456297| +|cran|[dplyr](https://dplyr.tidyverse.org)|0.002819186663106828| +|cran|[pryr](https://github.com/hadley/pryr)|0.0028009702854728544| +|cran|[glue](https://github.com/tidyverse/glue)|0.0026870704469316663| +|cran|[digest](https://github.com/eddelbuettel/digest)|0.002437888278896484| +|cran|[roxygen2](https://roxygen2.r-lib.org/)|0.0024329679392081807| +|cran|[htmltools](https://github.com/rstudio/htmltools)|0.0024065293229246117| +|cran|[tinytest](https://github.com/markvanderloo/tinytest)|0.002004788964535879| +|cran|[rstudioapi](https://github.com/rstudio/rstudioapi)|0.0019953648376784504| +|cran|[mockery](https://github.com/r-lib/mockery)|0.001987295077652944| +|cran|[stringi](https://stringi.gagolewski.com/ https://icu.unicode.org/)|0.0018401776756390867| +|cran|[MASS](http://www.stats.ox.ac.uk/pub/MASS4/)|0.0018350562326889391| +|cran|[xml2](https://xml2.r-lib.org/)|0.0018264405490459833| +|cran|[cli](https://cli.r-lib.org)|0.001780220021593451| +|cran|[pillar](https://pillar.r-lib.org/)|0.0017536838474702416| +|cran|[shiny](https://shiny.rstudio.com/)|0.0017328411157388917| +|cran|[bit64](https://github.com/truecluster/bit64)|0.0017236100111834868| +|cran|[lifecycle](https://lifecycle.r-lib.org/)|0.0016987565090319841| +|cran|[callr](https://callr.r-lib.org)|0.0016485254799435123| +|cran|[purrr](http://purrr.tidyverse.org)|0.0016434860657080221| +|cran|[lattice](http://lattice.r-forge.r-project.org/)|0.0014968370152055382| +|cran|[tidyselect](https://tidyselect.r-lib.org)|0.0014932807251432992| +|cran|[processx](https://processx.r-lib.org)|0.001432495801148572| +|cran|[DBI](https://dbi.r-dbi.org)|0.0014110358093505399| +|cran|[rbenchmark](http://rbenchmark.googlecode.com)|0.0013916472333871596| +|cran|[bitops](https://github.com/mmaechler/R-bitops)|0.0013703968769049509| +|cran|[markdown](https://github.com/rstudio/markdown)|0.0013630830245250647| +|cran|[sp](https://github.com/edzer/sp/ https://edzer.github.io/sp/)|0.0013535826474691114| +|cran|[zoo](http://zoo.R-Forge.R-project.org/)|0.0013498206296207406| +|cran|parallel|0.0013266308148621984| +|cran|[pracma](NA)|0.0013025594376042716| +|cran|[htmlwidgets](https://github.com/ramnathv/htmlwidgets)|0.0013010529341724356| +|cran|[RSQLite](https://rsqlite.r-dbi.org)|0.001263603661418508| +|cran|grid|0.0012431534090946617| +|cran|[hms](https://hms.tidyverse.org/)|0.0012420657501443385| +|cran|[stringr](http://stringr.tidyverse.org)|0.0012126895621582309| +|cran|[R.utils](https://github.com/HenrikBengtsson/R.utils)|0.0010693361408510929| +|cran|[mime](https://github.com/yihui/mime)|0.0010296712415911373| +|cran|[microbenchmark](https://github.com/joshuaulrich/microbenchmark/)|0.0010239653309060486| +|cran|[nycflights13](https://github.com/hadley/nycflights13)|0.0010147616588765179| +|cran|[webmockr](https://github.com/ropensci/webmockr (devel) +https://books.ropensci.org/http-testing/ (user manual) +https://docs.ropensci.org/webmockr/ (documentation))|0.0009495885896783475| +|cran|ellipsis|0.000946117874209225| +|cran|[unix](https://github.com/jeroen/unix)|0.0009451518489926089| +|cran|bench|0.000923123366326633| +|cran|[xts](https://github.com/joshuaulrich/xts)|0.0009177181033137677| +|cran|[Matrix](http://Matrix.R-forge.R-project.org/)|0.0009119871321005778| +|cran|[nanotime](https://github.com/eddelbuettel/nanotime)|0.0008999561867721025| +|cran|[broom](https://broom.tidymodels.org/)|0.0008919104809851197| +|cran|[rgl](https://github.com/dmurdoch/rgl)|0.0008805812569133232| +|cran|[httpcode](https://github.com/sckott/httpcode)|0.000878612901210189| +|cran|[generics](https://generics.r-lib.org)|0.0008756402012776802| +|cran|[bit](https://github.com/truecluster/bit)|0.0008688483005714295| +|cran|evaluate|0.000864733376511619| +|cran|[maptools](http://maptools.r-forge.r-project.org/)|0.0008530925119658258| +|cran|[scales](https://scales.r-lib.org)|0.000852392827861058| +|cran|[fs](https://fs.r-lib.org)|0.0008259038308673948| +|cran|RColorBrewer|0.0008240069372671377| +|cran|[rgeos](https://r-forge.r-project.org/projects/rgeos/ https://libgeos.org +http://rgeos.r-forge.r-project.org/index.html)|0.0008183359126582197| +|cran|[sf](https://r-spatial.github.io/sf/)|0.0008068501151515312| +|cran|tcltk|0.0008021244418094772| +|cran|[fauxpas](https://docs.ropensci.org/fauxpas)|0.0007707219242589057| +|cran|[urltools](https://github.com/Ironholds/urltools/)|0.0007690782235384633| +|cran|[ncdf4](http://cirrus.ucsd.edu/~pierce/ncdf/)|0.0007624006796446137| +|cran|[plyr](http://had.co.nz/plyr)|0.000756059827436069| +|cran|[pkgload](https://github.com/r-lib/pkgload)|0.0007500188946727266| +|cran|[blob](https://blob.tidyverse.org)|0.000722883229246218| +|cran|[httpuv](https://github.com/rstudio/httpuv)|0.0007143841904944806| +|cran|[rcrossref](https://github.com/ropensci/rcrossref)|0.0007003012048192771| +|cran|[data.table](https://r-datatable.com)|0.0006816562573395442| +|cran|[usethis](https://usethis.r-lib.org)|0.0006781188456772734| +|cran|[numDeriv](http://optimizer.r-forge.r-project.org/)|0.0006615089107699457| +|cran|pkgconfig|0.0006613505562314294| +|cran|[maps](NA)|0.0006440117741052799| +|cran|[lubridate](https://lubridate.tidyverse.org)|0.0006388443156990783| +|cran|[dbplyr](https://dbplyr.tidyverse.org/)|0.0006386646149512879| +|cran|[XML](http://www.omegahat.net/RSXML/)|0.0006386146896811155| +|cran|[png](http://www.rforge.net/png/)|0.0006285698933687352| +|cran|[brio](https://brio.r-lib.org)|0.0006277726453550514| +|cran|[igraph](https://igraph.org)|0.0006051130387137356| +|cran|[rgdal](http://rgdal.r-forge.r-project.org)|0.0005883255046375217| +|cran|[RCurl](http://www.omegahat.net/RCurl)|0.0005876863119139356| +|cran|RPostgreSQL|0.0005850451039750607| +|cran|[waldo](https://github.com/r-lib/waldo)|0.0005831426665649431| +|cran|[simplermarkdown](https://github.com/djvanderlaan/simplermarkdown)|0.0005686309869215876| +|cran|[nlme](https://svn.r-project.org/R-packages/trunk/nlme/)|0.0005676378959173998| +|cran|mockr|0.0005674178261583798| +|cran|[xfun](https://github.com/yihui/xfun)|0.0005654418181598482| +|cran|[rprojroot](https://rprojroot.r-lib.org/)|0.0005494000308848267| +|cran|[foreach](https://github.com/RevolutionAnalytics/foreach)|0.0005458503227206338| +|cran|pkgbuild|0.0005345616925655117| +|cran|[DiagrammeR](https://github.com/rich-iannone/DiagrammeR)|0.0005153462636404906| +|cran|[crul](https://docs.ropensci.org/crul/ (website) +https://github.com/ropensci/crul (devel) +https://books.ropensci.org/http-testing/ (user manual))|0.0005032499418972444| +|cran|Lahman|0.0004996782809883057| +|cran|[pkgKitten](https://github.com/eddelbuettel/pkgkitten)|0.000493688519613616| +|cran|formattable|0.0004900914626279948| +|cran|[rappdirs](https://rappdirs.r-lib.org)|0.0004875971687519269| +|cran|[inline](https://github.com/eddelbuettel/inline)|0.0004802698449148208| +|cran|[ragg](https://ragg.r-lib.org)|0.0004743959449808873| +|cran|[webutils](https://github.com/jeroen/webutils)|0.0004714158865277734| +|cran|RMySQL|0.0004708527766647788| +|cran|lobstr|0.0004708527766647788| +|cran|fansi|0.0004582378484018461| +|cran|[survival](https://github.com/therneau/survival)|0.0004541231374873564| +|cran|[abind](NA)|0.00044522542407963235| +|cran|[bslib](https://rstudio.github.io/bslib/)|0.0004378393598205147| +|cran|chron|0.0004363863641544278| +|cran|datasets|0.00043253226515386594| +|cran|[devtools](https://devtools.r-lib.org/)|0.0004294733049898964| +|cran|[winch](https://r-prof.github.io/winch/)|0.0004270814881825485| +|cran|[doParallel](https://github.com/RevolutionAnalytics/doparallel)|0.0004179208560951882| +|cran|iterators|0.00041586743723663123| +|cran|[ps](https://github.com/r-lib/ps#readme)|0.00041149668945108077| +|cran|[SnowballC](https://r-forge.r-project.org/projects/r-temis/)|0.0004019050708327817| +|cran|itertools|0.00039285077452667807| +|cran|gtable|0.00038091676777997493| +|cran|[ape](http://ape-package.ird.fr/)|0.00037941492617882353| +|cran|timeDate|0.00037626984573140796| +|cran|[readr](https://readr.tidyverse.org)|0.00037227635657552594| +|cran|tis|0.00036960218128480164| +|cran|vdiffr|0.0003644849426332493| +|cran|[raster](https://rspatial.org/raster)|0.0003602517717394123| +|cran|[sys](https://github.com/jeroen/sys)|0.00035848354009119875| +|cran|assertthat|0.00035344703312638364| +|cran|munsell|0.00034598912504820464| +|cran|[hexbin](https://github.com/edzer/hexbin)|0.00033627316399146467| +|cran|[terra](https://rspatial.org/terra/)|0.00033559171456016694| +|cran|[mvtnorm](http://mvtnorm.R-forge.R-project.org)|0.0003343812728441407| +|cran|mapproj|0.0003341853699361873| +|cran|[rpart](https://github.com/bethatkinson/rpart)|0.0003341398226224113| +|cran|[DT](https://github.com/rstudio/DT)|0.0003324632270292328| +|cran|[vroom](https://vroom.r-lib.org)|0.0003321296624930047| +|cran|[mgcv](NA)|0.000331242325682576| +|cran|[lwgeom](https://github.com/r-spatial/lwgeom/)|0.00032700549068468007| +|cran|[clipr](https://github.com/mdlincoln/clipr)|0.00032482180689568356| +|cran|[gstat](https://github.com/r-spatial/gstat/)|0.00032061700775024634| +|cran|[patchwork](https://patchwork.data-imaginist.com)|0.0003172640394556942| +|cran|[whoami](https://github.com/r-lib/whoami#readme)|0.0003132337707046541| +|cran|[sass](https://github.com/rstudio/sass)|0.0003114257563461479| +|cran|graph|0.000300929877970884| +|cran|cachem|0.0002977226780808108| +|cran|tzdb|0.0002795080609410732| +|cran|[desc](https://github.com/r-lib/desc#readme)|0.00027911568410445866| +|cran|[future](https://future.futureverse.org)|0.00027809584151039073| +|cran|[insight](https://easystats.github.io/insight/)|0.00027169455338757974| +|cran|[Hmisc](https://hbiostat.org/R/Hmisc/)|0.0002701815912698378| +|cran|[forcats](https://forcats.tidyverse.org)|0.0002686294183697225| +|cran|[parameters](https://easystats.github.io/parameters/)|0.00026812113125869723| +|cran|RUnit|0.00026770547830419424| +|cran|[askpass](https://github.com/jeroen/askpass#readme)|0.00026251578004101903| +|cran|[SparseM](http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html)|0.00025982549033740906| +|cran|[R.methodsS3](https://github.com/HenrikBengtsson/R.methodsS3)|0.00025722112939831305| +|cran|[deldir](https://www.stat.auckland.ac.nz/~rolf/)|0.00025278352591798876| |cran|[magick](https://docs.ropensci.org/magick/ (website) -https://github.com/ropensci/magick (devel))|0.00045982964693269034| -|cran|fields|0.00045796065629038807| -|cran|R.oo|0.0004530291876799346| -|cran|gridExtra|0.0004525083484153825| -|cran|base64enc|0.0004507719728886921| -|cran|[outsider.base](https://docs.ropensci.org/outsider.base)|0.0004494380619380619| -|cran|interp|0.00044772878414247756| -|cran|googleCloudStorageR|0.00044564562315031655| -|cran|lme4|0.0004405726760715354| -|cran|fastmatch|0.0004380315092438246| -|cran|lintr|0.0004379833070816282| -|cran|googleAuthR|0.00043654612802058627| -|cran|promises|0.00043651221299159757| -|cran|nnet|0.00043339786013703015| -|cran|aws.s3|0.00042721447669977084| -|cran|Cairo|0.0004266008886102656| -|cran|quantreg|0.00042572314786361873| -|cran|triebeard|0.0004256974431818182| -|cran|svglite|0.0004256758511987051| -|cran|backports|0.0004239052413047479| -|cran|tinytex|0.0004216968163240092| -|cran|codetools|0.00041926391591737473| -|cran|ggplot2movies|0.00041359526141520475| -|cran|tuneR|0.00040909090909090913| -|cran|multcomp|0.00040337578697982173| -|cran|jquerylib|0.000401798937217742| -|cran|expm|0.00040013770690512445| -|cran|isoband|0.0003974283033732467| -|cran|rasterVis|0.00039634559913392226| -|cran|rjson|0.0003920592407592409| -|cran|stats4|0.0003911587261758113| -|cran|testit|0.000387635436002617| -|cran|downlit|0.00038752663200272133| -|cran|prettyunits|0.0003859137864015684| -|cran|profvis|0.0003844475341424775| -|cran|pdftools|0.0003772249707527722| -|cran|spatstat.linnet|0.0003707882147182012| -|cran|memoise|0.00036640199899343553| -|cran|future.apply|0.00036517938450994096| -|cran|performance|0.00036413574990848337| -|cran|qs|0.00036146638661145434| -|cran|asciicast|0.0003523759084081217| -|cran|dygraphs|0.00034928627371012675| -|cran|[exactextractr](https://isciences.gitlab.io/exactextractr/)|0.00034698022284116467| -|cran|uuid|0.00034594325691790734| -|cran|spatstat.utils|0.0003429444647182012| -|cran|DBItest|0.00034280149446142086| -|cran|[sfheaders](https://dcooley.github.io/sfheaders/)|0.00034112952836637053| -|cran|[taxa](https://docs.ropensci.org/taxa/)|0.00034090909090909094| -|cran|[vegdata](http://germansl.infinitenature.org)|0.00034090909090909094| -|cran|tidyverse|0.00033925023309368187| -|cran|spatstat.geom|0.00033651998494605513| -|cran|mapview|0.0003361695624748744| -|cran|praise|0.0003349475803144224| -|cran|viridisLite|0.00033406082843786655| -|cran|webp|0.0003334917142548196| -|cran|diffviewer|0.0003314061715098557| -|cran|commonmark|0.00032991834549545745| -|cran|jpeg|0.0003295898561212117| -|cran|spatstat|0.00032686590740594815| -|cran|reshape2|0.00032496672336808455| -|cran|splines|0.0003181896324888941| -|cran|getPass|0.00031639433099794943| -|cran|V8|0.0003132086776859505| -|cran|nleqslv|0.00031315606806986114| -|cran|later|0.0003096126076791469| -|cran|whisker|0.0003090950745126255| -|cran|[openssl](https://github.com/jeroen/openssl)|0.0003075132812059841| -|cran|tesseract|0.0003040100966077608| -|cran|gh|0.00030353404652424447| -|cran|WikidataR|0.00029999625374625374| -|cran|dichromat|0.00029990470928922136| -|cran|KernSmooth|0.0002991557048308834| -|cran|xtable|0.0002970425481461501| -|cran|showtext|0.00029617917112914133| -|cran|RPostgres|0.0002949275469966435| -|cran|[shinyjs](https://deanattali.com/shinyjs/)|0.00029168722655606227| -|cran|spatstat.random|0.00028920206895606857| -|cran|selectr|0.0002883919022154316| -|cran|rvest|0.0002860908055700819| -|cran|rprintf|0.00028571755322657214| -|cran|WRS2|0.0002807384653226647| -|cran|combinat|0.0002792648927159797| -|cran|cluster|0.0002787210057834686| -|cran|igraphdata|0.0002775318743756244| -|cran|sfsmisc|0.0002716497566953964| -|cran|fastmap|0.00026863208435817635| -|cran|labeling|0.00026821376992572653| -|cran|gifski|0.0002657498264261788| -|cran|[readxl](https://readxl.tidyverse.org)|0.0002655899834297301| -|cran|[phangorn](https://github.com/KlausVigo/phangorn)|0.00026550262224123904| -|cran|units|0.0002639957067967997| -|cran|crosstalk|0.00026173603254330815| -|cran|[reticulate](https://rstudio.github.io/reticulate/)|0.00025912899012955833| -|cran|lazyeval|0.00025861173506416997| -|cran|rsconnect|0.00025633748161170373| -|cran|R.rsp|0.0002551851275207323| -|cran|listenv|0.00025425634863371544| -|cran|rstan|0.00025258502860775586| -|cran|rJava|0.0002522697912135711| -|cran|rstanarm|0.0002481109712181984| -|cran|visNetwork|0.00024418667768401814| -|cran|randomForest|0.00024081434981008024| -|cran|styler|0.00023934259251293487| -|cran|hunspell|0.0002386300099129641| -|cran|boot|0.00023675618671075747| -|cran|tufte|0.00023667143997197786| -|cran|katex|0.00023667143997197786| -|cran|[viridis](https://sjmgarnier.github.io/viridis/)|0.0002340742838535376| -|cran|formatR|0.00023372720441527256| -|cran|sodium|0.0002336463247620342| -|cran|qpdf|0.0002335129192608862| -|cran|progress|0.00023286194330490094| -|cran|webshot|0.00023230100464964915| -|cran|txtplot|0.00022727272727272727| -|cran|prettydoc|0.0002251266928188219| -|cran|see|0.00022384995298111636| -|cran|[effectsize](https://easystats.github.io/effectsize/)|0.00022341191491994245| -|cran|cowplot|0.00022341033200501658| -|cran|cellranger|0.00022279718603008248| -|cran|globals|0.00022050634863371544| -|cran|odbc|0.0002199537083353049| -|cran|jose|0.00021913107027967445| +https://github.com/ropensci/magick (devel))|0.00024376511403660693| +|cran|[fields](https://github.com/dnychka/fieldsRPackage)|0.0002427743238165913| +|cran|[R.oo](https://github.com/HenrikBengtsson/R.oo)|0.00024016005130020636| +|cran|[gridExtra](https://github.com/baptiste/gridextra)|0.0002398839437382751| +|cran|[base64enc](http://www.rforge.net/base64enc)|0.00023896345550725856| +|cran|[outsider.base](https://docs.ropensci.org/outsider.base)|0.00023825632199126176| +|cran|interp|0.00023735019882251815| +|cran|[googleCloudStorageR](https://code.markedmondson.me/googleCloudStorageR/)|0.0002362458725134208| +|cran|[lme4](https://github.com/lme4/lme4/)|0.00023355659936322357| +|cran|[fastmatch](http://www.rforge.net/fastmatch)|0.00023220947477985878| +|cran|[lintr](https://github.com/jimhester/lintr)|0.00023218392182640526| +|cran|[googleAuthR](https://code.markedmondson.me/googleAuthR/)|0.00023142204376994934| +|cran|[promises](https://rstudio.github.io/promises)|0.0002314040647184373| +|cran|[nnet](http://www.stats.ox.ac.uk/pub/MASS4/)|0.00022975308248228104| +|cran|[aws.s3](https://github.com/cloudyr/aws.s3)|0.0002264751442745773| +|cran|[Cairo](http://www.rforge.net/Cairo/)|0.0002261498686608638| +|cran|quantreg|0.00022568456031324361| +|cran|triebeard|0.00022567093373493976| +|cran|svglite|0.00022565948738244597| +|cran|[backports](https://github.com/r-lib/backports)|0.0002247208508121555| +|cran|tinytex|0.00022355011949706512| +|cran|[codetools](https://gitlab.com/luke-tierney/codetools)|0.00022226038916101779| +|cran|ggplot2movies|0.00021925531930444583| +|cran|tuneR|0.0002168674698795181| +|cran|multcomp|0.00021383776659171261| +|cran|jquerylib|0.00021300184623591138| +|cran|[expm](http://R-Forge.R-project.org/projects/expm/)|0.00021212119402199366| +|cran|isoband|0.00021068488371593796| +|cran|rasterVis|0.00021011092002280222| +|cran|[rjson](https://github.com/alexcb/rjson)|0.00020783863365550118| +|cran|stats4|0.0002073612524305505| +|cran|[testit](https://github.com/yihui/testit)|0.00020549348414596554| +|cran|[downlit](https://downlit.r-lib.org/)|0.00020543580491710529| +|cran|prettyunits|0.00020458080242974702| +|cran|profvis|0.00020380351207553016| +|cran|[pdftools](https://docs.ropensci.org/pdftools/ (website) +https://github.com/ropensci/pdftools#readme (devel) +https://poppler.freedesktop.org (upstream))|0.0001999746832906262| +|cran|[spatstat.linnet](http://spatstat.org/)|0.00019656242707952832| +|cran|[memoise](https://github.com/r-lib/memoise)|0.0001942372042856767| +|cran|[future.apply](https://future.apply.futureverse.org)|0.00019358907130647467| +|cran|[performance](https://easystats.github.io/performance/)|0.00019303581922859358| +|cran|[qs](https://github.com/traversc/qs)|0.0001916207350711324| +|cran|asciicast|0.00018680168638502835| +|cran|[dygraphs](https://github.com/rstudio/dygraphs)|0.00018516380774994675| +|cran|[exactextractr](https://isciences.gitlab.io/exactextractr/)|0.00018394132295194274| +|cran|[uuid](http://www.rforge.net/uuid)|0.00018339160607696293| +|cran|[spatstat.utils](http://spatstat.org/)|0.00018180188491085362| +|cran|[DBItest](https://dbitest.r-dbi.org)|0.0001817260934494279| +|cran|[sfheaders](https://dcooley.github.io/sfheaders/)|0.000180839749977353| +|cran|[taxa](https://docs.ropensci.org/taxa/)|0.00018072289156626507| +|cran|[vegdata](http://germansl.infinitenature.org)|0.00018072289156626507| +|cran|[tidyverse](http://tidyverse.tidyverse.org)|0.00017984349706171086| +|cran|[spatstat.geom](http://spatstat.org/)|0.00017839613659790873| +|cran|[mapview](https://github.com/r-spatial/mapview)|0.00017821037046860815| +|cran|[praise](https://github.com/gaborcsardi/praise)|0.00017756257269680226| +|cran|[viridisLite](https://github.com/sjmgarnier/viridisLite)|0.00017709248736465214| +|cran|[webp](https://github.com/jeroen/webp#readme +https://developers.google.com/speed/webp)|0.0001767907882796634| +|cran|diffviewer|0.00017568519935462232| +|cran|[commonmark](https://docs.ropensci.org/commonmark/ (docs) +https://github.com/r-lib/commonmark (devel) +https://github.github.com/gfm/ (spec))|0.0001748964723108449| +|cran|[jpeg](http://www.rforge.net/jpeg/)|0.00017472233336546163| +|cran|[spatstat](http://spatstat.org/)|0.00017327831235977977| +|cran|[reshape2](https://github.com/hadley/reshape)|0.00017227151600235797| +|cran|splines|0.00016867884131941375| +|cran|[getPass](https://github.com/wrathematics/getPass)|0.00016772711522782864| +|cran|[V8](https://github.com/jeroen/v8 (devel) https://v8.dev (upstream))|0.00016603833515881712| +|cran|[nleqslv](NA)|0.00016601044572378182| +|cran|later|0.00016413198479376463| +|cran|[whisker](http://github.com/edwindj/whisker)|0.00016385762986211478| +|cran|[openssl](https://github.com/jeroen/openssl)|0.000163019088832088| +|cran|[tesseract](https://docs.ropensci.org/tesseract/ (website) +https://github.com/ropensci/tesseract (devel))|0.00016116197892459606| +|cran|[gh](https://gh.r-lib.org/)|0.00016090961502490073| +|cran|[WikidataR](https://github.com/TS404/WikidataR/issues)|0.00015903415861247185| +|cran|dichromat|0.00015898562902079205| +|cran|KernSmooth|0.0001585885664163719| +|cran|[xtable](http://xtable.r-forge.r-project.org/)|0.00015746833877627235| +|cran|[showtext](https://github.com/yixuan/showtext)|0.00015701064493593028| +|cran|[RPostgres](https://rpostgres.r-dbi.org)|0.00015634713334761825| +|cran|[shinyjs](https://deanattali.com/shinyjs/)|0.0001546293731140571| +|cran|[spatstat.random](http://spatstat.org/)|0.00015331194016948217| +|cran|selectr|0.00015288245418649385| +|cran|[rvest](http://rvest.tidyverse.org/)|0.00015166259572389879| +|cran|rprintf|0.00015146472701167682| +|cran|WRS2|0.00014882521053249695| +|cran|combinat|0.00014804403951208561| +|cran|[cluster](https://svn.r-project.org/R-packages/trunk/cluster/)|0.0001477557139093087| +|cran|igraphdata|0.0001471253309943069| +|cran|sfsmisc|0.00014400709993490888| +|cran|fastmap|0.00014240737002120196| +|cran|labeling|0.00014218561297267424| +|cran|[gifski](https://gif.ski/ (upstream))|0.00014087942605725136| +|cran|[readxl](https://readxl.tidyverse.org)|0.00014079469001094125| +|cran|[phangorn](https://github.com/KlausVigo/phangorn)|0.0001407483780555966| +|cran|[units](https://github.com/r-quantities/units/)|0.00013994953131396613| +|cran|[crosstalk](https://rstudio.github.io/crosstalk/)|0.0001387516317097055| +|cran|[reticulate](https://rstudio.github.io/reticulate/)|0.00013736958512892245| +|cran|[lazyeval](NA)|0.00013709537762437922| +|cran|rsconnect|0.00013588974928813207| +|cran|[R.rsp](https://github.com/HenrikBengtsson/R.rsp)|0.00013527886278207494| +|cran|[listenv](https://github.com/HenrikBengtsson/listenv)|0.0001347864980708853| +|cran|[rstan](https://mc-stan.org/rstan)|0.00013390049709326816| +|cran|[rJava](http://www.rforge.net/rJava/)|0.00013373338329394132| +|cran|rstanarm|0.00013152870763374376| +|cran|[visNetwork](http://datastorm-open.github.io/visNetwork/)|0.00012944835925417827| +|cran|[randomForest](https://www.stat.berkeley.edu/~breiman/RandomForests/)|0.0001276606191764281| +|cran|styler|0.00012688041048878473| +|cran|[hunspell](https://github.com/ropensci/hunspell#readme (devel) +https://hunspell.github.io (upstream))|0.00012650265585747493| +|cran|boot|0.00012550930379847384| +|cran|tufte|0.00012546437781647018| +|cran|katex|0.00012546437781647018| +|cran|[viridis](https://sjmgarnier.github.io/viridis/)|0.00012408757216332114| +|cran|[formatR](https://github.com/yihui/formatR)|0.00012390357824424084| +|cran|[sodium](https://github.com/jeroen/sodium#readme (devel) +https://download.libsodium.org/doc/ (upstream))|0.00012386070228348798| +|cran|[qpdf](https://github.com/ropensci/qpdf (devel))|0.0001237899812949276| +|cran|[progress](https://github.com/r-lib/progress#readme)|0.00012344488560741735| +|cran|webshot|0.00012314752053716336| +|cran|txtplot|0.00012048192771084337| +|cran|prettydoc|0.00011934427089190555| +|cran|see|0.0001186674449538448| +|cran|[effectsize](https://easystats.github.io/effectsize/)|0.00011843523200575261| +|cran|[cowplot](https://wilkelab.org/cowplot/)|0.00011843439287012925| +|cran|cellranger|0.00011810935163040516| +|cran|[globals](https://github.com/HenrikBengtsson/globals)|0.00011689493180582504| +|cran|[odbc](https://github.com/r-dbi/odbc)|0.00011660196586449895| +|cran|[jose](https://datatracker.ietf.org/wg/jose/documents/ +https://www.w3.org/TR/WebCryptoAPI/#jose +https://github.com/r-lib/jose)|0.00011616586858199605| |cran|[psych](https://personality-project.org/r/psych/ -https://personality-project.org/r/psych-manual.pdf)|0.0002179821501183445| -|cran|flashClust|0.00021777631578947368| -|cran|e1071|0.000215992527243165| -|cran|targets|0.00021489437099375344| -|cran|s2|0.00021392267292740156| -|cran|statnet.common|0.00020838589981447126| -|cran|bayestestR|0.00020772635583358315| -|cran|MatrixModels|0.00020730342802406765| -|cran|gee|0.00020382722083363362| -|cran|gamm4|0.00020065901057337093| -|cran|survminer|0.00020063070900391475| -|cran|[ggrepel](http://github.com/slowkow/ggrepel)|0.00019979888293037576| -|cran|modelbased|0.00019681318681318683| -|cran|stars|0.00019612377972501573| -|cran|spdep|0.00019597475669539638| -|cran|RMariaDB|0.00019428462924054124| -|cran|mapdata|0.0001937907898584335| -|cran|highr|0.00019322375691883305| -|cran|[checkmate](https://github.com/mllg/checkmate)|0.00019276884303482582| -|cran|tikzDevice|0.00018938960048996248| -|cran|palmerpenguins|0.00018927896791093963| -|cran|coda|0.00018826985615259906| -|cran|JuliaCall|0.00018502537635203145| -|cran|vcr|0.00018317812990580845| -|cran|forecast|0.0001825130875222611| -|cran|class|0.00017525935828877006| -|cran|[leaflet](https://rstudio.github.io/leaflet/)|0.00017464356855412396| -|cran|rnaturalearth|0.00017394902175746333| -|cran|poorman|0.00017363537436120686| -|cran|here|0.00017328747611619416| -|cran|classInt|0.00017032079059458094| -|cran|colorspace|0.00016808799759082603| -|cran|Seurat|0.00016760413499543935| -|cran|network|0.00016758947970789802| -|cran|shape|0.0001674977109109727| -|cran|[kableExtra](http://haozhu233.github.io/kableExtra/)|0.00016724509971452698| -|cran|spatstat.data|0.0001654256918284555| -|cran|slam|0.00016365046497620025| -|cran|tmap|0.00016103287063410664| -|cran|pool|0.00016103287063410664| -|cran|polyclip|0.00016065193429345422| -|cran|taxize|0.00015794642857142865| -|cran|gapminder|0.00015562568670516336| -|cran|animation|0.00015525921089779785| -|cran|[spatstat.core](http://spatstat.org/)|0.00015459145817417878| -|cran|gplots|0.00015378745357513303| -|cran|tseries|0.00015058246327730933| -|cran|argon2|0.00014952455357142858| -|cran|dendextend|0.00014856201995718963| -|cran|ade4|0.00014813573220258| -|cran|shinydisconnect|0.0001477831296992481| -|cran|irlba|0.00014740160315228253| -|cran|rex|0.00014690315410329806| -|cran|datawizard|0.00014659751791618132| -|cran|poibin|0.0001461038961038961| -|cran|fANCOVA|0.0001461038961038961| -|cran|gert|0.00014602676655369257| -|cran|[mmand](https://github.com/jonclayden/mmand)|0.00014258856951871658| -|cran|[RNifti](https://github.com/jonclayden/RNifti)|0.00014258856951871658| -|cran|lavaan|0.00014257848236702645| -|cran|shinytest|0.00014251479445618565| -|cran|conflicted|0.00014230865288557596| -|cran|zeallot|0.00014011363636363635| -|cran|pingr|0.00013866947919785434| -|cran|[circlize](https://github.com/jokergoo/circlize)|0.0001376755152741995| -|cran|pbkrtest|0.00013718150638526686| -|cran|[caret](https://github.com/topepo/caret/)|0.00013606050199800205| -|cran|reactlog|0.00013560196550881722| -|cran|sourcetools|0.00013560196550881722| -|cran|fontawesome|0.00013560196550881722| -|cran|pbdMPI|0.000135| -|cran|sna|0.00013352299688947422| -|cran|RcppTOML|0.00013289961636828645| -|cran|janitor|0.00013236892583120204| -|cran|car|0.00013034294409366854| -|cran|RhpcBLASctl|0.00013016188388793493| -|cran|gtools|0.00013009620271033317| -|cran|paletteer|0.0001278409090909091| -|cran|statsExpressions|0.0001278409090909091| -|cran|geoaxe|0.0001278409090909091| -|cran|spbabel|0.0001278409090909091| -|cran|colorRamps|0.0001278409090909091| -|cran|[Rdpack](https://geobosh.github.io/Rdpack/ (website))|0.00012729285289809014| -|cran|latticeExtra|0.0001259792540495219| -|cran|timeSeries|0.00012338115174299384| -|cran|fts|0.00012338115174299384| -|cran|pbapply|0.0001224172863035136| -|cran|[zip](https://github.com/r-lib/zip#readme)|0.00012233226220290013| -|cran|miniUI|0.00012116770025922702| -|cran|lpSolve|0.00012097402597402597| -|cran|nortest|0.00012032085561497327| -|cran|openair|0.00012032085561497327| -|cran|brew|0.00012029473447747904| -|cran|[plotly](https://plotly-r.com)|0.00011806087921228486| -|cran|fstcore|0.00011726223776223776| -|cran|parallelly|0.00011720733843338947| -|cran|lars|0.00011719780219780219| -|cran|IRdisplay|0.00011711889666857455| -|cran|emmeans|0.00011519344221617564| -|cran|ggforce|0.00011487095105980977| -|cran|rsvg|0.00011410029849043691| -|cran|futile.logger|0.00011401451673326674| -|cran|graphql|0.00011389248251748253| -|cran|TTR|0.00011377840909090909| +https://personality-project.org/r/psych-manual.pdf)|0.00011555680247237536| +|cran|flashClust|0.00011544768547875711| +|cran|e1071|0.00011450206263493085| +|cran|[targets](https://docs.ropensci.org/targets/)|0.00011391990751476081| +|cran|[s2](https://r-spatial.github.io/s2/)|0.00011340479046753817| +|cran|statnet.common|0.00011046963363658716| +|cran|[bayestestR](https://easystats.github.io/bayestestR/)|0.00011011999586358622| +|cran|MatrixModels|0.00010989579316938526| +|cran|gee|0.00010805298453831179| +|cran|gamm4|0.00010637345138829301| +|cran|[survminer](http://www.sthda.com/english/rpkgs/survminer/)|0.0001063584481466536| +|cran|[ggrepel](http://github.com/slowkow/ggrepel)|0.00010591748010766908| +|cran|modelbased|0.00010433470144313518| +|cran|[stars](https://r-spatial.github.io/stars/)|0.00010396923262530951| +|cran|[spdep](https://github.com/r-spatial/spdep/)|0.00010389023246502937| +|cran|[RMariaDB](https://rmariadb.r-dbi.org)|0.00010299426128414236| +|cran|mapdata|0.00010273246691290449| +|cran|highr|0.00010243187113769464| +|cran|[checkmate](https://github.com/mllg/checkmate)|0.0001021907119702691| +|cran|tikzDevice|0.00010039930628383552| +|cran|palmerpenguins|0.00010034065768772701| +|cran|coda|9.98057068760766e-05| +|cran|JuliaCall|9.808574168059499e-05| +|cran|[vcr](https://github.com/ropensci/vcr/ (devel) +https://books.ropensci.org/http-testing/ (user manual))|9.7106478504284e-05| +|cran|[forecast](https://pkg.robjhyndman.com/forecast/)|9.675392591541552e-05| +|cran|class|9.290857547838413e-05| +|cran|[leaflet](https://rstudio.github.io/leaflet/)|9.25821327274874e-05| +|cran|[rnaturalearth](https://github.com/ropenscilabs/rnaturalearth)|9.22139392449203e-05| +|cran|poorman|9.204766833606146e-05| +|cran|[here](https://here.r-lib.org/)|9.186324035075354e-05| +|cran|[classInt](https://r-spatial.github.io/classInt/)|9.029053959230796e-05| +|cran|[colorspace](https://colorspace.R-Forge.R-project.org/)|8.910689028911262e-05| +|cran|[Seurat](https://satijalab.org/seurat)|8.885038481685941e-05| +|cran|[network](http://statnet.org/)|8.884261574876522e-05| +|cran|shape|8.879396722991323e-05| +|cran|[kableExtra](http://haozhu233.github.io/kableExtra/)|8.86600528607131e-05| +|cran|spatstat.data|8.769554747532581e-05| +|cran|[slam](NA)|8.675446336087725e-05| +|cran|[tmap](https://github.com/mtennekes/tmap)|8.53668229867553e-05| +|cran|pool|8.53668229867553e-05| +|cran|polyclip|8.516488083026489e-05| +|cran|[taxize](https://docs.ropensci.org/taxize/ (website))|8.373063683304652e-05| +|cran|[gapminder](https://github.com/jennybc/gapminder)|8.250036403647214e-05| +|cran|animation|8.230608770485669e-05| +|cran|[spatstat.core](http://spatstat.org/)|8.19520983092032e-05| +|cran|[gplots](https://github.com/talgalili/gplots)|8.152587900368497e-05| +|cran|tseries|7.982684800242904e-05| +|cran|[argon2](https://github.com/wrathematics/argon2)|7.926602839931153e-05| +|cran|[dendextend](http://talgalili.github.io/dendextend/)|7.875576961585957e-05| +|cran|ade4|7.852978574594603e-05| +|cran|shinydisconnect|7.83428639369508e-05| +|cran|[irlba](NA)|7.814060890000519e-05| +|cran|[rex](https://github.com/kevinushey/rex)|7.787637084994117e-05| +|cran|[datawizard](https://easystats.github.io/datawizard/)|7.771434684713227e-05| +|cran|poibin|7.74526678141136e-05| +|cran|fANCOVA|7.74526678141136e-05| +|cran|[gert](https://docs.ropensci.org/gert/)|7.741177985978884e-05| +|cran|[mmand](https://github.com/jonclayden/mmand)|7.558912119064493e-05| +|cran|[RNifti](https://github.com/jonclayden/RNifti)|7.558912119064493e-05| +|cran|[lavaan](https://lavaan.ugent.be)|7.55837737849297e-05| +|cran|[shinytest](https://github.com/rstudio/shinytest)|7.55500115189418e-05| +|cran|conflicted|7.544073165018484e-05| +|cran|[zeallot](https://github.com/nteetor/zeallot)|7.427710843373494e-05| +|cran|[pingr](https://github.com/r-lib/pingr#readme)|7.35115311410312e-05| +|cran|[circlize](https://github.com/jokergoo/circlize)|7.298461050680455e-05| +|cran|pbkrtest|7.272272627652701e-05| +|cran|[caret](https://github.com/topepo/caret/)|7.212845889050712e-05| +|cran|reactlog|7.1885379305879e-05| +|cran|sourcetools|7.1885379305879e-05| +|cran|fontawesome|7.1885379305879e-05| +|cran|pbdMPI|7.156626506024095e-05| +|cran|[sna](http://statnet.org)|7.07832754594803e-05| +|cran|RcppTOML|7.04528086771639e-05| +|cran|[janitor](https://github.com/sfirke/janitor)|7.017147875389024e-05| +|cran|[car](https://r-forge.r-project.org/projects/car/)|6.909746433881224e-05| +|cran|RhpcBLASctl|6.90014806152908e-05| +|cran|[gtools](https://github.com/r-gregmisc/gtools)|6.896666167776697e-05| +|cran|geoaxe|6.77710843373494e-05| +|cran|spbabel|6.77710843373494e-05| +|cran|colorRamps|6.77710843373494e-05| +|cran|paletteer|6.77710843373494e-05| +|cran|statsExpressions|6.77710843373494e-05| +|cran|[Rdpack](https://geobosh.github.io/Rdpack/ (website))|6.748054852428875e-05| +|cran|latticeExtra|6.678418286962606e-05| +|cran|timeSeries|6.540687562279192e-05| +|cran|fts|6.540687562279192e-05| +|cran|[pbapply](https://github.com/psolymos/pbapply)|6.489591081150118e-05| +|cran|[zip](https://github.com/r-lib/zip#readme)|6.48508377943085e-05| +|cran|miniUI|6.423347965549382e-05| +|cran|lpSolve|6.413080895008606e-05| +|cran|nortest|6.378454996456414e-05| +|cran|openair|6.378454996456414e-05| +|cran|brew|6.37707026145672e-05| +|cran|[plotly](https://plotly-r.com)|6.25864901848257e-05| +|cran|fstcore|6.21631139944393e-05| +|cran|parallelly|6.213401073577272e-05| +|cran|lars|6.212895538196743e-05| +|cran|[IRdisplay](https://github.com/IRkernel/IRdisplay)|6.20871259447865e-05| +|cran|[emmeans](https://github.com/rvlenth/emmeans)|6.106640310255095e-05| +|cran|[ggforce](https://ggforce.data-imaginist.com)|6.089544393532084e-05| +|cran|rsvg|6.048690522384607e-05| +|cran|[futile.logger](NA)|6.0441430557394424e-05| +|cran|[graphql](http://graphql.org (upstream) https://github.com/ropensci/graphql +(devel))|6.0376737720111215e-05| +|cran|[TTR](https://github.com/joshuaulrich/TTR)|6.0316265060240964e-05| |cran|[credentials](https://docs.ropensci.org/credentials/ (website) -https://github.com/r-lib/credentials)|0.00011322667957042962| -|cran|spatial|0.0001119881918284555| -|cran|BayesFactor|0.00011191001791618125| -|cran|stopwords|0.0001118490320769456| -|cran|rnaturalearthdata|0.00011156343656343657| -|cran|VGAM|0.00011031686967829268| -|cran|av|0.00011020606772120615| -|cran|brms|0.00010975857166462696| -|cran|dunn.test|0.00010765550239234451| -|cran|plotrix|0.00010714162289369669| -|cran|egg|0.0001067398538961039| -|cran|gam|0.00010601451958568487| -|cran|wk|0.00010561588527571506| -|cran|hoardr|0.00010485654385721248| -|cran|config|0.00010445001663127191| -|cran|[git2r](https://docs.ropensci.org/git2r/ (website))|0.0001040225586867627| -|cran|[genalg](https://github.com/egonw/genalg)|0.00010227272727272728| -|cran|segmented|0.0001022394409937888| -|cran|[semver](https://github.com/johndharrison/semver)|0.00010095779220779228| -|cran|lsa|0.0001004384881422925| -|cran|RJSONIO|9.94707682023859e-05| -|cran|mclust|9.840196519225079e-05| -|cran|rbibutils|9.670032467532468e-05| -|cran|remotes|9.645696863968146e-05| -|cran|matlab|9.367633928571429e-05| -|cran|[foreign](https://svn.r-project.org/R-packages/trunk/foreign/)|9.364052905581191e-05| -|cran|mnormt|9.335474168280233e-05| -|cran|plotROC|9.297520661157024e-05| -|cran|SuppDists|9.140624999999999e-05| -|cran|GGally|9.113896644623324e-05| -|cran|[glmnet](https://glmnet.stanford.edu)|9.082136613386624e-05| -|cran|qlcMatrix|9.079231045634208e-05| -|cran|[ggseqlogo](https://github.com/omarwagih/ggseqlogo)|9.029644268774703e-05| -|cran|RcppRoll|9.021121541501977e-05| -|cran|blavaan|9.004187344913152e-05| -|cran|spex|8.893280632411068e-05| -|cran|[seqminer](http://zhanxw.github.io/seqminer/)|8.893280632411068e-05| -|cran|SeuratObject|8.893280632411068e-05| -|cran|[ggpubr](https://rpkgs.datanovia.com/ggpubr/)|8.742557532180743e-05| -|cran|tm|8.65093717372853e-05| -|cran|mediation|8.635131360011083e-05| -|cran|[statmod](NA)|8.501929408633163e-05| -|cran|futile.options|8.485714285714285e-05| -|cran|lambda.r|8.485714285714285e-05| -|cran|arrow|8.286081604565648e-05| -|cran|logspline|8.238072536481672e-05| -|cran|DiceKriging|8.173951048951048e-05| -|cran|vegan|8.13527365491651e-05| -|cran|parallelMap|8.013236763236765e-05| -|cran|shinyAce|8.012889248908988e-05| -|cran|gridGraphics|8.00207495236457e-05| -|cran|mlrMBO|7.867132867132867e-05| -|cran|emoa|7.867132867132867e-05| -|cran|gmp|7.640369782214156e-05| -|cran|mlbench|7.509594771974723e-05| -|cran|webfakes|7.449116304890762e-05| -|cran|proj4|7.362248046071575e-05| -|cran|RandomFieldsUtils|7.314548083101306e-05| -|cran|biglm|7.312110998020133e-05| -|cran|jqr|7.291767161410022e-05| -|cran|websocket|7.281964285714284e-05| -|cran|base64url|7.271877059111101e-05| -|cran|utf8|7.157241011455652e-05| -|cran|[ggridges](https://wilkelab.org/ggridges/)|7.105093769866498e-05| -|cran|attempt|6.995707852519e-05| -|cran|carrier|6.981456043956045e-05| -|cran|extrafont|6.912984654664222e-05| -|cran|rms|6.911660597567062e-05| -|cran|fftwtools|6.859533468559837e-05| -|cran|quadprog|6.838361095426313e-05| -|cran|strucchange|6.813805109364322e-05| -|cran|leaflet.providers|6.793667729329494e-05| -|cran|robotstxt|6.75e-05| -|cran|ggdist|6.663461538461539e-05| -|cran|bridgesampling|6.663461538461539e-05| -|cran|bayesQR|6.663461538461539e-05| -|cran|Rgraphviz|6.644462116830537e-05| -|cran|RandomFields|6.638658755038066e-05| -|cran|mice|6.626845593781515e-05| -|cran|[extraDistr](https://github.com/twolodzko/extraDistr)|6.554478609625665e-05| -|cran|mondate|6.521597317156527e-05| -|cran|DAAG|6.521597317156527e-05| -|cran|gganimate|6.377649923605806e-05| -|cran|[shinythemes](http://rstudio.github.io/shinythemes/)|6.377457681637251e-05| -|cran|cba|6.328125e-05| -|cran|[golem](https://github.com/ThinkR-open/golem)|6.324328992144924e-05| -|cran|seriation|6.288778322854e-05| -|cran|shinyBS|6.143883689839572e-05| -|cran|lmtest|6.036617425684348e-05| -|cran|tableHTML|6.0160427807486634e-05| -|cran|shiny.i18n|6.0160427807486634e-05| -|cran|popbio|6.0160427807486634e-05| -|cran|[gitcreds](https://github.com/r-lib/gitcreds)|6.0023118329039395e-05| -|cran|dfoptim|5.999308871275783e-05| -|cran|nloptr|5.9785198776607056e-05| -|cran|ini|5.9739027419948485e-05| -|cran|[RcppArmadillo](https://github.com/RcppCore/RcppArmadillo)|5.880681818181819e-05| -|cran|caTools|5.8203109390609416e-05| -|cran|janeaustenr|5.76510425664561e-05| -|cran|vcd|5.734056122448979e-05| -|cran|wordcloud2|5.6636332417582424e-05| -|cran|spacyr|5.6505681818181824e-05| -|cran|reshape|5.574928594912474e-05| -|cran|SGP|5.5714285714285715e-05| -|cran|polynom|5.486126743322467e-05| -|cran|conditionz|5.48596046810333e-05| -|cran|furrr|5.473303012776705e-05| -|cran|tkrplot|5.470063903487816e-05| -|cran|Formula|5.4632067757553e-05| -|cran|tripack|5.4163663171690695e-05| -|cran|pscl|5.395283328535918e-05| -|cran|Rmpfr|5.341201298701299e-05| -|cran|pkgdown|5.31563520408263e-05| -|cran|kernlab|5.3147929876246184e-05| -|cran|jsonify|5.226534828807556e-05| -|cran|gt|5.158223591377574e-05| +https://github.com/r-lib/credentials)|6.002378194095064e-05| +|cran|spatial|5.9367234222313774e-05| +|cran|[BayesFactor](https://richarddmorey.github.io/BayesFactor/)|5.932579263026475e-05| +|cran|stopwords|5.92934627877784e-05| +|cran|rnaturalearthdata|5.9142062756520586e-05| +|cran|[VGAM](https://www.stat.auckland.ac.nz/~yee/VGAM/)|5.848123211861299e-05| +|cran|av|5.842249373172372e-05| +|cran|brms|5.818526690654923e-05| +|cran|dunn.test|5.7070386810399494e-05| +|cran|plotrix|5.679796876292355e-05| +|cran|egg|5.6584982788296036e-05| +|cran|gam|5.6200468214098e-05| +|cran|[wk](https://paleolimbot.github.io/wk/)|5.5989144001583887e-05| +|cran|[hoardr](https://github.com/ropensci/hoardr)|5.5586601562859624e-05| +|cran|[config](https://github.com/rstudio/config)|5.537109315392728e-05| +|cran|[git2r](https://docs.ropensci.org/git2r/ (website))|5.514448894238023e-05| +|cran|[genalg](https://github.com/egonw/genalg)|5.421686746987952e-05| +|cran|segmented|5.4199221731647075e-05| +|cran|[semver](https://github.com/johndharrison/semver)|5.351979345955253e-05| +|cran|lsa|5.3244499738082764e-05| +|cran|RJSONIO|5.273149157716841e-05| +|cran|mclust|5.216489721034981e-05| +|cran|[rbibutils](https://geobosh.github.io/rbibutils/ (website))|5.1262822719449226e-05| +|cran|[remotes](https://remotes.r-lib.org)|5.1133814700554035e-05| +|cran|[matlab](http://cran.r-project.org/package=matlab)|4.965974612736661e-05| +|cran|[foreign](https://svn.r-project.org/R-packages/trunk/foreign/)|4.96407623910328e-05| +|cran|[mnormt](http://azzalini.stat.unipd.it/SW/Pkg-mnormt)|4.948926065112412e-05| +|cran|plotROC|4.92880613362541e-05| +|cran|SuppDists|4.845632530120482e-05| +|cran|[GGally](https://ggobi.github.io/ggally/)|4.831463281487062e-05| +|cran|[glmnet](https://glmnet.stanford.edu)|4.814626638421825e-05| +|cran|qlcMatrix|4.81308633744464e-05| +|cran|[ggseqlogo](https://github.com/omarwagih/ggseqlogo)|4.7867993713986376e-05| +|cran|RcppRoll|4.782281299109482e-05| +|cran|blavaan|4.7733041346527546e-05| +|cran|[seqminer](http://zhanxw.github.io/seqminer/)|4.714510214772132e-05| +|cran|SeuratObject|4.714510214772132e-05| +|cran|spex|4.714510214772132e-05| +|cran|[ggpubr](https://rpkgs.datanovia.com/ggpubr/)|4.634608812240394e-05| +|cran|[tm](http://tm.r-forge.r-project.org/)|4.5860389836633174e-05| +|cran|mediation|4.577659998078164e-05| +|cran|[statmod](NA)|4.5070469154199905e-05| +|cran|futile.options|4.498450946643717e-05| +|cran|lambda.r|4.498450946643717e-05| +|cran|arrow|4.392621573504681e-05| +|cran|logspline|4.3671709831951026e-05| +|cran|DiceKriging|4.3331788693234476e-05| +|cran|[vegan](https://github.com/vegandevs/vegan)|4.31267519055815e-05| +|cran|[parallelMap](https://parallelmap.mlr-org.com)|4.247980934727924e-05| +|cran|[shinyAce](http://trestletech.github.io/shinyAce/)|4.2477967102650044e-05| +|cran|[gridGraphics](https://github.com/pmur002/gridgraphics)|4.242063830169169e-05| +|cran|mlrMBO|4.170528266913809e-05| +|cran|emoa|4.170528266913809e-05| +|cran|gmp|4.050316511053287e-05| +|cran|mlbench|3.980989999601058e-05| +|cran|webfakes|3.9489291254842585e-05| +|cran|proj4|3.902878482254811e-05| +|cran|RandomFieldsUtils|3.8775917548970777e-05| +|cran|biglm|3.876299806179348e-05| +|cran|[jqr](https://docs.ropensci.org/jqr/ (docs))|3.865515121711337e-05| +|cran|websocket|3.860318416523235e-05| +|cran|[base64url](https://github.com/mllg/base64url)|3.8549709710950415e-05| +|cran|[utf8](https://ptrckprry.com/r-utf8/)|3.794200054265647e-05| +|cran|[ggridges](https://wilkelab.org/ggridges/)|3.7665557334232035e-05| +|cran|[attempt](https://github.com/ColinFay/attempt)|3.708568018202842e-05| +|cran|carrier|3.701012842579108e-05| +|cran|extrafont|3.664714756689467e-05| +|cran|rms|3.664012846903021e-05| +|cran|fftwtools|3.636379188152203e-05| +|cran|quadprog|3.625155279503105e-05| +|cran|strucchange|3.612137648337712e-05| +|cran|leaflet.providers|3.601462410728888e-05| +|cran|robotstxt|3.5783132530120477e-05| +|cran|ggdist|3.532437442075996e-05| +|cran|bridgesampling|3.532437442075996e-05| +|cran|bayesQR|3.532437442075996e-05| +|cran|Rgraphviz|3.5223654595246224e-05| +|cran|[RandomFields](http://ms.math.uni-mannheim.de/de/publications/software/randomfields)|3.5192889785743964e-05| +|cran|mice|3.5130265798359834e-05| +|cran|[extraDistr](https://github.com/twolodzko/extraDistr)|3.4746633593196296e-05| +|cran|mondate|3.457232312709484e-05| +|cran|DAAG|3.457232312709484e-05| +|cran|gganimate|3.380922851068138e-05| +|cran|[shinythemes](http://rstudio.github.io/shinythemes/)|3.3808209396631205e-05| +|cran|cba|3.354668674698795e-05| +|cran|[golem](https://github.com/ThinkR-open/golem)|3.35265633318526e-05| +|cran|[seriation](https://github.com/mhahsler/seriation)|3.3338101952479037e-05| +|cran|[shinyBS](https://ebailey78.github.io/shinyBS)|3.2569985825655564e-05| +|cran|lmtest|3.200134538917004e-05| +|cran|tableHTML|3.189227498228207e-05| +|cran|shiny.i18n|3.189227498228207e-05| +|cran|popbio|3.189227498228207e-05| +|cran|[gitcreds](https://github.com/r-lib/gitcreds)|3.181948441539437e-05| +|cran|dfoptim|3.180356510073909e-05| +|cran|nloptr|3.169335838759892e-05| +|cran|[ini](https://github.com/dvdscripter/ini)|3.166888200575582e-05| +|cran|[RcppArmadillo](https://github.com/RcppCore/RcppArmadillo)|3.117469879518073e-05| +|cran|caTools|3.0854660399841135e-05| +|cran|janeaustenr|3.0561998468964675e-05| +|cran|vcd|3.0397405950331937e-05| +|cran|[wordcloud2](https://github.com/lchiffon/wordcloud2)|3.002407983582683e-05| +|cran|spacyr|2.9954819277108433e-05| +|cran|[reshape](http://had.co.nz/reshape)|2.9553838334475766e-05| +|cran|SGP|2.9535283993115317e-05| +|cran|polynom|2.908308153086609e-05| +|cran|[conditionz](https://github.com/ropenscilabs/conditionz)|2.9082200071873067e-05| +|cran|[furrr](https://github.com/DavisVaughan/furrr)|2.9015100308695783e-05| +|cran|tkrplot|2.8997929126923362e-05| +|cran|Formula|2.8961578088341353e-05| +|cran|tripack|2.8713267223546874e-05| +|cran|pscl|2.8601501982600045e-05| +|cran|[Rmpfr](https://rmpfr.r-forge.r-project.org/)|2.8314802065404477e-05| +|cran|[pkgdown](https://pkgdown.r-lib.org)|2.8179270961401895e-05| +|cran|kernlab|2.8174806199455808e-05| +|cran|jsonify|2.770693162259427e-05| +|cran|gt|2.7344799761519666e-05| |cran|[beautier](https://docs.ropensci.org/beautier/ (website) -https://github.com/ropensci/beautier/)|5.120160939538931e-05| -|cran|heatmaply|5.1016474554153976e-05| -|cran|seqinr|5.085689416082642e-05| -|cran|gridBase|5.084779832356009e-05| -|cran|plm|5.070026318436657e-05| -|cran|BeyondBenford|5.0625000000000004e-05| -|cran|BenfordTests|5.0625000000000004e-05| -|cran|benford.analysis|5.0625000000000004e-05| -|cran|MUS|5.0625000000000004e-05| -|cran|manipulateWidget|5.0625000000000004e-05| -|cran|filelock|5.0625000000000004e-05| -|cran|AsioHeaders|5.0625e-05| -|cran|proxy|5.049617249497202e-05| -|cran|dynamicTreeCut|5.0086722488038276e-05| -|cran|optimx|5.004743653884479e-05| -|cran|minqa|5.004743653884479e-05| -|cran|pls|5.0042820699708455e-05| -|cran|[ordinal](https://github.com/runehaubo/ordinal)|4.938064077199021e-05| -|cran|gbRd|4.896818181818181e-05| -|cran|quanteda|4.874100374164455e-05| -|cran|GPArotation|4.856602068260084e-05| -|cran|rsm|4.829510914617298e-05| -|cran|tables|4.82710177403765e-05| -|cran|rcmdcheck|4.8034434484698194e-05| -|cran|R.devices|4.769853896103898e-05| -|cran|bezier|4.646468144044321e-05| -|cran|ComplexHeatmap|4.646468144044321e-05| -|cran|GlobalOptions|4.646468144044321e-05| -|cran|Cubist|4.642674927113703e-05| -|cran|adehabitatMA|4.589629120879121e-05| -|cran|tweedie|4.538939369204649e-05| -|cran|[rhandsontable](http://jrowen.github.io/rhandsontable/)|4.5221965534465565e-05| -|cran|cleanNLP|4.5e-05| -|cran|udpipe|4.5e-05| -|cran|gpclib|4.4329652255639096e-05| -|cran|PBSmapping|4.4329652255639096e-05| -|cran|rootSolve|4.360248447204969e-05| -|cran|triangle|4.356818181818182e-05| -|cran|evd|4.356818181818182e-05| -|cran|beepr|4.350051264524951e-05| -|cran|wikitaxa|4.269364564007421e-05| -|cran|natserv|4.269364564007421e-05| -|cran|worrms|4.269364564007421e-05| -|cran|rotl|4.269364564007421e-05| -|cran|rredlist|4.269364564007421e-05| -|cran|bold|4.269364564007421e-05| -|cran|ritis|4.26936456400742e-05| -|cran|yamlme|4.21875e-05| -|cran|adehabitatLT|4.2126623376623375e-05| -|cran|doFuture|4.203947368421053e-05| -|cran|pbmcapply|4.203947368421053e-05| -|cran|RANN|4.188214913443163e-05| -|cran|paradox|4.174665551839465e-05| -|cran|plotfunctions|4.1326530612244894e-05| -|cran|Biostrings|4.130325381140598e-05| -|cran|ROCR|4.1286713286713295e-05| -|cran|semEff|4.1243088712757834e-05| -|cran|rr2|4.1243088712757834e-05| -|cran|HSAUR3|4.1243088712757834e-05| -|cran|mlmRev|4.1243088712757834e-05| -|cran|MEMSS|4.1243088712757834e-05| -|cran|PKPDmodels|4.1243088712757834e-05| -|cran|NLP|4.121628981920336e-05| -|cran|rcdk|4.090909090909091e-05| -|cran|fingerprint|4.090909090909091e-05| -|cran|enviPat|4.090909090909091e-05| -|cran|flexdashboard|4.090909090909091e-05| -|cran|keys|4.090909090909091e-05| -|cran|assertive|4.06878584404619e-05| -|cran|actuar|4.05e-05| -|cran|skellam|4.05e-05| -|cran|hoa|4.05e-05| -|cran|LaplacesDemon|4.05e-05| -|cran|matrixStats|4.0452093934038816e-05| -|cran|[geiger](https://github.com/mwpennell/geiger-v2)|4.0202392715979676e-05| -|cran|fpc|4.003772332206664e-05| -|cran|MCMCglmm|3.9853252837344194e-05| -|cran|purrrlyr|3.958646616541353e-05| -|cran|Rcsdp|3.912937391555813e-05| -|cran|psychTools|3.912937391555813e-05| -|cran|[phytools](https://github.com/liamrevell/phytools)|3.9012549950049955e-05| -|cran|sessioninfo|3.885365712808353e-05| -|cran|[deSolve](http://desolve.r-forge.r-project.org/)|3.8703296703296696e-05| -|cran|gamlss|3.838444239246991e-05| -|cran|[binman](https://docs.ropensci.org/binman/)|3.818181818181823e-05| +https://github.com/ropensci/beautier/)|2.714302184815818e-05| +|cran|[heatmaply](https://talgalili.github.io/heatmaply/)|2.7044878076900904e-05| +|cran|[seqinr](http://seqinr.r-forge.r-project.org/)|2.6960281241883887e-05| +|cran|gridBase|2.695545935224872e-05| +|cran|plm|2.687724795315818e-05| +|cran|BeyondBenford|2.6837349397590363e-05| +|cran|BenfordTests|2.6837349397590363e-05| +|cran|benford.analysis|2.6837349397590363e-05| +|cran|MUS|2.6837349397590363e-05| +|cran|filelock|2.6837349397590363e-05| +|cran|manipulateWidget|2.6837349397590363e-05| +|cran|AsioHeaders|2.6837349397590356e-05| +|cran|[proxy](NA)|2.6769055298539382e-05| +|cran|dynamicTreeCut|2.6551997463538365e-05| +|cran|optimx|2.6531171177218922e-05| +|cran|minqa|2.6531171177218922e-05| +|cran|pls|2.652872422635147e-05| +|cran|[ordinal](https://github.com/runehaubo/ordinal)|2.6177689083946618e-05| +|cran|gbRd|2.595903614457831e-05| +|cran|[quanteda](https://quanteda.io)|2.5838604393160962e-05| +|cran|[GPArotation](http://www.stat.ucla.edu/research/gpa)|2.574584228957153e-05| +|cran|rsm|2.560222653532061e-05| +|cran|tables|2.558945518766947e-05| +|cran|rcmdcheck|2.5464037558153262e-05| +|cran|[R.devices](https://github.com/HenrikBengtsson/R.devices)|2.5285972461273677e-05| +|cran|bezier|2.4631879317825315e-05| +|cran|ComplexHeatmap|2.4631879317825315e-05| +|cran|GlobalOptions|2.4631879317825315e-05| +|cran|Cubist|2.461177069795216e-05| +|cran|adehabitatMA|2.433056401429895e-05| +|cran|[tweedie](http://www.r-project.org/package=tweedie)|2.4061847258434288e-05| +|cran|[rhandsontable](http://jrowen.github.io/rhandsontable/)|2.3973090162849215e-05| +|cran|cleanNLP|2.3855421686746988e-05| +|cran|udpipe|2.3855421686746988e-05| +|cran|gpclib|2.350005661744723e-05| +|cran|PBSmapping|2.350005661744723e-05| +|cran|rootSolve|2.311457008156851e-05| +|cran|triangle|2.3096385542168676e-05| +|cran|evd|2.3096385542168676e-05| +|cran|beepr|2.3060512727602142e-05| +|cran|[wikitaxa](https://github.com/ropensci/wikitaxa)|2.2632776001967053e-05| +|cran|[natserv](https://docs.ropensci.org/natserv)|2.2632776001967053e-05| +|cran|[worrms](https://docs.ropensci.org/worrms)|2.2632776001967053e-05| +|cran|[rotl](https://docs.ropensci.org/rotl/)|2.2632776001967053e-05| +|cran|[rredlist](https://github.com/ropensci/rredlist (devel) +https://docs.ropensci.org/rredlist/ (docs))|2.2632776001967053e-05| +|cran|[bold](https://docs.ropensci.org/bold/ (documentation) +https://github.com/ropensci/bold (source))|2.2632776001967053e-05| +|cran|[ritis](https://github.com/ropensci/ritis (devel))|2.2632776001967047e-05| +|cran|yamlme|2.23644578313253e-05| +|cran|adehabitatLT|2.2332185886402756e-05| +|cran|doFuture|2.2285986049461e-05| +|cran|pbmcapply|2.2285986049461e-05| +|cran|RANN|2.220258508331315e-05| +|cran|paradox|2.21307571422815e-05| +|cran|plotfunctions|2.1908040324563558e-05| +|cran|Biostrings|2.18957008156851e-05| +|cran|[ROCR](http://rocr.bioinf.mpi-sb.mpg.de/)|2.1886932344763676e-05| +|cran|semEff|2.186380606459451e-05| +|cran|rr2|2.186380606459451e-05| +|cran|HSAUR3|2.186380606459451e-05| +|cran|mlmRev|2.186380606459451e-05| +|cran|MEMSS|2.186380606459451e-05| +|cran|PKPDmodels|2.186380606459451e-05| +|cran|NLP|2.1849599422228284e-05| +|cran|rcdk|2.1686746987951806e-05| +|cran|fingerprint|2.1686746987951806e-05| +|cran|enviPat|2.1686746987951806e-05| +|cran|flexdashboard|2.1686746987951806e-05| +|cran|keys|2.1686746987951806e-05| +|cran|[assertive](https://bitbucket.org/richierocks/assertive)|2.1569467125064137e-05| +|cran|actuar|2.146987951807229e-05| +|cran|skellam|2.146987951807229e-05| +|cran|hoa|2.146987951807229e-05| +|cran|LaplacesDemon|2.146987951807229e-05| +|cran|[matrixStats](https://github.com/HenrikBengtsson/matrixStats)|2.1444483531297684e-05| +|cran|[geiger](https://github.com/mwpennell/geiger-v2)|2.1312111801242237e-05| +|cran|fpc|2.122481718278231e-05| +|cran|MCMCglmm|2.1127025600519808e-05| +|cran|purrrlyr|2.098559652142404e-05| +|cran|Rcsdp|2.074328255764527e-05| +|cran|psychTools|2.074328255764527e-05| +|cran|[phytools](https://github.com/liamrevell/phytools)|2.0681351780749374e-05| +|cran|[sessioninfo](https://github.com/r-lib/sessioninfo#readme)|2.0597119441393675e-05| +|cran|[deSolve](http://desolve.r-forge.r-project.org/)|2.051741030054283e-05| +|cran|gamlss|2.0348379099622603e-05| +|cran|[binman](https://docs.ropensci.org/binman/)|2.0240963855421715e-05| |cran|[beastier](https://docs.ropensci.org/beastier/ (website) -https://github.com/ropensci/beastier/)|3.750000000000001e-05| -|cran|shapefiles|3.75e-05| -|cran|ggsignif|3.738967652413376e-05| -|cran|ggsci|3.738967652413376e-05| -|cran|[survey](http://r-survey.r-forge.r-project.org/survey/)|3.6959657499943084e-05| -|cran|sandwich|3.6959657499943084e-05| -|cran|partykit|3.693252399774139e-05| -|cran|spData|3.681818181818182e-05| -|cran|seqLogo|3.624075381140599e-05| -|cran|oskeyring|3.616071428571428e-05| -|cran|ExplainPrediction|3.616071428571428e-05| -|cran|rpart.plot|3.616071428571428e-05| -|cran|rstatix|3.6111267433224675e-05| -|cran|afex|3.573793804292951e-05| -|cran|tester|3.5526315789473684e-05| -|cran|fastICA|3.543369416110944e-05| -|cran|docopt|3.506493506493506e-05| -|cran|tidygraph|3.505527388512223e-05| -|cran|[rentrez](http://github.com/ropensci/rentrez)|3.503652597402607e-05| -|cran|[snakecase](https://github.com/Tazinho/snakecase)|3.467878000482493e-05| -|cran|SASmixed|3.460580357142857e-05| -|cran|[colourpicker](https://github.com/daattali/colourpicker)|3.458433014354067e-05| -|cran|antiword|3.454739010989011e-05| -|cran|BiocManager|3.398002536407055e-05| -|cran|spam|3.3662877237851666e-05| -|cran|acepack|3.364734595761381e-05| -|cran|htmlTable|3.364734595761381e-05| -|cran|measurements|3.314732142857143e-05| -|cran|NISTunits|3.314732142857143e-05| -|cran|gbm|3.3058816183816185e-05| -|cran|protolite|3.2873376623376625e-05| -|cran|geepack|3.2621109980201336e-05| -|cran|bigmemory|3.250811688311688e-05| -|cran|[geosphere](NA)|3.2029995111503854e-05| -|cran|ks|3.1996753246753244e-05| -|cran|[origami](https://tlverse.org/origami/)|3.1867588932806356e-05| -|cran|RNetCDF|3.178791996047439e-05| -|cran|glmmTMB|3.1767349807635396e-05| -|cran|fixest|3.1767349807635396e-05| -|cran|cplm|3.1767349807635396e-05| -|cran|betareg|3.1767349807635396e-05| -|cran|AER|3.1767349807635396e-05| -|cran|signal|3.170188647559345e-05| -|cran|[Ckmeans.1d.dp](NA)|3.1522444946358e-05| -|cran|klaR|3.127368804664723e-05| -|cran|[jsonld](https://docs.ropensci.org/jsonld)|3.089053803339525e-05| -|cran|doMC|3.072564935064935e-05| -|cran|qvalue|3.068181818181818e-05| -|cran|subprocess|3.068181818181818e-05| -|cran|tensorA|3.06481018981019e-05| -|cran|[EML](https://docs.ropensci.org/EML/)|3.053571428571432e-05| -|cran|scatterplot3d|3.04019520851819e-05| -|cran|[wesanderson](https://github.com/karthik/wesanderson)|2.969039888682746e-05| -|cran|coxme|2.945332592938976e-05| -|cran|[downloader](https://github.com/wch/downloader)|2.943562687312691e-05| -|cran|VennDiagram|2.9061495322858964e-05| -|cran|loder|2.895220588235294e-05| -|cran|ore|2.895220588235294e-05| -|cran|nor1mix|2.8928571428571427e-05| -|cran|diptest|2.8928571428571427e-05| -|cran|changepoint|2.8928571428571427e-05| -|cran|linprog|2.8928571428571427e-05| -|cran|magic|2.8928571428571427e-05| -|cran|modeldata|2.8928571428571427e-05| -|cran|[fst](http://www.fstpackage.org)|2.883351947858726e-05| -|cran|reprex|2.867446139240458e-05| -|cran|lgr|2.8577075098814233e-05| -|cran|scico|2.8411989795918366e-05| -|cran|rcartocolor|2.8411989795918366e-05| -|cran|RcppDE|2.8125e-05| -|cran|gdalUtils|2.8125e-05| -|cran|emld|2.790584415584419e-05| -|cran|FNN|2.7754261363636367e-05| -|cran|BiocVersion|2.7625089387871854e-05| -|cran|rstantools|2.737784629981025e-05| -|cran|rhub|2.736457802536806e-05| -|cran|gmailr|2.736457802536806e-05| -|cran|foghorn|2.736457802536806e-05| -|cran|rversions|2.736457802536806e-05| -|cran|tm.lexicon.GeneralInquirer|2.7315247252747253e-05| -|cran|Rpoppler|2.7315247252747253e-05| -|cran|Rcampdf|2.7315247252747253e-05| -|cran|filehash|2.7315247252747253e-05| -|cran|[fuzzyjoin](https://github.com/dgrtwo/fuzzyjoin)|2.6984265734265743e-05| -|cran|PolynomF|2.6644736842105263e-05| -|cran|tokenizers|2.6543088021001583e-05| -|cran|lmerTest|2.6534880033677323e-05| -|cran|bignum|2.5961538461538464e-05| -|cran|shinyWidgets|2.5808526230208762e-05| -|cran|metafor|2.572122681298299e-05| -|cran|RSpectra|2.5714285714285714e-05| -|cran|future.callr|2.567331604565647e-05| -|cran|solrium|2.5528814935064963e-05| -|cran|party|2.550213041173556e-05| -|cran|[haven](https://haven.tidyverse.org)|2.5322942867409307e-05| -|cran|FastRWeb|2.5312500000000002e-05| -|cran|quantmod|2.5312500000000002e-05| -|cran|truncreg|2.5235091743119268e-05| -|cran|panelr|2.5235091743119268e-05| -|cran|metaBMA|2.5235091743119268e-05| -|cran|lfe|2.5235091743119268e-05| -|cran|ivreg|2.5235091743119268e-05| -|cran|GLMMadaptive|2.5235091743119268e-05| -|cran|clubSandwich|2.5235091743119268e-05| -|cran|cgam|2.5235091743119268e-05| -|cran|blme|2.5235091743119268e-05| -|cran|bbmle|2.5235091743119268e-05| -|cran|aod|2.5235091743119268e-05| -|cran|geojsonlint|2.520292207792208e-05| -|cran|PASWR|2.5165834165834166e-05| -|cran|ggfittext|2.5e-05| -|cran|taxadb|2.4983766233766236e-05| -|cran|assertive.code|2.491455912508544e-05| -|cran|assertive.reflection|2.491455912508544e-05| -|cran|assertive.data.us|2.491455912508544e-05| -|cran|assertive.data.uk|2.491455912508544e-05| -|cran|assertive.data|2.491455912508544e-05| -|cran|assertive.models|2.491455912508544e-05| -|cran|assertive.matrices|2.491455912508544e-05| -|cran|assertive.sets|2.491455912508544e-05| -|cran|assertive.files|2.491455912508544e-05| -|cran|assertive.datetimes|2.491455912508544e-05| -|cran|assertive.strings|2.491455912508544e-05| -|cran|assertive.numbers|2.491455912508544e-05| -|cran|assertive.types|2.491455912508544e-05| -|cran|assertive.properties|2.491455912508544e-05| -|cran|assertive.base|2.491455912508544e-05| -|cran|gsl|2.4783503134796236e-05| -|cran|Biobase|2.4168494867201765e-05| -|cran|[clisymbols](https://github.com/gaborcsardi/clisymbols)|2.3996113622179806e-05| -|cran|wordcloud|2.359057178723535e-05| -|cran|clusterGeneration|2.358307453416149e-05| -|cran|[mlr3misc](https://mlr3misc.mlr-org.com)|2.3542110063849174e-05| -|cran|bs4Dash|2.3530458902799323e-05| -|cran|rticles|2.352358569749874e-05| -|cran|locfit|2.3505094043887152e-05| -|cran|nonnest2|2.3407258064516132e-05| -|cran|mlogit|2.3407258064516132e-05| -|cran|logger|2.3277517936608855e-05| -|cran|leaps|2.3272664835164833e-05| -|cran|geometry|2.317207792207795e-05| -|cran|stm|2.3133997111910648e-05| -|cran|topicmodels|2.3133997111910648e-05| -|cran|FMStable|2.3011363636363636e-05| -|cran|tree|2.3011363636363636e-05| -|cran|sparsesvd|2.3011363636363636e-05| -|cran|Bessel|2.258522727272727e-05| -|cran|humaniformat|2.2421328671328683e-05| -|cran|dbscan|2.222757708036268e-05| -|cran|tracerer|2.2069377990430624e-05| -|cran|stabledist|2.1989423076923073e-05| -|cran|spacetime|2.1701272233201582e-05| -|cran|[fdrtool](https://strimmerlab.github.io/software/fdrtool/)|2.124125874125875e-05| -|cran|move|2.118506493506494e-05| -|cran|debugme|2.1051804259813413e-05| -|cran|sm|2.0948275862068963e-05| -|cran|goftest|2.0948275862068963e-05| -|cran|tensor|2.0948275862068963e-05| -|cran|spatstat.sparse|2.0948275862068963e-05| -|cran|[rdflib](https://github.com/ropensci/rdflib)|2.0663265306122447e-05| -|DESCRIPTION|github/OwenWard/ppdiag|2.066115702479339e-05| -|DESCRIPTION|github/SwissClinicalTrialOrganisation/secuTrialR|2.066115702479339e-05| -|DESCRIPTION|github/VincentAlcazer/StatAid|2.066115702479339e-05| -|DESCRIPTION|github/zoometh/iconr|2.066115702479339e-05| -|DESCRIPTION|github/tidymodels/infer|2.066115702479339e-05| -|DESCRIPTION|github/bommert/stabm|2.066115702479339e-05| -|DESCRIPTION|github/Dulab2020/ARMT|2.066115702479339e-05| -|DESCRIPTION|github/IMMM-SFA/gamut|2.066115702479339e-05| -|DESCRIPTION|github/SJTU-CGM/ivTerm|2.066115702479339e-05| -|DESCRIPTION|github/r-cas/caracas|2.066115702479339e-05| -|DESCRIPTION|github/sachsmc/cosinor|2.066115702479339e-05| -|DESCRIPTION|github/metaOmics/MetaPath|2.066115702479339e-05| -|DESCRIPTION|github/dgrun/FateID|2.066115702479339e-05| -|DESCRIPTION|github/stemangiola/tidyHeatmap|2.066115702479339e-05| -|DESCRIPTION|github/ropenscilabs/gendercoder|2.066115702479339e-05| -|DESCRIPTION|github/ropenscilabs/qcoder|2.066115702479339e-05| -|DESCRIPTION|github/ropenscilabs/allcontributors|2.066115702479339e-05| -|DESCRIPTION|github/ropenscilabs/r2readthedocs|2.066115702479339e-05| -|DESCRIPTION|github/tbep-tech/tbeptools|2.066115702479339e-05| -|DESCRIPTION|github/flosalbizziae/kataegis|2.066115702479339e-05| -|DESCRIPTION|github/pratheesh3780/grapesAgri1|2.066115702479339e-05| -|DESCRIPTION|github/cran/irtplay|2.066115702479339e-05| -|DESCRIPTION|github/GaryBAYLOR/mixR|2.066115702479339e-05| -|DESCRIPTION|github/tlverse/hal9001|2.066115702479339e-05| -|DESCRIPTION|github/wadpac/GGIR|2.066115702479339e-05| -|DESCRIPTION|github/CTU-Bern/presize|2.066115702479339e-05| -|DESCRIPTION|github/samhforbes/PupillometryR|2.066115702479339e-05| -|DESCRIPTION|github/radio1988/OneStopRNAseq|2.066115702479339e-05| -|DESCRIPTION|github/ejikeugba/serp|2.066115702479339e-05| -|DESCRIPTION|github/humanfactors/FIPS|2.066115702479339e-05| -|DESCRIPTION|github/BrianAronson/birankr|2.066115702479339e-05| -|DESCRIPTION|github/DidierMurilloF/FielDHub|2.066115702479339e-05| -|DESCRIPTION|github/haoharryfeng/NeuCA|2.066115702479339e-05| -|DESCRIPTION|github/constantAmateur/SoupX|2.066115702479339e-05| -|DESCRIPTION|github/anwarbio/bioassays|2.066115702479339e-05| -|DESCRIPTION|github/jessecambon/tidygeocoder|2.066115702479339e-05| -|DESCRIPTION|github/rhenkin/visxhclust|2.066115702479339e-05| -|DESCRIPTION|github/r-spatialecology/shar|2.066115702479339e-05| -|DESCRIPTION|github/mdsteiner/EFAtools|2.066115702479339e-05| -|DESCRIPTION|github/koenderks/jaspAudit|2.066115702479339e-05| -|DESCRIPTION|github/JonasRieger/ldaPrototype|2.066115702479339e-05| -|DESCRIPTION|github/bcgov/shinyssdtools|2.066115702479339e-05| -|DESCRIPTION|github/bcgov/bcdata|2.066115702479339e-05| -|DESCRIPTION|github/vbaliga/gaussplotR|2.066115702479339e-05| -|DESCRIPTION|github/IndrajeetPatil/ggstatsplot|2.066115702479339e-05| -|DESCRIPTION|github/IndrajeetPatil/statsExpressions|2.066115702479339e-05| -|DESCRIPTION|github/kadyb/rgugik|2.066115702479339e-05| -|DESCRIPTION|github/rickhelmus/patRoon|2.066115702479339e-05| -|DESCRIPTION|github/TomKellyGenetics/graphsim|2.066115702479339e-05| -|DESCRIPTION|github/tinglabs/scAIDE|2.066115702479339e-05| -|DESCRIPTION|github/fumi-github/omicwas|2.066115702479339e-05| -|DESCRIPTION|github/lrnv/cort|2.066115702479339e-05| -|DESCRIPTION|github/mmahmoudian/sivs|2.066115702479339e-05| -|DESCRIPTION|github/lydialucchesi/Vizumap|2.066115702479339e-05| -|DESCRIPTION|github/VNNikolaidis/nnlib2Rcpp|2.066115702479339e-05| -|DESCRIPTION|github/ecological-cities/home2park|2.066115702479339e-05| -|DESCRIPTION|github/BMILAB/scLINE|2.066115702479339e-05| -|DESCRIPTION|github/ColemanRHarris/mxnorm|2.066115702479339e-05| -|DESCRIPTION|github/RajLabMSSM/echolocatoR|2.066115702479339e-05| -|DESCRIPTION|github/r-spatial/rgee|2.066115702479339e-05| -|DESCRIPTION|github/SofieVG/FlowSOM|2.066115702479339e-05| -|DESCRIPTION|github/weizhouUMICH/SAIGE|2.066115702479339e-05| -|DESCRIPTION|github/SchlossLab/mikropml|2.066115702479339e-05| -|DESCRIPTION|github/mcsiple/mmrefpoints|2.066115702479339e-05| -|DESCRIPTION|github/nhejazi/medoutcon|2.066115702479339e-05| -|DESCRIPTION|github/nhejazi/txshift|2.066115702479339e-05| -|DESCRIPTION|github/abschneider/StrainHub|2.066115702479339e-05| -|DESCRIPTION|github/bblodfon/emba|2.066115702479339e-05| -|DESCRIPTION|github/tgrimes/SeqNet|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-archive/monkeylearn|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-archive/reviewer|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-archive/rodev|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-archive/arresteddev|2.066115702479339e-05| -|DESCRIPTION|github/julia-wrobel/registr|2.066115702479339e-05| -|DESCRIPTION|github/VBlesius/RHRT|2.066115702479339e-05| -|DESCRIPTION|github/kendomaniac/rCASC|2.066115702479339e-05| -|DESCRIPTION|github/kendomaniac/docker4seq|2.066115702479339e-05| -|DESCRIPTION|github/CornellLabofOrnithology/auk|2.066115702479339e-05| -|DESCRIPTION|github/oneilsh/tidytensor|2.066115702479339e-05| -|DESCRIPTION|github/YuLab-SMU/treeio|2.066115702479339e-05| -|DESCRIPTION|github/cjbarrie/academictwitteR|2.066115702479339e-05| -|DESCRIPTION|github/epiforecasts/covidregionaldata|2.066115702479339e-05| -|DESCRIPTION|github/andyphilips/dynamac|2.066115702479339e-05| -|DESCRIPTION|github/ShixiangWang/sigminer|2.066115702479339e-05| -|DESCRIPTION|github/ezer/PAFway|2.066115702479339e-05| -|DESCRIPTION|github/snystrom/memes|2.066115702479339e-05| -|DESCRIPTION|github/dankelley/oce|2.066115702479339e-05| -|DESCRIPTION|github/rcarragh/c212|2.066115702479339e-05| -|DESCRIPTION|github/johannes-titz/cofad|2.066115702479339e-05| -|DESCRIPTION|github/Jinsl-lab/SDImpute|2.066115702479339e-05| -|DESCRIPTION|github/meenakshi-kushwaha/mmaqshiny|2.066115702479339e-05| -|DESCRIPTION|github/donaldRwilliams/BGGM|2.066115702479339e-05| -|DESCRIPTION|github/donaldRwilliams/GGMnonreg|2.066115702479339e-05| -|DESCRIPTION|github/ants-project/ANTs|2.066115702479339e-05| -|DESCRIPTION|github/JSB-UCLA/scPNMF|2.066115702479339e-05| -|DESCRIPTION|github/NLeSC/compressing-the-sky|2.066115702479339e-05| -|DESCRIPTION|github/NLeSC/EEG-epilepsy-diagnosis|2.066115702479339e-05| -|DESCRIPTION|github/takfung/ResDisMapper|2.066115702479339e-05| -|DESCRIPTION|github/ClaudioZandonella/PRDA|2.066115702479339e-05| -|DESCRIPTION|github/RETURN-project/BenchmarkRecovery|2.066115702479339e-05| -|DESCRIPTION|github/HajkD/LTRpred|2.066115702479339e-05| -|DESCRIPTION|github/OrlandoLam/SAMT|2.066115702479339e-05| -|DESCRIPTION|github/insilico/cncv|2.066115702479339e-05| -|DESCRIPTION|github/KiranLDA/PAMLr|2.066115702479339e-05| -|DESCRIPTION|github/MRCIEU/metaboprep|2.066115702479339e-05| -|DESCRIPTION|github/zhouzilu/DENDRO|2.066115702479339e-05| -|DESCRIPTION|github/Hegghammer/daiR|2.066115702479339e-05| -|DESCRIPTION|github/ComtekAdvancedStructures/cmstatr|2.066115702479339e-05| -|DESCRIPTION|github/r-lib/credentials|2.066115702479339e-05| -|DESCRIPTION|github/r-lib/gert|2.066115702479339e-05| -|DESCRIPTION|github/MAnalytics/akmedoids|2.066115702479339e-05| -|DESCRIPTION|github/MAnalytics/opitools|2.066115702479339e-05| -|DESCRIPTION|github/mingzehuang/latentcor|2.066115702479339e-05| -|DESCRIPTION|github/raredd/kmdata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-org/pkgreviewr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-org/rotemplate|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-org/roblog|2.066115702479339e-05| -|DESCRIPTION|github/asancpt/caffsim|2.066115702479339e-05| -|DESCRIPTION|github/wesleyburr/subMaldi|2.066115702479339e-05| -|DESCRIPTION|github/easystats/effectsize|2.066115702479339e-05| -|DESCRIPTION|github/easystats/parameters|2.066115702479339e-05| -|DESCRIPTION|github/easystats/correlation|2.066115702479339e-05| -|DESCRIPTION|github/easystats/performance|2.066115702479339e-05| -|DESCRIPTION|github/arcaldwell49/SimplyAgree|2.066115702479339e-05| -|DESCRIPTION|github/adithirgis/pollucheck|2.066115702479339e-05| -|DESCRIPTION|github/IMB-Computational-Genomics-Lab/scGPS|2.066115702479339e-05| -|DESCRIPTION|github/aranyics/ReDCM|2.066115702479339e-05| -|DESCRIPTION|github/pmoulos/metaseqR2|2.066115702479339e-05| -|DESCRIPTION|github/USEPA/nsink|2.066115702479339e-05| -|DESCRIPTION|github/mrc-ide/individual|2.066115702479339e-05| -|DESCRIPTION|github/niceume/datasailr|2.066115702479339e-05| -|DESCRIPTION|github/hope-data-science/tidyfst|2.066115702479339e-05| -|DESCRIPTION|github/yiling0210/APIR|2.066115702479339e-05| -|DESCRIPTION|github/isoverse/isoreader|2.066115702479339e-05| -|DESCRIPTION|github/alan-turing-institute/DetectorChecker|2.066115702479339e-05| -|DESCRIPTION|github/azizka/IUCNN|2.066115702479339e-05| -|DESCRIPTION|github/mlr-org/mcboost|2.066115702479339e-05| -|DESCRIPTION|github/xoopR/set6|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-review-tools/pkgstats|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-review-tools/srr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-review-tools/pkgcheck|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-review-tools/roreviewapi|2.066115702479339e-05| -|DESCRIPTION|github/ropensci-review-tools/autotest|2.066115702479339e-05| -|DESCRIPTION|github/JGCRI/rfasst|2.066115702479339e-05| -|DESCRIPTION|github/JGCRI/plutus|2.066115702479339e-05| -|DESCRIPTION|github/JGCRI/ambrosia|2.066115702479339e-05| -|DESCRIPTION|github/ArkajyotiSaha/RandomForestsGLS|2.066115702479339e-05| -|DESCRIPTION|github/alexander-pastukhov/bistablehistory|2.066115702479339e-05| -|DESCRIPTION|github/nevrome/bleiglas|2.066115702479339e-05| -|DESCRIPTION|github/saeyslab/nichenetr|2.066115702479339e-05| -|DESCRIPTION|github/saeyslab/PeacoQC|2.066115702479339e-05| -|DESCRIPTION|github/prdm0/ropenblas|2.066115702479339e-05| -|DESCRIPTION|github/Sydney-Informatics-Hub/OmixLitMiner|2.066115702479339e-05| -|DESCRIPTION|github/rauschenberger/joinet|2.066115702479339e-05| -|DESCRIPTION|github/jorittmo/singcar|2.066115702479339e-05| -|DESCRIPTION|github/tidyverse/glue|2.066115702479339e-05| -|DESCRIPTION|github/llrs/experDesign|2.066115702479339e-05| -|DESCRIPTION|github/martin3141/spant|2.066115702479339e-05| -|DESCRIPTION|github/LindaNab/mecor|2.066115702479339e-05| -|DESCRIPTION|github/GabrielNakamura/FishPhyloMaker|2.066115702479339e-05| -|DESCRIPTION|github/david-barnett/microViz|2.066115702479339e-05| -|DESCRIPTION|github/ArgoCanada/argodata|2.066115702479339e-05| -|DESCRIPTION|github/akcochrane/TEfits|2.066115702479339e-05| -|DESCRIPTION|github/saezlab/PHONEMeS|2.066115702479339e-05| -|DESCRIPTION|github/signaturescience/skater|2.066115702479339e-05| -|DESCRIPTION|github/timoast/signac|2.066115702479339e-05| -|DESCRIPTION|github/dpseidel/stmove|2.066115702479339e-05| -|DESCRIPTION|github/ramadatta/CPgeneProfiler|2.066115702479339e-05| -|DESCRIPTION|github/lasseignelab/CINmetrics|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/phylocomr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/webmockr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/gistr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rnaturalearthhires|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/cffr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/comtradr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/FedData|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rfigshare|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/nasapower|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/taxlist|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/unrtf|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/wateRinfo|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/wdman|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rcoreoa|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/awardFindR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/katex|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ijtiff|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/lingtypology|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/qualtRics|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/GSODR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rrlite|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/gittargets|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rtweet|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rnoaa|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/antiword|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/bittrex|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/mcbette|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/geonames|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/jstor|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/baRcodeR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/clifro|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/plotly|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/opencontext|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/chromer|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/robotstxt|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/osmdata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/coder|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rbhl|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/hunspell|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/visdat|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tacmagic|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/binman|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/riem|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/restez|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/mregions|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/pdftools|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rentrez|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/writexl|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/magick|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rfisheries|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/eia|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/git2r|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/refsplitr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/geojsonio|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/colocr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/osmplotr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/osmextract|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/oai|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/beautier|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/finch|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rromeo|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tic|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/workloopR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rgbif|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/emld|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ecoengine|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/seasl|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tif|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/jsonvalidate|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/CoordinateCleaner|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/RNeXML|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/bikedata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/AntWeb|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/spatsoc|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/taxa|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/hydroscoper|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tesseract|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rsnps|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/git2rdata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/essurvey|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rperseus|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/codemetar|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/cde|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/cRegulome|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/graphql|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tiler|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/isdparser|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/phylogram|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/mapr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/jsonld|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/treestartr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/DataPackageR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/assertr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rnaturalearthdata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/getlandsat|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/worrms|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rtika|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/pangaear|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/BaseSet|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/cld3|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rzmq|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/chirps|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/textreuse|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rerddap|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/fulltext|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rppo|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/microdemic|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rnaturalearth|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rebird|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/biomartr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/DataSpaceR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/hoardr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rorcid|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/bowerbird|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ruODK|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rplos|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/dataaimsr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/skimr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/internetarchive|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rcites|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/phonfieldwork|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/elastic|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/stantargets|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tabulizer|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/treebase|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ckanr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/DoOR.data|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/bibtex|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/phylotaR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rdataretriever|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/skynet|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/NLMR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/gtfsr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/outcomerate|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/mctq|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/dbparser|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/arkdb|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/RSelenium|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/fauxpas|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/opencv|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/cyphr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rfema|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/taxadb|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/terrainr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/osfr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/bold|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/dataspice|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/iheatmapr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/opencage|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ramlegacy|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/allodb|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rdryad|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/jenkins|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/circle|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rmangal|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/zbank|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/spelling|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/paleobioDB|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/qpdf|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rdatacite|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tidypmc|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/photosearcher|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/USAboundariesData|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rWBclimate|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/pathviewr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/refimpact|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/taxizedb|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/historydata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/censo2017|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/helminthR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ssh|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/opentripplanner|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ghql|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/natserv|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/excluder|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rotl|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/cchecks|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/popler|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/outsider|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/nbaR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/europepmc|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/spocc|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/brranching|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/epubr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/Rclean|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rusda|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/jagstargets|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/plater|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/av|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/outsider.base|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rglobi|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tokenizers|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rsat|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/MtreeRing|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ots|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/smapr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/wellknown|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/MODISTools|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/medrxivr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/infx|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/timefuzz|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/fingertipsR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/randgeo|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/chlorpromazineR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/suppdata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rnpn|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rcrossref|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/PostcodesioR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/slopes|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/nlrx|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/exoplanets|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/landscapetools|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/staypuft|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/treedata.table|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/getCRUCLdata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/parzer|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/bib2df|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/RefManageR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/vcr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/solrium|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tinkr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/citesdb|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/piggyback|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rdflib|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/drake|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/hddtools|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/EndoMineR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/beastier|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rgnparser|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/camsRad|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/neotoma|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/xslt|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/USAboundaries|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ezknitr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tidync|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rvertnet|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/UCSCXenaTools|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/pixelclasser|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/citecorp|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/gitignore|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/jqr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/stats19|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/cld2|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/outsider.devtools|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/pubchunks|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/geojsonlint|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/taxview|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/nodbi|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/MODIStsp|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/targets|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/addressable|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/Rpolyhedra|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rfishbase|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/SymbiotaR2|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rdhs|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/prism|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/taxize|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/patentsview|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/cleanEHR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/aRxiv|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/onekp|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/handlr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/scrubr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/lightr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/ritis|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rdefra|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rAvis|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/c14bazAAR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/datapack|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/mapscanner|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/grainchanger|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/sofa|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rnassqs|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rcol|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/antanym|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/crul|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rAltmetric|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/bomrang|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/namext|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tradestatistics|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/gutenbergr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/DoOR.functions|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rgpdd|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/wikitaxa|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rbace|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/trufflesniffer|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tracerer|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/dittodb|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rinat|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rrricanesdata|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/pendulum|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/dbhydroR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tidyhydat|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rredlist|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/babette|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/weathercan|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/charlatan|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/traits|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/mauricer|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/stplanr|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/webchem|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rrricanes|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/roadoi|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/tarchetypes|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/EML|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/virtuoso|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/rcitoid|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/conditionz|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/googleLanguageR|2.066115702479339e-05| -|DESCRIPTION|github/ropensci/nomisr|2.066115702479339e-05| -|DESCRIPTION|github/msalibian/RBF|2.066115702479339e-05| -|DESCRIPTION|github/chainsawriot/sweater|2.066115702479339e-05| -|DESCRIPTION|github/chainsawriot/oolong|2.066115702479339e-05| -|DESCRIPTION|gitlab/ampere2/metalwalls|2.066115702479339e-05| -|DESCRIPTION|gitlab/libreumg/dataquier|2.066115702479339e-05| -|cran|[redux](https://github.com/richfitz/redux)|2.0454545454545495e-05| -|cran|Rtsne|2.0403409090909095e-05| -|cran|[rmsfact](NA)|2.025e-05| -|cran|[multicolor](https://github.com/aedobbyn/multicolor/)|2.025e-05| -|cran|geomorph|2.0249999999999998e-05| -|cran|ggthemes|1.9793751300187232e-05| -|cran|clv|1.9687500000000004e-05| -|cran|[geojson](https://docs.ropensci.org/geojson)|1.9602272727272738e-05| -|cran|MLmetrics|1.9543632388020123e-05| -|cran|ncbit|1.9471153846153845e-05| -|cran|subplex|1.9471153846153845e-05| -|cran|[shinybusy](https://github.com/dreamRs/shinybusy)|1.9451725136565564e-05| -|cran|thor|1.928571428571429e-05| -|cran|[fds](https://sites.google.com/site/hanlinshangswebsite/)|1.9232142857142855e-05| -|cran|polycor|1.9002705130347597e-05| -|cran|speedglm|1.8920454545454554e-05| -|cran|pander|1.8856700118063788e-05| -|cran|misc3d|1.8562499999999997e-05| -|cran|aws.signature|1.848644003055768e-05| -|cran|SuperLearner|1.840909090909091e-05| -|cran|princurve|1.840909090909091e-05| -|cran|brglm|1.840909090909091e-05| -|cran|robustbase|1.8336038961038977e-05| -|cran|gistr|1.8310950413223148e-05| -|cran|PCICt|1.817778010033445e-05| -|cran|gld|1.817768411712511e-05| -|cran|torch|1.817331604565647e-05| -|cran|paws|1.817331604565647e-05| -|cran|keras|1.817331604565647e-05| -|cran|clustermq|1.817331604565647e-05| -|cran|grpreg|1.808035714285714e-05| -|cran|[ff](https://github.com/truecluster/ff)|1.8055610795454527e-05| -|cran|pvclust|1.7537723322066636e-05| -|cran|themis|1.74981778425656e-05| -|cran|superpc|1.74981778425656e-05| -|cran|subselect|1.74981778425656e-05| -|cran|spls|1.74981778425656e-05| -|cran|pamr|1.74981778425656e-05| -|cran|mda|1.74981778425656e-05| -|cran|ipred|1.74981778425656e-05| -|cran|ellipse|1.74981778425656e-05| -|cran|earth|1.74981778425656e-05| -|cran|BradleyTerry2|1.74981778425656e-05| -|cran|recipes|1.74981778425656e-05| -|cran|pROC|1.74981778425656e-05| -|cran|ModelMetrics|1.74981778425656e-05| -|cran|yulab.utils|1.728325409111013e-05| -|cran|robustlmm|1.6875e-05| -|cran|parsnip|1.6875e-05| -|cran|multgee|1.6875e-05| -|cran|merTools|1.6875e-05| -|cran|marginaleffects|1.6875e-05| -|cran|logistf|1.6875e-05| -|cran|JM|1.6875e-05| -|cran|gmnl|1.6875e-05| -|cran|fungible|1.6875e-05| -|cran|feisr|1.6875e-05| -|cran|estimatr|1.6875e-05| -|cran|epiR|1.6875e-05| -|cran|crch|1.6875e-05| -|cran|censReg|1.6875e-05| -|cran|bife|1.6875e-05| -|cran|bdsmatrix|1.6875e-05| -|cran|corrplot|1.664459643227586e-05| -|cran|[rfishbase](https://docs.ropensci.org/rfishbase/)|1.6619318181818185e-05| -|cran|[progressr](https://progressr.futureverse.org)|1.6417464114832583e-05| -|cran|sparkline|1.6326413860738803e-05| -|cran|distr6|1.630434782608696e-05| -|cran|geojsonsf|1.6220299586776872e-05| -|cran|[stringdist](https://github.com/markvanderloo/stringdist)|1.6193181818181895e-05| -|cran|archive|1.6191907357348526e-05| -|cran|distributional|1.618381618381618e-05| -|cran|plainview|1.6171875000000002e-05| -|cran|mapdeck|1.6171875000000002e-05| -|cran|[mlr3](https://mlr3.mlr-org.com)|1.6042110063849205e-05| -|cran|[RcppParallel](https://rcppcore.github.io/RcppParallel/)|1.5922004132231406e-05| -|cran|rainbow|1.5910714285714284e-05| -|cran|scagnostics|1.5846653346653346e-05| -|cran|labelled|1.5846653346653346e-05| -|cran|intergraph|1.5846653346653346e-05| -|cran|chemometrics|1.5846653346653346e-05| -|cran|broom.helpers|1.5846653346653346e-05| -|cran|procmaps|1.5826973684210523e-05| -|cran|MuMIn|1.5746109980201336e-05| -|cran|[tidytext](http://github.com/juliasilge/tidytext)|1.5616702376570856e-05| -|cran|RProtoBuf|1.5576923076923076e-05| -|cran|[lhs](https://github.com/bertcarnell/lhs)|1.548701298701299e-05| -|cran|limma|1.5421153846153848e-05| -|cran|affy|1.5421153846153848e-05| -|cran|marray|1.5421153846153848e-05| -|cran|[reactable](https://glin.github.io/reactable/)|1.52972027972028e-05| -|cran|feather|1.5134580093819225e-05| -|cran|GenSA|1.5019382791121927e-05| -|cran|MonetDBLite|1.5e-05| -|cran|RgoogleMaps|1.4957386363636364e-05| -|cran|systemfonts|1.4922909407665506e-05| -|cran|gdtools|1.4718045112781954e-05| -|cran|ExactData|1.4673913043478261e-05| -|cran|Epi|1.4623671782762692e-05| -|cran|memisc|1.4623671782762692e-05| -|cran|descr|1.4623671782762692e-05| -|cran|sylly.en|1.4623671782762692e-05| -|cran|sylly|1.4623671782762692e-05| -|cran|[rjags](https://mcmc-jags.sourceforge.io)|1.4554195804195814e-05| -|cran|[R.matlab](https://github.com/HenrikBengtsson/R.matlab)|1.4534415584415625e-05| -|cran|[pbivnorm](https://github.com/brentonk/pbivnorm)|1.4493122009569377e-05| -|cran|compiler|1.4464285714285714e-05| -|cran|DoE.base|1.4464285714285714e-05| -|cran|RcppCCTZ|1.4380837912087911e-05| -|cran|DendSer|1.424013157894737e-05| -|cran|ridigbio|1.4204545454545468e-05| -|cran|rvertnet|1.4204545454545468e-05| -|cran|rebird|1.4204545454545468e-05| -|cran|rbison|1.4204545454545468e-05| -|cran|rgbif|1.4204545454545468e-05| -|cran|rnaturalearthhires|1.4160839160839161e-05| -|cran|[clusterCrit](http:www.r-project.org)|1.4128503075871528e-05| -|cran|picante|1.40625e-05| -|cran|hisse|1.40625e-05| -|cran|diversitree|1.40625e-05| -|cran|sparklyr|1.40625e-05| -|cran|[gargle](https://gargle.r-lib.org)|1.4038678712591771e-05| -|cran|bayesplot|1.3918276301598196e-05| -|cran|svUnit|1.3775510204081631e-05| -|cran|AlgDesign|1.3775510204081631e-05| -|cran|rsyslog|1.3311188811188813e-05| -|cran|logging|1.3311188811188813e-05| -|cran|[reproj](https://github.com/hypertidy/reproj/)|1.3187712688381137e-05| -|cran|Rdonlp2|1.314935064935065e-05| -|cran|gamlss.dist|1.314935064935065e-05| -|cran|Rsolnp|1.314935064935065e-05| -|cran|[correlation](https://easystats.github.io/correlation/)|1.3144891754355692e-05| -|cran|kml|1.3051948051948077e-05| -|cran|kriging|1.2980769230769232e-05| -|cran|udunits2|1.2980769230769232e-05| -|cran|formula.tools|1.2980769230769232e-05| -|cran|R2WinBUGS|1.2980769230769232e-05| -|cran|mlr3measures|1.2692307692307691e-05| -|cran|leafgl|1.2656250000000001e-05| -|cran|seasonal|1.2577639751552794e-05| -|cran|forecTheta|1.2577639751552794e-05| -|cran|urca|1.2577639751552794e-05| -|cran|fracdiff|1.2577639751552794e-05| -|cran|googleAnalyticsR|1.2577639751552794e-05| -|cran|bigQueryR|1.2577639751552794e-05| -|cran|[tiff](https://www.rforge.net/tiff/)|1.2500000000000009e-05| +https://github.com/ropensci/beastier/)|1.987951807228916e-05| +|cran|shapefiles|1.9879518072289157e-05| +|cran|[ggsignif](https://const-ae.github.io/ggsignif/)|1.9821033338095006e-05| +|cran|[ggsci](https://nanx.me/ggsci/)|1.9821033338095006e-05| +|cran|[survey](http://r-survey.r-forge.r-project.org/survey/)|1.9593071445752963e-05| +|cran|sandwich|1.9593071445752963e-05| +|cran|partykit|1.957868742048941e-05| +|cran|spData|1.9518072289156627e-05| +|cran|seqLogo|1.9211965875926064e-05| +|cran|oskeyring|1.9169535283993114e-05| +|cran|ExplainPrediction|1.9169535283993114e-05| +|cran|rpart.plot|1.9169535283993114e-05| +|cran|rstatix|1.914332249472151e-05| +|cran|afex|1.8945412938420466e-05| +|cran|tester|1.883322764743183e-05| +|cran|fastICA|1.878412702516645e-05| +|cran|docopt|1.858864027538726e-05| +|cran|[tidygraph](https://tidygraph.data-imaginist.com)|1.8583518686088896e-05| +|cran|[rentrez](http://github.com/ropensci/rentrez)|1.857358003442346e-05| +|cran|[snakecase](https://github.com/Tazinho/snakecase)|1.8383931568822855e-05| +|cran|SASmixed|1.8345245266781407e-05| +|cran|[colourpicker](https://github.com/daattali/colourpicker)|1.8333861762840838e-05| +|cran|antiword|1.8314279094399573e-05| +|cran|BiocManager|1.8013507421916915e-05| +|cran|spam|1.784538070440329e-05| +|cran|acepack|1.783714725463865e-05| +|cran|htmlTable|1.783714725463865e-05| +|cran|measurements|1.7572074010327022e-05| +|cran|NISTunits|1.7572074010327022e-05| +|cran|gbm|1.752515556732424e-05| +|cran|protolite|1.742685025817556e-05| +|cran|geepack|1.729311854372119e-05| +|cran|bigmemory|1.7233218588640274e-05| +|cran|[geosphere](NA)|1.6979756444652645e-05| +|cran|ks|1.6962134251290875e-05| +|cran|[origami](https://tlverse.org/origami/)|1.6893661602933492e-05| +|cran|[RNetCDF](https://github.com/mjwoods/RNetCDF +https://www.unidata.ucar.edu/software/netcdf/ +https://www.unidata.ucar.edu/software/udunits/)|1.6851427448926178e-05| +|cran|glmmTMB|1.684052278958985e-05| +|cran|fixest|1.684052278958985e-05| +|cran|cplm|1.684052278958985e-05| +|cran|betareg|1.684052278958985e-05| +|cran|AER|1.684052278958985e-05| +|cran|signal|1.680581933645918e-05| +|cran|[Ckmeans.1d.dp](NA)|1.6710693706503032e-05| +|cran|klaR|1.657882257894552e-05| +|cran|[jsonld](https://docs.ropensci.org/jsonld)|1.6375706909269773e-05| +|cran|doMC|1.628829604130809e-05| +|cran|qvalue|1.6265060240963857e-05| +|cran|subprocess|1.6265060240963857e-05| +|cran|tensorA|1.6247186548391367e-05| +|cran|[EML](https://docs.ropensci.org/EML/)|1.618760757314976e-05| +|cran|scatterplot3d|1.61166974909398e-05| +|cran|[wesanderson](https://github.com/karthik/wesanderson)|1.573948856651094e-05| +|cran|coxme|1.561381133606204e-05| +|cran|[downloader](https://github.com/wch/downloader)|1.5604428703826312e-05| +|cran|VennDiagram|1.5406093906093907e-05| +|cran|loder|1.5348157335223245e-05| +|cran|ore|1.5348157335223245e-05| +|cran|nor1mix|1.533562822719449e-05| +|cran|diptest|1.533562822719449e-05| +|cran|changepoint|1.533562822719449e-05| +|cran|linprog|1.533562822719449e-05| +|cran|magic|1.533562822719449e-05| +|cran|modeldata|1.533562822719449e-05| +|cran|[fst](http://www.fstpackage.org)|1.5285239241660716e-05| +|cran|[reprex](https://reprex.tidyverse.org)|1.5200919292359054e-05| +|cran|lgr|1.5149292823467783e-05| +|cran|scico|1.5061777723137447e-05| +|cran|rcartocolor|1.5061777723137447e-05| +|cran|RcppDE|1.4909638554216867e-05| +|cran|gdalUtils|1.4909638554216867e-05| +|cran|[emld](https://docs.ropensci.org/emld/)|1.4793459552495713e-05| +|cran|FNN|1.4713102409638552e-05| +|cran|BiocVersion|1.4644625699594717e-05| +|cran|rstantools|1.4513557074598204e-05| +|cran|rhub|1.450652329055656e-05| +|cran|gmailr|1.450652329055656e-05| +|cran|foghorn|1.450652329055656e-05| +|cran|rversions|1.450652329055656e-05| +|cran|tm.lexicon.GeneralInquirer|1.4480372037600952e-05| +|cran|Rpoppler|1.4480372037600952e-05| +|cran|Rcampdf|1.4480372037600952e-05| +|cran|filehash|1.4480372037600952e-05| +|cran|[fuzzyjoin](https://github.com/dgrtwo/fuzzyjoin)|1.4304911955514367e-05| +|cran|PolynomF|1.4124920735573875e-05| +|cran|[tokenizers](https://lincolnmullen.com/software/tokenizers/)|1.4071034613543005e-05| +|cran|[lmerTest](https://github.com/runehaubo/lmerTestR)|1.4066683391347015e-05| +|cran|bignum|1.376274328081557e-05| +|cran|[shinyWidgets](https://github.com/dreamRs/shinyWidgets)|1.3681628363002235e-05| +|cran|metafor|1.36353491538705e-05| +|cran|RSpectra|1.3631669535283991e-05| +|cran|future.callr|1.360995067480584e-05| +|cran|[solrium](https://github.com/ropensci/solrium (devel))|1.353334767641998e-05| +|cran|party|1.3519201664052584e-05| +|cran|[haven](https://haven.tidyverse.org)|1.3424210676698908e-05| +|cran|FastRWeb|1.3418674698795181e-05| +|cran|quantmod|1.3418674698795181e-05| +|cran|truncreg|1.3377638996352384e-05| +|cran|panelr|1.3377638996352384e-05| +|cran|metaBMA|1.3377638996352384e-05| +|cran|lfe|1.3377638996352384e-05| +|cran|ivreg|1.3377638996352384e-05| +|cran|GLMMadaptive|1.3377638996352384e-05| +|cran|clubSandwich|1.3377638996352384e-05| +|cran|cgam|1.3377638996352384e-05| +|cran|blme|1.3377638996352384e-05| +|cran|bbmle|1.3377638996352384e-05| +|cran|aod|1.3377638996352384e-05| +|cran|geojsonlint|1.3360585197934596e-05| +|cran|PASWR|1.3340924136104858e-05| +|cran|ggfittext|1.325301204819277e-05| +|cran|taxadb|1.3244406196213425e-05| +|cran|assertive.code|1.3207718090406738e-05| +|cran|assertive.reflection|1.3207718090406738e-05| +|cran|assertive.data.us|1.3207718090406738e-05| +|cran|assertive.data.uk|1.3207718090406738e-05| +|cran|assertive.data|1.3207718090406738e-05| +|cran|assertive.models|1.3207718090406738e-05| +|cran|assertive.matrices|1.3207718090406738e-05| +|cran|assertive.sets|1.3207718090406738e-05| +|cran|assertive.files|1.3207718090406738e-05| +|cran|assertive.datetimes|1.3207718090406738e-05| +|cran|assertive.strings|1.3207718090406738e-05| +|cran|assertive.numbers|1.3207718090406738e-05| +|cran|assertive.types|1.3207718090406738e-05| +|cran|assertive.properties|1.3207718090406738e-05| +|cran|assertive.base|1.3207718090406738e-05| +|cran|gsl|1.3138242625675114e-05| +|cran|Biobase|1.2812214146468406e-05| +|cran|[clisymbols](https://github.com/gaborcsardi/clisymbols)|1.2720831317782064e-05| +|cran|[wordcloud](http://blog.fellstat.com/?cat=11 http://www.fellstat.com)|1.2505845284799463e-05| +|cran|clusterGeneration|1.2501870837386813e-05| +|cran|[mlr3misc](https://mlr3misc.mlr-org.com)|1.2480154732642935e-05| +|cran|bs4Dash|1.2473978213532174e-05| +|cran|rticles|1.2470334586625839e-05| +|cran|locfit|1.2460531782301622e-05| +|cran|nonnest2|1.2408666925767586e-05| +|cran|mlogit|1.2408666925767586e-05| +|cran|[logger](https://daroczig.github.io/logger/)|1.2339889026636018e-05| +|cran|leaps|1.2337316298159672e-05| +|cran|[geometry](https://davidcsterratt.github.io/geometry)|1.2283993115318432e-05| +|cran|stm|1.2263805697880342e-05| +|cran|topicmodels|1.2263805697880342e-05| +|cran|FMStable|1.219879518072289e-05| +|cran|tree|1.219879518072289e-05| +|cran|sparsesvd|1.219879518072289e-05| +|cran|Bessel|1.197289156626506e-05| +|cran|[humaniformat](https://github.com/ironholds/humaniformat/)|1.188600556070436e-05| +|cran|[dbscan](https://github.com/mhahsler/dbscan)|1.1783293873927203e-05| +|cran|tracerer|1.1699429296131895e-05| +|cran|stabledist|1.1657043558850788e-05| +|cran|spacetime|1.1504288894709272e-05| +|cran|[fdrtool](https://strimmerlab.github.io/software/fdrtool/)|1.1260426320667288e-05| +|cran|[move](https://bartk.gitlab.io/move/)|1.1230636833046472e-05| +|cran|debugme|1.1159992619660122e-05| +|cran|sm|1.1105110095554631e-05| +|cran|goftest|1.1105110095554631e-05| +|cran|tensor|1.1105110095554631e-05| +|cran|spatstat.sparse|1.1105110095554631e-05| +|cran|[rdflib](https://github.com/ropensci/rdflib)|1.0954020162281779e-05| +|DESCRIPTION|gitlab/libreumg/dataquier|1.095290251916758e-05| +|DESCRIPTION|gitlab/ampere2/metalwalls|1.095290251916758e-05| +|DESCRIPTION|github/pmoulos/metaseqR2|1.095290251916758e-05| +|DESCRIPTION|github/isoverse/isoreader|1.095290251916758e-05| +|DESCRIPTION|github/JSB-UCLA/scPNMF|1.095290251916758e-05| +|DESCRIPTION|github/cjbarrie/academictwitteR|1.095290251916758e-05| +|DESCRIPTION|github/kadyb/rgugik|1.095290251916758e-05| +|DESCRIPTION|github/MRCIEU/metaboprep|1.095290251916758e-05| +|DESCRIPTION|github/OrlandoLam/SAMT|1.095290251916758e-05| +|DESCRIPTION|github/VNNikolaidis/nnlib2Rcpp|1.095290251916758e-05| +|DESCRIPTION|github/mdsteiner/EFAtools|1.095290251916758e-05| +|DESCRIPTION|github/azizka/IUCNN|1.095290251916758e-05| +|DESCRIPTION|github/bommert/stabm|1.095290251916758e-05| +|DESCRIPTION|github/koenderks/jaspAudit|1.095290251916758e-05| +|DESCRIPTION|github/donaldRwilliams/GGMnonreg|1.095290251916758e-05| +|DESCRIPTION|github/donaldRwilliams/BGGM|1.095290251916758e-05| +|DESCRIPTION|github/rickhelmus/patRoon|1.095290251916758e-05| +|DESCRIPTION|github/metaOmics/MetaPath|1.095290251916758e-05| +|DESCRIPTION|github/meenakshi-kushwaha/mmaqshiny|1.095290251916758e-05| +|DESCRIPTION|github/r-cas/caracas|1.095290251916758e-05| +|DESCRIPTION|github/KiranLDA/PAMLr|1.095290251916758e-05| +|DESCRIPTION|github/saeyslab/PeacoQC|1.095290251916758e-05| +|DESCRIPTION|github/saeyslab/nichenetr|1.095290251916758e-05| +|DESCRIPTION|github/lrnv/cort|1.095290251916758e-05| +|DESCRIPTION|github/lydialucchesi/Vizumap|1.095290251916758e-05| +|DESCRIPTION|github/Sydney-Informatics-Hub/OmixLitMiner|1.095290251916758e-05| +|DESCRIPTION|github/stemangiola/tidyHeatmap|1.095290251916758e-05| +|DESCRIPTION|github/mcsiple/mmrefpoints|1.095290251916758e-05| +|DESCRIPTION|github/OwenWard/ppdiag|1.095290251916758e-05| +|DESCRIPTION|github/easystats/performance|1.095290251916758e-05| +|DESCRIPTION|github/easystats/parameters|1.095290251916758e-05| +|DESCRIPTION|github/easystats/effectsize|1.095290251916758e-05| +|DESCRIPTION|github/easystats/correlation|1.095290251916758e-05| +|DESCRIPTION|github/r-spatial/rgee|1.095290251916758e-05| +|DESCRIPTION|github/oneilsh/tidytensor|1.095290251916758e-05| +|DESCRIPTION|github/ArgoCanada/argodata|1.095290251916758e-05| +|DESCRIPTION|github/JonasRieger/ldaPrototype|1.095290251916758e-05| +|DESCRIPTION|github/mlr-org/mcboost|1.095290251916758e-05| +|DESCRIPTION|github/bcgov/shinyssdtools|1.095290251916758e-05| +|DESCRIPTION|github/bcgov/bcdata|1.095290251916758e-05| +|DESCRIPTION|github/BrianAronson/birankr|1.095290251916758e-05| +|DESCRIPTION|github/cran/irtplay|1.095290251916758e-05| +|DESCRIPTION|github/Dulab2020/ARMT|1.095290251916758e-05| +|DESCRIPTION|github/bblodfon/emba|1.095290251916758e-05| +|DESCRIPTION|github/Jinsl-lab/SDImpute|1.095290251916758e-05| +|DESCRIPTION|github/tinglabs/scAIDE|1.095290251916758e-05| +|DESCRIPTION|github/llrs/experDesign|1.095290251916758e-05| +|DESCRIPTION|github/rauschenberger/joinet|1.095290251916758e-05| +|DESCRIPTION|github/vbaliga/gaussplotR|1.095290251916758e-05| +|DESCRIPTION|github/akcochrane/TEfits|1.095290251916758e-05| +|DESCRIPTION|github/kendomaniac/docker4seq|1.095290251916758e-05| +|DESCRIPTION|github/kendomaniac/rCASC|1.095290251916758e-05| +|DESCRIPTION|github/RajLabMSSM/echolocatoR|1.095290251916758e-05| +|DESCRIPTION|github/haoharryfeng/NeuCA|1.095290251916758e-05| +|DESCRIPTION|github/HajkD/LTRpred|1.095290251916758e-05| +|DESCRIPTION|github/flosalbizziae/kataegis|1.095290251916758e-05| +|DESCRIPTION|github/timoast/signac|1.095290251916758e-05| +|DESCRIPTION|github/ClaudioZandonella/PRDA|1.095290251916758e-05| +|DESCRIPTION|github/asancpt/caffsim|1.095290251916758e-05| +|DESCRIPTION|github/tlverse/hal9001|1.095290251916758e-05| +|DESCRIPTION|github/pratheesh3780/grapesAgri1|1.095290251916758e-05| +|DESCRIPTION|github/USEPA/nsink|1.095290251916758e-05| +|DESCRIPTION|github/ColemanRHarris/mxnorm|1.095290251916758e-05| +|DESCRIPTION|github/r-spatialecology/shar|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/rotemplate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/pkgreviewr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-org/roblog|1.095290251916758e-05| +|DESCRIPTION|github/lasseignelab/CINmetrics|1.095290251916758e-05| +|DESCRIPTION|github/ants-project/ANTs|1.095290251916758e-05| +|DESCRIPTION|github/nhejazi/txshift|1.095290251916758e-05| +|DESCRIPTION|github/nhejazi/medoutcon|1.095290251916758e-05| +|DESCRIPTION|github/ShixiangWang/sigminer|1.095290251916758e-05| +|DESCRIPTION|github/constantAmateur/SoupX|1.095290251916758e-05| +|DESCRIPTION|github/SchlossLab/mikropml|1.095290251916758e-05| +|DESCRIPTION|github/SofieVG/FlowSOM|1.095290251916758e-05| +|DESCRIPTION|github/ComtekAdvancedStructures/cmstatr|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/ambrosia|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/rfasst|1.095290251916758e-05| +|DESCRIPTION|github/JGCRI/plutus|1.095290251916758e-05| +|DESCRIPTION|github/TomKellyGenetics/graphsim|1.095290251916758e-05| +|DESCRIPTION|github/YuLab-SMU/treeio|1.095290251916758e-05| +|DESCRIPTION|github/MAnalytics/opitools|1.095290251916758e-05| +|DESCRIPTION|github/MAnalytics/akmedoids|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/reviewer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/monkeylearn|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/arresteddev|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-archive/rodev|1.095290251916758e-05| +|DESCRIPTION|github/wesleyburr/subMaldi|1.095290251916758e-05| +|DESCRIPTION|github/adithirgis/pollucheck|1.095290251916758e-05| +|DESCRIPTION|github/tgrimes/SeqNet|1.095290251916758e-05| +|DESCRIPTION|github/tidyverse/glue|1.095290251916758e-05| +|DESCRIPTION|github/alexander-pastukhov/bistablehistory|1.095290251916758e-05| +|DESCRIPTION|github/ejikeugba/serp|1.095290251916758e-05| +|DESCRIPTION|github/aranyics/ReDCM|1.095290251916758e-05| +|DESCRIPTION|github/mmahmoudian/sivs|1.095290251916758e-05| +|DESCRIPTION|github/SwissClinicalTrialOrganisation/secuTrialR|1.095290251916758e-05| +|DESCRIPTION|github/msalibian/RBF|1.095290251916758e-05| +|DESCRIPTION|github/IndrajeetPatil/ggstatsplot|1.095290251916758e-05| +|DESCRIPTION|github/IndrajeetPatil/statsExpressions|1.095290251916758e-05| +|DESCRIPTION|github/IMB-Computational-Genomics-Lab/scGPS|1.095290251916758e-05| +|DESCRIPTION|github/IMMM-SFA/gamut|1.095290251916758e-05| +|DESCRIPTION|github/SJTU-CGM/ivTerm|1.095290251916758e-05| +|DESCRIPTION|github/VBlesius/RHRT|1.095290251916758e-05| +|DESCRIPTION|github/dankelley/oce|1.095290251916758e-05| +|DESCRIPTION|github/Hegghammer/daiR|1.095290251916758e-05| +|DESCRIPTION|github/wadpac/GGIR|1.095290251916758e-05| +|DESCRIPTION|github/dpseidel/stmove|1.095290251916758e-05| +|DESCRIPTION|github/BMILAB/scLINE|1.095290251916758e-05| +|DESCRIPTION|github/signaturescience/skater|1.095290251916758e-05| +|DESCRIPTION|github/anwarbio/bioassays|1.095290251916758e-05| +|DESCRIPTION|github/niceume/datasailr|1.095290251916758e-05| +|DESCRIPTION|github/nevrome/bleiglas|1.095290251916758e-05| +|DESCRIPTION|github/dgrun/FateID|1.095290251916758e-05| +|DESCRIPTION|github/raredd/kmdata|1.095290251916758e-05| +|DESCRIPTION|github/sachsmc/cosinor|1.095290251916758e-05| +|DESCRIPTION|github/GaryBAYLOR/mixR|1.095290251916758e-05| +|DESCRIPTION|github/humanfactors/FIPS|1.095290251916758e-05| +|DESCRIPTION|github/weizhouUMICH/SAIGE|1.095290251916758e-05| +|DESCRIPTION|github/mrc-ide/individual|1.095290251916758e-05| +|DESCRIPTION|github/johannes-titz/cofad|1.095290251916758e-05| +|DESCRIPTION|github/RETURN-project/BenchmarkRecovery|1.095290251916758e-05| +|DESCRIPTION|github/LindaNab/mecor|1.095290251916758e-05| +|DESCRIPTION|github/CornellLabofOrnithology/auk|1.095290251916758e-05| +|DESCRIPTION|github/yiling0210/APIR|1.095290251916758e-05| +|DESCRIPTION|github/martin3141/spant|1.095290251916758e-05| +|DESCRIPTION|github/radio1988/OneStopRNAseq|1.095290251916758e-05| +|DESCRIPTION|github/r-lib/gert|1.095290251916758e-05| +|DESCRIPTION|github/r-lib/credentials|1.095290251916758e-05| +|DESCRIPTION|github/alan-turing-institute/DetectorChecker|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/trufflesniffer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DoOR.functions|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/colocr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearthhires|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/brranching|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/refsplitr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nodbi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/iheatmapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmplotr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfisheries|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/skynet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/AntWeb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rerddap|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/plater|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stantargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/PostcodesioR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DataPackageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gittargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/parzer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/citesdb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/baRcodeR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chirps|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ghql|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geojsonlint|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ecoengine|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tabulizer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ezknitr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/babette|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/awardFindR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tracerer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treestartr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ckanr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/antiword|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/addressable|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fauxpas|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnpn|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nomisr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rperseus|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/infx|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/helminthR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/USAboundariesData|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rsat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/patentsview|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/microdemic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcoreoa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/drake|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidypmc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/clifro|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxlist|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidync|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrricanes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pixelclasser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider.devtools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgpdd|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/censo2017|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nlrx|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ramlegacy|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jstor|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/finch|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/EML|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/emld|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/onekp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tiler|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RNeXML|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rotl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rsnps|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outcomerate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jagstargets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treebase|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tarchetypes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/refimpact|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/googleLanguageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/UCSCXenaTools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tesseract|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bib2df|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wdman|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osmextract|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnoaa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/allodb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ots|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/graphql|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rbhl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/arkdb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/terrainr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hunspell|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/paleobioDB|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rplos|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdefra|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/worrms|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gtfsr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hddtools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcitoid|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/treedata.table|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxadb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wellknown|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rppo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/neotoma|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/xslt|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hydroscoper|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcites|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/oai|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/BaseSet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/medrxivr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/conditionz|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dataaimsr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dittodb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/textreuse|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/eia|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/qpdf|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxize|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdatacite|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tif|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stplanr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cleanEHR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/osfr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/popler|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rAltmetric|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/qualtRics|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/workloopR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/solrium|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/camsRad|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mauricer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/targets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/piggyback|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/comtradr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/crul|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/beautier|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spocc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tradestatistics|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fingertipsR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/Rclean|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgbif|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencontext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/git2r|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jenkins|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/outsider.base|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nasapower|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cyphr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phonfieldwork|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/roadoi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pangaear|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jsonld|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdhs|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearthdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfigshare|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/zbank|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfishbase|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/suppdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/prism|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dataspice|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/git2rdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/webchem|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdflib|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/USAboundaries|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/seasl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gitignore|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/restez|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/lingtypology|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gutenbergr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bold|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cld2|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pendulum|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dbhydroR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/beastier|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/grainchanger|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/staypuft|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/historydata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rfema|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdataretriever|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tidyhydat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/c14bazAAR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spatsoc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tinkr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rredlist|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/isdparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bikedata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/webmockr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxview|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MODIStsp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/nbaR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/traits|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rglobi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylogram|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnaturalearth|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rbace|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ssh|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rentrez|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ijtiff|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rorcid|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/NLMR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bowerbird|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/vcr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bomrang|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/getCRUCLdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cRegulome|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rtweet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rusda|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/robotstxt|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DataSpaceR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rnassqs|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/charlatan|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/riem|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cde|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geonames|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ritis|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxizedb|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mapscanner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrlite|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcrossref|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/GSODR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/elastic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cchecks|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/spelling|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tokenizers|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rgnparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cld3|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pdftools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/epubr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/sofa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rromeo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/aRxiv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wateRinfo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/landscapetools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/datapack|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/timefuzz|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bibtex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/plotly|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/scrubr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/Rpolyhedra|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opentripplanner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chromer|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rmangal|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylocomr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rebird|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rvertnet|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/opencage|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/antanym|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RefManageR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/SymbiotaR2|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rdryad|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/slopes|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rzmq|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/coder|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/unrtf|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/smapr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/magick|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/handlr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MODISTools|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rtika|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/phylotaR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/FedData|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pubchunks|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/natserv|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jqr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/virtuoso|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/hoardr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/chlorpromazineR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/namext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/stats19|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/ruODK|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mctq|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/dbparser|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/internetarchive|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/excluder|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rrricanesdata|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/exoplanets|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/geojsonio|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/wikitaxa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/tacmagic|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/taxa|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/assertr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/pathviewr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rWBclimate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rAvis|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/weathercan|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/fulltext|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/jsonvalidate|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mcbette|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/DoOR.data|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/visdat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/skimr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/codemetar|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/essurvey|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/biomartr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/randgeo|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/photosearcher|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/writexl|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/mregions|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/av|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/CoordinateCleaner|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/europepmc|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/circle|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/getlandsat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/EndoMineR|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/katex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/binman|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/cffr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/bittrex|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/citecorp|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rinat|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/lightr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/gistr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/MtreeRing|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/RSelenium|1.095290251916758e-05| +|DESCRIPTION|github/ropensci/rcol|1.095290251916758e-05| +|DESCRIPTION|github/NLeSC/EEG-epilepsy-diagnosis|1.095290251916758e-05| +|DESCRIPTION|github/NLeSC/compressing-the-sky|1.095290251916758e-05| +|DESCRIPTION|github/david-barnett/microViz|1.095290251916758e-05| +|DESCRIPTION|github/epiforecasts/covidregionaldata|1.095290251916758e-05| +|DESCRIPTION|github/ArkajyotiSaha/RandomForestsGLS|1.095290251916758e-05| +|DESCRIPTION|github/fumi-github/omicwas|1.095290251916758e-05| +|DESCRIPTION|github/ramadatta/CPgeneProfiler|1.095290251916758e-05| +|DESCRIPTION|github/tidymodels/infer|1.095290251916758e-05| +|DESCRIPTION|github/tbep-tech/tbeptools|1.095290251916758e-05| +|DESCRIPTION|github/julia-wrobel/registr|1.095290251916758e-05| +|DESCRIPTION|github/rhenkin/visxhclust|1.095290251916758e-05| +|DESCRIPTION|github/ezer/PAFway|1.095290251916758e-05| +|DESCRIPTION|github/hope-data-science/tidyfst|1.095290251916758e-05| +|DESCRIPTION|github/GabrielNakamura/FishPhyloMaker|1.095290251916758e-05| +|DESCRIPTION|github/rcarragh/c212|1.095290251916758e-05| +|DESCRIPTION|github/prdm0/ropenblas|1.095290251916758e-05| +|DESCRIPTION|github/snystrom/memes|1.095290251916758e-05| +|DESCRIPTION|github/CTU-Bern/presize|1.095290251916758e-05| +|DESCRIPTION|github/saezlab/PHONEMeS|1.095290251916758e-05| +|DESCRIPTION|github/andyphilips/dynamac|1.095290251916758e-05| +|DESCRIPTION|github/xoopR/set6|1.095290251916758e-05| +|DESCRIPTION|github/ecological-cities/home2park|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/allcontributors|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/gendercoder|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/r2readthedocs|1.095290251916758e-05| +|DESCRIPTION|github/ropenscilabs/qcoder|1.095290251916758e-05| +|DESCRIPTION|github/arcaldwell49/SimplyAgree|1.095290251916758e-05| +|DESCRIPTION|github/chainsawriot/sweater|1.095290251916758e-05| +|DESCRIPTION|github/chainsawriot/oolong|1.095290251916758e-05| +|DESCRIPTION|github/DidierMurilloF/FielDHub|1.095290251916758e-05| +|DESCRIPTION|github/VincentAlcazer/StatAid|1.095290251916758e-05| +|DESCRIPTION|github/takfung/ResDisMapper|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/roreviewapi|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/autotest|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/srr|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/pkgcheck|1.095290251916758e-05| +|DESCRIPTION|github/ropensci-review-tools/pkgstats|1.095290251916758e-05| +|DESCRIPTION|github/samhforbes/PupillometryR|1.095290251916758e-05| +|DESCRIPTION|github/jorittmo/singcar|1.095290251916758e-05| +|DESCRIPTION|github/abschneider/StrainHub|1.095290251916758e-05| +|DESCRIPTION|github/insilico/cncv|1.095290251916758e-05| +|DESCRIPTION|github/zoometh/iconr|1.095290251916758e-05| +|DESCRIPTION|github/jessecambon/tidygeocoder|1.095290251916758e-05| +|DESCRIPTION|github/mingzehuang/latentcor|1.095290251916758e-05| +|DESCRIPTION|github/zhouzilu/DENDRO|1.095290251916758e-05| +|cran|[redux](https://github.com/richfitz/redux)|1.0843373493975925e-05| +|cran|[Rtsne](https://github.com/jkrijthe/Rtsne)|1.0816265060240964e-05| +|cran|[rmsfact](NA)|1.0734939759036146e-05| +|cran|[multicolor](https://github.com/aedobbyn/multicolor/)|1.0734939759036146e-05| +|cran|geomorph|1.0734939759036144e-05| +|cran|[ggthemes](https://github.com/jrnold/ggthemes)|1.0493072978412509e-05| +|cran|clv|1.043674698795181e-05| +|cran|[geojson](https://docs.ropensci.org/geojson)|1.0391566265060246e-05| +|cran|[MLmetrics](http://github.com/yanyachen/MLmetrics)|1.0360479820155246e-05| +|cran|ncbit|1.0322057460611676e-05| +|cran|subplex|1.0322057460611676e-05| +|cran|[shinybusy](https://github.com/dreamRs/shinybusy)|1.0311757903721502e-05| +|cran|thor|1.0223752151462995e-05| +|cran|[fds](https://sites.google.com/site/hanlinshangswebsite/)|1.0195352839931153e-05| +|cran|polycor|1.007372320163005e-05| +|cran|speedglm|1.0030120481927715e-05| +|cran|[pander](https://rapporter.github.io/pander/)|9.996322954154297e-06| +|cran|misc3d|9.840361445783132e-06| +|cran|aws.signature|9.800040498126961e-06| +|cran|SuperLearner|9.759036144578313e-06| +|cran|princurve|9.759036144578313e-06| +|cran|brglm|9.759036144578313e-06| +|cran|[robustbase](http://robustbase.r-forge.r-project.org/)|9.720309810671263e-06| +|cran|[gistr](https://github.com/ropensci/gistr (devel))|9.707009857612272e-06| +|cran|PCICt|9.636413547165251e-06| +|cran|gld|9.636362664500058e-06| +|cran|torch|9.634047060348009e-06| +|cran|paws|9.634047060348009e-06| +|cran|keras|9.634047060348009e-06| +|cran|clustermq|9.634047060348009e-06| +|cran|grpreg|9.584767641996557e-06| +|cran|[ff](https://github.com/truecluster/ff)|9.571649096385531e-06| +|cran|pvclust|9.297106339408817e-06| +|cran|[themis](https://github.com/tidymodels/themis)|9.276142470757665e-06| +|cran|superpc|9.276142470757665e-06| +|cran|subselect|9.276142470757665e-06| +|cran|spls|9.276142470757665e-06| +|cran|pamr|9.276142470757665e-06| +|cran|mda|9.276142470757665e-06| +|cran|ipred|9.276142470757665e-06| +|cran|ellipse|9.276142470757665e-06| +|cran|earth|9.276142470757665e-06| +|cran|BradleyTerry2|9.276142470757665e-06| +|cran|recipes|9.276142470757665e-06| +|cran|pROC|9.276142470757665e-06| +|cran|ModelMetrics|9.276142470757665e-06| +|cran|yulab.utils|9.16220698805838e-06| +|cran|robustlmm|8.945783132530119e-06| +|cran|parsnip|8.945783132530119e-06| +|cran|multgee|8.945783132530119e-06| +|cran|merTools|8.945783132530119e-06| +|cran|marginaleffects|8.945783132530119e-06| +|cran|logistf|8.945783132530119e-06| +|cran|JM|8.945783132530119e-06| +|cran|gmnl|8.945783132530119e-06| +|cran|fungible|8.945783132530119e-06| +|cran|feisr|8.945783132530119e-06| +|cran|estimatr|8.945783132530119e-06| +|cran|epiR|8.945783132530119e-06| +|cran|crch|8.945783132530119e-06| +|cran|censReg|8.945783132530119e-06| +|cran|bife|8.945783132530119e-06| +|cran|bdsmatrix|8.945783132530119e-06| +|cran|[corrplot](https://github.com/taiyun/corrplot)|8.823641482170336e-06| +|cran|[rfishbase](https://docs.ropensci.org/rfishbase/)|8.810240963855423e-06| +|cran|[progressr](https://progressr.futureverse.org)|8.703233988585948e-06| +|cran|sparkline|8.654966384006113e-06| +|cran|distr6|8.643268727082243e-06| +|cran|[geojsonsf](https://github.com/SymbolixAU/geojsonsf)|8.598713033954002e-06| +|cran|[stringdist](https://github.com/markvanderloo/stringdist)|8.58433734939763e-06| +|cran|[archive](https://archive.r-lib.org/)|8.583661731606447e-06| +|cran|distributional|8.579372434794122e-06| +|cran|plainview|8.5730421686747e-06| +|cran|mapdeck|8.5730421686747e-06| +|cran|[mlr3](https://mlr3.mlr-org.com)|8.50425111818512e-06| +|cran|[RcppParallel](https://rcppcore.github.io/RcppParallel/)|8.440580503833517e-06| +|cran|rainbow|8.434595524956968e-06| +|cran|scagnostics|8.400635509069242e-06| +|cran|labelled|8.400635509069242e-06| +|cran|intergraph|8.400635509069242e-06| +|cran|chemometrics|8.400635509069242e-06| +|cran|broom.helpers|8.400635509069242e-06| +|cran|procmaps|8.39020291693088e-06| +|cran|MuMIn|8.347335411191068e-06| +|cran|[tidytext](http://github.com/juliasilge/tidytext)|8.27873378998937e-06| +|cran|RProtoBuf|8.257645968489342e-06| +|cran|[lhs](https://github.com/bertcarnell/lhs)|8.209982788296044e-06| +|cran|limma|8.175069508804449e-06| +|cran|affy|8.175069508804449e-06| +|cran|marray|8.175069508804449e-06| +|cran|[reactable](https://glin.github.io/reactable/)|8.109360518999075e-06| +|cran|feather|8.023150893108986e-06| +|cran|GenSA|7.962082443486323e-06| +|cran|MonetDBLite|7.951807228915663e-06| +|cran|RgoogleMaps|7.92921686746988e-06| +|cran|systemfonts|7.910939926955208e-06| +|cran|gdtools|7.802337168221759e-06| +|cran|ExactData|7.778941854374017e-06| +|cran|Epi|7.752307933030825e-06| +|cran|memisc|7.752307933030825e-06| +|cran|descr|7.752307933030825e-06| +|cran|sylly.en|7.752307933030825e-06| +|cran|sylly|7.752307933030825e-06| +|cran|[rjags](https://mcmc-jags.sourceforge.io)|7.715477293790552e-06| +|cran|[R.matlab](https://github.com/HenrikBengtsson/R.matlab)|7.704991394148043e-06| +|cran|[pbivnorm](https://github.com/brentonk/pbivnorm)|7.683100824350031e-06| +|cran|compiler|7.667814113597245e-06| +|cran|DoE.base|7.667814113597245e-06| +|cran|RcppCCTZ|7.623576724480338e-06| +|cran|DendSer|7.548985415345594e-06| +|cran|[ridigbio](https://github.com/iDigBio/ridigbio)|7.530120481927717e-06| +|cran|[rvertnet](https://github.com/ropensci/rvertnet)|7.530120481927717e-06| +|cran|[rebird](https://docs.ropensci.org/rebird/)|7.530120481927717e-06| +|cran|[rbison](https://github.com/ropensci/rbison)|7.530120481927717e-06| +|cran|[rgbif](https://github.com/ropensci/rgbif (devel))|7.530120481927717e-06| +|cran|rnaturalearthhires|7.506950880444857e-06| +|cran|[clusterCrit](http:www.r-project.org)|7.489808859498159e-06| +|cran|sparklyr|7.4548192771084335e-06| +|cran|picante|7.4548192771084335e-06| +|cran|hisse|7.4548192771084335e-06| +|cran|diversitree|7.4548192771084335e-06| +|cran|[gargle](https://gargle.r-lib.org)|7.442191124747444e-06| +|cran|bayesplot|7.378363340606272e-06| +|cran|svUnit|7.302680108187852e-06| +|cran|AlgDesign|7.302680108187852e-06| +|cran|rsyslog|7.056533827618166e-06| +|cran|logging|7.056533827618166e-06| +|cran|[reproj](https://github.com/hypertidy/reproj/)|6.9910766058887955e-06| +|cran|Rdonlp2|6.970740103270223e-06| +|cran|gamlss.dist|6.970740103270223e-06| +|cran|Rsolnp|6.970740103270223e-06| +|cran|[correlation](https://easystats.github.io/correlation/)|6.968376351706632e-06| +|cran|[kml](http:www.r-project.org)|6.919104991394161e-06| +|cran|kriging|6.881371640407785e-06| +|cran|udunits2|6.881371640407785e-06| +|cran|formula.tools|6.881371640407785e-06| +|cran|R2WinBUGS|6.881371640407785e-06| +|cran|mlr3measures|6.728452270620945e-06| +|cran|leafgl|6.709337349397591e-06| +|cran|seasonal|6.6676644466063e-06| +|cran|forecTheta|6.6676644466063e-06| +|cran|urca|6.6676644466063e-06| +|cran|fracdiff|6.6676644466063e-06| +|cran|googleAnalyticsR|6.6676644466063e-06| +|cran|bigQueryR|6.6676644466063e-06| +|cran|[tiff](https://www.rforge.net/tiff/)|6.62650602409639e-06| |cran|[mauricer](https://docs.ropensci.org/mauricer/ (website) -https://github.com/ropensci/mauricer/)|1.2500000000000007e-05| -|cran|wicket|1.25e-05| -|cran|lm.beta|1.2330679978413385e-05| -|cran|[oai](https://github.com/ropensci/oai)|1.216595904095908e-05| -|cran|titanic|1.208193277310924e-05| -|cran|float|1.208193277310924e-05| -|cran|agridat|1.2053571428571427e-05| -|cran|ggmap|1.2029220779220792e-05| -|cran|cyclocomp|1.194976076555024e-05| -|cran|xmlparsedata|1.194976076555024e-05| -|cran|[hal9001](https://github.com/tlverse/hal9001)|1.1908911246855888e-05| -|cran|rio|1.1853491902834007e-05| -|cran|[geojsonio](https://github.com/ropensci/geojsonio (devel))|1.1762430153578486e-05| -|cran|ggdendro|1.1734449760765555e-05| -|cran|textdata|1.1628315293728828e-05| -|cran|mallet|1.1628315293728828e-05| -|cran|gutenbergr|1.1628315293728828e-05| -|cran|questionr|1.1505681818181818e-05| -|cran|bookdown|1.1505681818181818e-05| -|cran|text2vec|1.1505681818181818e-05| -|cran|quanteda.textplots|1.1505681818181818e-05| -|cran|quanteda.textstats|1.1505681818181818e-05| -|cran|quanteda.textmodels|1.1505681818181818e-05| -|cran|lda|1.1505681818181818e-05| -|cran|corpcor|1.1407342657342673e-05| -|cran|bigstatsr|1.125e-05| -|cran|RcppAnnoy|1.125e-05| -|cran|[ssh](https://docs.ropensci.org/ssh (website))|1.1126373626373626e-05| -|cran|snow|1.1126373626373626e-05| -|cran|Rmpi|1.1126373626373626e-05| -|cran|batchtools|1.1126373626373626e-05| -|cran|BatchJobs|1.1126373626373626e-05| -|cran|BBmisc|1.1126373626373626e-05| -|cran|[mlr3pipelines](https://mlr3pipelines.mlr-org.com)|1.0849802371541513e-05| -|cran|bain|1.0828877005347594e-05| -|cran|[rncl](https://github.com/fmichonneau/rncl)|1.0641233766233793e-05| -|cran|arkdb|1.0546875e-05| -|cran|kappaSize|1.0227272727272747e-05| -|cran|[readtext](https://github.com/quanteda/readtext)|1.0227272727272742e-05| -|cran|nLTT|1.0227272727272727e-05| -|cran|permute|1.0125e-05| -|cran|nFactors|9.93351831654585e-06| -|cran|[latex2exp](https://www.stefanom.io/latex2exp/)|9.86345670140136e-06| -|cran|adehabitatHR|9.801136363636372e-06| -|cran|parsedate|9.785640495867842e-06| -|cran|CircStats|9.735576923076922e-06| -|cran|modelr|9.57139328063241e-06| -|cran|registry|9.445616883116883e-06| -|cran|[wellknown](https://github.com/ropensci/wellknown)|9.375000000000013e-06| -|cran|[ggcorrplot](http://www.sthda.com/english/wiki/ggcorrplot)|9.250383148923451e-06| -|cran|[openxlsx](https://ycphs.github.io/openxlsx/index.html)|9.249419806360368e-06| -|cran|[jsonvalidate](https://docs.ropensci.org/jsonvalidate/)|9.204545454545541e-06| -|cran|sangerseqR|9.204545454545455e-06| -|cran|ggraph|9.196555397727278e-06| -|cran|dendroextras|9.177631578947368e-06| -|cran|highcharter|8.881578947368421e-06| -|cran|survAUC|8.804347826086957e-06| -|cran|simsurv|8.804347826086957e-06| -|cran|set6|8.804347826086957e-06| -|cran|param6|8.804347826086957e-06| -|cran|cubature|8.804347826086957e-06| -|cran|bujar|8.804347826086957e-06| -|cran|pso|8.804347826086957e-06| -|cran|soma|8.804347826086957e-06| -|cran|tcltk2|8.804347826086957e-06| -|cran|txtq|8.787587412587419e-06| -|cran|pgdraw|8.766233766233766e-06| -|cran|matrixNormal|8.766233766233766e-06| -|cran|dockerfiler|8.720095693779904e-06| -|cran|attachment|8.720095693779904e-06| -|cran|sjPlot|8.437500000000002e-06| -|cran|sjmisc|8.437500000000002e-06| -|cran|TMB|8.360091743119267e-06| -|cran|sjstats|8.360091743119267e-06| -|cran|projpred|8.360091743119267e-06| -|cran|PROreg|8.360091743119267e-06| -|cran|PMCMRplus|8.360091743119267e-06| -|cran|PCDimension|8.360091743119267e-06| -|cran|NbClust|8.360091743119267e-06| -|cran|mfx|8.360091743119267e-06| -|cran|M3C|8.360091743119267e-06| -|cran|lqmm|8.360091743119267e-06| -|cran|lavaSearch2|8.360091743119267e-06| -|cran|ivprobit|8.360091743119267e-06| -|cran|FactoMineR|8.360091743119267e-06| -|cran|factoextra|8.360091743119267e-06| -|cran|EGAnet|8.360091743119267e-06| -|cran|DRR|8.360091743119267e-06| -|cran|drc|8.360091743119267e-06| -|cran|ClassDiscovery|8.360091743119267e-06| -|cran|cAIC4|8.360091743119267e-06| -|cran|brglm2|8.360091743119267e-06| -|cran|BayesFM|8.360091743119267e-06| -|cran|influenceR|8.296404682274248e-06| -|cran|vegalite|8.198380566801619e-06| -|cran|wdm|8.173828125e-06| -|cran|rmcorr|8.173828125e-06| -|cran|ppcor|8.173828125e-06| -|cran|mbend|8.173828125e-06| -|cran|energy|8.173828125e-06| -|cran|TSP|8.130681818181819e-06| -|cran|[storr](https://github.com/richfitz/storr)|8.09172077922076e-06| -|cran|rsample|8.00395256916996e-06| -|cran|treemap|8.00395256916996e-06| -|cran|networkD3|8.00395256916996e-06| -|cran|[multimode](https://arxiv.org/abs/1803.00472/)|7.993297025555105e-06| -|cran|[duckdb](https://duckdb.org/)|7.840909090909076e-06| -|cran|hrbrthemes|7.737739234449765e-06| -|cran|randgeo|7.670454545454545e-06| -|cran|googleComputeEngineR|7.612781954887218e-06| -|cran|servr|7.606534090909053e-06| -|cran|[shinydashboard](http://rstudio.github.io/shinydashboard/)|7.56530401416765e-06| -|cran|[taxizedb](https://ropensci.github.io/taxizedb/)|7.500000000000103e-06| +https://github.com/ropensci/mauricer/)|6.626506024096389e-06| +|cran|wicket|6.626506024096385e-06| +|cran|lm.beta|6.536746012652878e-06| +|cran|[oai](https://github.com/ropensci/oai)|6.449424069906019e-06| +|cran|[titanic](https://github.com/paulhendricks/titanic)|6.404880024298875e-06| +|cran|[float](https://github.com/wrathematics/float)|6.404880024298875e-06| +|cran|agridat|6.389845094664371e-06| +|cran|[ggmap](https://github.com/dkahle/ggmap)|6.376936316695359e-06| +|cran|cyclocomp|6.334812935954344e-06| +|cran|xmlparsedata|6.334812935954344e-06| +|cran|[hal9001](https://github.com/tlverse/hal9001)|6.313157769417578e-06| +|cran|rio|6.283778840056583e-06| +|cran|[geojsonio](https://github.com/ropensci/geojsonio (devel))|6.235505141656065e-06| +|cran|[ggdendro](https://github.com/andrie/ggdendro)|6.220672162333548e-06| +|cran|textdata|6.164408107518896e-06| +|cran|mallet|6.164408107518896e-06| +|cran|gutenbergr|6.164408107518896e-06| +|cran|questionr|6.099397590361445e-06| +|cran|bookdown|6.099397590361445e-06| +|cran|text2vec|6.099397590361445e-06| +|cran|quanteda.textplots|6.099397590361445e-06| +|cran|quanteda.textstats|6.099397590361445e-06| +|cran|quanteda.textmodels|6.099397590361445e-06| +|cran|lda|6.099397590361445e-06| +|cran|[corpcor](https://strimmerlab.github.io/software/corpcor/)|6.047265987025031e-06| +|cran|bigstatsr|5.963855421686747e-06| +|cran|RcppAnnoy|5.963855421686747e-06| +|cran|snow|5.898318548920958e-06| +|cran|Rmpi|5.898318548920958e-06| +|cran|batchtools|5.898318548920958e-06| +|cran|BatchJobs|5.898318548920958e-06| +|cran|BBmisc|5.898318548920958e-06| +|cran|[ssh](https://docs.ropensci.org/ssh (website))|5.898318548920958e-06| +|cran|[mlr3pipelines](https://mlr3pipelines.mlr-org.com)|5.751702462022006e-06| +|cran|bain|5.740609496810773e-06| +|cran|[rncl](https://github.com/fmichonneau/rncl)|5.641135972461287e-06| +|cran|arkdb|5.591114457831325e-06| +|cran|kappaSize|5.421686746987962e-06| +|cran|[readtext](https://github.com/quanteda/readtext)|5.42168674698796e-06| +|cran|nLTT|5.421686746987951e-06| +|cran|permute|5.367469879518073e-06| +|cran|nFactors|5.265961517205028e-06| +|cran|[latex2exp](https://www.stefanom.io/latex2exp/)|5.228820420019998e-06| +|cran|adehabitatHR|5.195783132530126e-06| +|cran|[parsedate](https://github.com/gaborcsardi/parsedate)|5.187568455640784e-06| +|cran|CircStats|5.161028730305838e-06| +|cran|modelr|5.073991618648507e-06| +|cran|registry|5.007314974182444e-06| +|cran|[wellknown](https://github.com/ropensci/wellknown)|4.969879518072297e-06| +|cran|[ggcorrplot](http://www.sthda.com/english/wiki/ggcorrplot)|4.903817572923275e-06| +|cran|[openxlsx](https://ycphs.github.io/openxlsx/index.html)|4.9033068852994715e-06| +|cran|[jsonvalidate](https://docs.ropensci.org/jsonvalidate/)|4.879518072289202e-06| +|cran|sangerseqR|4.879518072289157e-06| +|cran|[ggraph](https://ggraph.data-imaginist.com)|4.875282379518075e-06| +|cran|dendroextras|4.865250475586557e-06| +|cran|highcharter|4.708306911857958e-06| +|cran|survAUC|4.667365112624411e-06| +|cran|simsurv|4.667365112624411e-06| +|cran|set6|4.667365112624411e-06| +|cran|param6|4.667365112624411e-06| +|cran|cubature|4.667365112624411e-06| +|cran|bujar|4.667365112624411e-06| +|cran|pso|4.667365112624411e-06| +|cran|soma|4.667365112624411e-06| +|cran|tcltk2|4.667365112624411e-06| +|cran|[txtq](https://github.com/wlandau/txtq)|4.6584800741427275e-06| +|cran|pgdraw|4.647160068846816e-06| +|cran|matrixNormal|4.647160068846816e-06| +|cran|dockerfiler|4.622701331642359e-06| +|cran|attachment|4.622701331642359e-06| +|cran|sjPlot|4.47289156626506e-06| +|cran|sjmisc|4.47289156626506e-06| +|cran|TMB|4.431855863822261e-06| +|cran|sjstats|4.431855863822261e-06| +|cran|projpred|4.431855863822261e-06| +|cran|PROreg|4.431855863822261e-06| +|cran|PMCMRplus|4.431855863822261e-06| +|cran|PCDimension|4.431855863822261e-06| +|cran|NbClust|4.431855863822261e-06| +|cran|mfx|4.431855863822261e-06| +|cran|M3C|4.431855863822261e-06| +|cran|lqmm|4.431855863822261e-06| +|cran|lavaSearch2|4.431855863822261e-06| +|cran|ivprobit|4.431855863822261e-06| +|cran|FactoMineR|4.431855863822261e-06| +|cran|factoextra|4.431855863822261e-06| +|cran|EGAnet|4.431855863822261e-06| +|cran|DRR|4.431855863822261e-06| +|cran|drc|4.431855863822261e-06| +|cran|ClassDiscovery|4.431855863822261e-06| +|cran|cAIC4|4.431855863822261e-06| +|cran|brglm2|4.431855863822261e-06| +|cran|BayesFM|4.431855863822261e-06| +|cran|influenceR|4.398094048434541e-06| +|cran|vegalite|4.346129457099653e-06| +|cran|wdm|4.333113704819277e-06| +|cran|rmcorr|4.333113704819277e-06| +|cran|ppcor|4.333113704819277e-06| +|cran|mbend|4.333113704819277e-06| +|cran|energy|4.333113704819277e-06| +|cran|TSP|4.310240963855422e-06| +|cran|[storr](https://github.com/richfitz/storr)|4.2895869191049805e-06| +|cran|rsample|4.243059193294919e-06| +|cran|treemap|4.243059193294919e-06| +|cran|networkD3|4.243059193294919e-06| +|cran|[multimode](https://arxiv.org/abs/1803.00472/)|4.23741047137861e-06| +|cran|[duckdb](https://duckdb.org/)|4.156626506024088e-06| +|cran|[hrbrthemes](http://github.com/hrbrmstr/hrbrthemes)|4.1019340519974664e-06| +|cran|randgeo|4.066265060240964e-06| +|cran|googleComputeEngineR|4.035691638735392e-06| +|cran|[servr](https://github.com/yihui/servr)|4.032379518072269e-06| +|cran|[shinydashboard](http://rstudio.github.io/shinydashboard/)|4.0105226099202e-06| +|cran|[taxizedb](https://ropensci.github.io/taxizedb/)|3.975903614457886e-06| |cran|[redland](https://github.com/ropensci/redland-bindings/tree/master/R/redland -https://github.com/ropensci/redland-bindings/tree/master/R)|7.500000000000046e-06| -|cran|reactR|7.5e-06| -|cran|mlr3data|7.5e-06| -|cran|[countrycode](https://vincentarelbundock.github.io/countrycode/)|7.41477272727276e-06| -|cran|sommer|7.3860182370820666e-06| -|cran|MCMCpack|7.3860182370820666e-06| -|cran|CARBayes|7.3860182370820666e-06| -|cran|multcompView|7.3860182370820666e-06| -|cran|estimability|7.3860182370820666e-06| -|cran|ncmeta|7.242465415019772e-06| -|cran|striprtf|7.232142857142857e-06| -|cran|streamR|7.232142857142857e-06| -|cran|readODS|7.232142857142857e-06| -|cran|RNeXML|7.232142857142857e-06| -|cran|phylobase|7.232142857142857e-06| -|cran|[log4r](https://github.com/johnmyleswhite/log4r)|7.160521296884932e-06| -|cran|rlog|7.080419580419581e-06| -|cran|loggit|7.080419580419581e-06| -|cran|base64|7.03125e-06| -|cran|learnr|7.03125e-06| -|cran|plotlyGeoAssets|6.9128289473684206e-06| -|cran|listviewer|6.9128289473684206e-06| -|cran|FME|6.818877551020407e-06| +https://github.com/ropensci/redland-bindings/tree/master/R)|3.975903614457855e-06| +|cran|mlr3data|3.975903614457832e-06| +|cran|reactR|3.975903614457832e-06| +|cran|[countrycode](https://vincentarelbundock.github.io/countrycode/)|3.930722891566282e-06| +|cran|sommer|3.915479547368806e-06| +|cran|MCMCpack|3.915479547368806e-06| +|cran|CARBayes|3.915479547368806e-06| +|cran|multcompView|3.915479547368806e-06| +|cran|estimability|3.915479547368806e-06| +|cran|[ncmeta](https://github.com/hypertidy/ncmeta)|3.83937925615506e-06| +|cran|striprtf|3.8339070567986225e-06| +|cran|streamR|3.8339070567986225e-06| +|cran|readODS|3.8339070567986225e-06| +|cran|RNeXML|3.8339070567986225e-06| +|cran|phylobase|3.8339070567986225e-06| +|cran|[log4r](https://github.com/johnmyleswhite/log4r)|3.795939000758277e-06| +|cran|rlog|3.7534754402224283e-06| +|cran|loggit|3.7534754402224283e-06| +|cran|base64|3.7274096385542167e-06| +|cran|learnr|3.7274096385542167e-06| +|cran|plotlyGeoAssets|3.6646322130627773e-06| +|cran|listviewer|3.6646322130627773e-06| +|cran|FME|3.614826653552987e-06| +|cran|[rlist](https://renkun.me/rlist)|3.6144578313253287e-06| |cran|[CholWishart](https://github.com/gzt/CholWishart -https://gzt.github.io/CholWishart/)|6.81818181818187e-06| -|cran|[rlist](https://renkun.me/rlist)|6.81818181818187e-06| -|cran|[tabulizerjars](https://github.com/ropensci/tabulizerjars)|6.818181818181819e-06| -|cran|[susieR](https://github.com/stephenslab/susieR)|6.758893280632407e-06| -|cran|rvg|6.661184210526316e-06| -|cran|officer|6.661184210526316e-06| -|cran|phosphoricons|6.661184210526316e-06| -|cran|datamods|6.661184210526316e-06| -|cran|[NMF](http://renozao.github.io/NMF)|6.653346653346669e-06| -|cran|[fastcluster](http://danifold.net/fastcluster.html)|6.599282296650734e-06| -|cran|aws.ec2metadata|6.574675324675325e-06| -|cran|loo|6.532258064516129e-06| -|cran|ISLR|6.532258064516129e-06| -|cran|ICSOutlier|6.532258064516129e-06| -|cran|ICS|6.532258064516129e-06| -|cran|CompQuadForm|6.532258064516129e-06| -|cran|bigutilsr|6.532258064516129e-06| -|cran|[umap](https://github.com/tkonopka/umap)|6.523538961038977e-06| -|cran|philentropy|6.340909090909093e-06| -|cran|tidyquant|6.288819875776397e-06| -|cran|tibbletime|6.288819875776397e-06| -|cran|sweep|6.288819875776397e-06| -|cran|timetk|6.288819875776397e-06| -|cran|data.tree|6.2616780452748795e-06| -|cran|syslognet|6.230769230769231e-06| -|cran|botor|6.230769230769231e-06| -|cran|telegram|6.230769230769231e-06| -|cran|RPushbullet|6.230769230769231e-06| -|cran|slackr|6.230769230769231e-06| -|cran|[EMbC]()|6.148538961038976e-06| -|cran|[geodist](https://github.com/hypertidy/geodist)|6.1363636363637516e-06| -|cran|languageR|6.136363636363637e-06| -|cran|arm|6.136363636363637e-06| -|cran|hypergeo|6.136363636363637e-06| -|cran|concaveman|6.0267857142857145e-06| -|cran|tweenr|6.0267857142857145e-06| -|cran|[ctmm](https://github.com/ctmm-initiative/ctmm)|5.965909090909093e-06| -|cran|snpStats|5.869565217391305e-06| -|cran|skewt|5.7857142857142855e-06| -|cran|catdata|5.7857142857142855e-06| -|cran|MPV|5.7857142857142855e-06| -|cran|fit.models|5.7857142857142855e-06| -|cran|robust|5.7857142857142855e-06| -|cran|DEoptimR|5.7857142857142855e-06| -|cran|[hdf5r](https://hhoeflin.github.io/hdf5r/)|5.681818181818215e-06| -|cran|IRanges|5.625e-06| -|cran|qdapDictionaries|5.625e-06| -|cran|swagger|5.563186813186814e-06| -|cran|nlshrink|5.563186813186813e-06| -|cran|NetworkComparisonTest|5.563186813186813e-06| -|cran|NetworkToolbox|5.563186813186813e-06| -|cran|mathjaxr|5.563186813186813e-06| -|cran|glassoFast|5.563186813186813e-06| -|cran|leafem|5.561079545454555e-06| +https://gzt.github.io/CholWishart/)|3.6144578313253287e-06| +|cran|[tabulizerjars](https://github.com/ropensci/tabulizerjars)|3.6144578313253016e-06| +|cran|[susieR](https://github.com/stephenslab/susieR)|3.583027763226818e-06| +|cran|rvg|3.5312301838934686e-06| +|cran|officer|3.5312301838934686e-06| +|cran|phosphoricons|3.5312301838934686e-06| +|cran|datamods|3.5312301838934686e-06| +|cran|[NMF](http://renozao.github.io/NMF)|3.527075334304258e-06| +|cran|[fastcluster](http://danifold.net/fastcluster.html)|3.4984147114774974e-06| +|cran|aws.ec2metadata|3.4853700516351117e-06| +|cran|loo|3.462883793237466e-06| +|cran|ISLR|3.462883793237466e-06| +|cran|ICSOutlier|3.462883793237466e-06| +|cran|ICS|3.462883793237466e-06| +|cran|CompQuadForm|3.462883793237466e-06| +|cran|bigutilsr|3.462883793237466e-06| +|cran|[umap](https://github.com/tkonopka/umap)|3.4582616179001804e-06| +|cran|[philentropy](https://github.com/HajkD/philentropy)|3.3614457831325313e-06| +|cran|tidyquant|3.33383222330315e-06| +|cran|tibbletime|3.33383222330315e-06| +|cran|sweep|3.33383222330315e-06| +|cran|timetk|3.33383222330315e-06| +|cran|[data.tree](http://github.com/gluc/data.tree)|3.3194437830372856e-06| +|cran|syslognet|3.303058387395737e-06| +|cran|botor|3.303058387395737e-06| +|cran|telegram|3.303058387395737e-06| +|cran|RPushbullet|3.303058387395737e-06| +|cran|slackr|3.303058387395737e-06| +|cran|[EMbC]()|3.2594664371772887e-06| +|cran|[geodist](https://github.com/hypertidy/geodist)|3.2530120481928327e-06| +|cran|languageR|3.2530120481927717e-06| +|cran|arm|3.2530120481927717e-06| +|cran|hypergeo|3.2530120481927717e-06| +|cran|concaveman|3.194922547332186e-06| +|cran|tweenr|3.194922547332186e-06| +|cran|[ctmm](https://github.com/ctmm-initiative/ctmm)|3.16265060240964e-06| +|cran|snpStats|3.111576741749607e-06| +|cran|skewt|3.067125645438898e-06| +|cran|catdata|3.067125645438898e-06| +|cran|MPV|3.067125645438898e-06| +|cran|fit.models|3.067125645438898e-06| +|cran|robust|3.067125645438898e-06| +|cran|DEoptimR|3.067125645438898e-06| +|cran|[hdf5r](https://hhoeflin.github.io/hdf5r/)|3.012048192771102e-06| +|cran|IRanges|2.9819277108433735e-06| +|cran|qdapDictionaries|2.9819277108433735e-06| +|cran|swagger|2.9491592744604792e-06| +|cran|nlshrink|2.949159274460479e-06| +|cran|NetworkComparisonTest|2.949159274460479e-06| +|cran|NetworkToolbox|2.949159274460479e-06| +|cran|mathjaxr|2.949159274460479e-06| +|cran|glassoFast|2.949159274460479e-06| +|cran|[leafem](https://github.com/r-spatial/leafem)|2.948042168674704e-06| |cran|[ghql](https://github.com/ropensci/ghql (devel) -https://docs.ropensci.org/ghql (docs))|5.493881118881121e-06| -|cran|tablerDash|5.357142857142856e-06| -|cran|argonDash|5.357142857142856e-06| -|cran|argonR|5.357142857142856e-06| -|cran|shinydashboardPlus|5.357142857142856e-06| -|cran|geonames|5.296266233766236e-06| -|cran|isdparser|5.296266233766236e-06| -|cran|Exact|5.291501976284581e-06| -|cran|[xslt](https://github.com/ropensci/xslt)|5.268595041322336e-06| -|cran|starsdata|5.197010869565217e-06| -|cran|ncdfgeom|5.197010869565217e-06| -|cran|cubelyr|5.197010869565217e-06| -|cran|clue|5.197010869565217e-06| -|cran|effects|5.192307692307692e-06| -|cran|alr4|5.192307692307692e-06| -|cran|carData|5.192307692307692e-06| -|cran|vtreat|5.192307692307692e-06| -|cran|kknn|5.192307692307692e-06| -|cran|smotefamily|5.192307692307692e-06| -|cran|bestNormalize|5.192307692307692e-06| -|cran|mlr3learners|5.192307692307692e-06| -|cran|mlr3filters|5.192307692307692e-06| -|cran|bbotk|5.192307692307692e-06| -|cran|[Momocs](https://github.com/MomX/Momocs/)|5.113636363636431e-06| -|cran|[iptools](https://github.com/hrbrmstr/iptools)|5.1136363636364025e-06| -|cran|[metR](https://github.com/eliocamp/metR)|5.113636363636374e-06| -|cran|leaflet.minicharts|5.113636363636374e-06| -|cran|[decoder](https://www.bitbucket.com/cancercentrum/decoder)|5.113636363636374e-06| -|cran|gcookbook|5.075187969924812e-06| -|cran|GA|5.0625e-06| -|cran|gclus|5.0625e-06| -|cran|qap|5.0625e-06| -|cran|biomaRt|5.062499999999999e-06| -|cran|[xgboost](https://github.com/dmlc/xgboost)|4.967532467532508e-06| -|cran|dblog|4.842391304347826e-06| -|cran|bcpa|4.6875e-06| -|cran|amt|4.6875e-06| -|cran|circular|4.6875e-06| -|cran|Rfast|4.633867276887872e-06| -|cran|genlasso|4.633867276887872e-06| -|cran|L0Learn|4.633867276887872e-06| -|cran|mixsqp|4.633867276887872e-06| -|cran|RDCOMClient|4.402173913043479e-06| -|cran|base|4.402173913043479e-06| -|cran|NetSwan|4.402173913043479e-06| -|cran|netrankr|4.402173913043479e-06| -|cran|fortunes|4.386384297520663e-06| -|cran|mail|4.383116883116883e-06| -|cran|bibtex|4.383116883116883e-06| -|cran|synchronicity|4.383116883116883e-06| -|cran|doMPI|4.383116883116883e-06| -|cran|rngtools|4.383116883116883e-06| -|cran|pkgmaker|4.383116883116883e-06| -|cran|waveslim|4.364224137931034e-06| -|cran|[shinycssloaders](https://github.com/daattali/shinycssloaders)|4.198564593301455e-06| -|cran|numbers|4.144736842105268e-06| -|cran|Rd2md|4.090909090909168e-06| -|cran|[digitTests](https://koenderks.github.io/digitTests/)|4.090909090909111e-06| -|cran|[jfa](https://koenderks.github.io/jfa/)|4.090909090909111e-06| -|cran|[leafletR](https://github.com/chgrl/leafletR)|4.090909090909111e-06| -|cran|[phonTools](http://www.santiagobarreda.com/rscripts.html)|4.090909090909111e-06| -|cran|[hash](http://www.johnhughes.org)|4.090909090909111e-06| -|cran|[uchardet](https://artemklevtsov.gitlab.io/uchardet)|4.090909090909053e-06| -|cran|textshaping|4.074695121951219e-06| -|cran|[fda](http://www.functionaldata.org)|4.058441558441592e-06| -|cran|R.cache|4.05e-06| -|cran|tidymodels|3.970588235294118e-06| -|cran|DiagrammeRsvg|3.894230769230769e-06| -|cran|rapportools|3.857142857142857e-06| -|cran|suncalc|3.835227272727273e-06| -|cran|fftw|3.835227272727273e-06| -|cran|manipulate|3.835227272727273e-06| -|cran|Gmedian|3.835227272727273e-06| -|cran|fasttime|3.835227272727273e-06| -|cran|[ratelimitr](https://github.com/tarakc02/ratelimitr)|3.7500000000000513e-06| -|cran|[kSamples](NA)|3.693181818181827e-06| -|cran|graphlayouts|3.6160714285714284e-06| -|cran|leafsync|3.515625e-06| -|cran|leaflet.extras2|3.515625e-06| -|cran|satellite|3.515625e-06| -|cran|leafpop|3.515625e-06| -|cran|[posterior](https://mc-stan.org/posterior/)|3.432930705657984e-06| -|cran|[tarchetypes](https://docs.ropensci.org/tarchetypes/)|3.432930705657984e-06| -|cran|[nplr](https://github.com/fredcommo/nplr)|3.409090909090935e-06| -|cran|[osqp](https://osqp.org)|3.409090909090935e-06| -|cran|[rstackdeque](https://github.com/oneilsh/rstackdeque)|3.409090909090935e-06| -|cran|[biblio](https://github.com/kamapu/biblio)|3.409090909090935e-06| -|cran|[spiderbar](https://gitlab.com/hrbrmstr/spiderbar)|3.409090909090935e-06| -|cran|[wdman](https://github.com/ropensci/wdman)|3.409090909090935e-06| -|cran|[ipaddress](https://davidchall.github.io/ipaddress/)|3.409090909090935e-06| -|cran|[fasterize](https://github.com/ecohealthalliance/fasterize)|3.181818181818167e-06| -|cran|whitening|3.068181818181818e-06| -|cran|randtoolbox|3.068181818181818e-06| -|cran|mc2d|3.068181818181818e-06| -|cran|ggExtra|3.068181818181818e-06| -|cran|DiceDesign|3.068181818181818e-06| -|cran|condMVNorm|3.068181818181818e-06| -|cran|showtextdb|3.0560213414634145e-06| -|cran|sysfonts|3.0560213414634145e-06| -|cran|rematch2|3.0375e-06| -|cran|diffobj|3.0375e-06| -|cran|[UpSetR](http://github.com/hms-dbmi/UpSetR)|2.9659090909091035e-06| -|cran|[itsadug](NA)|2.9220779220779526e-06| -|cran|[tidytree](https://yulab-smu.top/treedata-book/)|2.9220779220779526e-06| -|cran|sde|2.9220779220779526e-06| -|cran|[CORElearn](http://lkm.fri.uni-lj.si/rmarko/software/)|2.9220779220779526e-06| -|cran|RISmed|2.9220779220779526e-06| -|cran|[httr2](https://httr2.r-lib.org)|2.9220779220779526e-06| -|cran|[phylocomr](https://github.com/ropensci/phylocomr)|2.9220779220779526e-06| -|cran|[rsdmx](https://github.com/opensdmx/rsdmx)|2.9220779220779526e-06| -|cran|[contentid](https://github.com/cboettig/contentid)|2.7272727272727022e-06| -|cran|thematic|2.6103515625e-06| -|cran|[fishtree](https://fishtreeoflife.org/)|2.556818181818187e-06| -|cran|Rlabkey|2.556818181818187e-06| -|cran|[LiblineaR]()|2.556818181818187e-06| -|cran|pheatmap|2.3549641148325436e-06| +https://docs.ropensci.org/ghql (docs))|2.912418906394811e-06| +|cran|tablerDash|2.839931153184165e-06| +|cran|argonDash|2.839931153184165e-06| +|cran|argonR|2.839931153184165e-06| +|cran|shinydashboardPlus|2.839931153184165e-06| +|cran|[isdparser](https://github.com/ropensci/isdparser)|2.807659208261619e-06| +|cran|geonames|2.807659208261619e-06| +|cran|Exact|2.8051335777894163e-06| +|cran|[xslt](https://github.com/ropensci/xslt)|2.7929901423877444e-06| +|cran|starsdata|2.7550419067574644e-06| +|cran|ncdfgeom|2.7550419067574644e-06| +|cran|cubelyr|2.7550419067574644e-06| +|cran|clue|2.7550419067574644e-06| +|cran|effects|2.7525486561631138e-06| +|cran|alr4|2.7525486561631138e-06| +|cran|carData|2.7525486561631138e-06| +|cran|vtreat|2.7525486561631138e-06| +|cran|kknn|2.7525486561631138e-06| +|cran|smotefamily|2.7525486561631138e-06| +|cran|bestNormalize|2.7525486561631138e-06| +|cran|mlr3learners|2.7525486561631138e-06| +|cran|mlr3filters|2.7525486561631138e-06| +|cran|bbotk|2.7525486561631138e-06| +|cran|[Momocs](https://github.com/MomX/Momocs/)|2.7108433734940117e-06| +|cran|[iptools](https://github.com/hrbrmstr/iptools)|2.7108433734939964e-06| +|cran|[metR](https://github.com/eliocamp/metR)|2.710843373493981e-06| +|cran|leaflet.minicharts|2.710843373493981e-06| +|cran|[decoder](https://www.bitbucket.com/cancercentrum/decoder)|2.710843373493981e-06| +|cran|gcookbook|2.6904610924902616e-06| +|cran|GA|2.6837349397590364e-06| +|cran|gclus|2.6837349397590364e-06| +|cran|qap|2.6837349397590364e-06| +|cran|biomaRt|2.683734939759036e-06| +|cran|[xgboost](https://github.com/dmlc/xgboost)|2.6333907056798834e-06| +|cran|dblog|2.5670508119434256e-06| +|cran|bcpa|2.4849397590361446e-06| +|cran|amt|2.4849397590361446e-06| +|cran|circular|2.4849397590361446e-06| +|cran|Rfast|2.4565079540128478e-06| +|cran|genlasso|2.4565079540128478e-06| +|cran|L0Learn|2.4565079540128478e-06| +|cran|mixsqp|2.4565079540128478e-06| +|cran|RDCOMClient|2.3336825563122054e-06| +|cran|base|2.3336825563122054e-06| +|cran|NetSwan|2.3336825563122054e-06| +|cran|netrankr|2.3336825563122054e-06| +|cran|fortunes|2.325312157721797e-06| +|cran|mail|2.323580034423408e-06| +|cran|bibtex|2.323580034423408e-06| +|cran|synchronicity|2.323580034423408e-06| +|cran|doMPI|2.323580034423408e-06| +|cran|rngtools|2.323580034423408e-06| +|cran|pkgmaker|2.323580034423408e-06| +|cran|waveslim|2.3135646032405482e-06| +|cran|[shinycssloaders](https://github.com/daattali/shinycssloaders)|2.225745085605591e-06| +|cran|numbers|2.1972098922003832e-06| +|cran|Rd2md|2.1686746987952216e-06| +|cran|[digitTests](https://koenderks.github.io/digitTests/)|2.168674698795191e-06| +|cran|[jfa](https://koenderks.github.io/jfa/)|2.168674698795191e-06| +|cran|[leafletR](https://github.com/chgrl/leafletR)|2.168674698795191e-06| +|cran|[phonTools](http://www.santiagobarreda.com/rscripts.html)|2.168674698795191e-06| +|cran|[hash](http://www.johnhughes.org)|2.168674698795191e-06| +|cran|[uchardet](https://artemklevtsov.gitlab.io/uchardet)|2.1686746987951606e-06| +|cran|textshaping|2.160079341757273e-06| +|cran|[fda](http://www.functionaldata.org)|2.1514629948365067e-06| +|cran|R.cache|2.146987951807229e-06| +|cran|tidymodels|2.104890148830617e-06| +|cran|DiagrammeRsvg|2.0644114921223355e-06| +|cran|rapportools|2.0447504302925985e-06| +|cran|suncalc|2.033132530120482e-06| +|cran|fftw|2.033132530120482e-06| +|cran|manipulate|2.033132530120482e-06| +|cran|Gmedian|2.033132530120482e-06| +|cran|fasttime|2.033132530120482e-06| +|cran|[ratelimitr](https://github.com/tarakc02/ratelimitr)|1.987951807228943e-06| +|cran|[kSamples](NA)|1.9578313253012093e-06| +|cran|graphlayouts|1.9169535283993112e-06| +|cran|leafsync|1.8637048192771084e-06| +|cran|leaflet.extras2|1.8637048192771084e-06| +|cran|satellite|1.8637048192771084e-06| +|cran|leafpop|1.8637048192771084e-06| +|cran|[posterior](https://mc-stan.org/posterior/)|1.819866880107847e-06| +|cran|[tarchetypes](https://docs.ropensci.org/tarchetypes/)|1.819866880107847e-06| +|cran|[osqp](https://osqp.org)|1.8072289156626644e-06| +|cran|[rstackdeque](https://github.com/oneilsh/rstackdeque)|1.8072289156626644e-06| +|cran|[nplr](https://github.com/fredcommo/nplr)|1.8072289156626644e-06| +|cran|[ipaddress](https://davidchall.github.io/ipaddress/)|1.8072289156626644e-06| +|cran|[biblio](https://github.com/kamapu/biblio)|1.8072289156626644e-06| +|cran|[spiderbar](https://gitlab.com/hrbrmstr/spiderbar)|1.8072289156626644e-06| +|cran|[wdman](https://github.com/ropensci/wdman)|1.8072289156626644e-06| +|cran|[fasterize](https://github.com/ecohealthalliance/fasterize)|1.6867469879517992e-06| +|cran|whitening|1.6265060240963854e-06| +|cran|randtoolbox|1.6265060240963854e-06| +|cran|mc2d|1.6265060240963854e-06| +|cran|ggExtra|1.6265060240963854e-06| +|cran|DiceDesign|1.6265060240963854e-06| +|cran|condMVNorm|1.6265060240963854e-06| +|cran|showtextdb|1.6200595063179546e-06| +|cran|sysfonts|1.6200595063179546e-06| +|cran|rematch2|1.6102409638554216e-06| +|cran|diffobj|1.6102409638554216e-06| +|cran|[UpSetR](http://github.com/hms-dbmi/UpSetR)|1.5722891566265128e-06| +|cran|RISmed|1.549053356282288e-06| +|cran|[tidytree](https://yulab-smu.top/treedata-book/)|1.549053356282288e-06| +|cran|sde|1.549053356282288e-06| +|cran|[phylocomr](https://github.com/ropensci/phylocomr)|1.549053356282288e-06| +|cran|[rsdmx](https://github.com/opensdmx/rsdmx)|1.549053356282288e-06| +|cran|[httr2](https://httr2.r-lib.org)|1.549053356282288e-06| +|cran|[itsadug](NA)|1.549053356282288e-06| +|cran|[CORElearn](http://lkm.fri.uni-lj.si/rmarko/software/)|1.549053356282288e-06| +|cran|[contentid](https://github.com/cboettig/contentid)|1.445783132530107e-06| +|cran|thematic|1.383800828313253e-06| +|cran|Rlabkey|1.3554216867469906e-06| +|cran|[fishtree](https://fishtreeoflife.org/)|1.3554216867469906e-06| +|cran|[LiblineaR]()|1.3554216867469906e-06| +|cran|pheatmap|1.248414711477493e-06| |cran|[shinyalert](https://github.com/daattali/shinyalert -https://daattali.com/shiny/shinyalert-demo/)|2.3549641148325436e-06| -|cran|[RNiftyReg](https://github.com/jonclayden/RNiftyReg)|2.3395721925133743e-06| -|cran|[ggiraph](https://davidgohel.github.io/ggiraph/)|2.301136363636357e-06| -|cran|[goodpractice](https://github.com/mangothecat/goodpractice)|2.2933884297520515e-06| -|cran|[fitdistrplus](https://lbbe.univ-lyon1.fr/fr/fitdistrplus)|2.2727272727272804e-06| -|cran|[kinship2](https://cran.r-project.org/package=kinship2)|2.2727272727272804e-06| -|cran|[corrr](https://github.com/tidymodels/corrr)|2.2727272727272804e-06| +https://daattali.com/shiny/shinyalert-demo/)|1.248414711477493e-06| +|cran|[RNiftyReg](https://github.com/jonclayden/RNiftyReg)|1.2402551381998611e-06| +|cran|[ggiraph](https://davidgohel.github.io/ggiraph/)|1.2198795180722854e-06| +|cran|[goodpractice](https://github.com/mangothecat/goodpractice)|1.2157721796275937e-06| +|cran|[fitdistrplus](https://lbbe.univ-lyon1.fr/fr/fitdistrplus)|1.2048192771084378e-06| +|cran|[kinship2](https://cran.r-project.org/package=kinship2)|1.2048192771084378e-06| +|cran|[corrr](https://github.com/tidymodels/corrr)|1.2048192771084378e-06| +|cran|[spocc](https://github.com/ropensci/spocc (devel))|1.2048192771084378e-06| +|cran|[RcppProgress](https://github.com/kforner/rcpp_progress)|1.2048192771084378e-06| +|cran|[rematch](https://github.com/MangoTheCat/rematch)|1.2048192771084378e-06| +|cran|treeman|1.2048192771084378e-06| +|cran|[treemapify](https://wilkox.org/treemapify/)|1.2048192771084378e-06| +|cran|[restez](https://github.com/ropensci/restez#readme)|1.2048192771084378e-06| |cran|[babette](https://docs.ropensci.org/babette/ (website) -https://github.com/ropensci/babette/)|2.2727272727272804e-06| -|cran|[spocc](https://github.com/ropensci/spocc (devel))|2.2727272727272804e-06| -|cran|[RcppProgress](https://github.com/kforner/rcpp_progress)|2.2727272727272804e-06| -|cran|treeman|2.2727272727272804e-06| -|cran|[treemapify](https://wilkox.org/treemapify/)|2.2727272727272804e-06| -|cran|[restez](https://github.com/ropensci/restez#readme)|2.2727272727272804e-06| -|cran|[rematch](https://github.com/MangoTheCat/rematch)|2.2727272727272804e-06| -|cran|gdata|2.045454545454584e-06| -|cran|[jmvcore](https://www.jamovi.org)|2.0454545454545555e-06| -|cran|[mlr3proba](https://mlr3proba.mlr-org.com)|2.0454545454545555e-06| -|cran|ggm|2.0454545454545555e-06| -|cran|googlePolylines|2.0454545454545555e-06| -|cran|[analogue](https://github.com/gavinsimpson/analogue)|2.0454545454545555e-06| -|cran|[scrapeR](http://www.ryanacton.com)|2.0454545454545555e-06| -|cran|[C50](https://topepo.github.io/C5.0/)|2.0454545454545555e-06| -|cran|[cowsay](https://github.com/sckott/cowsay)|2.0454545454545267e-06| -|cran|[rworldmap](https://github.com/AndySouth/rworldmap/)|2.0454545454545267e-06| +https://github.com/ropensci/babette/)|1.2048192771084378e-06| +|cran|gdata|1.0843373493976108e-06| +|cran|[mlr3proba](https://mlr3proba.mlr-org.com)|1.0843373493975956e-06| +|cran|ggm|1.0843373493975956e-06| +|cran|[analogue](https://github.com/gavinsimpson/analogue)|1.0843373493975956e-06| +|cran|googlePolylines|1.0843373493975956e-06| +|cran|[C50](https://topepo.github.io/C5.0/)|1.0843373493975956e-06| +|cran|[scrapeR](http://www.ryanacton.com)|1.0843373493975956e-06| +|cran|[jmvcore](https://www.jamovi.org)|1.0843373493975956e-06| +|cran|[cowsay](https://github.com/sckott/cowsay)|1.0843373493975803e-06| +|cran|[rworldmap](https://github.com/AndySouth/rworldmap/)|1.0843373493975803e-06| |cran|[osmdata](https://docs.ropensci.org/osmdata/ (website) -https://github.com/ropensci/osmdata/ (devel))|2.0454545454545267e-06| -|cran|[mvnfast](https://github.com/mfasiolo/mvnfast/)|1.8595041322314296e-06| -|cran|[haldensify](https://github.com/nhejazi/haldensify)|1.8595041322314008e-06| -|cran|lspline|1.8595041322314008e-06| -|cran|pbs|1.8595041322314008e-06| -|cran|[BFpack](https://github.com/jomulder/BFpack)|1.8595041322314008e-06| -|cran|[sofa](https://github.com/ropensci/sofa)|1.8595041322314008e-06| -|cran|[elastic](https://docs.ropensci.org/elastic (website))|1.8595041322314008e-06| +https://github.com/ropensci/osmdata/ (devel))|1.0843373493975803e-06| +|cran|[mvnfast](https://github.com/mfasiolo/mvnfast/)|9.857612267250953e-07| +|cran|[BFpack](https://github.com/jomulder/BFpack)|9.8576122672508e-07| +|cran|[haldensify](https://github.com/nhejazi/haldensify)|9.8576122672508e-07| +|cran|lspline|9.8576122672508e-07| +|cran|[sofa](https://github.com/ropensci/sofa)|9.8576122672508e-07| +|cran|[elastic](https://docs.ropensci.org/elastic (website))|9.8576122672508e-07| |cran|[mongolite](https://github.com/jeroen/mongolite/ (devel) https://jeroen.github.io/mongolite/ (user manual) -http://mongoc.org/ (upstream))|1.8595041322314008e-06| -|cran|[keyATM](https://keyatm.github.io/keyATM/)|1.8595041322314008e-06| -|cran|[irr](https://www.r-project.org)|1.8595041322314008e-06| -|cran|rje|1.7045454545454675e-06| -|cran|[usefun](https://github.com/bblodfon/usefun)|1.7045454545454675e-06| -|cran|rCAT|1.7045454545454675e-06| -|cran|[strex](https://rorynolan.github.io/strex/)|1.7045454545454675e-06| -|cran|[gdalUtilities](https://github.com/JoshOBrien/gdalUtilities/)|1.7045454545454675e-06| -|cran|[repr](https://github.com/IRkernel/repr/)|1.573426573426612e-06| -|cran|[waiter](https://waiter.john-coene.com/)|1.5734265734265834e-06| -|cran|[pwr](https://github.com/heliosdrm/pwr)|1.5734265734265834e-06| -|cran|[likert](http://jason.bryer.org/likert)|1.5734265734265834e-06| -|cran|[plumber](https://www.rplumber.io)|1.5734265734265834e-06| -|cran|[tictoc](https://github.com/collectivemedia/tictoc)|1.5734265734265834e-06| -|cran|R2jags|1.5734265734265834e-06| -|cran|[bib2df](https://github.com/ropensci/bib2df)|1.5734265734265834e-06| -|cran|[shinyFiles](https://github.com/thomasp85/shinyFiles)|1.4610389610389763e-06| -|cran|[bestglm](http://www.stats.uwo.ca/faculty/aim)|1.4610389610389763e-06| -|cran|[GGMncv](https://donaldrwilliams.github.io/GGMncv/)|1.4610389610389763e-06| -|cran|[RcppEigen](http://dirk.eddelbuettel.com/code/rcpp.eigen.html)|1.4610389610389763e-06| -|cran|[ggwordcloud](https://github.com/lepennec/ggwordcloud)|1.4610389610389763e-06| -|cran|[akmedoids](https://cran.r-project.org/package=akmedoids)|1.4610389610389763e-06| -|cran|[depmixS4](https://depmix.github.io/)|1.4610389610389763e-06| -|cran|GeoLight|1.4610389610389763e-06| -|cran|[anomalize](https://github.com/business-science/anomalize)|1.4610389610389763e-06| -|cran|[outsider](https://github.com/ropensci/outsider#readme)|1.4610389610389763e-06| -|cran|[MultinomialCI](http://decsai.ugr.es/~pjvi)|1.4610389610389763e-06| -|cran|[cmdfun](https://snystrom.github.io/cmdfun/)|1.3636363636363511e-06| -|cran|[sjlabelled](https://strengejacke.github.io/sjlabelled/)|1.3636363636363511e-06| -|cran|[qdapRegex](http://trinker.github.com/qdapRegex/)|1.3636363636363511e-06| -|cran|[iotools](http://www.rforge.net/iotools)|1.3636363636363511e-06| -|cran|[biomartr](https://docs.ropensci.org/biomartr/)|1.2784090909091078e-06| -|cran|[esquisse](https://dreamrs.github.io/esquisse/)|1.2784090909090934e-06| -|cran|[ggnetwork](https://github.com/briatte/ggnetwork)|1.2784090909090934e-06| -|cran|randomcoloR|1.2784090909090934e-06| -|cran|[osmextract](https://docs.ropensci.org/osmextract/)|1.2784090909090934e-06| -|cran|[smoothr](https://strimas.com/smoothr/)|1.2784090909090934e-06| -|cran|ggnewscale|1.2784090909090934e-06| -|cran|[ggpointdensity](https://github.com/LKremer/ggpointdensity)|1.2784090909090934e-06| -|cran|[scattermore](https://github.com/exaexa/scattermore)|1.2784090909090934e-06| -|cran|[sortable](https://rstudio.github.io/sortable/)|1.2784090909090934e-06| -|cran|[BSDA](https://github.com/alanarnholt/BSDA)|1.2784090909090934e-06| -|cran|[UNF](https://github.com/leeper/UNF)|1.2784090909090934e-06| -|cran|[dplR](https://github.com/AndyBunn/dplR)|1.2784090909090934e-06| -|cran|[lunar](http://statistics.lazaridis.eu)|1.2784090909090934e-06| -|cran|[codemeta](https://github.com/cboettig/codemeta)|1.2784090909090934e-06| +http://mongoc.org/ (upstream))|9.8576122672508e-07| +|cran|pbs|9.8576122672508e-07| +|cran|[keyATM](https://keyatm.github.io/keyATM/)|9.8576122672508e-07| +|cran|[irr](https://www.r-project.org)|9.8576122672508e-07| +|cran|rCAT|9.036144578313322e-07| +|cran|rje|9.036144578313322e-07| +|cran|[usefun](https://github.com/bblodfon/usefun)|9.036144578313322e-07| +|cran|[gdalUtilities](https://github.com/JoshOBrien/gdalUtilities/)|9.036144578313322e-07| +|cran|[strex](https://rorynolan.github.io/strex/)|9.036144578313322e-07| +|cran|[repr](https://github.com/IRkernel/repr/)|8.341056533827822e-07| +|cran|[pwr](https://github.com/heliosdrm/pwr)|8.341056533827669e-07| +|cran|[waiter](https://waiter.john-coene.com/)|8.341056533827669e-07| +|cran|[likert](http://jason.bryer.org/likert)|8.341056533827669e-07| +|cran|R2jags|8.341056533827669e-07| +|cran|[bib2df](https://github.com/ropensci/bib2df)|8.341056533827669e-07| +|cran|[plumber](https://www.rplumber.io)|8.341056533827669e-07| +|cran|[tictoc](https://github.com/collectivemedia/tictoc)|8.341056533827669e-07| +|cran|[MultinomialCI](http://decsai.ugr.es/~pjvi)|7.74526678141144e-07| +|cran|[RcppEigen](http://dirk.eddelbuettel.com/code/rcpp.eigen.html)|7.74526678141144e-07| +|cran|[ggwordcloud](https://github.com/lepennec/ggwordcloud)|7.74526678141144e-07| +|cran|[akmedoids](https://cran.r-project.org/package=akmedoids)|7.74526678141144e-07| +|cran|[bestglm](http://www.stats.uwo.ca/faculty/aim)|7.74526678141144e-07| +|cran|[GGMncv](https://donaldrwilliams.github.io/GGMncv/)|7.74526678141144e-07| +|cran|[depmixS4](https://depmix.github.io/)|7.74526678141144e-07| +|cran|GeoLight|7.74526678141144e-07| +|cran|[outsider](https://github.com/ropensci/outsider#readme)|7.74526678141144e-07| +|cran|[anomalize](https://github.com/business-science/anomalize)|7.74526678141144e-07| +|cran|[shinyFiles](https://github.com/thomasp85/shinyFiles)|7.74526678141144e-07| +|cran|[sjlabelled](https://strengejacke.github.io/sjlabelled/)|7.228915662650535e-07| +|cran|[qdapRegex](http://trinker.github.com/qdapRegex/)|7.228915662650535e-07| +|cran|[iotools](http://www.rforge.net/iotools)|7.228915662650535e-07| +|cran|[cmdfun](https://snystrom.github.io/cmdfun/)|7.228915662650535e-07| +|cran|[biomartr](https://docs.ropensci.org/biomartr/)|6.777108433735029e-07| +|cran|[UNF](https://github.com/leeper/UNF)|6.777108433734953e-07| +|cran|[BSDA](https://github.com/alanarnholt/BSDA)|6.777108433734953e-07| +|cran|ggnewscale|6.777108433734953e-07| +|cran|[ggpointdensity](https://github.com/LKremer/ggpointdensity)|6.777108433734953e-07| +|cran|[scattermore](https://github.com/exaexa/scattermore)|6.777108433734953e-07| +|cran|[esquisse](https://dreamrs.github.io/esquisse/)|6.777108433734953e-07| +|cran|[ggnetwork](https://github.com/briatte/ggnetwork)|6.777108433734953e-07| +|cran|randomcoloR|6.777108433734953e-07| +|cran|[dplR](https://github.com/AndyBunn/dplR)|6.777108433734953e-07| +|cran|[lunar](http://statistics.lazaridis.eu)|6.777108433734953e-07| +|cran|[sortable](https://rstudio.github.io/sortable/)|6.777108433734953e-07| |cran|[rplos](https://docs.ropensci.org/rplos (website) -https://github.com/ropensci/rplos)|1.2784090909090934e-06| -|cran|[microdemic](https://github.com/ropensci/microdemic (devel))|1.2784090909090934e-06| -|cran|[aRxiv](https://docs.ropensci.org/aRxiv/)|1.2784090909090934e-06| -|cran|[leaflet.extras](https://github.com/bhaskarvk/leaflet.extras)|1.2032085561497341e-06| -|cran|[slippymath](https://www.github.com/milesmcbain/slippymath)|1.2032085561497341e-06| -|cran|[biwavelet](https://github.com/tgouhier/biwavelet)|1.20320855614972e-06| -|cran|[dataRetrieval](https://pubs.usgs.gov/tm/04/a10/)|1.1363636363636402e-06| -|cran|[rnoaa](https://docs.ropensci.org/rnoaa/ (docs))|1.1363636363636402e-06| -|cran|[uwot](https://github.com/jlmelville/uwot)|1.1363636363636402e-06| -|cran|[fossil](http://matthewvavrek.com/programs-and-code/fossil/)|1.1363636363636402e-06| -|cran|[FedData](https://github.com/ropensci/FedData)|1.1363636363636402e-06| -|cran|minpack.lm|1.1363636363636402e-06| -|cran|smoother|1.1363636363636402e-06| -|cran|[ptw](https://github.com/rwehrens/ptw)|1.1363636363636402e-06| -|cran|[longitudinalData](http:www.r-project.org)|1.1250000000000068e-06| -|cran|[rvcheck](https://github.com/GuangchuangYu/rvcheck)|1.0765550239234501e-06| -|cran|[turner](http://www.gastonsanchez.com)|1.0765550239234501e-06| -|cran|[shinyjqui](https://github.com/yang-tang/shinyjqui)|1.0765550239234501e-06| -|cran|[blocksdesign]()|1.0765550239234501e-06| -|cran|shinyhelper|1.0765550239234501e-06| -|cran|[bsplus](https://github.com/ijlyttle/bsplus)|1.0765550239234501e-06| +https://github.com/ropensci/rplos)|6.777108433734953e-07| +|cran|[microdemic](https://github.com/ropensci/microdemic (devel))|6.777108433734953e-07| +|cran|[aRxiv](https://docs.ropensci.org/aRxiv/)|6.777108433734953e-07| +|cran|[codemeta](https://github.com/cboettig/codemeta)|6.777108433734953e-07| +|cran|[osmextract](https://docs.ropensci.org/osmextract/)|6.777108433734953e-07| +|cran|[smoothr](https://strimas.com/smoothr/)|6.777108433734953e-07| +|cran|[leaflet.extras](https://github.com/bhaskarvk/leaflet.extras)|6.378454996456422e-07| +|cran|[slippymath](https://www.github.com/milesmcbain/slippymath)|6.378454996456422e-07| +|cran|[biwavelet](https://github.com/tgouhier/biwavelet)|6.378454996456346e-07| +|cran|[FedData](https://github.com/ropensci/FedData)|6.024096385542189e-07| +|cran|[uwot](https://github.com/jlmelville/uwot)|6.024096385542189e-07| +|cran|[fossil](http://matthewvavrek.com/programs-and-code/fossil/)|6.024096385542189e-07| +|cran|minpack.lm|6.024096385542189e-07| +|cran|smoother|6.024096385542189e-07| +|cran|[ptw](https://github.com/rwehrens/ptw)|6.024096385542189e-07| +|cran|[dataRetrieval](https://pubs.usgs.gov/tm/04/a10/)|6.024096385542189e-07| +|cran|[rnoaa](https://docs.ropensci.org/rnoaa/ (docs))|6.024096385542189e-07| +|cran|[longitudinalData](http:www.r-project.org)|5.963855421686783e-07| +|cran|[rvcheck](https://github.com/GuangchuangYu/rvcheck)|5.707038681039977e-07| |cran|[nabor](https://github.com/jefferis/nabor -https://github.com/ethz-asl/libnabo)|1.0765550239234501e-06| -|cran|[sensitivity](NA)|1.0227272727272777e-06| -|cran|[EasyABC](http://easyabc.r-forge.r-project.org/)|1.0227272727272777e-06| -|cran|[summarytools](https://github.com/dcomtois/summarytools)|9.740259740259795e-07| -|cran|[pastecs](https://github.com/phgrosjean/pastecs)|9.740259740259795e-07| -|cran|[desplot](https://kwstat.github.io/desplot/)|9.740259740259795e-07| -|cran|[agricolae](http://tarwi.lamolina.edu.pe/~fmendiburu)|9.740259740259795e-07| -|cran|PairedData|9.740259740259795e-07| -|cran|harmonicmeanp|9.297520661157004e-07| -|cran|NBPSeq|9.297520661157004e-07| -|cran|[rmdformats](https://github.com/juba/rmdformats)|9.297520661157004e-07| -|cran|[dams](https://github.com/jsta/dams)|8.893280632411023e-07| -|cran|[reservoir](https://cran.r-project.org/package=reservoir)|8.893280632411023e-07| -|cran|[DescTools](https://andrisignorell.github.io/DescTools/)|8.893280632411023e-07| -|cran|[coloc](https://github.com/chr1swallace/coloc)|8.893280632411023e-07| -|cran|[ucminf](NA)|8.437500000000052e-07| -|cran|[audio](http://www.rforge.net/audio/)|7.23214285714282e-07| -|cran|[enviPick](NA)|4.0909090909090965e-07| -|cran|[uroot](https://jalobe.com)|1.257763975155287e-07| +https://github.com/ethz-asl/libnabo)|5.707038681039977e-07| +|cran|shinyhelper|5.707038681039977e-07| +|cran|[bsplus](https://github.com/ijlyttle/bsplus)|5.707038681039977e-07| +|cran|[turner](http://www.gastonsanchez.com)|5.707038681039977e-07| +|cran|[shinyjqui](https://github.com/yang-tang/shinyjqui)|5.707038681039977e-07| +|cran|[blocksdesign]()|5.707038681039977e-07| +|cran|[sensitivity](NA)|5.421686746987978e-07| +|cran|[EasyABC](http://easyabc.r-forge.r-project.org/)|5.421686746987978e-07| +|cran|[summarytools](https://github.com/dcomtois/summarytools)|5.163511187607602e-07| +|cran|[pastecs](https://github.com/phgrosjean/pastecs)|5.163511187607602e-07| +|cran|[desplot](https://kwstat.github.io/desplot/)|5.163511187607602e-07| +|cran|[agricolae](http://tarwi.lamolina.edu.pe/~fmendiburu)|5.163511187607602e-07| +|cran|PairedData|5.163511187607602e-07| +|cran|harmonicmeanp|4.9288061336254e-07| +|cran|NBPSeq|4.9288061336254e-07| +|cran|[rmdformats](https://github.com/juba/rmdformats)|4.9288061336254e-07| +|cran|[DescTools](https://andrisignorell.github.io/DescTools/)|4.7145102147721085e-07| +|cran|[coloc](https://github.com/chr1swallace/coloc)|4.7145102147721085e-07| +|cran|[dams](https://github.com/jsta/dams)|4.7145102147721085e-07| +|cran|[reservoir](https://cran.r-project.org/package=reservoir)|4.7145102147721085e-07| +|cran|[ucminf](NA)|4.4728915662650875e-07| +|cran|[audio](http://www.rforge.net/audio/)|3.833907056798603e-07| +|cran|[enviPick](NA)|2.1686746987951834e-07| +|cran|[uroot](https://jalobe.com)|6.66766444660634e-08| > Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed.